Merge branch 'masterpiece' of ssh://192.168.10.159:/1TBHDD/ikong/taobin_project into masterpiece
This commit is contained in:
commit
0c29ed34f3
124 changed files with 30618 additions and 77684 deletions
|
|
@ -1,16 +1,5 @@
|
|||
; thailand
|
||||
|
||||
|
||||
; zone promote
|
||||
Var BigButtonEnable = "Enable"
|
||||
If OpenFromMulti = 1 Then
|
||||
TabMenuVisibleInst 99
|
||||
EndIf
|
||||
Var OpenFromMulti = 0
|
||||
|
||||
Var RecommendPage = "ROOT/taobin_project/inter/tha/xml/page_catalog_group_recommend.lxml"
|
||||
Var RecommendPageMulti = "ROOT/taobin_project/inter/tha/xml/multi/page_catalog_group_recommend.lxml"
|
||||
|
||||
If WinterWarmersCatalogFlag = 1 Then
|
||||
Var RecommendPage = "ROOT/taobin_project/inter/tha/xml/event/promotion_winter_warmers.lxml"
|
||||
EndIf
|
||||
|
|
@ -23,18 +12,45 @@ If AnniverseryPro = 1 Then
|
|||
Var RecommendPage = "ROOT/taobin_project/inter/tha/xml/event/promotion_anniversary_1st.lxml"
|
||||
EndIf
|
||||
|
||||
If OpenFromPageBoard = 1 Then
|
||||
If EnableMultiInstance = "true" Then
|
||||
OpenInst 2 RecommendPageMulti
|
||||
|
||||
|
||||
|
||||
; thailand
|
||||
|
||||
|
||||
; zone promote
|
||||
Var BigButtonEnable = "Enable"
|
||||
If OpenFromMulti = 1 Then
|
||||
TabMenuVisibleInst 99
|
||||
EndIf
|
||||
Var OpenFromMulti = 0
|
||||
|
||||
Var RecommendPage = "ROOT/taobin_project/inter/tha/xml/page_catalog_group_recommend.lxml"
|
||||
Var RecommendPageMulti = "ROOT/taobin_project/inter/tha/xml/multi/page_catalog_group_recommend.lxml"
|
||||
|
||||
|
||||
If MyanmarLangEnable = "true" Then
|
||||
|
||||
; nothing to do
|
||||
|
||||
|
||||
If OpenFromPageBoard = 1 Then
|
||||
If EnableMultiInstance = "true" Then
|
||||
OpenInst 2 RecommendPageMulti
|
||||
Else
|
||||
OpenInst 2 RecommendPage
|
||||
EndIf
|
||||
Else
|
||||
OpenInst 2 RecommendPage
|
||||
If EnableMultiInstance = "true" Then
|
||||
OpenInst 2 RecommendPageMulti
|
||||
Else
|
||||
Open RecommendPage
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
Else
|
||||
If EnableMultiInstance = "true" Then
|
||||
OpenInst 2 RecommendPageMulti
|
||||
Else
|
||||
Open RecommendPage
|
||||
EndIf
|
||||
TRY "/mnt/sdcard/coffeevending/taobin_project/xml/event/script_common_for_open_promotion_xml.ev"
|
||||
EndIf
|
||||
|
||||
Var OpenFromPageBoard = 0
|
||||
|
||||
|
|
|
|||
|
|
@ -1,166 +0,0 @@
|
|||
|
||||
if False:
|
||||
print("params=" + param)
|
||||
print( "dir= " + directory_to_process + "/page_catalog_group_recommend.lxml");
|
||||
file_xml = open(directory_to_process + "/page_catalog_group_recommend.lxml", 'r')
|
||||
file_content_main = file_xml.read()
|
||||
#print(file_xml.read())
|
||||
# ; include-file=dummy_layout.inc
|
||||
file_inc = open(directory_to_process + "/dummy_layout.inc", 'r')
|
||||
file_inc_content = file_inc.read()
|
||||
|
||||
|
||||
file_xml.close()
|
||||
|
||||
|
||||
file_inc2 = open(directory_to_process + "/event/promotion_template1.inc", 'r')
|
||||
file_inc2_content = file_inc2.read()
|
||||
file_inc_img = open(directory_to_process + "/../image/event/image_template1", 'r')
|
||||
file_inc2_img_content = file_inc_img.read()
|
||||
|
||||
# replace key.
|
||||
|
||||
sp_key = file_inc2_img_content.split("\n")
|
||||
print("sp_key = " + str(len( sp_key)))
|
||||
for sp_line in sp_key:
|
||||
sp_line = sp_line.strip()
|
||||
key_val = sp_line.split("=")
|
||||
if len( key_val) == 2:
|
||||
print("k = " + key_val[0] + " val=" + key_val[1])
|
||||
file_inc2_content = file_inc2_content.replace( "###" + key_val[0], '"' + key_val[1].strip() + '"')
|
||||
|
||||
|
||||
file_inc_event_click = open(directory_to_process + "/event/promotion_onclick1.inc", 'r')
|
||||
file_inc_event_click_content = file_inc_event_click.read()
|
||||
|
||||
file_inc2_content = file_inc2_content.replace("###EventOnClick", file_inc_event_click_content)
|
||||
|
||||
|
||||
print(file_inc2_content)
|
||||
|
||||
#print( file_inc_content)
|
||||
content_data_was_repack = file_content_main.replace(";dummy_layout.inc", file_inc_content)
|
||||
content_data = content_data_was_repack.replace(";BigLogoLayout", file_inc2_content)
|
||||
|
||||
begin_text = content_data.index(";TAGESP")
|
||||
end_text = content_data.index(";TAGESP", begin_text + 7)
|
||||
print("TAGESP sub text = " + str(begin_text) + " end = " + str(end_text))
|
||||
tmp1 = content_data[: begin_text - 7]
|
||||
|
||||
tmp2 = content_data[ end_text:-1]
|
||||
#print("tmp1=" + tmp1)
|
||||
#print("tmp2=" + tmp2)
|
||||
|
||||
content_data = tmp1 + tmp2
|
||||
|
||||
file_xml3_out = open(directory_to_process + "/event/out_put_file1.txt", 'r')
|
||||
file_xml3_out_content = file_xml3_out.read()
|
||||
file_xml3_out_content = file_xml3_out_content.strip()
|
||||
file_xml3_out_content = file_xml3_out_content.replace("\r", "")
|
||||
file_xml3_out_content = file_xml3_out_content.replace("\n", "")
|
||||
|
||||
file_xml3 = open(directory_to_process + file_xml3_out_content, 'w')
|
||||
file_xml3.write( content_data)
|
||||
file_xml3.close()
|
||||
|
||||
|
||||
file_inc2 = open(directory_to_process + "/event/promotion_template2.inc", 'r')
|
||||
file_inc2_content = file_inc2.read()
|
||||
file_inc_img = open(directory_to_process + "/../image/event/image_template2", 'r')
|
||||
file_inc2_img_content = file_inc_img.read()
|
||||
|
||||
# replace key.
|
||||
|
||||
sp_key = file_inc2_img_content.split("\n")
|
||||
print("sp_key = " + str(len( sp_key)))
|
||||
for sp_line in sp_key:
|
||||
sp_line = sp_line.strip()
|
||||
key_val = sp_line.split("=")
|
||||
if len( key_val) == 2:
|
||||
print("k = " + key_val[0] + " val=" + key_val[1])
|
||||
file_inc2_content = file_inc2_content.replace( "###" + key_val[0], '"' + key_val[1].strip() + '"')
|
||||
|
||||
|
||||
file_inc_event_click = open(directory_to_process + "/event/promotion_onclick2.inc", 'r')
|
||||
file_inc_event_click_content = file_inc_event_click.read()
|
||||
|
||||
file_inc2_content = file_inc2_content.replace("###EventOnClick", file_inc_event_click_content)
|
||||
|
||||
|
||||
print(file_inc2_content)
|
||||
|
||||
#print( file_inc_content)
|
||||
content_data_was_repack = file_content_main.replace(";dummy_layout.inc", file_inc_content)
|
||||
content_data = content_data_was_repack.replace(";BigLogoLayout", file_inc2_content)
|
||||
|
||||
begin_text = content_data.index(";TAGESP")
|
||||
end_text = content_data.index(";TAGESP", begin_text + 7)
|
||||
#print("sub text = " + str(begin_text) + " end = " + str(end_text))
|
||||
tmp1 = content_data[: begin_text - 7]
|
||||
|
||||
tmp2 = content_data[ end_text:-1]
|
||||
#print("tmp1=" + tmp1)
|
||||
#print("tmp2=" + tmp2)
|
||||
|
||||
content_data = tmp1 + tmp2
|
||||
|
||||
file_xml3_out = open(directory_to_process + "/event/out_put_file2.txt", 'r')
|
||||
file_xml3_out_content = file_xml3_out.read()
|
||||
file_xml3_out_content = file_xml3_out_content.strip()
|
||||
file_xml3_out_content = file_xml3_out_content.replace("\r", "")
|
||||
file_xml3_out_content = file_xml3_out_content.replace("\n", "")
|
||||
|
||||
file_xml3 = open(directory_to_process + file_xml3_out_content, 'w')
|
||||
file_xml3.write( content_data)
|
||||
file_xml3.close()
|
||||
|
||||
file_inc3 = open(directory_to_process + "/event/promotion_template3.inc", 'r')
|
||||
file_inc3_content = file_inc3.read()
|
||||
file_inc_img = open(directory_to_process + "/../image/event/image_template3", 'r')
|
||||
file_inc3_img_content = file_inc_img.read()
|
||||
|
||||
# replace key.
|
||||
|
||||
sp_key = file_inc3_img_content.split("\n")
|
||||
print("sp_key = " + str(len( sp_key)))
|
||||
for sp_line in sp_key:
|
||||
sp_line = sp_line.strip()
|
||||
key_val = sp_line.split("=")
|
||||
print("Kenta420:", key_val)
|
||||
if len( key_val) == 2:
|
||||
print("k = " + key_val[0] + " val=" + key_val[1])
|
||||
file_inc3_content = file_inc3_content.replace( "###" + key_val[0], '"' + key_val[1].strip() + '"')
|
||||
|
||||
|
||||
file_inc_event_click = open(directory_to_process + "/event/promotion_onclick3.inc", 'r')
|
||||
file_inc_event_click_content = file_inc_event_click.read()
|
||||
|
||||
file_inc3_content = file_inc3_content.replace("###EventOnClick", file_inc_event_click_content)
|
||||
|
||||
|
||||
print(file_inc3_content)
|
||||
|
||||
#print( file_inc_content)
|
||||
content_data_was_repack = file_content_main.replace(";dummy_layout.inc", file_inc_content)
|
||||
content_data = content_data_was_repack.replace(";BigLogoLayout", file_inc3_content)
|
||||
|
||||
begin_text = content_data.index(";TAGESP")
|
||||
end_text = content_data.index(";TAGESP", begin_text + 7)
|
||||
#print("sub text = " + str(begin_text) + " end = " + str(end_text))
|
||||
tmp1 = content_data[: begin_text - 7]
|
||||
|
||||
tmp3 = content_data[ end_text:-1]
|
||||
#print("tmp1=" + tmp1)
|
||||
#print("tmp3=" + tmp3)
|
||||
|
||||
content_data = tmp1 + tmp3
|
||||
|
||||
file_xml3_out = open(directory_to_process + "/event/out_put_file3.txt", 'r')
|
||||
file_xml3_out_content = file_xml3_out.read()
|
||||
file_xml3_out_content = file_xml3_out_content.strip()
|
||||
file_xml3_out_content = file_xml3_out_content.replace("\r", "")
|
||||
file_xml3_out_content = file_xml3_out_content.replace("\n", "")
|
||||
|
||||
file_xml3 = open(directory_to_process + file_xml3_out_content, 'w')
|
||||
file_xml3.write( content_data)
|
||||
file_xml3.close()
|
||||
|
|
@ -1 +0,0 @@
|
|||
/event/promotion_winter_warmers.lxml
|
||||
|
|
@ -1 +0,0 @@
|
|||
/event/promotion_anniversary_1st.lxml
|
||||
|
|
@ -1 +0,0 @@
|
|||
/event/promotion_3.xml
|
||||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -1,48 +0,0 @@
|
|||
{
|
||||
"recommendPath": "/sdcard/coffeevending/taobin_project/xml/page_catalog_group_recommend.xml",
|
||||
"dummyLayoutPath": "/sdcard/coffeevending/taobin_project/xml/dummy_layout.inc",
|
||||
"trickerYamlPath": "/sdcard/coffeevending/taobin_project/xml/event/tricker.yaml",
|
||||
"outDir": "/sdcard/coffeevending/taobin_project/xml/event/",
|
||||
"templates": [
|
||||
{
|
||||
"name": "promotion_pepsi",
|
||||
"path": "/sdcard/coffeevending/taobin_project/xml/event/promotion_template1.inc",
|
||||
"onclickFile": "/sdcard/coffeevending/taobin_project/xml/event/promotion_onclick1.inc",
|
||||
"imagesTemplate": {
|
||||
"normal_eng": "ROOT/taobin_project/image/event/welcomedrink_en.png",
|
||||
"normal_thai": "ROOT/taobin_project/image/event/welcomedrink.png",
|
||||
"press_eng": "ROOT/taobin_project/image/event/welcomedrink_en.png",
|
||||
"press_thai": "ROOT/taobin_project/image/event/welcomedrink.png",
|
||||
"disable_eng": "ROOT/taobin_project/image/event/welcomedrink_en.png",
|
||||
"disable_thai": "ROOT/taobin_project/image/event/welcomedrink.png"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "promotion_pepsi_end",
|
||||
"path": "/sdcard/coffeevending/taobin_project/xml/event/promotion_template2.inc",
|
||||
"onclickFile": "/sdcard/coffeevending/taobin_project/xml/event/promotion_onclick2.inc",
|
||||
"imagesTemplate": {
|
||||
"normal_eng": "ROOT/taobin_project/image/event/bn_pepsi_buy2_save_move_end_en.png",
|
||||
"normal_thai": "ROOT/taobin_project/image/event/bn_pepsi_buy2_save_move_end_th.png",
|
||||
"press_eng": "ROOT/taobin_project/image/event/bn_pepsi_buy2_save_move_end_en.png",
|
||||
"press_thai": "ROOT/taobin_project/image/event/bn_pepsi_buy2_save_move_end_th.png",
|
||||
"disable_eng": "ROOT/taobin_project/image/event/bn_pepsi_buy2_save_move_end_en.png",
|
||||
"disable_thai": "ROOT/taobin_project/image/event/bn_pepsi_buy2_save_move_end_th.png"
|
||||
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "promotion_mystery_cup_35",
|
||||
"path": "/sdcard/coffeevending/taobin_project/xml/event/promotion_template3.inc",
|
||||
"onclickFile": "/sdcard/coffeevending/taobin_project/xml/event/promotion_onclick3.inc",
|
||||
"imagesTemplate": {
|
||||
"normal_eng": "ROOT/taobin_project/image/event/pro_mystery_cup_en.png",
|
||||
"normal_thai": "ROOT/taobin_project/image/event/pro_mystery_cup_th.png",
|
||||
"press_eng": "ROOT/taobin_project/image/event/pro_mystery_cup_en.png",
|
||||
"press_thai": "ROOT/taobin_project/image/event/pro_mystery_cup_th.png",
|
||||
"disable_eng": "ROOT/taobin_project/image/event/pro_mystery_cup_en.png",
|
||||
"disable_thai": "ROOT/taobin_project/image/event/pro_mystery_cup_th.png"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1 +0,0 @@
|
|||
Open "ROOT/taobin_project/inter/aus/xml/page_catalog_group_winter_warmers_ignore.lxml"
|
||||
|
|
@ -1 +0,0 @@
|
|||
; Do nothing
|
||||
|
|
@ -1,320 +0,0 @@
|
|||
Var BigButtonEnable = "Invisible"
|
||||
|
||||
DEBUGVAR BigButtonEnable
|
||||
DEBUGVAR OreoGuarantee
|
||||
|
||||
; Enable all 4 buttons
|
||||
Var SubRandMilkButtonEnable = "Enable"
|
||||
DEBUGVAR SubRandMilkButtonEnable
|
||||
|
||||
Var SubRandTeaButtonEnable = "Enable"
|
||||
DEBUGVAR SubRandTeaButtonEnable
|
||||
|
||||
Var SubRandCoffButtonEnable = "Enable"
|
||||
DEBUGVAR SubRandCoffButtonEnable
|
||||
|
||||
Var SubRandAllButtonEnable = "Enable"
|
||||
DEBUGVAR SubRandAllButtonEnable
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
; For real, yeah for real
|
||||
; All random cup
|
||||
|
||||
Var IndexOfAllRandom = 0
|
||||
Var IndexOfMilk = 0
|
||||
Var IndexOfTea = 0
|
||||
Var IndexOfCoffee = 0
|
||||
|
||||
Var IndexOfRateupOreoAll = 0
|
||||
Var IndexOfRateupOreoMilk = 0
|
||||
Var IndexOfRateupOreoTea = 0
|
||||
Var IndexOfRateupOreoCoffee = 0
|
||||
|
||||
; Oreo smoothie volcano
|
||||
If $12-99-03-0020.Button = "Enable" Then
|
||||
Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0020"
|
||||
Var ListOfMilk[IndexOfMilk] = "12-99-03-0020"
|
||||
|
||||
Var ListOfOreoAll[IndexOfRateupOreoAll] = "12-99-03-0020"
|
||||
Var ListOfOreoMilk[IndexOfRateupOreoMilk] = "12-99-03-0020"
|
||||
|
||||
Var IndexOfAllRandom = IndexOfAllRandom + 1
|
||||
Var IndexOfMilk = IndexOfMilk + 1
|
||||
|
||||
Var IndexOfRateupOreoAll = IndexOfRateupOreoAll + 1
|
||||
Var IndexOfRateupOreoMilk = IndexOfRateupOreoMilk + 1
|
||||
EndIf
|
||||
|
||||
; Pink milk oreo volcano
|
||||
If $12-99-03-0021.Button = "Enable" Then
|
||||
Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0021"
|
||||
Var ListOfMilk[IndexOfMilk] = "12-99-03-0021"
|
||||
|
||||
Var ListOfOreoAll[IndexOfRateupOreoAll] = "12-99-03-0021"
|
||||
Var ListOfOreoMilk[IndexOfRateupOreoMilk] = "12-99-03-0021"
|
||||
|
||||
Var IndexOfAllRandom = IndexOfAllRandom + 1
|
||||
Var IndexOfMilk = IndexOfMilk + 1
|
||||
|
||||
Var IndexOfRateupOreoAll = IndexOfRateupOreoAll + 1
|
||||
Var IndexOfRateupOreoMilk = IndexOfRateupOreoMilk + 1
|
||||
EndIf
|
||||
|
||||
; Choco oreo volcano
|
||||
If $12-99-03-0022.Button = "Enable" Then
|
||||
Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0022"
|
||||
Var ListOfMilk[IndexOfMilk] = "12-99-03-0022"
|
||||
|
||||
Var ListOfOreoAll[IndexOfRateupOreoAll] = "12-99-03-0022"
|
||||
Var ListOfOreoMilk[IndexOfRateupOreoMilk] = "12-99-03-0022"
|
||||
|
||||
Var IndexOfAllRandom = IndexOfAllRandom + 1
|
||||
Var IndexOfMilk = IndexOfMilk + 1
|
||||
|
||||
Var IndexOfRateupOreoAll = IndexOfRateupOreoAll + 1
|
||||
Var IndexOfRateupOreoMilk = IndexOfRateupOreoMilk + 1
|
||||
EndIf
|
||||
|
||||
; Caramel milk oreo volcano
|
||||
If $12-99-03-0023.Button = "Enable" Then
|
||||
Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0023"
|
||||
Var ListOfMilk[IndexOfMilk] = "12-99-03-0023"
|
||||
Var IndexOfAllRandom = IndexOfAllRandom + 1
|
||||
Var IndexOfMilk = IndexOfMilk + 1
|
||||
|
||||
Var ListOfOreoAll[IndexOfRateupOreoAll] = "12-99-03-0023"
|
||||
Var ListOfOreoMilk[IndexOfRateupOreoMilk] = "12-99-03-0023"
|
||||
Var IndexOfRateupOreoAll = IndexOfRateupOreoAll + 1
|
||||
Var IndexOfRateupOreoMilk = IndexOfRateupOreoMilk + 1
|
||||
EndIf
|
||||
|
||||
; Thai milk tea oreo smoothie
|
||||
If $12-99-03-0024.Button = "Enable" Then
|
||||
Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0024"
|
||||
Var ListOfTea[IndexOfTea] = "12-99-03-0024"
|
||||
Var IndexOfAllRandom = IndexOfAllRandom + 1
|
||||
Var IndexOfTea = IndexOfTea + 1
|
||||
|
||||
Var ListOfOreoAll[IndexOfRateupOreoAll] = "12-99-03-0024"
|
||||
Var ListOfOreoTea[IndexOfRateupOreoTea] = "12-99-03-0024"
|
||||
Var IndexOfRateupOreoAll = IndexOfRateupOreoAll + 1
|
||||
Var IndexOfRateupOreoTea = IndexOfRateupOreoTea + 1
|
||||
EndIf
|
||||
|
||||
; Cafe late oreo smoothie
|
||||
If $12-99-03-0025.Button = "Enable" Then
|
||||
Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0025"
|
||||
Var ListOfCoffee[IndexOfCoffee] = "12-99-03-0025"
|
||||
Var IndexOfAllRandom = IndexOfAllRandom + 1
|
||||
Var IndexOfCoffee = IndexOfCoffee + 1
|
||||
|
||||
Var ListOfOreoAll[IndexOfRateupOreoAll] = "12-99-03-0025"
|
||||
Var ListOfOreoCoffee[IndexOfRateupOreoCoffee] = "12-99-03-0025"
|
||||
Var IndexOfRateupOreoAll = IndexOfRateupOreoAll + 1
|
||||
Var IndexOfRateupOreoCoffee = IndexOfRateupOreoCoffee + 1
|
||||
EndIf
|
||||
|
||||
; Strawberry milk oreo volcano
|
||||
If $12-99-03-0026.Button = "Enable" Then
|
||||
Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0026"
|
||||
Var ListOfMilk[IndexOfMilk] = "12-99-03-0026"
|
||||
Var IndexOfAllRandom = IndexOfAllRandom + 1
|
||||
Var IndexOfMilk = IndexOfMilk + 1
|
||||
|
||||
Var ListOfOreoAll[IndexOfRateupOreoAll] = "12-99-03-0026"
|
||||
Var ListOfOreoMilk[IndexOfRateupOreoMilk] = "12-99-03-0026"
|
||||
Var IndexOfRateupOreoAll = IndexOfRateupOreoAll + 1
|
||||
Var IndexOfRateupOreoMilk = IndexOfRateupOreoMilk + 1
|
||||
EndIf
|
||||
|
||||
; Melon milk oreo volcano
|
||||
If $12-99-03-0027.Button = "Enable" Then
|
||||
Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0027"
|
||||
Var ListOfMilk[IndexOfMilk] = "12-99-03-0027"
|
||||
Var IndexOfAllRandom = IndexOfAllRandom + 1
|
||||
Var IndexOfMilk = IndexOfMilk + 1
|
||||
|
||||
Var ListOfOreoAll[IndexOfRateupOreoAll] = "12-99-03-0027"
|
||||
Var ListOfOreoMilk[IndexOfRateupOreoMilk] = "12-99-03-0027"
|
||||
Var IndexOfRateupOreoAll = IndexOfRateupOreoAll + 1
|
||||
Var IndexOfRateupOreoMilk = IndexOfRateupOreoMilk + 1
|
||||
EndIf
|
||||
|
||||
; Bana^2 milk oreo volcano
|
||||
If $12-99-03-0028.Button = "Enable" Then
|
||||
Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0028"
|
||||
Var ListOfMilk[IndexOfMilk] = "12-99-03-0028"
|
||||
Var IndexOfAllRandom = IndexOfAllRandom + 1
|
||||
Var IndexOfMilk = IndexOfMilk + 1
|
||||
|
||||
Var ListOfOreoAll[IndexOfRateupOreoAll] = "12-99-03-0028"
|
||||
Var ListOfOreoMilk[IndexOfRateupOreoMilk] = "12-99-03-0028"
|
||||
Var IndexOfRateupOreoAll = IndexOfRateupOreoAll + 1
|
||||
Var IndexOfRateupOreoMilk = IndexOfRateupOreoMilk + 1
|
||||
EndIf
|
||||
|
||||
; Hojicha oreo volcano
|
||||
If $12-99-03-0028.Button = "Enable" Then
|
||||
Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0029"
|
||||
Var ListOfTea[IndexOfTea] = "12-99-03-0029"
|
||||
Var IndexOfAllRandom = IndexOfAllRandom + 1
|
||||
Var IndexOfTea = IndexOfTea + 1
|
||||
|
||||
Var ListOfOreoAll[IndexOfRateupOreoAll] = "12-99-03-0029"
|
||||
Var ListOfOreoTea[IndexOfRateupOreoTea] = "12-99-03-0029"
|
||||
Var IndexOfRateupOreoAll = IndexOfRateupOreoAll + 1
|
||||
Var IndexOfRateupOreoMilk = IndexOfRateupOreoMilk + 1
|
||||
EndIf
|
||||
|
||||
; Thai milk tea smoothie
|
||||
If $12-99-03-0030.Button = "Enable" Then
|
||||
Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0030"
|
||||
Var ListOfTea[IndexOfTea] = "12-99-03-0030"
|
||||
Var IndexOfAllRandom = IndexOfAllRandom + 1
|
||||
Var IndexOfTea = IndexOfTea + 1
|
||||
EndIf
|
||||
|
||||
; Melon milk smoothie
|
||||
If $12-99-03-0031.Button = "Enable" Then
|
||||
Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0031"
|
||||
Var ListOfMilk[IndexOfMilk] = "12-99-03-0031"
|
||||
Var IndexOfAllRandom = IndexOfAllRandom + 1
|
||||
Var IndexOfMilk = IndexOfMilk + 1
|
||||
EndIf
|
||||
|
||||
; Taiwanese tea smoothie
|
||||
If $12-99-03-0032.Button = "Enable" Then
|
||||
Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0032"
|
||||
Var ListOfTea[IndexOfTea] = "12-99-03-0032"
|
||||
Var IndexOfAllRandom = IndexOfAllRandom + 1
|
||||
Var IndexOfTea = IndexOfTea + 1
|
||||
EndIf
|
||||
|
||||
; THAI MILK TEA OREO SMOOTHIE
|
||||
If $12-99-03-0040.Button = "Enable" Then
|
||||
Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0040"
|
||||
Var ListOfTea[IndexOfTea] = "12-99-03-0040"
|
||||
Var IndexOfAllRandom = IndexOfAllRandom + 1
|
||||
Var IndexOfTea = IndexOfTea + 1
|
||||
|
||||
Var ListOfOreoAll[IndexOfRateupOreoAll] = "12-99-03-0040"
|
||||
Var ListOfOreoTea[IndexOfRateupOreoTea] = "12-99-03-0040"
|
||||
Var IndexOfRateupOreoAll = IndexOfRateupOreoAll + 1
|
||||
Var IndexOfRateupOreoTea = IndexOfRateupOreoTea + 1
|
||||
EndIf
|
||||
|
||||
; THAI MILK TEA SMOOTHIE
|
||||
If $12-99-03-0041.Button = "Enable" Then
|
||||
Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0041"
|
||||
Var ListOfTea[IndexOfTea] = "12-99-03-0041"
|
||||
Var IndexOfAllRandom = IndexOfAllRandom + 1
|
||||
Var IndexOfTea = IndexOfTea + 1
|
||||
EndIf
|
||||
|
||||
|
||||
; Tokyo bana^2 milk smoothie
|
||||
If $12-99-03-0033.Button = "Enable" Then
|
||||
Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0033"
|
||||
Var ListOfMilk[IndexOfMilk] = "12-99-03-0033"
|
||||
Var IndexOfAllRandom = IndexOfAllRandom + 1
|
||||
Var IndexOfMilk = IndexOfMilk + 1
|
||||
EndIf
|
||||
|
||||
; Hojicha smoothie
|
||||
If $12-99-03-0034.Button = "Enable" Then
|
||||
Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0034"
|
||||
Var ListOfTea[IndexOfTea] = "12-99-03-0034"
|
||||
Var IndexOfAllRandom = IndexOfAllRandom + 1
|
||||
Var IndexOfTea = IndexOfTea + 1
|
||||
EndIf
|
||||
|
||||
; Cocoa bana^2 smoothie
|
||||
If $12-99-03-0035.Button = "Enable" Then
|
||||
Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0035"
|
||||
Var ListOfMilk[IndexOfMilk] = "12-99-03-0035"
|
||||
Var IndexOfAllRandom = IndexOfAllRandom + 1
|
||||
Var IndexOfMilk = IndexOfMilk + 1
|
||||
EndIf
|
||||
|
||||
; Taiwanese tea cafe latte smoothie
|
||||
If $12-99-03-0036.Button = "Enable" Then
|
||||
Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0036"
|
||||
Var ListOfCoffee[IndexOfCoffee] = "12-99-03-0036"
|
||||
Var IndexOfAllRandom = IndexOfAllRandom + 1
|
||||
Var IndexOfCoffee = IndexOfCoffee + 1
|
||||
EndIf
|
||||
|
||||
; Melon cafe latte smoothie
|
||||
If $12-99-03-0037.Button = "Enable" Then
|
||||
Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0037"
|
||||
Var ListOfCoffee[IndexOfCoffee] = "12-99-03-0037"
|
||||
Var IndexOfAllRandom = IndexOfAllRandom + 1
|
||||
Var IndexOfCoffee = IndexOfCoffee + 1
|
||||
EndIf
|
||||
|
||||
; Taiwanese tea cafe latte smoothie v2
|
||||
If $12-99-03-0038.Button = "Enable" Then
|
||||
Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0038"
|
||||
Var ListOfCoffee[IndexOfCoffee] = "12-99-03-0038"
|
||||
Var IndexOfAllRandom = IndexOfAllRandom + 1
|
||||
Var IndexOfCoffee = IndexOfCoffee + 1
|
||||
EndIf
|
||||
|
||||
; Melon cafe latte smoothie v2
|
||||
If $12-99-03-0039.Button = "Enable" Then
|
||||
Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0039"
|
||||
Var ListOfCoffee[IndexOfCoffee] = "12-99-03-0039"
|
||||
Var IndexOfAllRandom = IndexOfAllRandom + 1
|
||||
Var IndexOfCoffee = IndexOfCoffee + 1
|
||||
EndIf
|
||||
|
||||
|
||||
DEBUGVAR IndexOfAllRandom
|
||||
DEBUGVAR IndexOfCoffee
|
||||
DEBUGVAR IndexOfMilk
|
||||
DEBUGVAR IndexOfTea
|
||||
|
||||
DEBUGVAR IndexOfRateupOreoAll
|
||||
DEBUGVAR IndexOfRateupOreoCoffee
|
||||
DEBUGVAR IndexOfRateupOreoMilk
|
||||
DEBUGVAR IndexOfRateupOreoTea
|
||||
|
||||
If IndexOfAllRandom = 0 Then
|
||||
Var SubRandAllButtonEnable = "Disable"
|
||||
EndIf
|
||||
|
||||
If IndexOfCoffee = 0 Then
|
||||
Var SubRandCoffButtonEnable = "Disable"
|
||||
EndIf
|
||||
If IndexOfMilk = 0 Then
|
||||
Var SubRandMilkButtonEnable = "Disable"
|
||||
EndIf
|
||||
If IndexOfTea = 0 Then
|
||||
Var SubRandTeaButtonEnable = "Disable"
|
||||
EndIf
|
||||
|
||||
|
||||
If IndexOfRateupOreoAll = 0 Then
|
||||
Var SubRandAllButtonEnable = "Disable"
|
||||
EndIf
|
||||
|
||||
If IndexOfRateupOreoCoffee = 0 Then
|
||||
Var SubRandCoffButtonEnable = "Disable"
|
||||
EndIf
|
||||
If IndexOfRateupOreoMilk = 0 Then
|
||||
Var SubRandMilkButtonEnable = "Disable"
|
||||
EndIf
|
||||
If IndexOfRateupOreoTea = 0 Then
|
||||
Var SubRandTeaButtonEnable = "Disable"
|
||||
EndIf
|
||||
|
||||
|
||||
|
||||
|
||||
Var ResultRandomIndex = 0
|
||||
|
||||
|
||||
Refresh
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,48 +0,0 @@
|
|||
|
||||
<Button>
|
||||
<X> 42 </X>
|
||||
<Y> 520 </Y>
|
||||
|
||||
<State> BigButtonEnable </State>
|
||||
<Filename>
|
||||
eval(
|
||||
If show_eng = "true" Then
|
||||
Var return = ###normal_eng
|
||||
Else
|
||||
Var return = ###normal_thai
|
||||
EndIf
|
||||
)
|
||||
</Filename>
|
||||
<FilenamePress>
|
||||
eval(
|
||||
If show_eng = "true" Then
|
||||
Var return = ###press_eng
|
||||
Else
|
||||
Var return = ###press_thai
|
||||
EndIf
|
||||
)
|
||||
</FilenamePress>
|
||||
<FilenameDisable>
|
||||
eval(
|
||||
If show_eng = "true" Then
|
||||
Var return = ###disable_eng
|
||||
Else
|
||||
Var return = ###disable_thai
|
||||
EndIf
|
||||
)
|
||||
</FilenameDisable>
|
||||
<EventOnClick>
|
||||
|
||||
###EventOnClick
|
||||
|
||||
</EventOnClick>
|
||||
</Button>
|
||||
|
||||
<EventUnitTest1>
|
||||
Var BigButtonEnable = "Enable"
|
||||
Refresh
|
||||
</EventUnitTest1>
|
||||
<EventUnitTest2>
|
||||
Var BigButtonEnable = "Invisible"
|
||||
Refresh
|
||||
</EventUnitTest2>
|
||||
|
|
@ -1,23 +0,0 @@
|
|||
|
||||
<Button>
|
||||
<X> 42 </X>
|
||||
<Y> 520 </Y>
|
||||
<State> BigButtonEnable </State>
|
||||
<Filename> ###normal_eng </Filename>
|
||||
<FilenamePress> ###press_eng </FilenamePress>
|
||||
<FilenameDisable> ###disable_eng </FilenameDisable>
|
||||
<EventOnClick>
|
||||
|
||||
###EventOnClick
|
||||
|
||||
</EventOnClick>
|
||||
</Button>
|
||||
|
||||
<EventUnitTest1>
|
||||
Var BigButtonEnable = "Enable"
|
||||
Refresh
|
||||
</EventUnitTest1>
|
||||
<EventUnitTest2>
|
||||
Var BigButtonEnable = "Invisible"
|
||||
Refresh
|
||||
</EventUnitTest2>
|
||||
|
|
@ -1,305 +0,0 @@
|
|||
;
|
||||
;
|
||||
;
|
||||
|
||||
; Sub-button for 4 random menu
|
||||
|
||||
;
|
||||
;
|
||||
;
|
||||
|
||||
<Button>
|
||||
<X> 43 </X>
|
||||
<Y> 519 </Y>
|
||||
<State> SubRandMilkButtonEnable </State>
|
||||
<Filename>
|
||||
eval(
|
||||
Var return = "ROOT/taobin_project/image/event/bn_random_milk.png"
|
||||
)
|
||||
</Filename>
|
||||
<FilenamePress>
|
||||
eval(
|
||||
Var return = "ROOT/taobin_project/image/event/bn_random_milk.png"
|
||||
)
|
||||
</FilenamePress>
|
||||
<FilenameDisable>
|
||||
eval(
|
||||
Var return = "ROOT/taobin_project/image/event/bd_random_milk.png"
|
||||
)
|
||||
</FilenameDisable>
|
||||
<EventClick>
|
||||
Var OreoGuarantee = OreoGuarantee + 1
|
||||
Var ResultRandomIndex = 0
|
||||
DEBUGVAR OreoGuarantee
|
||||
If OreoGuarantee > 4 Then
|
||||
Var IndexOfMilk = IndexOfMilk - 1
|
||||
Random2 0 IndexOfMilk ResultRandomIndex
|
||||
Var ProductCodeRandom = ListOfMilk[ResultRandomIndex]
|
||||
DEBUGVAR ListOfMilk[ResultRandomIndex]
|
||||
|
||||
Var OreoGuarantee = 0
|
||||
Else
|
||||
Var IndexOfRateupOreoMilk = IndexOfRateupOreoMilk - 1
|
||||
Random2 0 IndexOfRateupOreoMilk ResultRandomIndex
|
||||
Var ProductCodeRandom = ListOfOreoMilk[ResultRandomIndex]
|
||||
DEBUGVAR ListOfOreoMilk[ResultRandomIndex]
|
||||
EndIf
|
||||
|
||||
DEBUGVAR ResultRandomIndex
|
||||
|
||||
Topping "Load" ProductCodeRandom
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Open "ROOT/taobin_project/xml/page_topping_select_35.xml"
|
||||
</EventClick>
|
||||
</Button>
|
||||
<Text>
|
||||
<X> 91</X>
|
||||
<Y> 635 </Y>
|
||||
<Size> 32 </Size>
|
||||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<Font> MITRegularTTF </Font>
|
||||
<Color> 0x5A5A5A </Color>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> SubRandMilkButtonEnable </State>
|
||||
<Value> text_unavailable </Value>
|
||||
<Align> center-vertical-horizontal </Align>
|
||||
</Text>
|
||||
|
||||
<Button>
|
||||
<X> 301 </X>
|
||||
<Y> 519 </Y>
|
||||
<State> SubRandTeaButtonEnable </State>
|
||||
<Filename>
|
||||
eval(
|
||||
Var return = "ROOT/taobin_project/image/event/bn_random_tea.png"
|
||||
)
|
||||
</Filename>
|
||||
<FilenamePress>
|
||||
eval(
|
||||
Var return = "ROOT/taobin_project/image/event/bn_random_tea.png"
|
||||
)
|
||||
</FilenamePress>
|
||||
<FilenameDisable>
|
||||
eval(
|
||||
Var return = "ROOT/taobin_project/image/event/bd_random_tea.png"
|
||||
)
|
||||
</FilenameDisable>
|
||||
<EventClick>
|
||||
Var OreoGuarantee = OreoGuarantee + 1
|
||||
Var ResultRandomIndex = 0
|
||||
DEBUGVAR OreoGuarantee
|
||||
DEBUGVAR IndexOfTea
|
||||
DEBUGVAR IndexOfRateupOreoTea
|
||||
If OreoGuarantee > 4 Then
|
||||
|
||||
Var IndexOfTea = IndexOfTea - 1
|
||||
Random2 0 IndexOfTea ResultRandomIndex
|
||||
Var ProductCodeRandom = ListOfTea[ResultRandomIndex]
|
||||
DEBUGVAR ListOfTea[ResultRandomIndex]
|
||||
|
||||
Var OreoGuarantee = 0
|
||||
Else
|
||||
|
||||
Var IndexOfRateupOreoTea = IndexOfRateupOreoTea - 1
|
||||
Random2 0 IndexOfRateupOreoTea ResultRandomIndex
|
||||
Var ProductCodeRandom = ListOfOreoTea[ResultRandomIndex]
|
||||
DEBUGVAR ListOfOreoTea[ResultRandomIndex]
|
||||
|
||||
EndIf
|
||||
|
||||
DEBUGVAR ResultRandomIndex
|
||||
|
||||
Topping "Load" ProductCodeRandom
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Open "ROOT/taobin_project/xml/page_topping_select_35.xml"
|
||||
</EventClick>
|
||||
</Button>
|
||||
<Text>
|
||||
<X> 349 </X>
|
||||
<Y> 635 </Y>
|
||||
<Size> 32 </Size>
|
||||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<Font> MITRegularTTF </Font>
|
||||
<Color> 0x5A5A5A </Color>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> SubRandTeaButtonEnable </State>
|
||||
<Value> text_unavailable </Value>
|
||||
<Align> center-vertical-horizontal </Align>
|
||||
</Text>
|
||||
|
||||
|
||||
<Button>
|
||||
<X> 43 </X>
|
||||
<Y> 837 </Y>
|
||||
<State> SubRandCoffButtonEnable </State>
|
||||
<Filename>
|
||||
eval(
|
||||
Var return = "ROOT/taobin_project/image/event/bn_random_coffee.png"
|
||||
)
|
||||
</Filename>
|
||||
<FilenamePress>
|
||||
eval(
|
||||
Var return = "ROOT/taobin_project/image/event/bn_random_coffee.png"
|
||||
)
|
||||
</FilenamePress>
|
||||
<FilenameDisable>
|
||||
eval(
|
||||
Var return = "ROOT/taobin_project/image/event/bd_random_coffee.png"
|
||||
)
|
||||
</FilenameDisable>
|
||||
<EventClick>
|
||||
Var OreoGuarantee = OreoGuarantee + 1
|
||||
Var ResultRandomIndex = 0
|
||||
DEBUGVAR OreoGuarantee
|
||||
DEBUGVAR IndexOfCoffee
|
||||
DEBUGVAR IndexOfRateupOreoCoffee
|
||||
If OreoGuarantee > 4 Then
|
||||
|
||||
Var IndexOfCoffee = IndexOfCoffee - 1
|
||||
Random2 0 IndexOfCoffee ResultRandomIndex
|
||||
Var ProductCodeRandom = ListOfCoffee[ResultRandomIndex]
|
||||
DEBUGVAR ListOfCoffee[ResultRandomIndex]
|
||||
|
||||
Var OreoGuarantee = 0
|
||||
|
||||
Else
|
||||
|
||||
Var IndexOfRateupOreoCoffee = IndexOfRateupOreoCoffee - 1
|
||||
Random2 0 IndexOfRateupOreoCoffee ResultRandomIndex
|
||||
Var ProductCodeRandom = ListOfOreoCoffee[ResultRandomIndex]
|
||||
DEBUGVAR ListOfOreoCoffee[ResultRandomIndex]
|
||||
|
||||
EndIf
|
||||
DEBUGVAR ResultRandomIndex
|
||||
|
||||
Topping "Load" ProductCodeRandom
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Open "ROOT/taobin_project/xml/page_topping_select_35.xml"
|
||||
</EventClick>
|
||||
</Button>
|
||||
<Text>
|
||||
<X> 91</X>
|
||||
<Y> 953 </Y>
|
||||
<Size> 32 </Size>
|
||||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<Font> MITRegularTTF </Font>
|
||||
<Color> 0x5A5A5A </Color>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> SubRandCoffButtonEnable </State>
|
||||
<Value> text_unavailable </Value>
|
||||
<Align> center-vertical-horizontal </Align>
|
||||
</Text>
|
||||
|
||||
<Button>
|
||||
<X> 301 </X>
|
||||
<Y> 837 </Y>
|
||||
<State> SubRandAllButtonEnable </State>
|
||||
<Filename>
|
||||
eval(
|
||||
Var return = "ROOT/taobin_project/image/event/bn_random_all.png"
|
||||
)
|
||||
</Filename>
|
||||
<FilenamePress>
|
||||
eval(
|
||||
Var return = "ROOT/taobin_project/image/event/bn_random_all.png"
|
||||
)
|
||||
</FilenamePress>
|
||||
<FilenameDisable>
|
||||
eval(
|
||||
Var return = "ROOT/taobin_project/image/event/bd_random_all.png"
|
||||
)
|
||||
</FilenameDisable>
|
||||
<EventClick>
|
||||
Var OreoGuarantee = OreoGuarantee + 1
|
||||
Var ResultRandomIndex = 0
|
||||
DEBUGVAR OreoGuarantee
|
||||
If OreoGuarantee > 4 Then
|
||||
Var IndexOfAllRandom = IndexOfAllRandom - 1
|
||||
Random2 0 IndexOfAllRandom ResultRandomIndex
|
||||
Var ProductCodeRandom = ListOfAllRandom[ResultRandomIndex]
|
||||
DEBUGVAR ListOfAllRandom[ResultRandomIndex]
|
||||
Var OreoGuarantee = 0
|
||||
Else
|
||||
Var IndexOfRateupOreoAll = IndexOfRateupOreoAll - 1
|
||||
Random2 0 IndexOfRateupOreoAll ResultRandomIndex
|
||||
Var ProductCodeRandom = ListOfOreoAll[ResultRandomIndex]
|
||||
DEBUGVAR ListOfOreoAll[ResultRandomIndex]
|
||||
|
||||
EndIf
|
||||
DEBUGVAR ResultRandomIndex
|
||||
|
||||
Topping "Load" ProductCodeRandom
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Open "ROOT/taobin_project/xml/page_topping_select_35.xml"
|
||||
</EventClick>
|
||||
</Button>
|
||||
<Text>
|
||||
<X> 349</X>
|
||||
<Y> 953 </Y>
|
||||
<Size> 32 </Size>
|
||||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<Font> MITRegularTTF </Font>
|
||||
<Color> 0x5A5A5A </Color>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> SubRandAllButtonEnable </State>
|
||||
<Value> text_unavailable </Value>
|
||||
<Align> center-vertical-horizontal </Align>
|
||||
</Text>
|
||||
|
||||
;
|
||||
;
|
||||
;
|
||||
;
|
||||
; Big button for mys event
|
||||
;
|
||||
;
|
||||
;
|
||||
|
||||
<Button>
|
||||
<X> 42 </X>
|
||||
<Y> 518 </Y>
|
||||
<State> BigButtonEnable </State>
|
||||
<Filename>
|
||||
eval(
|
||||
If show_eng = "true" Then
|
||||
Var return = "ROOT/taobin_project/image/event/pro_mystery_cup_en.png"
|
||||
Else
|
||||
Var return = "ROOT/taobin_project/image/event/pro_mystery_cup_th.png"
|
||||
EndIf
|
||||
)
|
||||
</Filename>
|
||||
<FilenamePress>
|
||||
eval(
|
||||
If show_eng = "true" Then
|
||||
Var return = "ROOT/taobin_project/image/event/pro_mystery_cup_en.png"
|
||||
Else
|
||||
Var return = "ROOT/taobin_project/image/event/pro_mystery_cup_th.png"
|
||||
EndIf
|
||||
)
|
||||
</FilenamePress>
|
||||
<FilenameDisable>
|
||||
eval(
|
||||
If show_eng = "true" Then
|
||||
Var return = "ROOT/taobin_project/image/event/pro_mystery_cup_en.png"
|
||||
Else
|
||||
Var return = "ROOT/taobin_project/image/event/pro_mystery_cup_th.png"
|
||||
EndIf
|
||||
)
|
||||
</FilenameDisable>
|
||||
<EventOnClick>
|
||||
###EventOnClick
|
||||
</EventOnClick>
|
||||
</Button>
|
||||
|
||||
<EventUnitTest1>
|
||||
Var BigButtonEnable = "Enable"
|
||||
Refresh
|
||||
</EventUnitTest1>
|
||||
<EventUnitTest2>
|
||||
Var BigButtonEnable = "Invisible"
|
||||
Refresh
|
||||
</EventUnitTest2>
|
||||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -1,42 +0,0 @@
|
|||
; thailand
|
||||
|
||||
|
||||
; zone promote
|
||||
Var BigButtonEnable = "Enable"
|
||||
|
||||
Var RecommendPage = "ROOT/taobin_project/inter/tha/xml/page_catalog_group_recommend.lxml"
|
||||
Var RecommendPageMulti = "ROOT/taobin_project/inter/tha/xml/multi/page_catalog_group_recommend.lxml"
|
||||
|
||||
If WinterWarmersCatalogFlag = 1 Then
|
||||
Var RecommendPage = "ROOT/taobin_project/inter/tha/xml/event/promotion_winter_warmers.lxml"
|
||||
EndIf
|
||||
|
||||
If WestfieldCatalogFlag = 1 Then
|
||||
Var RecommendPage = "ROOT/taobin_project/inter/tha/xml/event/promotion_westfield.lxml"
|
||||
EndIf
|
||||
|
||||
If AnniverseryPro = 1 Then
|
||||
Var RecommendPage = "ROOT/taobin_project/inter/tha/xml/event/promotion_anniversary_1st.lxml"
|
||||
EndIf
|
||||
|
||||
If OpenFromPageBoard = 1 Then
|
||||
If EnableMultiInstance = "true" Then
|
||||
OpenInst 2 RecommendPageMulti
|
||||
OpenInst 3 "ROOT/taobin_project/xml/topview2.xml"
|
||||
Else
|
||||
OpenInst 2 RecommendPage
|
||||
EndIf
|
||||
Else
|
||||
If EnableMultiInstance = "true" Then
|
||||
Open RecommendPageMulti
|
||||
Else
|
||||
Open RecommendPage
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
Var OpenFromPageBoard = 0
|
||||
|
||||
If OpenFromMulti = 1 Then
|
||||
TabMenuVisibleInst 99
|
||||
EndIf
|
||||
Var OpenFromMulti = 0
|
||||
|
|
@ -1,37 +0,0 @@
|
|||
; thailand
|
||||
|
||||
|
||||
;DEBUGVAR SystemDateMonthInt
|
||||
;DEBUGVAR SystemDateDayInt
|
||||
|
||||
; Reset flag away.
|
||||
|
||||
; Enable app game
|
||||
Var GameEnableFromTrickerEv = 1
|
||||
|
||||
Var NewCollectPointFlag = 1
|
||||
|
||||
Var WinterWarmersCatalogFlag = 0
|
||||
|
||||
Var WestfieldCatalogFlag = 0
|
||||
|
||||
; 2 - 29 Sep
|
||||
Var AnniverseryPro = 0
|
||||
|
||||
If SystemDateMonthInt = 10 Then
|
||||
If SystemDateDayInt >= 2 Then
|
||||
If SystemDateDayInt <= 29 then
|
||||
Var AnniverseryPro = 1
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
Var XMLLiveInfoEnable = 1
|
||||
|
||||
If BoxID = 200027 Then
|
||||
Var AnniverseryPro = 1
|
||||
EndIf
|
||||
|
||||
|
||||
DEBUGVAR Propepsi99Enable
|
||||
DEBUGVAR DisplayFormatFull
|
||||
|
|
@ -21,35 +21,6 @@
|
|||
EndIf
|
||||
|
||||
|
||||
|
||||
If show_eng = "true" Then
|
||||
If SaveStringInst = "ShowThai" Then
|
||||
Var show_eng = "false"
|
||||
InstanceSetString "ShowEng"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
If show_eng = "false" Then
|
||||
If SaveStringInst = "ShowMYANMAR" Then
|
||||
Var show_eng = ""
|
||||
InstanceGetString "ShowMYANMAR"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
If show_eng = "" Then
|
||||
If SaveStringInst "ShowEng" Then
|
||||
Var show_eng = "true"
|
||||
InstanceGetString "ShowThai"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
|
||||
</EventOnShow>
|
||||
|
||||
<EventLanguageOnChange>
|
||||
|
|
|
|||
|
|
@ -519,10 +519,12 @@
|
|||
out_xml( '\t<Width>128</Width>\r\n')
|
||||
out_xml( '\t<Height>64</Height>\r\n')
|
||||
out_xml( '\t<MaxLine> 1 </MaxLine>\r\n')
|
||||
out_xml( '\t<MaxSize> 18 </MaxSize>\r\n')
|
||||
out_xml( '\t<MaxSize> 14 </MaxSize>\r\n')
|
||||
out_xml( '\t<Font> OpunMediumTTF </Font>\r\n')
|
||||
out_xml( '\t<Color> 0x6F5F51 </Color>\r\n')
|
||||
|
||||
|
||||
out_xml( '\t<Refresh> "auto,value" </Refresh>\r\n')
|
||||
|
||||
out_xml( '\t<WidthText> 128 </WidthText>\r\n')
|
||||
out_xml( '\t<Mode> "disable-show" </Mode>\r\n')
|
||||
out_xml( '\t<State> $Sum' + str_con_var +' </State> \r\n')
|
||||
|
|
@ -553,10 +555,17 @@
|
|||
out_xml( '\t\t\tVar $Sum' + str_con_var +'TextID !assigned GETS($Sum' + str_con_var +'Tag,"TextID")\r\n')
|
||||
|
||||
#out_xml( '\t\tDEBUGVAR TextMessageID\r\n')
|
||||
|
||||
out_xml( '\t\t\tIf $Sum' + str_con_var +'TextID != "" Then\r\n')
|
||||
out_xml( '\t\t\t Var $Sum' + str_con_var +'TextValue = ""\r\n')
|
||||
out_xml( '\t\t\tEndIf\r\n')
|
||||
|
||||
out_xml( '\t\t\tIf $Sum' + str_con_var +'TextValue = "" Then\r\n')
|
||||
out_xml( '\t\t\t\tIf $Sum' + str_con_var +'TextID = "" Then\r\n')
|
||||
out_xml( '\t\t\t\t Var $Sum' + str_con_var +'TextID = "000013"\r\n')
|
||||
out_xml( '\t\t\t\tEndIf\r\n')
|
||||
out_xml( '\t\t\tEndIf\r\n')
|
||||
|
||||
out_xml( '\t\tEndIf\r\n')
|
||||
|
||||
out_xml( '\t</Script>\r\n')
|
||||
|
|
|
|||
|
|
@ -18,6 +18,20 @@
|
|||
|
||||
DEBUGVAR ToppingNewShow
|
||||
|
||||
DEBUGVAR OpenFromPageBoard
|
||||
If OpenFromPageBoard = 1 Then
|
||||
Var OpenFromPageBoard = 0
|
||||
Var langnext1 = "true"
|
||||
Var langnext2 = "true"
|
||||
Var langnext3 = "true"
|
||||
Var langnext4 = "true"
|
||||
Var langnext5 = "true"
|
||||
Var langnext6 = "true"
|
||||
Var langnext7 = "true"
|
||||
Var langnext8 = "true"
|
||||
SAVELOG "======================================= RefreshAll Languages ================================"
|
||||
EndIf
|
||||
|
||||
Var NextPage = "-"
|
||||
|
||||
Var Seeker.thankLidFlag = 0
|
||||
|
|
@ -533,7 +547,9 @@
|
|||
<EventClick>
|
||||
|
||||
Var OpenFromMulti = 1
|
||||
|
||||
TRY "/mnt/sdcard/coffeevending/taobin_project/inter/tha/xml/event/script_common_for_open_promotion_xml.ev"
|
||||
|
||||
RootLayoutVisible 3 "hide"
|
||||
RootLayoutVisible 13 "hide"
|
||||
|
||||
|
|
@ -561,6 +577,7 @@
|
|||
<EventClick>
|
||||
|
||||
If Inst5MenuLoaded = "done" Then
|
||||
Var MultiProcess = "Invisible"
|
||||
TabMenuVisibleInst 2
|
||||
|
||||
OpenInst 2 "/mnt/sdcard/coffeevending/taobin_project/inter/tha/xml/multi/page_instance2.xml"
|
||||
|
|
@ -631,6 +648,7 @@
|
|||
<EventClick>
|
||||
|
||||
If Inst6MenuLoaded = "done" Then
|
||||
Var MultiProcess = "Invisible"
|
||||
TabMenuVisibleInst 3
|
||||
|
||||
OpenInst 2 "/mnt/sdcard/coffeevending/taobin_project/inter/tha/xml/multi/page_instance2.xml"
|
||||
|
|
@ -664,6 +682,7 @@
|
|||
<EventClick>
|
||||
|
||||
If Inst7MenuLoaded = "done" Then
|
||||
Var MultiProcess = "Invisible"
|
||||
TabMenuVisibleInst 4
|
||||
|
||||
OpenInst 2 "/mnt/sdcard/coffeevending/taobin_project/inter/tha/xml/multi/page_instance2.xml"
|
||||
|
|
@ -697,6 +716,7 @@
|
|||
<EventClick>
|
||||
|
||||
If Inst11MenuLoaded = "done" Then
|
||||
Var MultiProcess = "Invisible"
|
||||
TabMenuVisibleInst 7
|
||||
|
||||
OpenInst 2 "/mnt/sdcard/coffeevending/taobin_project/inter/tha/xml/multi/page_instance2.xml"
|
||||
|
|
@ -730,6 +750,7 @@
|
|||
<EventClick>
|
||||
|
||||
If Inst10MenuLoaded = "done" Then
|
||||
Var MultiProcess = "Invisible"
|
||||
TabMenuVisibleInst 8
|
||||
|
||||
OpenInst 2 "/mnt/sdcard/coffeevending/taobin_project/inter/tha/xml/multi/page_instance2.xml"
|
||||
|
|
@ -766,6 +787,7 @@
|
|||
<EventClick>
|
||||
|
||||
If Inst8MenuLoaded = "done" Then
|
||||
Var MultiProcess = "Invisible"
|
||||
TabMenuVisibleInst 5
|
||||
|
||||
OpenInst 2 "/mnt/sdcard/coffeevending/taobin_project/inter/tha/xml/multi/page_instance2.xml"
|
||||
|
|
@ -798,6 +820,7 @@
|
|||
<Volume> SoundVolume </Volume>
|
||||
<EventClick>
|
||||
If Inst8MenuLoaded = "done" Then
|
||||
Var MultiProcess = "Invisible"
|
||||
TabMenuVisibleInst 5
|
||||
|
||||
OpenInst 2 "/mnt/sdcard/coffeevending/taobin_project/inter/tha/xml/multi/page_instance2.xml"
|
||||
|
|
@ -858,6 +881,7 @@
|
|||
<EventClick>
|
||||
|
||||
If Inst9MenuLoaded = "done" Then
|
||||
Var MultiProcess = "Invisible"
|
||||
TabMenuVisibleInst 6
|
||||
|
||||
OpenInst 2 "/mnt/sdcard/coffeevending/taobin_project/inter/tha/xml/multi/page_instance2.xml"
|
||||
|
|
|
|||
|
|
@ -451,9 +451,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204021018 </State>
|
||||
|
|
@ -476,6 +477,11 @@
|
|||
If $Sum1204021018TextID != "" Then
|
||||
Var $Sum1204021018TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204021018TextValue = "" Then
|
||||
If $Sum1204021018TextID = "" Then
|
||||
Var $Sum1204021018TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -800,9 +806,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204021019 </State>
|
||||
|
|
@ -825,6 +832,11 @@
|
|||
If $Sum1204021019TextID != "" Then
|
||||
Var $Sum1204021019TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204021019TextValue = "" Then
|
||||
If $Sum1204021019TextID = "" Then
|
||||
Var $Sum1204021019TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1149,9 +1161,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204021020 </State>
|
||||
|
|
@ -1174,6 +1187,11 @@
|
|||
If $Sum1204021020TextID != "" Then
|
||||
Var $Sum1204021020TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204021020TextValue = "" Then
|
||||
If $Sum1204021020TextID = "" Then
|
||||
Var $Sum1204021020TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1498,9 +1516,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204021021 </State>
|
||||
|
|
@ -1523,6 +1542,11 @@
|
|||
If $Sum1204021021TextID != "" Then
|
||||
Var $Sum1204021021TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204021021TextValue = "" Then
|
||||
If $Sum1204021021TextID = "" Then
|
||||
Var $Sum1204021021TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1847,9 +1871,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204021022 </State>
|
||||
|
|
@ -1872,6 +1897,11 @@
|
|||
If $Sum1204021022TextID != "" Then
|
||||
Var $Sum1204021022TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204021022TextValue = "" Then
|
||||
If $Sum1204021022TextID = "" Then
|
||||
Var $Sum1204021022TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -17,20 +17,24 @@
|
|||
|
||||
EndIf
|
||||
|
||||
Var CoffeeRefreshTimeOut = 0
|
||||
|
||||
</EventOpen>
|
||||
|
||||
|
||||
|
||||
<EventOnShow>
|
||||
|
||||
SAVELOG "Onshow 1"
|
||||
;include="ROOT/taobin_project/inter/tha/xml/multi/menu_catalog_default_init.lxml"
|
||||
Var Menu2Selected = "PressForever"
|
||||
|
||||
|
||||
SAVELOG "Onshow 2"
|
||||
;include="ROOT/taobin_project/inter/tha/xml/multi/tab_menu_show_and_refresh.lxml"
|
||||
|
||||
Var Timeout = 0
|
||||
|
||||
|
||||
SAVELOG "Onshow 3"
|
||||
;include="ROOT/taobin_project/inter/tha/xml/multi/menu_catalog_new_menu.lxml"
|
||||
|
||||
SetInstanceIgnoreTouch
|
||||
|
|
@ -59,6 +63,7 @@
|
|||
InstanceGetString SaveStringInst
|
||||
;DEBUGVAR SaveStringInst
|
||||
If SaveStringInst = "RefreshNow" Then
|
||||
SAVELOG "OPEN slient Refresh"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
|
||||
|
|
@ -75,6 +80,7 @@
|
|||
|
||||
If SlientRefreshEnable = 1 Then
|
||||
If SaveStringInst = "RefreshNow" Then
|
||||
SAVELOG "OPEN slient 2"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
|
||||
|
|
@ -89,6 +95,7 @@
|
|||
|
||||
If SlientRefreshIndex = 2 Then
|
||||
If inst_show2 = 0 Then
|
||||
SAVELOG "OPEN slient 1"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile2
|
||||
Open CurrentOpenFile2
|
||||
|
||||
|
|
@ -103,6 +110,24 @@
|
|||
DEBUGVAR langnext
|
||||
RefreshAll
|
||||
EndIf
|
||||
|
||||
InstanceGetString SaveStringInst
|
||||
If SaveStringInst = "RefreshNow" Then
|
||||
|
||||
Else
|
||||
If LanguageShow = "ENG" Then
|
||||
Var SaveStringInst = "ShowEng"
|
||||
Var show_eng = "false"
|
||||
EndIf
|
||||
If LanguageShow = "THAI" Then
|
||||
Var SaveStringInst = "ShowThai"
|
||||
Var show_eng = "true"
|
||||
EndIf
|
||||
If LanguageShow "MYANMAR" Then
|
||||
Var show_eng = "false"
|
||||
Var SaveStringInst = "ShowMYANMAR"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
|
||||
|
|
@ -200,71 +225,18 @@
|
|||
SAVELOG "Runscript 3"
|
||||
Script "-" "-"
|
||||
EndIf
|
||||
|
||||
If CoffeeRefreshTimeOut > 15 Then
|
||||
Var CoffeeRefreshTimeOut = 0
|
||||
Script "-" "-"
|
||||
EndIf
|
||||
|
||||
Var CoffeeRefreshTimeOut = CoffeeRefreshTimeOut + 1
|
||||
|
||||
|
||||
TimerReset
|
||||
</EventTimeout>
|
||||
|
||||
<EventOnShow>
|
||||
InstanceGetString SaveStringInst
|
||||
DEBUGVAR SaveStringInst
|
||||
DEBUGVAR show_eng
|
||||
|
||||
|
||||
Var ButtonLanguageCurrentXPosition = 1005
|
||||
Var ButtonLanguageCurrentYPosition = 458 - 38
|
||||
|
||||
Var ButtonLanguageListXPosition = 970
|
||||
Var ButtonLanguageListYPosition = 450 - 38
|
||||
|
||||
DEBUGVAR EnabledBlockUpdateInst6
|
||||
DEBUGVAR EnabledBlocksDrawInst6
|
||||
|
||||
|
||||
If SaveStringInst = "RefreshNow" Then
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
DEBUGVAR LanguageShow
|
||||
|
||||
|
||||
If SaveStringInst = "ShowThai" Then
|
||||
If LanguageShow = "THAI" Then
|
||||
|
||||
Else
|
||||
Var show_eng = "true"
|
||||
InstanceSetString "ShowMYANMAR"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
If SaveStringInst = "ShowMYANMAR" Then
|
||||
If LanguageShow = "MYANMAR" Then
|
||||
|
||||
Else
|
||||
Var show_eng = "false"
|
||||
InstanceSetString "ShowEng"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
If SaveStringInst = "ShowEng" Then
|
||||
If LanguageShow = "ENG" Then
|
||||
|
||||
Else
|
||||
Var show_eng = "false"
|
||||
InstanceSetString "ShowThai"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
|
||||
|
||||
|
||||
</EventOnShow>
|
||||
|
||||
;include="ROOT/taobin_project/inter/tha/xml/multi/menu_catalog_new.lxml"
|
||||
|
||||
|
|
|
|||
|
|
@ -601,9 +601,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030094 </State>
|
||||
|
|
@ -626,6 +627,11 @@
|
|||
If $Sum1203030094TextID != "" Then
|
||||
Var $Sum1203030094TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030094TextValue = "" Then
|
||||
If $Sum1203030094TextID = "" Then
|
||||
Var $Sum1203030094TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -950,9 +956,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030095 </State>
|
||||
|
|
@ -975,6 +982,11 @@
|
|||
If $Sum1203030095TextID != "" Then
|
||||
Var $Sum1203030095TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030095TextValue = "" Then
|
||||
If $Sum1203030095TextID = "" Then
|
||||
Var $Sum1203030095TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1303,9 +1315,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120301000512030200051203030005 </State>
|
||||
|
|
@ -1328,6 +1341,11 @@
|
|||
If $Sum120301000512030200051203030005TextID != "" Then
|
||||
Var $Sum120301000512030200051203030005TextValue = ""
|
||||
EndIf
|
||||
If $Sum120301000512030200051203030005TextValue = "" Then
|
||||
If $Sum120301000512030200051203030005TextID = "" Then
|
||||
Var $Sum120301000512030200051203030005TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1656,9 +1674,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120301000112030200011203030001 </State>
|
||||
|
|
@ -1681,6 +1700,11 @@
|
|||
If $Sum120301000112030200011203030001TextID != "" Then
|
||||
Var $Sum120301000112030200011203030001TextValue = ""
|
||||
EndIf
|
||||
If $Sum120301000112030200011203030001TextValue = "" Then
|
||||
If $Sum120301000112030200011203030001TextID = "" Then
|
||||
Var $Sum120301000112030200011203030001TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2009,9 +2033,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120301000312030200031203030003 </State>
|
||||
|
|
@ -2034,6 +2059,11 @@
|
|||
If $Sum120301000312030200031203030003TextID != "" Then
|
||||
Var $Sum120301000312030200031203030003TextValue = ""
|
||||
EndIf
|
||||
If $Sum120301000312030200031203030003TextValue = "" Then
|
||||
If $Sum120301000312030200031203030003TextID = "" Then
|
||||
Var $Sum120301000312030200031203030003TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2358,9 +2388,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12030200061203030006 </State>
|
||||
|
|
@ -2383,6 +2414,11 @@
|
|||
If $Sum12030200061203030006TextID != "" Then
|
||||
Var $Sum12030200061203030006TextValue = ""
|
||||
EndIf
|
||||
If $Sum12030200061203030006TextValue = "" Then
|
||||
If $Sum12030200061203030006TextID = "" Then
|
||||
Var $Sum12030200061203030006TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2711,9 +2747,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120301000212030200021203030002 </State>
|
||||
|
|
@ -2736,6 +2773,11 @@
|
|||
If $Sum120301000212030200021203030002TextID != "" Then
|
||||
Var $Sum120301000212030200021203030002TextValue = ""
|
||||
EndIf
|
||||
If $Sum120301000212030200021203030002TextValue = "" Then
|
||||
If $Sum120301000212030200021203030002TextID = "" Then
|
||||
Var $Sum120301000212030200021203030002TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3064,9 +3106,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120301002212030200221203030022 </State>
|
||||
|
|
@ -3089,6 +3132,11 @@
|
|||
If $Sum120301002212030200221203030022TextID != "" Then
|
||||
Var $Sum120301002212030200221203030022TextValue = ""
|
||||
EndIf
|
||||
If $Sum120301002212030200221203030022TextValue = "" Then
|
||||
If $Sum120301002212030200221203030022TextID = "" Then
|
||||
Var $Sum120301002212030200221203030022TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3413,9 +3461,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030010 </State>
|
||||
|
|
@ -3438,6 +3487,11 @@
|
|||
If $Sum1203030010TextID != "" Then
|
||||
Var $Sum1203030010TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030010TextValue = "" Then
|
||||
If $Sum1203030010TextID = "" Then
|
||||
Var $Sum1203030010TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3762,9 +3816,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030020 </State>
|
||||
|
|
@ -3787,6 +3842,11 @@
|
|||
If $Sum1203030020TextID != "" Then
|
||||
Var $Sum1203030020TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030020TextValue = "" Then
|
||||
If $Sum1203030020TextID = "" Then
|
||||
Var $Sum1203030020TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4111,9 +4171,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030021 </State>
|
||||
|
|
@ -4136,6 +4197,11 @@
|
|||
If $Sum1203030021TextID != "" Then
|
||||
Var $Sum1203030021TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030021TextValue = "" Then
|
||||
If $Sum1203030021TextID = "" Then
|
||||
Var $Sum1203030021TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4460,9 +4526,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050200411205030041 </State>
|
||||
|
|
@ -4485,6 +4552,11 @@
|
|||
If $Sum12050200411205030041TextID != "" Then
|
||||
Var $Sum12050200411205030041TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050200411205030041TextValue = "" Then
|
||||
If $Sum12050200411205030041TextID = "" Then
|
||||
Var $Sum12050200411205030041TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4809,9 +4881,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050200081205030008 </State>
|
||||
|
|
@ -4834,6 +4907,11 @@
|
|||
If $Sum12050200081205030008TextID != "" Then
|
||||
Var $Sum12050200081205030008TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050200081205030008TextValue = "" Then
|
||||
If $Sum12050200081205030008TextID = "" Then
|
||||
Var $Sum12050200081205030008TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5158,9 +5236,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020044 </State>
|
||||
|
|
@ -5183,6 +5262,11 @@
|
|||
If $Sum1205020044TextID != "" Then
|
||||
Var $Sum1205020044TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020044TextValue = "" Then
|
||||
If $Sum1205020044TextID = "" Then
|
||||
Var $Sum1205020044TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5507,9 +5591,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020045 </State>
|
||||
|
|
@ -5532,6 +5617,11 @@
|
|||
If $Sum1205020045TextID != "" Then
|
||||
Var $Sum1205020045TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020045TextValue = "" Then
|
||||
If $Sum1205020045TextID = "" Then
|
||||
Var $Sum1205020045TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5856,9 +5946,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030009 </State>
|
||||
|
|
@ -5881,6 +5972,11 @@
|
|||
If $Sum1203030009TextID != "" Then
|
||||
Var $Sum1203030009TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030009TextValue = "" Then
|
||||
If $Sum1203030009TextID = "" Then
|
||||
Var $Sum1203030009TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6209,9 +6305,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120301002312030200231203030023 </State>
|
||||
|
|
@ -6234,6 +6331,11 @@
|
|||
If $Sum120301002312030200231203030023TextID != "" Then
|
||||
Var $Sum120301002312030200231203030023TextValue = ""
|
||||
EndIf
|
||||
If $Sum120301002312030200231203030023TextValue = "" Then
|
||||
If $Sum120301002312030200231203030023TextID = "" Then
|
||||
Var $Sum120301002312030200231203030023TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6562,9 +6664,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120301002412030200241203030024 </State>
|
||||
|
|
@ -6587,6 +6690,11 @@
|
|||
If $Sum120301002412030200241203030024TextID != "" Then
|
||||
Var $Sum120301002412030200241203030024TextValue = ""
|
||||
EndIf
|
||||
If $Sum120301002412030200241203030024TextValue = "" Then
|
||||
If $Sum120301002412030200241203030024TextID = "" Then
|
||||
Var $Sum120301002412030200241203030024TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6911,9 +7019,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030061 </State>
|
||||
|
|
@ -6936,6 +7045,11 @@
|
|||
If $Sum1203030061TextID != "" Then
|
||||
Var $Sum1203030061TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030061TextValue = "" Then
|
||||
If $Sum1203030061TextID = "" Then
|
||||
Var $Sum1203030061TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -13,6 +13,8 @@
|
|||
If SlientRefreshIndex = 6 Then
|
||||
Var SlientRefreshIndex = 7
|
||||
EndIf
|
||||
|
||||
Var HealthRefreshTimeOut = 0
|
||||
</EventOpen>
|
||||
|
||||
<EventOnShow>
|
||||
|
|
@ -179,71 +181,18 @@
|
|||
EndIf
|
||||
EndIf
|
||||
|
||||
If HealthRefreshTimeOut > 15 Then
|
||||
Var HealthRefreshTimeOut = 0
|
||||
Script "-" "-"
|
||||
EndIf
|
||||
|
||||
Var HealthRefreshTimeOut = HealthRefreshTimeOut + 1
|
||||
|
||||
|
||||
TimerReset
|
||||
</EventTimeout>
|
||||
|
||||
|
||||
<EventOnShow>
|
||||
InstanceGetString SaveStringInst
|
||||
DEBUGVAR SaveStringInst
|
||||
DEBUGVAR show_eng
|
||||
|
||||
Var ButtonLanguageCurrentXPosition = 1005
|
||||
Var ButtonLanguageCurrentYPosition = 458 - 38
|
||||
|
||||
Var ButtonLanguageListXPosition = 970
|
||||
Var ButtonLanguageListYPosition = 450 - 38
|
||||
|
||||
|
||||
If SaveStringInst = "RefreshNow" Then
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
|
||||
|
||||
|
||||
DEBUGVAR LanguageShow
|
||||
|
||||
|
||||
If SaveStringInst = "ShowThai" Then
|
||||
If LanguageShow = "THAI" Then
|
||||
|
||||
Else
|
||||
Var show_eng = "true"
|
||||
InstanceSetString "ShowMYANMAR"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
If SaveStringInst = "ShowMYANMAR" Then
|
||||
If LanguageShow = "MYANMAR" Then
|
||||
|
||||
Else
|
||||
Var show_eng = "false"
|
||||
InstanceSetString "ShowEng"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
If SaveStringInst = "ShowEng" Then
|
||||
If LanguageShow = "ENG" Then
|
||||
|
||||
Else
|
||||
Var show_eng = "false"
|
||||
InstanceSetString "ShowThai"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
|
||||
</EventOnShow>
|
||||
|
||||
|
||||
;include="ROOT/taobin_project/inter/tha/xml/multi/menu_catalog_new.lxml"
|
||||
|
||||
<FrameScroll>
|
||||
|
|
@ -577,9 +526,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12010110031201021001 </State>
|
||||
|
|
@ -602,6 +552,11 @@
|
|||
If $Sum12010110031201021001TextID != "" Then
|
||||
Var $Sum12010110031201021001TextValue = ""
|
||||
EndIf
|
||||
If $Sum12010110031201021001TextValue = "" Then
|
||||
If $Sum12010110031201021001TextID = "" Then
|
||||
Var $Sum12010110031201021001TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -930,9 +885,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12210110031221021001 </State>
|
||||
|
|
@ -955,6 +911,11 @@
|
|||
If $Sum12210110031221021001TextID != "" Then
|
||||
Var $Sum12210110031221021001TextValue = ""
|
||||
EndIf
|
||||
If $Sum12210110031221021001TextValue = "" Then
|
||||
If $Sum12210110031221021001TextID = "" Then
|
||||
Var $Sum12210110031221021001TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1283,9 +1244,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12010110041201021002 </State>
|
||||
|
|
@ -1308,6 +1270,11 @@
|
|||
If $Sum12010110041201021002TextID != "" Then
|
||||
Var $Sum12010110041201021002TextValue = ""
|
||||
EndIf
|
||||
If $Sum12010110041201021002TextValue = "" Then
|
||||
If $Sum12010110041201021002TextID = "" Then
|
||||
Var $Sum12010110041201021002TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1636,9 +1603,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12210110041221021002 </State>
|
||||
|
|
@ -1661,6 +1629,11 @@
|
|||
If $Sum12210110041221021002TextID != "" Then
|
||||
Var $Sum12210110041221021002TextValue = ""
|
||||
EndIf
|
||||
If $Sum12210110041221021002TextValue = "" Then
|
||||
If $Sum12210110041221021002TextID = "" Then
|
||||
Var $Sum12210110041221021002TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1989,9 +1962,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12010110061201021003 </State>
|
||||
|
|
@ -2014,6 +1988,11 @@
|
|||
If $Sum12010110061201021003TextID != "" Then
|
||||
Var $Sum12010110061201021003TextValue = ""
|
||||
EndIf
|
||||
If $Sum12010110061201021003TextValue = "" Then
|
||||
If $Sum12010110061201021003TextID = "" Then
|
||||
Var $Sum12010110061201021003TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2342,9 +2321,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12210110061221021003 </State>
|
||||
|
|
@ -2367,6 +2347,11 @@
|
|||
If $Sum12210110061221021003TextID != "" Then
|
||||
Var $Sum12210110061221021003TextValue = ""
|
||||
EndIf
|
||||
If $Sum12210110061221021003TextValue = "" Then
|
||||
If $Sum12210110061221021003TextID = "" Then
|
||||
Var $Sum12210110061221021003TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2695,9 +2680,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12010110991201021099 </State>
|
||||
|
|
@ -2720,6 +2706,11 @@
|
|||
If $Sum12010110991201021099TextID != "" Then
|
||||
Var $Sum12010110991201021099TextValue = ""
|
||||
EndIf
|
||||
If $Sum12010110991201021099TextValue = "" Then
|
||||
If $Sum12010110991201021099TextID = "" Then
|
||||
Var $Sum12010110991201021099TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3048,9 +3039,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12210110991221021099 </State>
|
||||
|
|
@ -3073,6 +3065,11 @@
|
|||
If $Sum12210110991221021099TextID != "" Then
|
||||
Var $Sum12210110991221021099TextValue = ""
|
||||
EndIf
|
||||
If $Sum12210110991221021099TextValue = "" Then
|
||||
If $Sum12210110991221021099TextID = "" Then
|
||||
Var $Sum12210110991221021099TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3401,9 +3398,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020110241202021024 </State>
|
||||
|
|
@ -3426,6 +3424,11 @@
|
|||
If $Sum12020110241202021024TextID != "" Then
|
||||
Var $Sum12020110241202021024TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020110241202021024TextValue = "" Then
|
||||
If $Sum12020110241202021024TextID = "" Then
|
||||
Var $Sum12020110241202021024TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3754,9 +3757,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020110251202021025 </State>
|
||||
|
|
@ -3779,6 +3783,11 @@
|
|||
If $Sum12020110251202021025TextID != "" Then
|
||||
Var $Sum12020110251202021025TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020110251202021025TextValue = "" Then
|
||||
If $Sum12020110251202021025TextID = "" Then
|
||||
Var $Sum12020110251202021025TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4107,9 +4116,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020110261202021026 </State>
|
||||
|
|
@ -4132,6 +4142,11 @@
|
|||
If $Sum12020110261202021026TextID != "" Then
|
||||
Var $Sum12020110261202021026TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020110261202021026TextValue = "" Then
|
||||
If $Sum12020110261202021026TextID = "" Then
|
||||
Var $Sum12020110261202021026TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4460,9 +4475,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020110271202021027 </State>
|
||||
|
|
@ -4485,6 +4501,11 @@
|
|||
If $Sum12020110271202021027TextID != "" Then
|
||||
Var $Sum12020110271202021027TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020110271202021027TextValue = "" Then
|
||||
If $Sum12020110271202021027TextID = "" Then
|
||||
Var $Sum12020110271202021027TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4813,9 +4834,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020110291202021029 </State>
|
||||
|
|
@ -4838,6 +4860,11 @@
|
|||
If $Sum12020110291202021029TextID != "" Then
|
||||
Var $Sum12020110291202021029TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020110291202021029TextValue = "" Then
|
||||
If $Sum12020110291202021029TextID = "" Then
|
||||
Var $Sum12020110291202021029TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5166,9 +5193,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020110301202021030 </State>
|
||||
|
|
@ -5191,6 +5219,11 @@
|
|||
If $Sum12020110301202021030TextID != "" Then
|
||||
Var $Sum12020110301202021030TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020110301202021030TextValue = "" Then
|
||||
If $Sum12020110301202021030TextID = "" Then
|
||||
Var $Sum12020110301202021030TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5519,9 +5552,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020110311202021031 </State>
|
||||
|
|
@ -5544,6 +5578,11 @@
|
|||
If $Sum12020110311202021031TextID != "" Then
|
||||
Var $Sum12020110311202021031TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020110311202021031TextValue = "" Then
|
||||
If $Sum12020110311202021031TextID = "" Then
|
||||
Var $Sum12020110311202021031TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5872,9 +5911,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020110321202021032 </State>
|
||||
|
|
@ -5897,6 +5937,11 @@
|
|||
If $Sum12020110321202021032TextID != "" Then
|
||||
Var $Sum12020110321202021032TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020110321202021032TextValue = "" Then
|
||||
If $Sum12020110321202021032TextID = "" Then
|
||||
Var $Sum12020110321202021032TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6225,9 +6270,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020110371202021037 </State>
|
||||
|
|
@ -6250,6 +6296,11 @@
|
|||
If $Sum12020110371202021037TextID != "" Then
|
||||
Var $Sum12020110371202021037TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020110371202021037TextValue = "" Then
|
||||
If $Sum12020110371202021037TextID = "" Then
|
||||
Var $Sum12020110371202021037TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6578,9 +6629,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12030110021203021002 </State>
|
||||
|
|
@ -6603,6 +6655,11 @@
|
|||
If $Sum12030110021203021002TextID != "" Then
|
||||
Var $Sum12030110021203021002TextValue = ""
|
||||
EndIf
|
||||
If $Sum12030110021203021002TextValue = "" Then
|
||||
If $Sum12030110021203021002TextID = "" Then
|
||||
Var $Sum12030110021203021002TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6931,9 +6988,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12030110051203021005 </State>
|
||||
|
|
@ -6956,6 +7014,11 @@
|
|||
If $Sum12030110051203021005TextID != "" Then
|
||||
Var $Sum12030110051203021005TextValue = ""
|
||||
EndIf
|
||||
If $Sum12030110051203021005TextValue = "" Then
|
||||
If $Sum12030110051203021005TextID = "" Then
|
||||
Var $Sum12030110051203021005TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7284,9 +7347,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050110011205021001 </State>
|
||||
|
|
@ -7309,6 +7373,11 @@
|
|||
If $Sum12050110011205021001TextID != "" Then
|
||||
Var $Sum12050110011205021001TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050110011205021001TextValue = "" Then
|
||||
If $Sum12050110011205021001TextID = "" Then
|
||||
Var $Sum12050110011205021001TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7633,9 +7702,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205021010 </State>
|
||||
|
|
@ -7658,6 +7728,11 @@
|
|||
If $Sum1205021010TextID != "" Then
|
||||
Var $Sum1205021010TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205021010TextValue = "" Then
|
||||
If $Sum1205021010TextID = "" Then
|
||||
Var $Sum1205021010TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7986,9 +8061,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020110381202021038 </State>
|
||||
|
|
@ -8011,6 +8087,11 @@
|
|||
If $Sum12020110381202021038TextID != "" Then
|
||||
Var $Sum12020110381202021038TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020110381202021038TextValue = "" Then
|
||||
If $Sum12020110381202021038TextID = "" Then
|
||||
Var $Sum12020110381202021038TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8339,9 +8420,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020110391202021039 </State>
|
||||
|
|
@ -8364,6 +8446,11 @@
|
|||
If $Sum12020110391202021039TextID != "" Then
|
||||
Var $Sum12020110391202021039TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020110391202021039TextValue = "" Then
|
||||
If $Sum12020110391202021039TextID = "" Then
|
||||
Var $Sum12020110391202021039TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8692,9 +8779,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020110401202021040 </State>
|
||||
|
|
@ -8717,6 +8805,11 @@
|
|||
If $Sum12020110401202021040TextID != "" Then
|
||||
Var $Sum12020110401202021040TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020110401202021040TextValue = "" Then
|
||||
If $Sum12020110401202021040TextID = "" Then
|
||||
Var $Sum12020110401202021040TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -9041,9 +9134,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12030200751203030075 </State>
|
||||
|
|
@ -9066,6 +9160,11 @@
|
|||
If $Sum12030200751203030075TextID != "" Then
|
||||
Var $Sum12030200751203030075TextValue = ""
|
||||
EndIf
|
||||
If $Sum12030200751203030075TextValue = "" Then
|
||||
If $Sum12030200751203030075TextID = "" Then
|
||||
Var $Sum12030200751203030075TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -9390,9 +9489,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050201241205030124 </State>
|
||||
|
|
@ -9415,6 +9515,11 @@
|
|||
If $Sum12050201241205030124TextID != "" Then
|
||||
Var $Sum12050201241205030124TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050201241205030124TextValue = "" Then
|
||||
If $Sum12050201241205030124TextID = "" Then
|
||||
Var $Sum12050201241205030124TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -9739,9 +9844,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020200681202030068 </State>
|
||||
|
|
@ -9764,6 +9870,11 @@
|
|||
If $Sum12020200681202030068TextID != "" Then
|
||||
Var $Sum12020200681202030068TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020200681202030068TextValue = "" Then
|
||||
If $Sum12020200681202030068TextID = "" Then
|
||||
Var $Sum12020200681202030068TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -10088,9 +10199,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020125 </State>
|
||||
|
|
@ -10113,6 +10225,11 @@
|
|||
If $Sum1205020125TextID != "" Then
|
||||
Var $Sum1205020125TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020125TextValue = "" Then
|
||||
If $Sum1205020125TextID = "" Then
|
||||
Var $Sum1205020125TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -10437,9 +10554,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020075 </State>
|
||||
|
|
@ -10462,6 +10580,11 @@
|
|||
If $Sum1201020075TextID != "" Then
|
||||
Var $Sum1201020075TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020075TextValue = "" Then
|
||||
If $Sum1201020075TextID = "" Then
|
||||
Var $Sum1201020075TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -10786,9 +10909,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1221020075 </State>
|
||||
|
|
@ -10811,6 +10935,11 @@
|
|||
If $Sum1221020075TextID != "" Then
|
||||
Var $Sum1221020075TextValue = ""
|
||||
EndIf
|
||||
If $Sum1221020075TextValue = "" Then
|
||||
If $Sum1221020075TextID = "" Then
|
||||
Var $Sum1221020075TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -11135,9 +11264,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12030200761203030076 </State>
|
||||
|
|
@ -11160,6 +11290,11 @@
|
|||
If $Sum12030200761203030076TextID != "" Then
|
||||
Var $Sum12030200761203030076TextValue = ""
|
||||
EndIf
|
||||
If $Sum12030200761203030076TextValue = "" Then
|
||||
If $Sum12030200761203030076TextID = "" Then
|
||||
Var $Sum12030200761203030076TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -11484,9 +11619,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020200691202030069 </State>
|
||||
|
|
@ -11509,6 +11645,11 @@
|
|||
If $Sum12020200691202030069TextID != "" Then
|
||||
Var $Sum12020200691202030069TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020200691202030069TextValue = "" Then
|
||||
If $Sum12020200691202030069TextID = "" Then
|
||||
Var $Sum12020200691202030069TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -11833,9 +11974,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050201261205030126 </State>
|
||||
|
|
@ -11858,6 +12000,11 @@
|
|||
If $Sum12050201261205030126TextID != "" Then
|
||||
Var $Sum12050201261205030126TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050201261205030126TextValue = "" Then
|
||||
If $Sum12050201261205030126TextID = "" Then
|
||||
Var $Sum12050201261205030126TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -12182,9 +12329,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050201271205030127 </State>
|
||||
|
|
@ -12207,6 +12355,11 @@
|
|||
If $Sum12050201271205030127TextID != "" Then
|
||||
Var $Sum12050201271205030127TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050201271205030127TextValue = "" Then
|
||||
If $Sum12050201271205030127TextID = "" Then
|
||||
Var $Sum12050201271205030127TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -12531,9 +12684,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020200701202030070 </State>
|
||||
|
|
@ -12556,6 +12710,11 @@
|
|||
If $Sum12020200701202030070TextID != "" Then
|
||||
Var $Sum12020200701202030070TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020200701202030070TextValue = "" Then
|
||||
If $Sum12020200701202030070TextID = "" Then
|
||||
Var $Sum12020200701202030070TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -16,6 +16,8 @@
|
|||
If SlientRefreshIndex = 6 Then
|
||||
Var SlientRefreshIndex = 7
|
||||
EndIf
|
||||
|
||||
Var HealthRefreshTimeOut = 0
|
||||
</EventOpen>
|
||||
|
||||
<EventOnShow>
|
||||
|
|
@ -182,71 +184,18 @@
|
|||
EndIf
|
||||
EndIf
|
||||
|
||||
If HealthRefreshTimeOut > 15 Then
|
||||
Var HealthRefreshTimeOut = 0
|
||||
Script "-" "-"
|
||||
EndIf
|
||||
|
||||
Var HealthRefreshTimeOut = HealthRefreshTimeOut + 1
|
||||
|
||||
|
||||
TimerReset
|
||||
</EventTimeout>
|
||||
|
||||
|
||||
<EventOnShow>
|
||||
InstanceGetString SaveStringInst
|
||||
DEBUGVAR SaveStringInst
|
||||
DEBUGVAR show_eng
|
||||
|
||||
Var ButtonLanguageCurrentXPosition = 1005
|
||||
Var ButtonLanguageCurrentYPosition = 458 - 38
|
||||
|
||||
Var ButtonLanguageListXPosition = 970
|
||||
Var ButtonLanguageListYPosition = 450 - 38
|
||||
|
||||
|
||||
If SaveStringInst = "RefreshNow" Then
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
|
||||
|
||||
|
||||
DEBUGVAR LanguageShow
|
||||
|
||||
|
||||
If SaveStringInst = "ShowThai" Then
|
||||
If LanguageShow = "THAI" Then
|
||||
|
||||
Else
|
||||
Var show_eng = "true"
|
||||
InstanceSetString "ShowMYANMAR"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
If SaveStringInst = "ShowMYANMAR" Then
|
||||
If LanguageShow = "MYANMAR" Then
|
||||
|
||||
Else
|
||||
Var show_eng = "false"
|
||||
InstanceSetString "ShowEng"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
If SaveStringInst = "ShowEng" Then
|
||||
If LanguageShow = "ENG" Then
|
||||
|
||||
Else
|
||||
Var show_eng = "false"
|
||||
InstanceSetString "ShowThai"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
|
||||
</EventOnShow>
|
||||
|
||||
|
||||
;include="ROOT/taobin_project/inter/tha/xml/multi/menu_catalog_new.lxml"
|
||||
|
||||
<?hurr
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -199,10 +199,6 @@
|
|||
?>
|
||||
|
||||
|
||||
<?hurr
|
||||
#include=./event/dummy_layout_promotion.py
|
||||
?>
|
||||
|
||||
<EventUnitTest4>
|
||||
RefreshAll
|
||||
</EventUnitTest4>
|
||||
|
|
|
|||
|
|
@ -404,9 +404,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030009 </State>
|
||||
|
|
@ -429,6 +430,11 @@
|
|||
If $Sum1203030009TextID != "" Then
|
||||
Var $Sum1203030009TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030009TextValue = "" Then
|
||||
If $Sum1203030009TextID = "" Then
|
||||
Var $Sum1203030009TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -753,9 +759,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030027 </State>
|
||||
|
|
@ -778,6 +785,11 @@
|
|||
If $Sum1203030027TextID != "" Then
|
||||
Var $Sum1203030027TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030027TextValue = "" Then
|
||||
If $Sum1203030027TextID = "" Then
|
||||
Var $Sum1203030027TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1102,9 +1114,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030028 </State>
|
||||
|
|
@ -1127,6 +1140,11 @@
|
|||
If $Sum1203030028TextID != "" Then
|
||||
Var $Sum1203030028TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030028TextValue = "" Then
|
||||
If $Sum1203030028TextID = "" Then
|
||||
Var $Sum1203030028TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1451,9 +1469,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030029 </State>
|
||||
|
|
@ -1476,6 +1495,11 @@
|
|||
If $Sum1203030029TextID != "" Then
|
||||
Var $Sum1203030029TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030029TextValue = "" Then
|
||||
If $Sum1203030029TextID = "" Then
|
||||
Var $Sum1203030029TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1800,9 +1824,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030030 </State>
|
||||
|
|
@ -1825,6 +1850,11 @@
|
|||
If $Sum1203030030TextID != "" Then
|
||||
Var $Sum1203030030TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030030TextValue = "" Then
|
||||
If $Sum1203030030TextID = "" Then
|
||||
Var $Sum1203030030TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2149,9 +2179,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030031 </State>
|
||||
|
|
@ -2174,6 +2205,11 @@
|
|||
If $Sum1203030031TextID != "" Then
|
||||
Var $Sum1203030031TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030031TextValue = "" Then
|
||||
If $Sum1203030031TextID = "" Then
|
||||
Var $Sum1203030031TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2498,9 +2534,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202030043 </State>
|
||||
|
|
@ -2523,6 +2560,11 @@
|
|||
If $Sum1202030043TextID != "" Then
|
||||
Var $Sum1202030043TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202030043TextValue = "" Then
|
||||
If $Sum1202030043TextID = "" Then
|
||||
Var $Sum1202030043TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2847,9 +2889,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202030044 </State>
|
||||
|
|
@ -2872,6 +2915,11 @@
|
|||
If $Sum1202030044TextID != "" Then
|
||||
Var $Sum1202030044TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202030044TextValue = "" Then
|
||||
If $Sum1202030044TextID = "" Then
|
||||
Var $Sum1202030044TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3196,9 +3244,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201030043 </State>
|
||||
|
|
@ -3221,6 +3270,11 @@
|
|||
If $Sum1201030043TextID != "" Then
|
||||
Var $Sum1201030043TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201030043TextValue = "" Then
|
||||
If $Sum1201030043TextID = "" Then
|
||||
Var $Sum1201030043TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3545,9 +3599,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030026 </State>
|
||||
|
|
@ -3570,6 +3625,11 @@
|
|||
If $Sum1203030026TextID != "" Then
|
||||
Var $Sum1203030026TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030026TextValue = "" Then
|
||||
If $Sum1203030026TextID = "" Then
|
||||
Var $Sum1203030026TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3894,9 +3954,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202030045 </State>
|
||||
|
|
@ -3919,6 +3980,11 @@
|
|||
If $Sum1202030045TextID != "" Then
|
||||
Var $Sum1202030045TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202030045TextValue = "" Then
|
||||
If $Sum1202030045TextID = "" Then
|
||||
Var $Sum1202030045TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4243,9 +4309,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030034 </State>
|
||||
|
|
@ -4268,6 +4335,11 @@
|
|||
If $Sum1203030034TextID != "" Then
|
||||
Var $Sum1203030034TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030034TextValue = "" Then
|
||||
If $Sum1203030034TextID = "" Then
|
||||
Var $Sum1203030034TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4592,9 +4664,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030040 </State>
|
||||
|
|
@ -4617,6 +4690,11 @@
|
|||
If $Sum1203030040TextID != "" Then
|
||||
Var $Sum1203030040TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030040TextValue = "" Then
|
||||
If $Sum1203030040TextID = "" Then
|
||||
Var $Sum1203030040TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4941,9 +5019,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -4966,6 +5045,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -181,66 +181,6 @@
|
|||
</EventTimeout>
|
||||
|
||||
|
||||
<EventOnShow>
|
||||
InstanceGetString SaveStringInst
|
||||
DEBUGVAR SaveStringInst
|
||||
DEBUGVAR show_eng
|
||||
|
||||
|
||||
Var ButtonLanguageCurrentXPosition = 1005
|
||||
Var ButtonLanguageCurrentYPosition = 458 - 38
|
||||
|
||||
Var ButtonLanguageListXPosition = 970
|
||||
Var ButtonLanguageListYPosition = 450 - 38
|
||||
|
||||
|
||||
|
||||
|
||||
If SaveStringInst = "RefreshNow" Then
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
|
||||
EndIf
|
||||
DEBUGVAR LanguageShow
|
||||
|
||||
|
||||
If SaveStringInst = "ShowThai" Then
|
||||
If LanguageShow = "THAI" Then
|
||||
|
||||
Else
|
||||
Var show_eng = "true"
|
||||
InstanceSetString "ShowMYANMAR"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
If SaveStringInst = "ShowMYANMAR" Then
|
||||
If LanguageShow = "MYANMAR" Then
|
||||
|
||||
Else
|
||||
Var show_eng = "false"
|
||||
InstanceSetString "ShowEng"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
If SaveStringInst = "ShowEng" Then
|
||||
If LanguageShow = "ENG" Then
|
||||
|
||||
Else
|
||||
Var show_eng = "false"
|
||||
InstanceSetString "ShowThai"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
|
||||
|
||||
|
||||
</EventOnShow>
|
||||
|
||||
;include="ROOT/taobin_project/inter/tha/xml/multi/menu_catalog_new.lxml"
|
||||
|
||||
|
|
|
|||
|
|
@ -98,8 +98,8 @@
|
|||
EndIf
|
||||
|
||||
If inst_show9 = 1 Then
|
||||
If langnext8 = "true" Then
|
||||
Var langnext8 = "false"
|
||||
If inst_show9 = "true" Then
|
||||
Var inst_show9 = "false"
|
||||
DEBUGVAR langnext
|
||||
RefreshAll
|
||||
EndIf
|
||||
|
|
@ -186,64 +186,6 @@
|
|||
TimerReset
|
||||
</EventTimeout>
|
||||
|
||||
<EventOnShow>
|
||||
InstanceGetString SaveStringInst
|
||||
DEBUGVAR SaveStringInst
|
||||
DEBUGVAR show_eng
|
||||
|
||||
|
||||
Var ButtonLanguageCurrentXPosition = 1005
|
||||
Var ButtonLanguageCurrentYPosition = 458 - 38
|
||||
|
||||
Var ButtonLanguageListXPosition = 970
|
||||
Var ButtonLanguageListYPosition = 450 - 38
|
||||
|
||||
|
||||
|
||||
If SaveStringInst = "RefreshNow" Then
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
DEBUGVAR LanguageShow
|
||||
|
||||
|
||||
If SaveStringInst = "ShowThai" Then
|
||||
If LanguageShow = "THAI" Then
|
||||
|
||||
Else
|
||||
Var show_eng = "true"
|
||||
InstanceSetString "ShowMYANMAR"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
If SaveStringInst = "ShowMYANMAR" Then
|
||||
If LanguageShow = "MYANMAR" Then
|
||||
|
||||
Else
|
||||
Var show_eng = "false"
|
||||
InstanceSetString "ShowEng"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
If SaveStringInst = "ShowEng" Then
|
||||
If LanguageShow = "ENG" Then
|
||||
|
||||
Else
|
||||
Var show_eng = "false"
|
||||
InstanceSetString "ShowThai"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
|
||||
|
||||
|
||||
</EventOnShow>
|
||||
|
||||
|
||||
;include="ROOT/taobin_project/inter/tha/xml/multi/menu_catalog_new.lxml"
|
||||
|
|
@ -578,9 +520,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020133 </State>
|
||||
|
|
@ -603,6 +546,11 @@
|
|||
If $Sum1205020133TextID != "" Then
|
||||
Var $Sum1205020133TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020133TextValue = "" Then
|
||||
If $Sum1205020133TextID = "" Then
|
||||
Var $Sum1205020133TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -927,9 +875,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050200071205030007 </State>
|
||||
|
|
@ -952,6 +901,11 @@
|
|||
If $Sum12050200071205030007TextID != "" Then
|
||||
Var $Sum12050200071205030007TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050200071205030007TextValue = "" Then
|
||||
If $Sum12050200071205030007TextID = "" Then
|
||||
Var $Sum12050200071205030007TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1276,9 +1230,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050200941205030094 </State>
|
||||
|
|
@ -1301,6 +1256,11 @@
|
|||
If $Sum12050200941205030094TextID != "" Then
|
||||
Var $Sum12050200941205030094TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050200941205030094TextValue = "" Then
|
||||
If $Sum12050200941205030094TextID = "" Then
|
||||
Var $Sum12050200941205030094TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1625,9 +1585,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020095 </State>
|
||||
|
|
@ -1650,6 +1611,11 @@
|
|||
If $Sum1205020095TextID != "" Then
|
||||
Var $Sum1205020095TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020095TextValue = "" Then
|
||||
If $Sum1205020095TextID = "" Then
|
||||
Var $Sum1205020095TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1974,9 +1940,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020096 </State>
|
||||
|
|
@ -1999,6 +1966,11 @@
|
|||
If $Sum1205020096TextID != "" Then
|
||||
Var $Sum1205020096TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020096TextValue = "" Then
|
||||
If $Sum1205020096TextID = "" Then
|
||||
Var $Sum1205020096TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2323,9 +2295,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020115 </State>
|
||||
|
|
@ -2348,6 +2321,11 @@
|
|||
If $Sum1205020115TextID != "" Then
|
||||
Var $Sum1205020115TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020115TextValue = "" Then
|
||||
If $Sum1205020115TextID = "" Then
|
||||
Var $Sum1205020115TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2672,9 +2650,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020100 </State>
|
||||
|
|
@ -2697,6 +2676,11 @@
|
|||
If $Sum1205020100TextID != "" Then
|
||||
Var $Sum1205020100TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020100TextValue = "" Then
|
||||
If $Sum1205020100TextID = "" Then
|
||||
Var $Sum1205020100TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3021,9 +3005,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050200461205030046 </State>
|
||||
|
|
@ -3046,6 +3031,11 @@
|
|||
If $Sum12050200461205030046TextID != "" Then
|
||||
Var $Sum12050200461205030046TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050200461205030046TextValue = "" Then
|
||||
If $Sum12050200461205030046TextID = "" Then
|
||||
Var $Sum12050200461205030046TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3370,9 +3360,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050201041205030104 </State>
|
||||
|
|
@ -3395,6 +3386,11 @@
|
|||
If $Sum12050201041205030104TextID != "" Then
|
||||
Var $Sum12050201041205030104TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050201041205030104TextValue = "" Then
|
||||
If $Sum12050201041205030104TextID = "" Then
|
||||
Var $Sum12050201041205030104TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3719,9 +3715,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050200741205030074 </State>
|
||||
|
|
@ -3744,6 +3741,11 @@
|
|||
If $Sum12050200741205030074TextID != "" Then
|
||||
Var $Sum12050200741205030074TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050200741205030074TextValue = "" Then
|
||||
If $Sum12050200741205030074TextID = "" Then
|
||||
Var $Sum12050200741205030074TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4068,9 +4070,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020097 </State>
|
||||
|
|
@ -4093,6 +4096,11 @@
|
|||
If $Sum1205020097TextID != "" Then
|
||||
Var $Sum1205020097TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020097TextValue = "" Then
|
||||
If $Sum1205020097TextID = "" Then
|
||||
Var $Sum1205020097TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4417,9 +4425,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020101 </State>
|
||||
|
|
@ -4442,6 +4451,11 @@
|
|||
If $Sum1205020101TextID != "" Then
|
||||
Var $Sum1205020101TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020101TextValue = "" Then
|
||||
If $Sum1205020101TextID = "" Then
|
||||
Var $Sum1205020101TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4766,9 +4780,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050200471205030047 </State>
|
||||
|
|
@ -4791,6 +4806,11 @@
|
|||
If $Sum12050200471205030047TextID != "" Then
|
||||
Var $Sum12050200471205030047TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050200471205030047TextValue = "" Then
|
||||
If $Sum12050200471205030047TextID = "" Then
|
||||
Var $Sum12050200471205030047TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5115,9 +5135,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050201051205030105 </State>
|
||||
|
|
@ -5140,6 +5161,11 @@
|
|||
If $Sum12050201051205030105TextID != "" Then
|
||||
Var $Sum12050201051205030105TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050201051205030105TextValue = "" Then
|
||||
If $Sum12050201051205030105TextID = "" Then
|
||||
Var $Sum12050201051205030105TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5464,9 +5490,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050200751205030075 </State>
|
||||
|
|
@ -5489,6 +5516,11 @@
|
|||
If $Sum12050200751205030075TextID != "" Then
|
||||
Var $Sum12050200751205030075TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050200751205030075TextValue = "" Then
|
||||
If $Sum12050200751205030075TextID = "" Then
|
||||
Var $Sum12050200751205030075TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5813,9 +5845,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020053 </State>
|
||||
|
|
@ -5838,6 +5871,11 @@
|
|||
If $Sum1205020053TextID != "" Then
|
||||
Var $Sum1205020053TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020053TextValue = "" Then
|
||||
If $Sum1205020053TextID = "" Then
|
||||
Var $Sum1205020053TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6162,9 +6200,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020106 </State>
|
||||
|
|
@ -6187,6 +6226,11 @@
|
|||
If $Sum1205020106TextID != "" Then
|
||||
Var $Sum1205020106TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020106TextValue = "" Then
|
||||
If $Sum1205020106TextID = "" Then
|
||||
Var $Sum1205020106TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6511,9 +6555,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020076 </State>
|
||||
|
|
@ -6536,6 +6581,11 @@
|
|||
If $Sum1205020076TextID != "" Then
|
||||
Var $Sum1205020076TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020076TextValue = "" Then
|
||||
If $Sum1205020076TextID = "" Then
|
||||
Var $Sum1205020076TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6860,9 +6910,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020102 </State>
|
||||
|
|
@ -6885,6 +6936,11 @@
|
|||
If $Sum1205020102TextID != "" Then
|
||||
Var $Sum1205020102TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020102TextValue = "" Then
|
||||
If $Sum1205020102TextID = "" Then
|
||||
Var $Sum1205020102TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7209,9 +7265,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020054 </State>
|
||||
|
|
@ -7234,6 +7291,11 @@
|
|||
If $Sum1205020054TextID != "" Then
|
||||
Var $Sum1205020054TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020054TextValue = "" Then
|
||||
If $Sum1205020054TextID = "" Then
|
||||
Var $Sum1205020054TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7558,9 +7620,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020107 </State>
|
||||
|
|
@ -7583,6 +7646,11 @@
|
|||
If $Sum1205020107TextID != "" Then
|
||||
Var $Sum1205020107TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020107TextValue = "" Then
|
||||
If $Sum1205020107TextID = "" Then
|
||||
Var $Sum1205020107TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7907,9 +7975,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020077 </State>
|
||||
|
|
@ -7932,6 +8001,11 @@
|
|||
If $Sum1205020077TextID != "" Then
|
||||
Var $Sum1205020077TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020077TextValue = "" Then
|
||||
If $Sum1205020077TextID = "" Then
|
||||
Var $Sum1205020077TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8256,9 +8330,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020116 </State>
|
||||
|
|
@ -8281,6 +8356,11 @@
|
|||
If $Sum1205020116TextID != "" Then
|
||||
Var $Sum1205020116TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020116TextValue = "" Then
|
||||
If $Sum1205020116TextID = "" Then
|
||||
Var $Sum1205020116TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8605,9 +8685,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020067 </State>
|
||||
|
|
@ -8630,6 +8711,11 @@
|
|||
If $Sum1205020067TextID != "" Then
|
||||
Var $Sum1205020067TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020067TextValue = "" Then
|
||||
If $Sum1205020067TextID = "" Then
|
||||
Var $Sum1205020067TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8954,9 +9040,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020108 </State>
|
||||
|
|
@ -8979,6 +9066,11 @@
|
|||
If $Sum1205020108TextID != "" Then
|
||||
Var $Sum1205020108TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020108TextValue = "" Then
|
||||
If $Sum1205020108TextID = "" Then
|
||||
Var $Sum1205020108TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -9303,9 +9395,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020072 </State>
|
||||
|
|
@ -9328,6 +9421,11 @@
|
|||
If $Sum1205020072TextID != "" Then
|
||||
Var $Sum1205020072TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020072TextValue = "" Then
|
||||
If $Sum1205020072TextID = "" Then
|
||||
Var $Sum1205020072TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -9652,9 +9750,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020109 </State>
|
||||
|
|
@ -9677,6 +9776,11 @@
|
|||
If $Sum1205020109TextID != "" Then
|
||||
Var $Sum1205020109TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020109TextValue = "" Then
|
||||
If $Sum1205020109TextID = "" Then
|
||||
Var $Sum1205020109TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -10001,9 +10105,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050200911205030091 </State>
|
||||
|
|
@ -10026,6 +10131,11 @@
|
|||
If $Sum12050200911205030091TextID != "" Then
|
||||
Var $Sum12050200911205030091TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050200911205030091TextValue = "" Then
|
||||
If $Sum12050200911205030091TextID = "" Then
|
||||
Var $Sum12050200911205030091TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -10350,9 +10460,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050201141205030114 </State>
|
||||
|
|
@ -10375,6 +10486,11 @@
|
|||
If $Sum12050201141205030114TextID != "" Then
|
||||
Var $Sum12050201141205030114TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050201141205030114TextValue = "" Then
|
||||
If $Sum12050201141205030114TextID = "" Then
|
||||
Var $Sum12050201141205030114TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -10699,9 +10815,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020103 </State>
|
||||
|
|
@ -10724,6 +10841,11 @@
|
|||
If $Sum1205020103TextID != "" Then
|
||||
Var $Sum1205020103TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020103TextValue = "" Then
|
||||
If $Sum1205020103TextID = "" Then
|
||||
Var $Sum1205020103TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -101,8 +101,8 @@
|
|||
EndIf
|
||||
|
||||
If inst_show9 = 1 Then
|
||||
If langnext8 = "true" Then
|
||||
Var langnext8 = "false"
|
||||
If inst_show9 = "true" Then
|
||||
Var inst_show9 = "false"
|
||||
DEBUGVAR langnext
|
||||
RefreshAll
|
||||
EndIf
|
||||
|
|
@ -189,64 +189,6 @@
|
|||
TimerReset
|
||||
</EventTimeout>
|
||||
|
||||
<EventOnShow>
|
||||
InstanceGetString SaveStringInst
|
||||
DEBUGVAR SaveStringInst
|
||||
DEBUGVAR show_eng
|
||||
|
||||
|
||||
Var ButtonLanguageCurrentXPosition = 1005
|
||||
Var ButtonLanguageCurrentYPosition = 458 - 38
|
||||
|
||||
Var ButtonLanguageListXPosition = 970
|
||||
Var ButtonLanguageListYPosition = 450 - 38
|
||||
|
||||
|
||||
|
||||
If SaveStringInst = "RefreshNow" Then
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
DEBUGVAR LanguageShow
|
||||
|
||||
|
||||
If SaveStringInst = "ShowThai" Then
|
||||
If LanguageShow = "THAI" Then
|
||||
|
||||
Else
|
||||
Var show_eng = "true"
|
||||
InstanceSetString "ShowMYANMAR"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
If SaveStringInst = "ShowMYANMAR" Then
|
||||
If LanguageShow = "MYANMAR" Then
|
||||
|
||||
Else
|
||||
Var show_eng = "false"
|
||||
InstanceSetString "ShowEng"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
If SaveStringInst = "ShowEng" Then
|
||||
If LanguageShow = "ENG" Then
|
||||
|
||||
Else
|
||||
Var show_eng = "false"
|
||||
InstanceSetString "ShowThai"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
|
||||
|
||||
|
||||
</EventOnShow>
|
||||
|
||||
|
||||
;include="ROOT/taobin_project/inter/tha/xml/multi/menu_catalog_new.lxml"
|
||||
|
|
|
|||
|
|
@ -404,9 +404,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020009 </State>
|
||||
|
|
@ -429,6 +430,11 @@
|
|||
If $Sum1299020009TextID != "" Then
|
||||
Var $Sum1299020009TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020009TextValue = "" Then
|
||||
If $Sum1299020009TextID = "" Then
|
||||
Var $Sum1299020009TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -753,9 +759,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020002 </State>
|
||||
|
|
@ -778,6 +785,11 @@
|
|||
If $Sum1299020002TextID != "" Then
|
||||
Var $Sum1299020002TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020002TextValue = "" Then
|
||||
If $Sum1299020002TextID = "" Then
|
||||
Var $Sum1299020002TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1102,9 +1114,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020019 </State>
|
||||
|
|
@ -1127,6 +1140,11 @@
|
|||
If $Sum1299020019TextID != "" Then
|
||||
Var $Sum1299020019TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020019TextValue = "" Then
|
||||
If $Sum1299020019TextID = "" Then
|
||||
Var $Sum1299020019TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1451,9 +1469,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020006 </State>
|
||||
|
|
@ -1476,6 +1495,11 @@
|
|||
If $Sum1299020006TextID != "" Then
|
||||
Var $Sum1299020006TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020006TextValue = "" Then
|
||||
If $Sum1299020006TextID = "" Then
|
||||
Var $Sum1299020006TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1800,9 +1824,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020007 </State>
|
||||
|
|
@ -1825,6 +1850,11 @@
|
|||
If $Sum1299020007TextID != "" Then
|
||||
Var $Sum1299020007TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020007TextValue = "" Then
|
||||
If $Sum1299020007TextID = "" Then
|
||||
Var $Sum1299020007TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2149,9 +2179,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020008 </State>
|
||||
|
|
@ -2174,6 +2205,11 @@
|
|||
If $Sum1299020008TextID != "" Then
|
||||
Var $Sum1299020008TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020008TextValue = "" Then
|
||||
If $Sum1299020008TextID = "" Then
|
||||
Var $Sum1299020008TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2498,9 +2534,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020001 </State>
|
||||
|
|
@ -2523,6 +2560,11 @@
|
|||
If $Sum1299020001TextID != "" Then
|
||||
Var $Sum1299020001TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020001TextValue = "" Then
|
||||
If $Sum1299020001TextID = "" Then
|
||||
Var $Sum1299020001TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2847,9 +2889,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020003 </State>
|
||||
|
|
@ -2872,6 +2915,11 @@
|
|||
If $Sum1299020003TextID != "" Then
|
||||
Var $Sum1299020003TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020003TextValue = "" Then
|
||||
If $Sum1299020003TextID = "" Then
|
||||
Var $Sum1299020003TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3196,9 +3244,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020005 </State>
|
||||
|
|
@ -3221,6 +3270,11 @@
|
|||
If $Sum1299020005TextID != "" Then
|
||||
Var $Sum1299020005TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020005TextValue = "" Then
|
||||
If $Sum1299020005TextID = "" Then
|
||||
Var $Sum1299020005TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3545,9 +3599,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020004 </State>
|
||||
|
|
@ -3570,6 +3625,11 @@
|
|||
If $Sum1299020004TextID != "" Then
|
||||
Var $Sum1299020004TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020004TextValue = "" Then
|
||||
If $Sum1299020004TextID = "" Then
|
||||
Var $Sum1299020004TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -375,9 +375,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050100011205020001 </State>
|
||||
|
|
@ -400,6 +401,11 @@
|
|||
If $Sum12050100011205020001TextID != "" Then
|
||||
Var $Sum12050100011205020001TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050100011205020001TextValue = "" Then
|
||||
If $Sum12050100011205020001TextID = "" Then
|
||||
Var $Sum12050100011205020001TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -724,9 +730,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020002 </State>
|
||||
|
|
@ -749,6 +756,11 @@
|
|||
If $Sum1205020002TextID != "" Then
|
||||
Var $Sum1205020002TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020002TextValue = "" Then
|
||||
If $Sum1205020002TextID = "" Then
|
||||
Var $Sum1205020002TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1073,9 +1085,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020007 </State>
|
||||
|
|
@ -1098,6 +1111,11 @@
|
|||
If $Sum1205020007TextID != "" Then
|
||||
Var $Sum1205020007TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020007TextValue = "" Then
|
||||
If $Sum1205020007TextID = "" Then
|
||||
Var $Sum1205020007TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1422,9 +1440,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020034 </State>
|
||||
|
|
@ -1447,6 +1466,11 @@
|
|||
If $Sum1205020034TextID != "" Then
|
||||
Var $Sum1205020034TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020034TextValue = "" Then
|
||||
If $Sum1205020034TextID = "" Then
|
||||
Var $Sum1205020034TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1771,9 +1795,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020035 </State>
|
||||
|
|
@ -1796,6 +1821,11 @@
|
|||
If $Sum1205020035TextID != "" Then
|
||||
Var $Sum1205020035TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020035TextValue = "" Then
|
||||
If $Sum1205020035TextID = "" Then
|
||||
Var $Sum1205020035TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2124,9 +2154,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020100271202020027 </State>
|
||||
|
|
@ -2149,6 +2180,11 @@
|
|||
If $Sum12020100271202020027TextID != "" Then
|
||||
Var $Sum12020100271202020027TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020100271202020027TextValue = "" Then
|
||||
If $Sum12020100271202020027TextID = "" Then
|
||||
Var $Sum12020100271202020027TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2477,9 +2513,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020100451202020045 </State>
|
||||
|
|
@ -2502,6 +2539,11 @@
|
|||
If $Sum12020100451202020045TextID != "" Then
|
||||
Var $Sum12020100451202020045TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020100451202020045TextValue = "" Then
|
||||
If $Sum12020100451202020045TextID = "" Then
|
||||
Var $Sum12020100451202020045TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2830,9 +2872,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020100481202020049 </State>
|
||||
|
|
@ -2855,6 +2898,11 @@
|
|||
If $Sum12020100481202020049TextID != "" Then
|
||||
Var $Sum12020100481202020049TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020100481202020049TextValue = "" Then
|
||||
If $Sum12020100481202020049TextID = "" Then
|
||||
Var $Sum12020100481202020049TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3183,9 +3231,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020100471202020047 </State>
|
||||
|
|
@ -3208,6 +3257,11 @@
|
|||
If $Sum12020100471202020047TextID != "" Then
|
||||
Var $Sum12020100471202020047TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020100471202020047TextValue = "" Then
|
||||
If $Sum12020100471202020047TextID = "" Then
|
||||
Var $Sum12020100471202020047TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -400,9 +400,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020095 </State>
|
||||
|
|
@ -425,6 +426,11 @@
|
|||
If $Sum1205020095TextID != "" Then
|
||||
Var $Sum1205020095TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020095TextValue = "" Then
|
||||
If $Sum1205020095TextID = "" Then
|
||||
Var $Sum1205020095TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -749,9 +755,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020096 </State>
|
||||
|
|
@ -774,6 +781,11 @@
|
|||
If $Sum1205020096TextID != "" Then
|
||||
Var $Sum1205020096TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020096TextValue = "" Then
|
||||
If $Sum1205020096TextID = "" Then
|
||||
Var $Sum1205020096TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1098,9 +1110,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020097 </State>
|
||||
|
|
@ -1123,6 +1136,11 @@
|
|||
If $Sum1205020097TextID != "" Then
|
||||
Var $Sum1205020097TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020097TextValue = "" Then
|
||||
If $Sum1205020097TextID = "" Then
|
||||
Var $Sum1205020097TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1447,9 +1465,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020069 </State>
|
||||
|
|
@ -1472,6 +1491,11 @@
|
|||
If $Sum1201020069TextID != "" Then
|
||||
Var $Sum1201020069TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020069TextValue = "" Then
|
||||
If $Sum1201020069TextID = "" Then
|
||||
Var $Sum1201020069TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1796,9 +1820,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020070 </State>
|
||||
|
|
@ -1821,6 +1846,11 @@
|
|||
If $Sum1201020070TextID != "" Then
|
||||
Var $Sum1201020070TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020070TextValue = "" Then
|
||||
If $Sum1201020070TextID = "" Then
|
||||
Var $Sum1201020070TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2145,9 +2175,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020100 </State>
|
||||
|
|
@ -2170,6 +2201,11 @@
|
|||
If $Sum1205020100TextID != "" Then
|
||||
Var $Sum1205020100TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020100TextValue = "" Then
|
||||
If $Sum1205020100TextID = "" Then
|
||||
Var $Sum1205020100TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2494,9 +2530,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020101 </State>
|
||||
|
|
@ -2519,6 +2556,11 @@
|
|||
If $Sum1205020101TextID != "" Then
|
||||
Var $Sum1205020101TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020101TextValue = "" Then
|
||||
If $Sum1205020101TextID = "" Then
|
||||
Var $Sum1205020101TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2843,9 +2885,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020102 </State>
|
||||
|
|
@ -2868,6 +2911,11 @@
|
|||
If $Sum1205020102TextID != "" Then
|
||||
Var $Sum1205020102TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020102TextValue = "" Then
|
||||
If $Sum1205020102TextID = "" Then
|
||||
Var $Sum1205020102TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3192,9 +3240,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020103 </State>
|
||||
|
|
@ -3217,6 +3266,11 @@
|
|||
If $Sum1205020103TextID != "" Then
|
||||
Var $Sum1205020103TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020103TextValue = "" Then
|
||||
If $Sum1205020103TextID = "" Then
|
||||
Var $Sum1205020103TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3541,9 +3595,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020115 </State>
|
||||
|
|
@ -3566,6 +3621,11 @@
|
|||
If $Sum1205020115TextID != "" Then
|
||||
Var $Sum1205020115TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020115TextValue = "" Then
|
||||
If $Sum1205020115TextID = "" Then
|
||||
Var $Sum1205020115TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3890,9 +3950,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020116 </State>
|
||||
|
|
@ -3915,6 +3976,11 @@
|
|||
If $Sum1205020116TextID != "" Then
|
||||
Var $Sum1205020116TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020116TextValue = "" Then
|
||||
If $Sum1205020116TextID = "" Then
|
||||
Var $Sum1205020116TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4239,9 +4305,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020118 </State>
|
||||
|
|
@ -4264,6 +4331,11 @@
|
|||
If $Sum1205020118TextID != "" Then
|
||||
Var $Sum1205020118TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020118TextValue = "" Then
|
||||
If $Sum1205020118TextID = "" Then
|
||||
Var $Sum1205020118TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4588,9 +4660,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020119 </State>
|
||||
|
|
@ -4613,6 +4686,11 @@
|
|||
If $Sum1205020119TextID != "" Then
|
||||
Var $Sum1205020119TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020119TextValue = "" Then
|
||||
If $Sum1205020119TextID = "" Then
|
||||
Var $Sum1205020119TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4937,9 +5015,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020120 </State>
|
||||
|
|
@ -4962,6 +5041,11 @@
|
|||
If $Sum1205020120TextID != "" Then
|
||||
Var $Sum1205020120TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020120TextValue = "" Then
|
||||
If $Sum1205020120TextID = "" Then
|
||||
Var $Sum1205020120TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5286,9 +5370,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020121 </State>
|
||||
|
|
@ -5311,6 +5396,11 @@
|
|||
If $Sum1205020121TextID != "" Then
|
||||
Var $Sum1205020121TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020121TextValue = "" Then
|
||||
If $Sum1205020121TextID = "" Then
|
||||
Var $Sum1205020121TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5635,9 +5725,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020008 </State>
|
||||
|
|
@ -5660,6 +5751,11 @@
|
|||
If $Sum1299020008TextID != "" Then
|
||||
Var $Sum1299020008TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020008TextValue = "" Then
|
||||
If $Sum1299020008TextID = "" Then
|
||||
Var $Sum1299020008TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5984,9 +6080,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050066 </State>
|
||||
|
|
@ -6009,6 +6106,11 @@
|
|||
If $Sum1299050066TextID != "" Then
|
||||
Var $Sum1299050066TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050066TextValue = "" Then
|
||||
If $Sum1299050066TextID = "" Then
|
||||
Var $Sum1299050066TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6333,9 +6435,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020003 </State>
|
||||
|
|
@ -6358,6 +6461,11 @@
|
|||
If $Sum1299020003TextID != "" Then
|
||||
Var $Sum1299020003TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020003TextValue = "" Then
|
||||
If $Sum1299020003TextID = "" Then
|
||||
Var $Sum1299020003TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6682,9 +6790,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050067 </State>
|
||||
|
|
@ -6707,6 +6816,11 @@
|
|||
If $Sum1299050067TextID != "" Then
|
||||
Var $Sum1299050067TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050067TextValue = "" Then
|
||||
If $Sum1299050067TextID = "" Then
|
||||
Var $Sum1299050067TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7031,9 +7145,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020046 </State>
|
||||
|
|
@ -7056,6 +7171,11 @@
|
|||
If $Sum1205020046TextID != "" Then
|
||||
Var $Sum1205020046TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020046TextValue = "" Then
|
||||
If $Sum1205020046TextID = "" Then
|
||||
Var $Sum1205020046TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7380,9 +7500,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020104 </State>
|
||||
|
|
@ -7405,6 +7526,11 @@
|
|||
If $Sum1205020104TextID != "" Then
|
||||
Var $Sum1205020104TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020104TextValue = "" Then
|
||||
If $Sum1205020104TextID = "" Then
|
||||
Var $Sum1205020104TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7729,9 +7855,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050058 </State>
|
||||
|
|
@ -7754,6 +7881,11 @@
|
|||
If $Sum1299050058TextID != "" Then
|
||||
Var $Sum1299050058TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050058TextValue = "" Then
|
||||
If $Sum1299050058TextID = "" Then
|
||||
Var $Sum1299050058TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8078,9 +8210,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050068 </State>
|
||||
|
|
@ -8103,6 +8236,11 @@
|
|||
If $Sum1299050068TextID != "" Then
|
||||
Var $Sum1299050068TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050068TextValue = "" Then
|
||||
If $Sum1299050068TextID = "" Then
|
||||
Var $Sum1299050068TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8427,9 +8565,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050060 </State>
|
||||
|
|
@ -8452,6 +8591,11 @@
|
|||
If $Sum1299050060TextID != "" Then
|
||||
Var $Sum1299050060TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050060TextValue = "" Then
|
||||
If $Sum1299050060TextID = "" Then
|
||||
Var $Sum1299050060TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8776,9 +8920,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050069 </State>
|
||||
|
|
@ -8801,6 +8946,11 @@
|
|||
If $Sum1299050069TextID != "" Then
|
||||
Var $Sum1299050069TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050069TextValue = "" Then
|
||||
If $Sum1299050069TextID = "" Then
|
||||
Var $Sum1299050069TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -9125,9 +9275,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020007 </State>
|
||||
|
|
@ -9150,6 +9301,11 @@
|
|||
If $Sum1205020007TextID != "" Then
|
||||
Var $Sum1205020007TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020007TextValue = "" Then
|
||||
If $Sum1205020007TextID = "" Then
|
||||
Var $Sum1205020007TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -9474,9 +9630,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020094 </State>
|
||||
|
|
@ -9499,6 +9656,11 @@
|
|||
If $Sum1205020094TextID != "" Then
|
||||
Var $Sum1205020094TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020094TextValue = "" Then
|
||||
If $Sum1205020094TextID = "" Then
|
||||
Var $Sum1205020094TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -9823,9 +9985,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050053 </State>
|
||||
|
|
@ -9848,6 +10011,11 @@
|
|||
If $Sum1299050053TextID != "" Then
|
||||
Var $Sum1299050053TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050053TextValue = "" Then
|
||||
If $Sum1299050053TextID = "" Then
|
||||
Var $Sum1299050053TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -10172,9 +10340,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050070 </State>
|
||||
|
|
@ -10197,6 +10366,11 @@
|
|||
If $Sum1299050070TextID != "" Then
|
||||
Var $Sum1299050070TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050070TextValue = "" Then
|
||||
If $Sum1299050070TextID = "" Then
|
||||
Var $Sum1299050070TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -10521,9 +10695,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020054 </State>
|
||||
|
|
@ -10546,6 +10721,11 @@
|
|||
If $Sum1205020054TextID != "" Then
|
||||
Var $Sum1205020054TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020054TextValue = "" Then
|
||||
If $Sum1205020054TextID = "" Then
|
||||
Var $Sum1205020054TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -10870,9 +11050,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020107 </State>
|
||||
|
|
@ -10895,6 +11076,11 @@
|
|||
If $Sum1205020107TextID != "" Then
|
||||
Var $Sum1205020107TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020107TextValue = "" Then
|
||||
If $Sum1205020107TextID = "" Then
|
||||
Var $Sum1205020107TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -11219,9 +11405,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020084 </State>
|
||||
|
|
@ -11244,6 +11431,11 @@
|
|||
If $Sum1205020084TextID != "" Then
|
||||
Var $Sum1205020084TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020084TextValue = "" Then
|
||||
If $Sum1205020084TextID = "" Then
|
||||
Var $Sum1205020084TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -11568,9 +11760,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020110 </State>
|
||||
|
|
@ -11593,6 +11786,11 @@
|
|||
If $Sum1205020110TextID != "" Then
|
||||
Var $Sum1205020110TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020110TextValue = "" Then
|
||||
If $Sum1205020110TextID = "" Then
|
||||
Var $Sum1205020110TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -11917,9 +12115,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050052 </State>
|
||||
|
|
@ -11942,6 +12141,11 @@
|
|||
If $Sum1299050052TextID != "" Then
|
||||
Var $Sum1299050052TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050052TextValue = "" Then
|
||||
If $Sum1299050052TextID = "" Then
|
||||
Var $Sum1299050052TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -12266,9 +12470,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050072 </State>
|
||||
|
|
@ -12291,6 +12496,11 @@
|
|||
If $Sum1299050072TextID != "" Then
|
||||
Var $Sum1299050072TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050072TextValue = "" Then
|
||||
If $Sum1299050072TextID = "" Then
|
||||
Var $Sum1299050072TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -12615,9 +12825,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020067 </State>
|
||||
|
|
@ -12640,6 +12851,11 @@
|
|||
If $Sum1205020067TextID != "" Then
|
||||
Var $Sum1205020067TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020067TextValue = "" Then
|
||||
If $Sum1205020067TextID = "" Then
|
||||
Var $Sum1205020067TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -12964,9 +13180,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020108 </State>
|
||||
|
|
@ -12989,6 +13206,11 @@
|
|||
If $Sum1205020108TextID != "" Then
|
||||
Var $Sum1205020108TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020108TextValue = "" Then
|
||||
If $Sum1205020108TextID = "" Then
|
||||
Var $Sum1205020108TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -13313,9 +13535,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205030007 </State>
|
||||
|
|
@ -13338,6 +13561,11 @@
|
|||
If $Sum1205030007TextID != "" Then
|
||||
Var $Sum1205030007TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205030007TextValue = "" Then
|
||||
If $Sum1205030007TextID = "" Then
|
||||
Var $Sum1205030007TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -13662,9 +13890,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205030094 </State>
|
||||
|
|
@ -13687,6 +13916,11 @@
|
|||
If $Sum1205030094TextID != "" Then
|
||||
Var $Sum1205030094TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205030094TextValue = "" Then
|
||||
If $Sum1205030094TextID = "" Then
|
||||
Var $Sum1205030094TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -14011,9 +14245,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050057 </State>
|
||||
|
|
@ -14036,6 +14271,11 @@
|
|||
If $Sum1299050057TextID != "" Then
|
||||
Var $Sum1299050057TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050057TextValue = "" Then
|
||||
If $Sum1299050057TextID = "" Then
|
||||
Var $Sum1299050057TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -14360,9 +14600,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050200471205030047 </State>
|
||||
|
|
@ -14385,6 +14626,11 @@
|
|||
If $Sum12050200471205030047TextID != "" Then
|
||||
Var $Sum12050200471205030047TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050200471205030047TextValue = "" Then
|
||||
If $Sum12050200471205030047TextID = "" Then
|
||||
Var $Sum12050200471205030047TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -14709,9 +14955,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050201051205030105 </State>
|
||||
|
|
@ -14734,6 +14981,11 @@
|
|||
If $Sum12050201051205030105TextID != "" Then
|
||||
Var $Sum12050201051205030105TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050201051205030105TextValue = "" Then
|
||||
If $Sum12050201051205030105TextID = "" Then
|
||||
Var $Sum12050201051205030105TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -15058,9 +15310,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020053 </State>
|
||||
|
|
@ -15083,6 +15336,11 @@
|
|||
If $Sum1205020053TextID != "" Then
|
||||
Var $Sum1205020053TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020053TextValue = "" Then
|
||||
If $Sum1205020053TextID = "" Then
|
||||
Var $Sum1205020053TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -15407,9 +15665,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020106 </State>
|
||||
|
|
@ -15432,6 +15691,11 @@
|
|||
If $Sum1205020106TextID != "" Then
|
||||
Var $Sum1205020106TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020106TextValue = "" Then
|
||||
If $Sum1205020106TextID = "" Then
|
||||
Var $Sum1205020106TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -405,9 +405,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12010200611201030061 </State>
|
||||
|
|
@ -430,6 +431,11 @@
|
|||
If $Sum12010200611201030061TextID != "" Then
|
||||
Var $Sum12010200611201030061TextValue = ""
|
||||
EndIf
|
||||
If $Sum12010200611201030061TextValue = "" Then
|
||||
If $Sum12010200611201030061TextID = "" Then
|
||||
Var $Sum12010200611201030061TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -754,9 +760,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12210200611221030061 </State>
|
||||
|
|
@ -779,6 +786,11 @@
|
|||
If $Sum12210200611221030061TextID != "" Then
|
||||
Var $Sum12210200611221030061TextValue = ""
|
||||
EndIf
|
||||
If $Sum12210200611221030061TextValue = "" Then
|
||||
If $Sum12210200611221030061TextID = "" Then
|
||||
Var $Sum12210200611221030061TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1103,9 +1115,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020062 </State>
|
||||
|
|
@ -1128,6 +1141,11 @@
|
|||
If $Sum1201020062TextID != "" Then
|
||||
Var $Sum1201020062TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020062TextValue = "" Then
|
||||
If $Sum1201020062TextID = "" Then
|
||||
Var $Sum1201020062TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1452,9 +1470,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1221020062 </State>
|
||||
|
|
@ -1477,6 +1496,11 @@
|
|||
If $Sum1221020062TextID != "" Then
|
||||
Var $Sum1221020062TextValue = ""
|
||||
EndIf
|
||||
If $Sum1221020062TextValue = "" Then
|
||||
If $Sum1221020062TextID = "" Then
|
||||
Var $Sum1221020062TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1801,9 +1825,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12030200241203030024 </State>
|
||||
|
|
@ -1826,6 +1851,11 @@
|
|||
If $Sum12030200241203030024TextID != "" Then
|
||||
Var $Sum12030200241203030024TextValue = ""
|
||||
EndIf
|
||||
If $Sum12030200241203030024TextValue = "" Then
|
||||
If $Sum12030200241203030024TextID = "" Then
|
||||
Var $Sum12030200241203030024TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2150,9 +2180,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030045 </State>
|
||||
|
|
@ -2175,6 +2206,11 @@
|
|||
If $Sum1203030045TextID != "" Then
|
||||
Var $Sum1203030045TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030045TextValue = "" Then
|
||||
If $Sum1203030045TextID = "" Then
|
||||
Var $Sum1203030045TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2499,9 +2535,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030029 </State>
|
||||
|
|
@ -2524,6 +2561,11 @@
|
|||
If $Sum1203030029TextID != "" Then
|
||||
Var $Sum1203030029TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030029TextValue = "" Then
|
||||
If $Sum1203030029TextID = "" Then
|
||||
Var $Sum1203030029TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2848,9 +2890,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202020053 </State>
|
||||
|
|
@ -2873,6 +2916,11 @@
|
|||
If $Sum1202020053TextID != "" Then
|
||||
Var $Sum1202020053TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202020053TextValue = "" Then
|
||||
If $Sum1202020053TextID = "" Then
|
||||
Var $Sum1202020053TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3197,9 +3245,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202020054 </State>
|
||||
|
|
@ -3222,6 +3271,11 @@
|
|||
If $Sum1202020054TextID != "" Then
|
||||
Var $Sum1202020054TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202020054TextValue = "" Then
|
||||
If $Sum1202020054TextID = "" Then
|
||||
Var $Sum1202020054TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3546,9 +3600,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12030200231203030023 </State>
|
||||
|
|
@ -3571,6 +3626,11 @@
|
|||
If $Sum12030200231203030023TextID != "" Then
|
||||
Var $Sum12030200231203030023TextValue = ""
|
||||
EndIf
|
||||
If $Sum12030200231203030023TextValue = "" Then
|
||||
If $Sum12030200231203030023TextID = "" Then
|
||||
Var $Sum12030200231203030023TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3895,9 +3955,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020078 </State>
|
||||
|
|
@ -3920,6 +3981,11 @@
|
|||
If $Sum1205020078TextID != "" Then
|
||||
Var $Sum1205020078TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020078TextValue = "" Then
|
||||
If $Sum1205020078TextID = "" Then
|
||||
Var $Sum1205020078TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -398,9 +398,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020057 </State>
|
||||
|
|
@ -423,6 +424,11 @@
|
|||
If $Sum1201020057TextID != "" Then
|
||||
Var $Sum1201020057TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020057TextValue = "" Then
|
||||
If $Sum1201020057TextID = "" Then
|
||||
Var $Sum1201020057TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -747,9 +753,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1221020057 </State>
|
||||
|
|
@ -772,6 +779,11 @@
|
|||
If $Sum1221020057TextID != "" Then
|
||||
Var $Sum1221020057TextValue = ""
|
||||
EndIf
|
||||
If $Sum1221020057TextValue = "" Then
|
||||
If $Sum1221020057TextID = "" Then
|
||||
Var $Sum1221020057TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1096,9 +1108,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020058 </State>
|
||||
|
|
@ -1121,6 +1134,11 @@
|
|||
If $Sum1201020058TextID != "" Then
|
||||
Var $Sum1201020058TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020058TextValue = "" Then
|
||||
If $Sum1201020058TextID = "" Then
|
||||
Var $Sum1201020058TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1445,9 +1463,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1221020058 </State>
|
||||
|
|
@ -1470,6 +1489,11 @@
|
|||
If $Sum1221020058TextID != "" Then
|
||||
Var $Sum1221020058TextValue = ""
|
||||
EndIf
|
||||
If $Sum1221020058TextValue = "" Then
|
||||
If $Sum1221020058TextID = "" Then
|
||||
Var $Sum1221020058TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1794,9 +1818,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202030050 </State>
|
||||
|
|
@ -1819,6 +1844,11 @@
|
|||
If $Sum1202030050TextID != "" Then
|
||||
Var $Sum1202030050TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202030050TextValue = "" Then
|
||||
If $Sum1202030050TextID = "" Then
|
||||
Var $Sum1202030050TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2143,9 +2173,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020064 </State>
|
||||
|
|
@ -2168,6 +2199,11 @@
|
|||
If $Sum1201020064TextID != "" Then
|
||||
Var $Sum1201020064TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020064TextValue = "" Then
|
||||
If $Sum1201020064TextID = "" Then
|
||||
Var $Sum1201020064TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2492,9 +2528,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1221020064 </State>
|
||||
|
|
@ -2517,6 +2554,11 @@
|
|||
If $Sum1221020064TextID != "" Then
|
||||
Var $Sum1221020064TextValue = ""
|
||||
EndIf
|
||||
If $Sum1221020064TextValue = "" Then
|
||||
If $Sum1221020064TextID = "" Then
|
||||
Var $Sum1221020064TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2841,9 +2883,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203020035 </State>
|
||||
|
|
@ -2866,6 +2909,11 @@
|
|||
If $Sum1203020035TextID != "" Then
|
||||
Var $Sum1203020035TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203020035TextValue = "" Then
|
||||
If $Sum1203020035TextID = "" Then
|
||||
Var $Sum1203020035TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3194,9 +3242,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120301003612030200361203030036 </State>
|
||||
|
|
@ -3219,6 +3268,11 @@
|
|||
If $Sum120301003612030200361203030036TextID != "" Then
|
||||
Var $Sum120301003612030200361203030036TextValue = ""
|
||||
EndIf
|
||||
If $Sum120301003612030200361203030036TextValue = "" Then
|
||||
If $Sum120301003612030200361203030036TextID = "" Then
|
||||
Var $Sum120301003612030200361203030036TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3543,9 +3597,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030037 </State>
|
||||
|
|
@ -3568,6 +3623,11 @@
|
|||
If $Sum1203030037TextID != "" Then
|
||||
Var $Sum1203030037TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030037TextValue = "" Then
|
||||
If $Sum1203030037TextID = "" Then
|
||||
Var $Sum1203030037TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3892,9 +3952,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030034 </State>
|
||||
|
|
@ -3917,6 +3978,11 @@
|
|||
If $Sum1203030034TextID != "" Then
|
||||
Var $Sum1203030034TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030034TextValue = "" Then
|
||||
If $Sum1203030034TextID = "" Then
|
||||
Var $Sum1203030034TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4241,9 +4307,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020060 </State>
|
||||
|
|
@ -4266,6 +4333,11 @@
|
|||
If $Sum1205020060TextID != "" Then
|
||||
Var $Sum1205020060TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020060TextValue = "" Then
|
||||
If $Sum1205020060TextID = "" Then
|
||||
Var $Sum1205020060TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4590,9 +4662,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020063 </State>
|
||||
|
|
@ -4615,6 +4688,11 @@
|
|||
If $Sum1205020063TextID != "" Then
|
||||
Var $Sum1205020063TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020063TextValue = "" Then
|
||||
If $Sum1205020063TextID = "" Then
|
||||
Var $Sum1205020063TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4939,9 +5017,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020064 </State>
|
||||
|
|
@ -4964,6 +5043,11 @@
|
|||
If $Sum1205020064TextID != "" Then
|
||||
Var $Sum1205020064TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020064TextValue = "" Then
|
||||
If $Sum1205020064TextID = "" Then
|
||||
Var $Sum1205020064TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5288,9 +5372,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020065 </State>
|
||||
|
|
@ -5313,6 +5398,11 @@
|
|||
If $Sum1205020065TextID != "" Then
|
||||
Var $Sum1205020065TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020065TextValue = "" Then
|
||||
If $Sum1205020065TextID = "" Then
|
||||
Var $Sum1205020065TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5637,9 +5727,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020066 </State>
|
||||
|
|
@ -5662,6 +5753,11 @@
|
|||
If $Sum1205020066TextID != "" Then
|
||||
Var $Sum1205020066TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020066TextValue = "" Then
|
||||
If $Sum1205020066TextID = "" Then
|
||||
Var $Sum1205020066TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5986,9 +6082,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020067 </State>
|
||||
|
|
@ -6011,6 +6108,11 @@
|
|||
If $Sum1205020067TextID != "" Then
|
||||
Var $Sum1205020067TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020067TextValue = "" Then
|
||||
If $Sum1205020067TextID = "" Then
|
||||
Var $Sum1205020067TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6335,9 +6437,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12010200611201030061 </State>
|
||||
|
|
@ -6360,6 +6463,11 @@
|
|||
If $Sum12010200611201030061TextID != "" Then
|
||||
Var $Sum12010200611201030061TextValue = ""
|
||||
EndIf
|
||||
If $Sum12010200611201030061TextValue = "" Then
|
||||
If $Sum12010200611201030061TextID = "" Then
|
||||
Var $Sum12010200611201030061TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6684,9 +6792,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020062 </State>
|
||||
|
|
@ -6709,6 +6818,11 @@
|
|||
If $Sum1201020062TextID != "" Then
|
||||
Var $Sum1201020062TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020062TextValue = "" Then
|
||||
If $Sum1201020062TextID = "" Then
|
||||
Var $Sum1201020062TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7033,9 +7147,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12030200241203030024 </State>
|
||||
|
|
@ -7058,6 +7173,11 @@
|
|||
If $Sum12030200241203030024TextID != "" Then
|
||||
Var $Sum12030200241203030024TextValue = ""
|
||||
EndIf
|
||||
If $Sum12030200241203030024TextValue = "" Then
|
||||
If $Sum12030200241203030024TextID = "" Then
|
||||
Var $Sum12030200241203030024TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7382,9 +7502,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030045 </State>
|
||||
|
|
@ -7407,6 +7528,11 @@
|
|||
If $Sum1203030045TextID != "" Then
|
||||
Var $Sum1203030045TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030045TextValue = "" Then
|
||||
If $Sum1203030045TextID = "" Then
|
||||
Var $Sum1203030045TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7731,9 +7857,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030029 </State>
|
||||
|
|
@ -7756,6 +7883,11 @@
|
|||
If $Sum1203030029TextID != "" Then
|
||||
Var $Sum1203030029TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030029TextValue = "" Then
|
||||
If $Sum1203030029TextID = "" Then
|
||||
Var $Sum1203030029TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8080,9 +8212,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202020053 </State>
|
||||
|
|
@ -8105,6 +8238,11 @@
|
|||
If $Sum1202020053TextID != "" Then
|
||||
Var $Sum1202020053TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202020053TextValue = "" Then
|
||||
If $Sum1202020053TextID = "" Then
|
||||
Var $Sum1202020053TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8429,9 +8567,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202020054 </State>
|
||||
|
|
@ -8454,6 +8593,11 @@
|
|||
If $Sum1202020054TextID != "" Then
|
||||
Var $Sum1202020054TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202020054TextValue = "" Then
|
||||
If $Sum1202020054TextID = "" Then
|
||||
Var $Sum1202020054TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8778,9 +8922,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12030200231203030023 </State>
|
||||
|
|
@ -8803,6 +8948,11 @@
|
|||
If $Sum12030200231203030023TextID != "" Then
|
||||
Var $Sum12030200231203030023TextValue = ""
|
||||
EndIf
|
||||
If $Sum12030200231203030023TextValue = "" Then
|
||||
If $Sum12030200231203030023TextID = "" Then
|
||||
Var $Sum12030200231203030023TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -9127,9 +9277,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020078 </State>
|
||||
|
|
@ -9152,6 +9303,11 @@
|
|||
If $Sum1205020078TextID != "" Then
|
||||
Var $Sum1205020078TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020078TextValue = "" Then
|
||||
If $Sum1205020078TextID = "" Then
|
||||
Var $Sum1205020078TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -401,9 +401,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12216200021221630002 </State>
|
||||
|
|
@ -426,6 +427,11 @@
|
|||
If $Sum12216200021221630002TextID != "" Then
|
||||
Var $Sum12216200021221630002TextValue = ""
|
||||
EndIf
|
||||
If $Sum12216200021221630002TextValue = "" Then
|
||||
If $Sum12216200021221630002TextID = "" Then
|
||||
Var $Sum12216200021221630002TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -750,9 +756,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -775,6 +782,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1099,9 +1111,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12216200031221630003 </State>
|
||||
|
|
@ -1124,6 +1137,11 @@
|
|||
If $Sum12216200031221630003TextID != "" Then
|
||||
Var $Sum12216200031221630003TextValue = ""
|
||||
EndIf
|
||||
If $Sum12216200031221630003TextValue = "" Then
|
||||
If $Sum12216200031221630003TextID = "" Then
|
||||
Var $Sum12216200031221630003TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1448,9 +1466,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -1473,6 +1492,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1797,9 +1821,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12216200041221630004 </State>
|
||||
|
|
@ -1822,6 +1847,11 @@
|
|||
If $Sum12216200041221630004TextID != "" Then
|
||||
Var $Sum12216200041221630004TextValue = ""
|
||||
EndIf
|
||||
If $Sum12216200041221630004TextValue = "" Then
|
||||
If $Sum12216200041221630004TextID = "" Then
|
||||
Var $Sum12216200041221630004TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2146,9 +2176,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -2171,6 +2202,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2495,9 +2531,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12036200021203630002 </State>
|
||||
|
|
@ -2520,6 +2557,11 @@
|
|||
If $Sum12036200021203630002TextID != "" Then
|
||||
Var $Sum12036200021203630002TextValue = ""
|
||||
EndIf
|
||||
If $Sum12036200021203630002TextValue = "" Then
|
||||
If $Sum12036200021203630002TextID = "" Then
|
||||
Var $Sum12036200021203630002TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2844,9 +2886,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -2869,6 +2912,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3193,9 +3241,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12036200051203630005 </State>
|
||||
|
|
@ -3218,6 +3267,11 @@
|
|||
If $Sum12036200051203630005TextID != "" Then
|
||||
Var $Sum12036200051203630005TextValue = ""
|
||||
EndIf
|
||||
If $Sum12036200051203630005TextValue = "" Then
|
||||
If $Sum12036200051203630005TextID = "" Then
|
||||
Var $Sum12036200051203630005TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3542,9 +3596,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -3567,6 +3622,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3891,9 +3951,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12036200061203630006 </State>
|
||||
|
|
@ -3916,6 +3977,11 @@
|
|||
If $Sum12036200061203630006TextID != "" Then
|
||||
Var $Sum12036200061203630006TextValue = ""
|
||||
EndIf
|
||||
If $Sum12036200061203630006TextValue = "" Then
|
||||
If $Sum12036200061203630006TextID = "" Then
|
||||
Var $Sum12036200061203630006TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4240,9 +4306,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -4265,6 +4332,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4589,9 +4661,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12056200071203630009 </State>
|
||||
|
|
@ -4614,6 +4687,11 @@
|
|||
If $Sum12056200071203630009TextID != "" Then
|
||||
Var $Sum12056200071203630009TextValue = ""
|
||||
EndIf
|
||||
If $Sum12056200071203630009TextValue = "" Then
|
||||
If $Sum12056200071203630009TextID = "" Then
|
||||
Var $Sum12056200071203630009TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4938,9 +5016,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -4963,6 +5042,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5287,9 +5371,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12056200091205630007 </State>
|
||||
|
|
@ -5312,6 +5397,11 @@
|
|||
If $Sum12056200091205630007TextID != "" Then
|
||||
Var $Sum12056200091205630007TextValue = ""
|
||||
EndIf
|
||||
If $Sum12056200091205630007TextValue = "" Then
|
||||
If $Sum12056200091205630007TextID = "" Then
|
||||
Var $Sum12056200091205630007TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5636,9 +5726,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -5661,6 +5752,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5985,9 +6081,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12056200251205630009 </State>
|
||||
|
|
@ -6010,6 +6107,11 @@
|
|||
If $Sum12056200251205630009TextID != "" Then
|
||||
Var $Sum12056200251205630009TextValue = ""
|
||||
EndIf
|
||||
If $Sum12056200251205630009TextValue = "" Then
|
||||
If $Sum12056200251205630009TextID = "" Then
|
||||
Var $Sum12056200251205630009TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6334,9 +6436,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -6359,6 +6462,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6683,9 +6791,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12056200351205630025 </State>
|
||||
|
|
@ -6708,6 +6817,11 @@
|
|||
If $Sum12056200351205630025TextID != "" Then
|
||||
Var $Sum12056200351205630025TextValue = ""
|
||||
EndIf
|
||||
If $Sum12056200351205630025TextValue = "" Then
|
||||
If $Sum12056200351205630025TextID = "" Then
|
||||
Var $Sum12056200351205630025TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7032,9 +7146,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -7057,6 +7172,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7381,9 +7501,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12056200461205630046 </State>
|
||||
|
|
@ -7406,6 +7527,11 @@
|
|||
If $Sum12056200461205630046TextID != "" Then
|
||||
Var $Sum12056200461205630046TextValue = ""
|
||||
EndIf
|
||||
If $Sum12056200461205630046TextValue = "" Then
|
||||
If $Sum12056200461205630046TextID = "" Then
|
||||
Var $Sum12056200461205630046TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7730,9 +7856,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -7755,6 +7882,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8079,9 +8211,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12026200261203630026 </State>
|
||||
|
|
@ -8104,6 +8237,11 @@
|
|||
If $Sum12026200261203630026TextID != "" Then
|
||||
Var $Sum12026200261203630026TextValue = ""
|
||||
EndIf
|
||||
If $Sum12026200261203630026TextValue = "" Then
|
||||
If $Sum12026200261203630026TextID = "" Then
|
||||
Var $Sum12026200261203630026TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8428,9 +8566,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -8453,6 +8592,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8777,9 +8921,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12026200391203630039 </State>
|
||||
|
|
@ -8802,6 +8947,11 @@
|
|||
If $Sum12026200391203630039TextID != "" Then
|
||||
Var $Sum12026200391203630039TextValue = ""
|
||||
EndIf
|
||||
If $Sum12026200391203630039TextValue = "" Then
|
||||
If $Sum12026200391203630039TextID = "" Then
|
||||
Var $Sum12026200391203630039TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -9126,9 +9276,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -9151,6 +9302,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -9475,9 +9631,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12026200471203630047 </State>
|
||||
|
|
@ -9500,6 +9657,11 @@
|
|||
If $Sum12026200471203630047TextID != "" Then
|
||||
Var $Sum12026200471203630047TextValue = ""
|
||||
EndIf
|
||||
If $Sum12026200471203630047TextValue = "" Then
|
||||
If $Sum12026200471203630047TextID = "" Then
|
||||
Var $Sum12026200471203630047TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -9824,9 +9986,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -9849,6 +10012,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -10173,9 +10341,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12026200251202630025 </State>
|
||||
|
|
@ -10198,6 +10367,11 @@
|
|||
If $Sum12026200251202630025TextID != "" Then
|
||||
Var $Sum12026200251202630025TextValue = ""
|
||||
EndIf
|
||||
If $Sum12026200251202630025TextValue = "" Then
|
||||
If $Sum12026200251202630025TextID = "" Then
|
||||
Var $Sum12026200251202630025TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -10522,9 +10696,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -10547,6 +10722,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -10871,9 +11051,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1241030028 </State>
|
||||
|
|
@ -10896,6 +11077,11 @@
|
|||
If $Sum1241030028TextID != "" Then
|
||||
Var $Sum1241030028TextValue = ""
|
||||
EndIf
|
||||
If $Sum1241030028TextValue = "" Then
|
||||
If $Sum1241030028TextID = "" Then
|
||||
Var $Sum1241030028TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -11220,9 +11406,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -11245,6 +11432,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -413,9 +413,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120101000612010200031201030003 </State>
|
||||
|
|
@ -438,6 +439,11 @@
|
|||
If $Sum120101000612010200031201030003TextID != "" Then
|
||||
Var $Sum120101000612010200031201030003TextValue = ""
|
||||
EndIf
|
||||
If $Sum120101000612010200031201030003TextValue = "" Then
|
||||
If $Sum120101000612010200031201030003TextID = "" Then
|
||||
Var $Sum120101000612010200031201030003TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -766,9 +772,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum122101000612210200031221030003 </State>
|
||||
|
|
@ -791,6 +798,11 @@
|
|||
If $Sum122101000612210200031221030003TextID != "" Then
|
||||
Var $Sum122101000612210200031221030003TextValue = ""
|
||||
EndIf
|
||||
If $Sum122101000612210200031221030003TextValue = "" Then
|
||||
If $Sum122101000612210200031221030003TextID = "" Then
|
||||
Var $Sum122101000612210200031221030003TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1119,9 +1131,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12010110061201021003 </State>
|
||||
|
|
@ -1144,6 +1157,11 @@
|
|||
If $Sum12010110061201021003TextID != "" Then
|
||||
Var $Sum12010110061201021003TextValue = ""
|
||||
EndIf
|
||||
If $Sum12010110061201021003TextValue = "" Then
|
||||
If $Sum12010110061201021003TextID = "" Then
|
||||
Var $Sum12010110061201021003TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1472,9 +1490,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12210110061221021003 </State>
|
||||
|
|
@ -1497,6 +1516,11 @@
|
|||
If $Sum12210110061221021003TextID != "" Then
|
||||
Var $Sum12210110061221021003TextValue = ""
|
||||
EndIf
|
||||
If $Sum12210110061221021003TextValue = "" Then
|
||||
If $Sum12210110061221021003TextID = "" Then
|
||||
Var $Sum12210110061221021003TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1821,9 +1845,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12010200611201030061 </State>
|
||||
|
|
@ -1846,6 +1871,11 @@
|
|||
If $Sum12010200611201030061TextID != "" Then
|
||||
Var $Sum12010200611201030061TextValue = ""
|
||||
EndIf
|
||||
If $Sum12010200611201030061TextValue = "" Then
|
||||
If $Sum12010200611201030061TextID = "" Then
|
||||
Var $Sum12010200611201030061TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2170,9 +2200,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12210200611221030061 </State>
|
||||
|
|
@ -2195,6 +2226,11 @@
|
|||
If $Sum12210200611221030061TextID != "" Then
|
||||
Var $Sum12210200611221030061TextValue = ""
|
||||
EndIf
|
||||
If $Sum12210200611221030061TextValue = "" Then
|
||||
If $Sum12210200611221030061TextID = "" Then
|
||||
Var $Sum12210200611221030061TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2523,9 +2559,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120301000212030200021203030002 </State>
|
||||
|
|
@ -2548,6 +2585,11 @@
|
|||
If $Sum120301000212030200021203030002TextID != "" Then
|
||||
Var $Sum120301000212030200021203030002TextValue = ""
|
||||
EndIf
|
||||
If $Sum120301000212030200021203030002TextValue = "" Then
|
||||
If $Sum120301000212030200021203030002TextID = "" Then
|
||||
Var $Sum120301000212030200021203030002TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2876,9 +2918,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12030110021203021002 </State>
|
||||
|
|
@ -2901,6 +2944,11 @@
|
|||
If $Sum12030110021203021002TextID != "" Then
|
||||
Var $Sum12030110021203021002TextValue = ""
|
||||
EndIf
|
||||
If $Sum12030110021203021002TextValue = "" Then
|
||||
If $Sum12030110021203021002TextID = "" Then
|
||||
Var $Sum12030110021203021002TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3229,9 +3277,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120301000412030200041203030004 </State>
|
||||
|
|
@ -3254,6 +3303,11 @@
|
|||
If $Sum120301000412030200041203030004TextID != "" Then
|
||||
Var $Sum120301000412030200041203030004TextValue = ""
|
||||
EndIf
|
||||
If $Sum120301000412030200041203030004TextValue = "" Then
|
||||
If $Sum120301000412030200041203030004TextID = "" Then
|
||||
Var $Sum120301000412030200041203030004TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3582,9 +3636,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120301002412030200241203030024 </State>
|
||||
|
|
@ -3607,6 +3662,11 @@
|
|||
If $Sum120301002412030200241203030024TextID != "" Then
|
||||
Var $Sum120301002412030200241203030024TextValue = ""
|
||||
EndIf
|
||||
If $Sum120301002412030200241203030024TextValue = "" Then
|
||||
If $Sum120301002412030200241203030024TextID = "" Then
|
||||
Var $Sum120301002412030200241203030024TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3935,9 +3995,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120301002512030200251203030025 </State>
|
||||
|
|
@ -3960,6 +4021,11 @@
|
|||
If $Sum120301002512030200251203030025TextID != "" Then
|
||||
Var $Sum120301002512030200251203030025TextValue = ""
|
||||
EndIf
|
||||
If $Sum120301002512030200251203030025TextValue = "" Then
|
||||
If $Sum120301002512030200251203030025TextID = "" Then
|
||||
Var $Sum120301002512030200251203030025TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4288,9 +4354,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120301003512030200351203030035 </State>
|
||||
|
|
@ -4313,6 +4380,11 @@
|
|||
If $Sum120301003512030200351203030035TextID != "" Then
|
||||
Var $Sum120301003512030200351203030035TextValue = ""
|
||||
EndIf
|
||||
If $Sum120301003512030200351203030035TextValue = "" Then
|
||||
If $Sum120301003512030200351203030035TextID = "" Then
|
||||
Var $Sum120301003512030200351203030035TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4637,9 +4709,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203020040 </State>
|
||||
|
|
@ -4662,6 +4735,11 @@
|
|||
If $Sum1203020040TextID != "" Then
|
||||
Var $Sum1203020040TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203020040TextValue = "" Then
|
||||
If $Sum1203020040TextID = "" Then
|
||||
Var $Sum1203020040TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4986,9 +5064,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12030200591203030059 </State>
|
||||
|
|
@ -5011,6 +5090,11 @@
|
|||
If $Sum12030200591203030059TextID != "" Then
|
||||
Var $Sum12030200591203030059TextValue = ""
|
||||
EndIf
|
||||
If $Sum12030200591203030059TextValue = "" Then
|
||||
If $Sum12030200591203030059TextID = "" Then
|
||||
Var $Sum12030200591203030059TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5335,9 +5419,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030010 </State>
|
||||
|
|
@ -5360,6 +5445,11 @@
|
|||
If $Sum1203030010TextID != "" Then
|
||||
Var $Sum1203030010TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030010TextValue = "" Then
|
||||
If $Sum1203030010TextID = "" Then
|
||||
Var $Sum1203030010TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5684,9 +5774,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030030 </State>
|
||||
|
|
@ -5709,6 +5800,11 @@
|
|||
If $Sum1203030030TextID != "" Then
|
||||
Var $Sum1203030030TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030030TextValue = "" Then
|
||||
If $Sum1203030030TextID = "" Then
|
||||
Var $Sum1203030030TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6033,9 +6129,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030044 </State>
|
||||
|
|
@ -6058,6 +6155,11 @@
|
|||
If $Sum1203030044TextID != "" Then
|
||||
Var $Sum1203030044TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030044TextValue = "" Then
|
||||
If $Sum1203030044TextID = "" Then
|
||||
Var $Sum1203030044TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6382,9 +6484,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030061 </State>
|
||||
|
|
@ -6407,6 +6510,11 @@
|
|||
If $Sum1203030061TextID != "" Then
|
||||
Var $Sum1203030061TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030061TextValue = "" Then
|
||||
If $Sum1203030061TextID = "" Then
|
||||
Var $Sum1203030061TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6731,9 +6839,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030017 </State>
|
||||
|
|
@ -6756,6 +6865,11 @@
|
|||
If $Sum1299030017TextID != "" Then
|
||||
Var $Sum1299030017TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030017TextValue = "" Then
|
||||
If $Sum1299030017TextID = "" Then
|
||||
Var $Sum1299030017TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7080,9 +7194,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030067 </State>
|
||||
|
|
@ -7105,6 +7220,11 @@
|
|||
If $Sum1299030067TextID != "" Then
|
||||
Var $Sum1299030067TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030067TextValue = "" Then
|
||||
If $Sum1299030067TextID = "" Then
|
||||
Var $Sum1299030067TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7429,9 +7549,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030068 </State>
|
||||
|
|
@ -7454,6 +7575,11 @@
|
|||
If $Sum1299030068TextID != "" Then
|
||||
Var $Sum1299030068TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030068TextValue = "" Then
|
||||
If $Sum1299030068TextID = "" Then
|
||||
Var $Sum1299030068TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -403,9 +403,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030026 </State>
|
||||
|
|
@ -428,6 +429,11 @@
|
|||
If $Sum1299030026TextID != "" Then
|
||||
Var $Sum1299030026TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030026TextValue = "" Then
|
||||
If $Sum1299030026TextID = "" Then
|
||||
Var $Sum1299030026TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -752,9 +758,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030067 </State>
|
||||
|
|
@ -777,6 +784,11 @@
|
|||
If $Sum1299030067TextID != "" Then
|
||||
Var $Sum1299030067TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030067TextValue = "" Then
|
||||
If $Sum1299030067TextID = "" Then
|
||||
Var $Sum1299030067TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1101,9 +1113,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030066 </State>
|
||||
|
|
@ -1126,6 +1139,11 @@
|
|||
If $Sum1299030066TextID != "" Then
|
||||
Var $Sum1299030066TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030066TextValue = "" Then
|
||||
If $Sum1299030066TextID = "" Then
|
||||
Var $Sum1299030066TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -401,9 +401,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202020080 </State>
|
||||
|
|
@ -426,6 +427,11 @@
|
|||
If $Sum1202020080TextID != "" Then
|
||||
Var $Sum1202020080TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202020080TextValue = "" Then
|
||||
If $Sum1202020080TextID = "" Then
|
||||
Var $Sum1202020080TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -750,9 +756,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205030128 </State>
|
||||
|
|
@ -775,6 +782,11 @@
|
|||
If $Sum1205030128TextID != "" Then
|
||||
Var $Sum1205030128TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205030128TextValue = "" Then
|
||||
If $Sum1205030128TextID = "" Then
|
||||
Var $Sum1205030128TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1099,9 +1111,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030084 </State>
|
||||
|
|
@ -1124,6 +1137,11 @@
|
|||
If $Sum1203030084TextID != "" Then
|
||||
Var $Sum1203030084TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030084TextValue = "" Then
|
||||
If $Sum1203030084TextID = "" Then
|
||||
Var $Sum1203030084TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1448,9 +1466,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030085 </State>
|
||||
|
|
@ -1473,6 +1492,11 @@
|
|||
If $Sum1203030085TextID != "" Then
|
||||
Var $Sum1203030085TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030085TextValue = "" Then
|
||||
If $Sum1203030085TextID = "" Then
|
||||
Var $Sum1203030085TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1797,9 +1821,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202020081 </State>
|
||||
|
|
@ -1822,6 +1847,11 @@
|
|||
If $Sum1202020081TextID != "" Then
|
||||
Var $Sum1202020081TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202020081TextValue = "" Then
|
||||
If $Sum1202020081TextID = "" Then
|
||||
Var $Sum1202020081TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2146,9 +2176,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202020082 </State>
|
||||
|
|
@ -2171,6 +2202,11 @@
|
|||
If $Sum1202020082TextID != "" Then
|
||||
Var $Sum1202020082TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202020082TextValue = "" Then
|
||||
If $Sum1202020082TextID = "" Then
|
||||
Var $Sum1202020082TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2499,9 +2535,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202010079 </State>
|
||||
|
|
@ -2524,6 +2561,11 @@
|
|||
If $Sum1202010079TextID != "" Then
|
||||
Var $Sum1202010079TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202010079TextValue = "" Then
|
||||
If $Sum1202010079TextID = "" Then
|
||||
Var $Sum1202010079TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2848,9 +2890,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030081 </State>
|
||||
|
|
@ -2873,6 +2916,11 @@
|
|||
If $Sum1203030081TextID != "" Then
|
||||
Var $Sum1203030081TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030081TextValue = "" Then
|
||||
If $Sum1203030081TextID = "" Then
|
||||
Var $Sum1203030081TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3197,9 +3245,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020082 </State>
|
||||
|
|
@ -3222,6 +3271,11 @@
|
|||
If $Sum1201020082TextID != "" Then
|
||||
Var $Sum1201020082TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020082TextValue = "" Then
|
||||
If $Sum1201020082TextID = "" Then
|
||||
Var $Sum1201020082TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3546,9 +3600,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1221020082 </State>
|
||||
|
|
@ -3571,6 +3626,11 @@
|
|||
If $Sum1221020082TextID != "" Then
|
||||
Var $Sum1221020082TextValue = ""
|
||||
EndIf
|
||||
If $Sum1221020082TextValue = "" Then
|
||||
If $Sum1221020082TextID = "" Then
|
||||
Var $Sum1221020082TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3895,9 +3955,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203020080 </State>
|
||||
|
|
@ -3920,6 +3981,11 @@
|
|||
If $Sum1203020080TextID != "" Then
|
||||
Var $Sum1203020080TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203020080TextValue = "" Then
|
||||
If $Sum1203020080TextID = "" Then
|
||||
Var $Sum1203020080TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4244,9 +4310,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030080 </State>
|
||||
|
|
@ -4269,6 +4336,11 @@
|
|||
If $Sum1203030080TextID != "" Then
|
||||
Var $Sum1203030080TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030080TextValue = "" Then
|
||||
If $Sum1203030080TextID = "" Then
|
||||
Var $Sum1203030080TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4597,9 +4669,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202010078 </State>
|
||||
|
|
@ -4622,6 +4695,11 @@
|
|||
If $Sum1202010078TextID != "" Then
|
||||
Var $Sum1202010078TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202010078TextValue = "" Then
|
||||
If $Sum1202010078TextID = "" Then
|
||||
Var $Sum1202010078TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4946,9 +5024,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020083 </State>
|
||||
|
|
@ -4971,6 +5050,11 @@
|
|||
If $Sum1201020083TextID != "" Then
|
||||
Var $Sum1201020083TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020083TextValue = "" Then
|
||||
If $Sum1201020083TextID = "" Then
|
||||
Var $Sum1201020083TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5295,9 +5379,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1221020083 </State>
|
||||
|
|
@ -5320,6 +5405,11 @@
|
|||
If $Sum1221020083TextID != "" Then
|
||||
Var $Sum1221020083TextValue = ""
|
||||
EndIf
|
||||
If $Sum1221020083TextValue = "" Then
|
||||
If $Sum1221020083TextID = "" Then
|
||||
Var $Sum1221020083TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5644,9 +5734,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030082 </State>
|
||||
|
|
@ -5669,6 +5760,11 @@
|
|||
If $Sum1203030082TextID != "" Then
|
||||
Var $Sum1203030082TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030082TextValue = "" Then
|
||||
If $Sum1203030082TextID = "" Then
|
||||
Var $Sum1203030082TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5993,9 +6089,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030083 </State>
|
||||
|
|
@ -6018,6 +6115,11 @@
|
|||
If $Sum1203030083TextID != "" Then
|
||||
Var $Sum1203030083TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030083TextValue = "" Then
|
||||
If $Sum1203030083TextID = "" Then
|
||||
Var $Sum1203030083TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -404,9 +404,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201030078 </State>
|
||||
|
|
@ -429,6 +430,11 @@
|
|||
If $Sum1201030078TextID != "" Then
|
||||
Var $Sum1201030078TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201030078TextValue = "" Then
|
||||
If $Sum1201030078TextID = "" Then
|
||||
Var $Sum1201030078TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -753,9 +759,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1221030078 </State>
|
||||
|
|
@ -778,6 +785,11 @@
|
|||
If $Sum1221030078TextID != "" Then
|
||||
Var $Sum1221030078TextValue = ""
|
||||
EndIf
|
||||
If $Sum1221030078TextValue = "" Then
|
||||
If $Sum1221030078TextID = "" Then
|
||||
Var $Sum1221030078TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1102,9 +1114,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202030057 </State>
|
||||
|
|
@ -1127,6 +1140,11 @@
|
|||
If $Sum1202030057TextID != "" Then
|
||||
Var $Sum1202030057TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202030057TextValue = "" Then
|
||||
If $Sum1202030057TextID = "" Then
|
||||
Var $Sum1202030057TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1451,9 +1469,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202030058 </State>
|
||||
|
|
@ -1476,6 +1495,11 @@
|
|||
If $Sum1202030058TextID != "" Then
|
||||
Var $Sum1202030058TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202030058TextValue = "" Then
|
||||
If $Sum1202030058TextID = "" Then
|
||||
Var $Sum1202030058TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -403,9 +403,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12030200751203030075 </State>
|
||||
|
|
@ -428,6 +429,11 @@
|
|||
If $Sum12030200751203030075TextID != "" Then
|
||||
Var $Sum12030200751203030075TextValue = ""
|
||||
EndIf
|
||||
If $Sum12030200751203030075TextValue = "" Then
|
||||
If $Sum12030200751203030075TextID = "" Then
|
||||
Var $Sum12030200751203030075TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -752,9 +758,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050201241205030124 </State>
|
||||
|
|
@ -777,6 +784,11 @@
|
|||
If $Sum12050201241205030124TextID != "" Then
|
||||
Var $Sum12050201241205030124TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050201241205030124TextValue = "" Then
|
||||
If $Sum12050201241205030124TextID = "" Then
|
||||
Var $Sum12050201241205030124TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1101,9 +1113,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020200681202030068 </State>
|
||||
|
|
@ -1126,6 +1139,11 @@
|
|||
If $Sum12020200681202030068TextID != "" Then
|
||||
Var $Sum12020200681202030068TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020200681202030068TextValue = "" Then
|
||||
If $Sum12020200681202030068TextID = "" Then
|
||||
Var $Sum12020200681202030068TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1450,9 +1468,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020125 </State>
|
||||
|
|
@ -1475,6 +1494,11 @@
|
|||
If $Sum1205020125TextID != "" Then
|
||||
Var $Sum1205020125TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020125TextValue = "" Then
|
||||
If $Sum1205020125TextID = "" Then
|
||||
Var $Sum1205020125TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1799,9 +1823,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020075 </State>
|
||||
|
|
@ -1824,6 +1849,11 @@
|
|||
If $Sum1201020075TextID != "" Then
|
||||
Var $Sum1201020075TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020075TextValue = "" Then
|
||||
If $Sum1201020075TextID = "" Then
|
||||
Var $Sum1201020075TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2148,9 +2178,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1221020075 </State>
|
||||
|
|
@ -2173,6 +2204,11 @@
|
|||
If $Sum1221020075TextID != "" Then
|
||||
Var $Sum1221020075TextValue = ""
|
||||
EndIf
|
||||
If $Sum1221020075TextValue = "" Then
|
||||
If $Sum1221020075TextID = "" Then
|
||||
Var $Sum1221020075TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2497,9 +2533,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12030200761203030076 </State>
|
||||
|
|
@ -2522,6 +2559,11 @@
|
|||
If $Sum12030200761203030076TextID != "" Then
|
||||
Var $Sum12030200761203030076TextValue = ""
|
||||
EndIf
|
||||
If $Sum12030200761203030076TextValue = "" Then
|
||||
If $Sum12030200761203030076TextID = "" Then
|
||||
Var $Sum12030200761203030076TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2846,9 +2888,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020200691202030069 </State>
|
||||
|
|
@ -2871,6 +2914,11 @@
|
|||
If $Sum12020200691202030069TextID != "" Then
|
||||
Var $Sum12020200691202030069TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020200691202030069TextValue = "" Then
|
||||
If $Sum12020200691202030069TextID = "" Then
|
||||
Var $Sum12020200691202030069TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3195,9 +3243,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050201261205030126 </State>
|
||||
|
|
@ -3220,6 +3269,11 @@
|
|||
If $Sum12050201261205030126TextID != "" Then
|
||||
Var $Sum12050201261205030126TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050201261205030126TextValue = "" Then
|
||||
If $Sum12050201261205030126TextID = "" Then
|
||||
Var $Sum12050201261205030126TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3544,9 +3598,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050201271205030127 </State>
|
||||
|
|
@ -3569,6 +3624,11 @@
|
|||
If $Sum12050201271205030127TextID != "" Then
|
||||
Var $Sum12050201271205030127TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050201271205030127TextValue = "" Then
|
||||
If $Sum12050201271205030127TextID = "" Then
|
||||
Var $Sum12050201271205030127TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3893,9 +3953,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020200701202030070 </State>
|
||||
|
|
@ -3918,6 +3979,11 @@
|
|||
If $Sum12020200701202030070TextID != "" Then
|
||||
Var $Sum12020200701202030070TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020200701202030070TextValue = "" Then
|
||||
If $Sum12020200701202030070TextID = "" Then
|
||||
Var $Sum12020200701202030070TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -405,9 +405,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030046 </State>
|
||||
|
|
@ -430,6 +431,11 @@
|
|||
If $Sum1203030046TextID != "" Then
|
||||
Var $Sum1203030046TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030046TextValue = "" Then
|
||||
If $Sum1203030046TextID = "" Then
|
||||
Var $Sum1203030046TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -754,9 +760,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030047 </State>
|
||||
|
|
@ -779,6 +786,11 @@
|
|||
If $Sum1203030047TextID != "" Then
|
||||
Var $Sum1203030047TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030047TextValue = "" Then
|
||||
If $Sum1203030047TextID = "" Then
|
||||
Var $Sum1203030047TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1103,9 +1115,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050063 </State>
|
||||
|
|
@ -1128,6 +1141,11 @@
|
|||
If $Sum1299050063TextID != "" Then
|
||||
Var $Sum1299050063TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050063TextValue = "" Then
|
||||
If $Sum1299050063TextID = "" Then
|
||||
Var $Sum1299050063TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1452,9 +1470,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203020040 </State>
|
||||
|
|
@ -1477,6 +1496,11 @@
|
|||
If $Sum1203020040TextID != "" Then
|
||||
Var $Sum1203020040TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203020040TextValue = "" Then
|
||||
If $Sum1203020040TextID = "" Then
|
||||
Var $Sum1203020040TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1801,9 +1825,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205030063 </State>
|
||||
|
|
@ -1826,6 +1851,11 @@
|
|||
If $Sum1205030063TextID != "" Then
|
||||
Var $Sum1205030063TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205030063TextValue = "" Then
|
||||
If $Sum1205030063TextID = "" Then
|
||||
Var $Sum1205030063TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2150,9 +2180,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020080 </State>
|
||||
|
|
@ -2175,6 +2206,11 @@
|
|||
If $Sum1205020080TextID != "" Then
|
||||
Var $Sum1205020080TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020080TextValue = "" Then
|
||||
If $Sum1205020080TextID = "" Then
|
||||
Var $Sum1205020080TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2499,9 +2535,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202030053 </State>
|
||||
|
|
@ -2524,6 +2561,11 @@
|
|||
If $Sum1202030053TextID != "" Then
|
||||
Var $Sum1202030053TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202030053TextValue = "" Then
|
||||
If $Sum1202030053TextID = "" Then
|
||||
Var $Sum1202030053TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2848,9 +2890,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203020041 </State>
|
||||
|
|
@ -2873,6 +2916,11 @@
|
|||
If $Sum1203020041TextID != "" Then
|
||||
Var $Sum1203020041TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203020041TextValue = "" Then
|
||||
If $Sum1203020041TextID = "" Then
|
||||
Var $Sum1203020041TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3197,9 +3245,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202020056 </State>
|
||||
|
|
@ -3222,6 +3271,11 @@
|
|||
If $Sum1202020056TextID != "" Then
|
||||
Var $Sum1202020056TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202020056TextValue = "" Then
|
||||
If $Sum1202020056TextID = "" Then
|
||||
Var $Sum1202020056TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3546,9 +3600,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205030064 </State>
|
||||
|
|
@ -3571,6 +3626,11 @@
|
|||
If $Sum1205030064TextID != "" Then
|
||||
Var $Sum1205030064TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205030064TextValue = "" Then
|
||||
If $Sum1205030064TextID = "" Then
|
||||
Var $Sum1205030064TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -402,9 +402,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020011 </State>
|
||||
|
|
@ -427,6 +428,11 @@
|
|||
If $Sum1299020011TextID != "" Then
|
||||
Var $Sum1299020011TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020011TextValue = "" Then
|
||||
If $Sum1299020011TextID = "" Then
|
||||
Var $Sum1299020011TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -751,9 +757,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020013 </State>
|
||||
|
|
@ -776,6 +783,11 @@
|
|||
If $Sum1299020013TextID != "" Then
|
||||
Var $Sum1299020013TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020013TextValue = "" Then
|
||||
If $Sum1299020013TextID = "" Then
|
||||
Var $Sum1299020013TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1100,9 +1112,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020014 </State>
|
||||
|
|
@ -1125,6 +1138,11 @@
|
|||
If $Sum1299020014TextID != "" Then
|
||||
Var $Sum1299020014TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020014TextValue = "" Then
|
||||
If $Sum1299020014TextID = "" Then
|
||||
Var $Sum1299020014TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1449,9 +1467,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020015 </State>
|
||||
|
|
@ -1474,6 +1493,11 @@
|
|||
If $Sum1299020015TextID != "" Then
|
||||
Var $Sum1299020015TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020015TextValue = "" Then
|
||||
If $Sum1299020015TextID = "" Then
|
||||
Var $Sum1299020015TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1798,9 +1822,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020016 </State>
|
||||
|
|
@ -1823,6 +1848,11 @@
|
|||
If $Sum1299020016TextID != "" Then
|
||||
Var $Sum1299020016TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020016TextValue = "" Then
|
||||
If $Sum1299020016TextID = "" Then
|
||||
Var $Sum1299020016TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2147,9 +2177,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020018 </State>
|
||||
|
|
@ -2172,6 +2203,11 @@
|
|||
If $Sum1299020018TextID != "" Then
|
||||
Var $Sum1299020018TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020018TextValue = "" Then
|
||||
If $Sum1299020018TextID = "" Then
|
||||
Var $Sum1299020018TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2496,9 +2532,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020015 </State>
|
||||
|
|
@ -2521,6 +2558,11 @@
|
|||
If $Sum1299020015TextID != "" Then
|
||||
Var $Sum1299020015TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020015TextValue = "" Then
|
||||
If $Sum1299020015TextID = "" Then
|
||||
Var $Sum1299020015TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -399,9 +399,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203020002 </State>
|
||||
|
|
@ -424,6 +425,11 @@
|
|||
If $Sum1203020002TextID != "" Then
|
||||
Var $Sum1203020002TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203020002TextValue = "" Then
|
||||
If $Sum1203020002TextID = "" Then
|
||||
Var $Sum1203020002TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -748,9 +754,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203020065 </State>
|
||||
|
|
@ -773,6 +780,11 @@
|
|||
If $Sum1203020065TextID != "" Then
|
||||
Var $Sum1203020065TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203020065TextValue = "" Then
|
||||
If $Sum1203020065TextID = "" Then
|
||||
Var $Sum1203020065TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1097,9 +1109,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203020067 </State>
|
||||
|
|
@ -1122,6 +1135,11 @@
|
|||
If $Sum1203020067TextID != "" Then
|
||||
Var $Sum1203020067TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203020067TextValue = "" Then
|
||||
If $Sum1203020067TextID = "" Then
|
||||
Var $Sum1203020067TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1446,9 +1464,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203020066 </State>
|
||||
|
|
@ -1471,6 +1490,11 @@
|
|||
If $Sum1203020066TextID != "" Then
|
||||
Var $Sum1203020066TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203020066TextValue = "" Then
|
||||
If $Sum1203020066TextID = "" Then
|
||||
Var $Sum1203020066TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1799,9 +1823,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12030100681203020068 </State>
|
||||
|
|
@ -1824,6 +1849,11 @@
|
|||
If $Sum12030100681203020068TextID != "" Then
|
||||
Var $Sum12030100681203020068TextValue = ""
|
||||
EndIf
|
||||
If $Sum12030100681203020068TextValue = "" Then
|
||||
If $Sum12030100681203020068TextID = "" Then
|
||||
Var $Sum12030100681203020068TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2148,9 +2178,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203020069 </State>
|
||||
|
|
@ -2173,6 +2204,11 @@
|
|||
If $Sum1203020069TextID != "" Then
|
||||
Var $Sum1203020069TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203020069TextValue = "" Then
|
||||
If $Sum1203020069TextID = "" Then
|
||||
Var $Sum1203020069TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2497,9 +2533,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203020070 </State>
|
||||
|
|
@ -2522,6 +2559,11 @@
|
|||
If $Sum1203020070TextID != "" Then
|
||||
Var $Sum1203020070TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203020070TextValue = "" Then
|
||||
If $Sum1203020070TextID = "" Then
|
||||
Var $Sum1203020070TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2846,9 +2888,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203020071 </State>
|
||||
|
|
@ -2871,6 +2914,11 @@
|
|||
If $Sum1203020071TextID != "" Then
|
||||
Var $Sum1203020071TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203020071TextValue = "" Then
|
||||
If $Sum1203020071TextID = "" Then
|
||||
Var $Sum1203020071TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3195,9 +3243,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203020074 </State>
|
||||
|
|
@ -3220,6 +3269,11 @@
|
|||
If $Sum1203020074TextID != "" Then
|
||||
Var $Sum1203020074TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203020074TextValue = "" Then
|
||||
If $Sum1203020074TextID = "" Then
|
||||
Var $Sum1203020074TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3548,9 +3602,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120101000612010200031201030003 </State>
|
||||
|
|
@ -3573,6 +3628,11 @@
|
|||
If $Sum120101000612010200031201030003TextID != "" Then
|
||||
Var $Sum120101000612010200031201030003TextValue = ""
|
||||
EndIf
|
||||
If $Sum120101000612010200031201030003TextValue = "" Then
|
||||
If $Sum120101000612010200031201030003TextID = "" Then
|
||||
Var $Sum120101000612010200031201030003TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3901,9 +3961,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12010110061201021003 </State>
|
||||
|
|
@ -3926,6 +3987,11 @@
|
|||
If $Sum12010110061201021003TextID != "" Then
|
||||
Var $Sum12010110061201021003TextValue = ""
|
||||
EndIf
|
||||
If $Sum12010110061201021003TextValue = "" Then
|
||||
If $Sum12010110061201021003TextID = "" Then
|
||||
Var $Sum12010110061201021003TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4250,9 +4316,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12010200611201030061 </State>
|
||||
|
|
@ -4275,6 +4342,11 @@
|
|||
If $Sum12010200611201030061TextID != "" Then
|
||||
Var $Sum12010200611201030061TextValue = ""
|
||||
EndIf
|
||||
If $Sum12010200611201030061TextValue = "" Then
|
||||
If $Sum12010200611201030061TextID = "" Then
|
||||
Var $Sum12010200611201030061TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4603,9 +4675,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120301000212030200021203030002 </State>
|
||||
|
|
@ -4628,6 +4701,11 @@
|
|||
If $Sum120301000212030200021203030002TextID != "" Then
|
||||
Var $Sum120301000212030200021203030002TextValue = ""
|
||||
EndIf
|
||||
If $Sum120301000212030200021203030002TextValue = "" Then
|
||||
If $Sum120301000212030200021203030002TextID = "" Then
|
||||
Var $Sum120301000212030200021203030002TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4952,9 +5030,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203021002 </State>
|
||||
|
|
@ -4977,6 +5056,11 @@
|
|||
If $Sum1203021002TextID != "" Then
|
||||
Var $Sum1203021002TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203021002TextValue = "" Then
|
||||
If $Sum1203021002TextID = "" Then
|
||||
Var $Sum1203021002TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5305,9 +5389,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120301000412030200041203030004 </State>
|
||||
|
|
@ -5330,6 +5415,11 @@
|
|||
If $Sum120301000412030200041203030004TextID != "" Then
|
||||
Var $Sum120301000412030200041203030004TextValue = ""
|
||||
EndIf
|
||||
If $Sum120301000412030200041203030004TextValue = "" Then
|
||||
If $Sum120301000412030200041203030004TextID = "" Then
|
||||
Var $Sum120301000412030200041203030004TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5658,9 +5748,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120301002412030200241203030024 </State>
|
||||
|
|
@ -5683,6 +5774,11 @@
|
|||
If $Sum120301002412030200241203030024TextID != "" Then
|
||||
Var $Sum120301002412030200241203030024TextValue = ""
|
||||
EndIf
|
||||
If $Sum120301002412030200241203030024TextValue = "" Then
|
||||
If $Sum120301002412030200241203030024TextID = "" Then
|
||||
Var $Sum120301002412030200241203030024TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6011,9 +6107,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120301002512030200251203030025 </State>
|
||||
|
|
@ -6036,6 +6133,11 @@
|
|||
If $Sum120301002512030200251203030025TextID != "" Then
|
||||
Var $Sum120301002512030200251203030025TextValue = ""
|
||||
EndIf
|
||||
If $Sum120301002512030200251203030025TextValue = "" Then
|
||||
If $Sum120301002512030200251203030025TextID = "" Then
|
||||
Var $Sum120301002512030200251203030025TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6364,9 +6466,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120301003512030200351203030035 </State>
|
||||
|
|
@ -6389,6 +6492,11 @@
|
|||
If $Sum120301003512030200351203030035TextID != "" Then
|
||||
Var $Sum120301003512030200351203030035TextValue = ""
|
||||
EndIf
|
||||
If $Sum120301003512030200351203030035TextValue = "" Then
|
||||
If $Sum120301003512030200351203030035TextID = "" Then
|
||||
Var $Sum120301003512030200351203030035TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6713,9 +6821,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12030200391203030039 </State>
|
||||
|
|
@ -6738,6 +6847,11 @@
|
|||
If $Sum12030200391203030039TextID != "" Then
|
||||
Var $Sum12030200391203030039TextValue = ""
|
||||
EndIf
|
||||
If $Sum12030200391203030039TextValue = "" Then
|
||||
If $Sum12030200391203030039TextID = "" Then
|
||||
Var $Sum12030200391203030039TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7062,9 +7176,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12030200591203030059 </State>
|
||||
|
|
@ -7087,6 +7202,11 @@
|
|||
If $Sum12030200591203030059TextID != "" Then
|
||||
Var $Sum12030200591203030059TextValue = ""
|
||||
EndIf
|
||||
If $Sum12030200591203030059TextValue = "" Then
|
||||
If $Sum12030200591203030059TextID = "" Then
|
||||
Var $Sum12030200591203030059TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7411,9 +7531,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030010 </State>
|
||||
|
|
@ -7436,6 +7557,11 @@
|
|||
If $Sum1203030010TextID != "" Then
|
||||
Var $Sum1203030010TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030010TextValue = "" Then
|
||||
If $Sum1203030010TextID = "" Then
|
||||
Var $Sum1203030010TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7760,9 +7886,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030030 </State>
|
||||
|
|
@ -7785,6 +7912,11 @@
|
|||
If $Sum1203030030TextID != "" Then
|
||||
Var $Sum1203030030TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030030TextValue = "" Then
|
||||
If $Sum1203030030TextID = "" Then
|
||||
Var $Sum1203030030TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8109,9 +8241,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030044 </State>
|
||||
|
|
@ -8134,6 +8267,11 @@
|
|||
If $Sum1203030044TextID != "" Then
|
||||
Var $Sum1203030044TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030044TextValue = "" Then
|
||||
If $Sum1203030044TextID = "" Then
|
||||
Var $Sum1203030044TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -405,9 +405,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12030200241203030024 </State>
|
||||
|
|
@ -430,6 +431,11 @@
|
|||
If $Sum12030200241203030024TextID != "" Then
|
||||
Var $Sum12030200241203030024TextValue = ""
|
||||
EndIf
|
||||
If $Sum12030200241203030024TextValue = "" Then
|
||||
If $Sum12030200241203030024TextID = "" Then
|
||||
Var $Sum12030200241203030024TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -754,9 +760,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030029 </State>
|
||||
|
|
@ -779,6 +786,11 @@
|
|||
If $Sum1203030029TextID != "" Then
|
||||
Var $Sum1203030029TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030029TextValue = "" Then
|
||||
If $Sum1203030029TextID = "" Then
|
||||
Var $Sum1203030029TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1103,9 +1115,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12030200231203030023 </State>
|
||||
|
|
@ -1128,6 +1141,11 @@
|
|||
If $Sum12030200231203030023TextID != "" Then
|
||||
Var $Sum12030200231203030023TextValue = ""
|
||||
EndIf
|
||||
If $Sum12030200231203030023TextValue = "" Then
|
||||
If $Sum12030200231203030023TextID = "" Then
|
||||
Var $Sum12030200231203030023TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -405,9 +405,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120101005712010200571201030057 </State>
|
||||
|
|
@ -430,6 +431,11 @@
|
|||
If $Sum120101005712010200571201030057TextID != "" Then
|
||||
Var $Sum120101005712010200571201030057TextValue = ""
|
||||
EndIf
|
||||
If $Sum120101005712010200571201030057TextValue = "" Then
|
||||
If $Sum120101005712010200571201030057TextID = "" Then
|
||||
Var $Sum120101005712010200571201030057TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -758,9 +764,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum122101005712210200571221030057 </State>
|
||||
|
|
@ -783,6 +790,11 @@
|
|||
If $Sum122101005712210200571221030057TextID != "" Then
|
||||
Var $Sum122101005712210200571221030057TextValue = ""
|
||||
EndIf
|
||||
If $Sum122101005712210200571221030057TextValue = "" Then
|
||||
If $Sum122101005712210200571221030057TextID = "" Then
|
||||
Var $Sum122101005712210200571221030057TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1111,9 +1123,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12010100581201020058 </State>
|
||||
|
|
@ -1136,6 +1149,11 @@
|
|||
If $Sum12010100581201020058TextID != "" Then
|
||||
Var $Sum12010100581201020058TextValue = ""
|
||||
EndIf
|
||||
If $Sum12010100581201020058TextValue = "" Then
|
||||
If $Sum12010100581201020058TextID = "" Then
|
||||
Var $Sum12010100581201020058TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1464,9 +1482,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12210100581221020058 </State>
|
||||
|
|
@ -1489,6 +1508,11 @@
|
|||
If $Sum12210100581221020058TextID != "" Then
|
||||
Var $Sum12210100581221020058TextValue = ""
|
||||
EndIf
|
||||
If $Sum12210100581221020058TextValue = "" Then
|
||||
If $Sum12210100581221020058TextID = "" Then
|
||||
Var $Sum12210100581221020058TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1817,9 +1841,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120201005012020200501202030050 </State>
|
||||
|
|
@ -1842,6 +1867,11 @@
|
|||
If $Sum120201005012020200501202030050TextID != "" Then
|
||||
Var $Sum120201005012020200501202030050TextValue = ""
|
||||
EndIf
|
||||
If $Sum120201005012020200501202030050TextValue = "" Then
|
||||
If $Sum120201005012020200501202030050TextID = "" Then
|
||||
Var $Sum120201005012020200501202030050TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2170,9 +2200,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120301003512030200351203030035 </State>
|
||||
|
|
@ -2195,6 +2226,11 @@
|
|||
If $Sum120301003512030200351203030035TextID != "" Then
|
||||
Var $Sum120301003512030200351203030035TextValue = ""
|
||||
EndIf
|
||||
If $Sum120301003512030200351203030035TextValue = "" Then
|
||||
If $Sum120301003512030200351203030035TextID = "" Then
|
||||
Var $Sum120301003512030200351203030035TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2523,9 +2559,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120301003612030200361203030036 </State>
|
||||
|
|
@ -2548,6 +2585,11 @@
|
|||
If $Sum120301003612030200361203030036TextID != "" Then
|
||||
Var $Sum120301003612030200361203030036TextValue = ""
|
||||
EndIf
|
||||
If $Sum120301003612030200361203030036TextValue = "" Then
|
||||
If $Sum120301003612030200361203030036TextID = "" Then
|
||||
Var $Sum120301003612030200361203030036TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2872,9 +2914,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12030200371203030037 </State>
|
||||
|
|
@ -2897,6 +2940,11 @@
|
|||
If $Sum12030200371203030037TextID != "" Then
|
||||
Var $Sum12030200371203030037TextValue = ""
|
||||
EndIf
|
||||
If $Sum12030200371203030037TextValue = "" Then
|
||||
If $Sum12030200371203030037TextID = "" Then
|
||||
Var $Sum12030200371203030037TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3221,9 +3269,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030034 </State>
|
||||
|
|
@ -3246,6 +3295,11 @@
|
|||
If $Sum1203030034TextID != "" Then
|
||||
Var $Sum1203030034TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030034TextValue = "" Then
|
||||
If $Sum1203030034TextID = "" Then
|
||||
Var $Sum1203030034TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3570,9 +3624,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020060 </State>
|
||||
|
|
@ -3595,6 +3650,11 @@
|
|||
If $Sum1205020060TextID != "" Then
|
||||
Var $Sum1205020060TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020060TextValue = "" Then
|
||||
If $Sum1205020060TextID = "" Then
|
||||
Var $Sum1205020060TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3919,9 +3979,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020063 </State>
|
||||
|
|
@ -3944,6 +4005,11 @@
|
|||
If $Sum1205020063TextID != "" Then
|
||||
Var $Sum1205020063TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020063TextValue = "" Then
|
||||
If $Sum1205020063TextID = "" Then
|
||||
Var $Sum1205020063TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4268,9 +4334,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020064 </State>
|
||||
|
|
@ -4293,6 +4360,11 @@
|
|||
If $Sum1205020064TextID != "" Then
|
||||
Var $Sum1205020064TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020064TextValue = "" Then
|
||||
If $Sum1205020064TextID = "" Then
|
||||
Var $Sum1205020064TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4617,9 +4689,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020065 </State>
|
||||
|
|
@ -4642,6 +4715,11 @@
|
|||
If $Sum1205020065TextID != "" Then
|
||||
Var $Sum1205020065TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020065TextValue = "" Then
|
||||
If $Sum1205020065TextID = "" Then
|
||||
Var $Sum1205020065TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4966,9 +5044,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020066 </State>
|
||||
|
|
@ -4991,6 +5070,11 @@
|
|||
If $Sum1205020066TextID != "" Then
|
||||
Var $Sum1205020066TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020066TextValue = "" Then
|
||||
If $Sum1205020066TextID = "" Then
|
||||
Var $Sum1205020066TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5315,9 +5399,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020067 </State>
|
||||
|
|
@ -5340,6 +5425,11 @@
|
|||
If $Sum1205020067TextID != "" Then
|
||||
Var $Sum1205020067TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020067TextValue = "" Then
|
||||
If $Sum1205020067TextID = "" Then
|
||||
Var $Sum1205020067TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -401,9 +401,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020068 </State>
|
||||
|
|
@ -426,6 +427,11 @@
|
|||
If $Sum1201020068TextID != "" Then
|
||||
Var $Sum1201020068TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020068TextValue = "" Then
|
||||
If $Sum1201020068TextID = "" Then
|
||||
Var $Sum1201020068TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -750,9 +756,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1221020068 </State>
|
||||
|
|
@ -775,6 +782,11 @@
|
|||
If $Sum1221020068TextID != "" Then
|
||||
Var $Sum1221020068TextValue = ""
|
||||
EndIf
|
||||
If $Sum1221020068TextValue = "" Then
|
||||
If $Sum1221020068TextID = "" Then
|
||||
Var $Sum1221020068TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1099,9 +1111,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205030092 </State>
|
||||
|
|
@ -1124,6 +1137,11 @@
|
|||
If $Sum1205030092TextID != "" Then
|
||||
Var $Sum1205030092TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205030092TextValue = "" Then
|
||||
If $Sum1205030092TextID = "" Then
|
||||
Var $Sum1205030092TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1448,9 +1466,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12030200581203030058 </State>
|
||||
|
|
@ -1473,6 +1492,11 @@
|
|||
If $Sum12030200581203030058TextID != "" Then
|
||||
Var $Sum12030200581203030058TextValue = ""
|
||||
EndIf
|
||||
If $Sum12030200581203030058TextValue = "" Then
|
||||
If $Sum12030200581203030058TextID = "" Then
|
||||
Var $Sum12030200581203030058TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1797,9 +1821,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12030200591203030059 </State>
|
||||
|
|
@ -1822,6 +1847,11 @@
|
|||
If $Sum12030200591203030059TextID != "" Then
|
||||
Var $Sum12030200591203030059TextValue = ""
|
||||
EndIf
|
||||
If $Sum12030200591203030059TextValue = "" Then
|
||||
If $Sum12030200591203030059TextID = "" Then
|
||||
Var $Sum12030200591203030059TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2146,9 +2176,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020200601202030060 </State>
|
||||
|
|
@ -2171,6 +2202,11 @@
|
|||
If $Sum12020200601202030060TextID != "" Then
|
||||
Var $Sum12020200601202030060TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020200601202030060TextValue = "" Then
|
||||
If $Sum12020200601202030060TextID = "" Then
|
||||
Var $Sum12020200601202030060TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2495,9 +2531,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020200611202030061 </State>
|
||||
|
|
@ -2520,6 +2557,11 @@
|
|||
If $Sum12020200611202030061TextID != "" Then
|
||||
Var $Sum12020200611202030061TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020200611202030061TextValue = "" Then
|
||||
If $Sum12020200611202030061TextID = "" Then
|
||||
Var $Sum12020200611202030061TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2844,9 +2886,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020200621202030062 </State>
|
||||
|
|
@ -2869,6 +2912,11 @@
|
|||
If $Sum12020200621202030062TextID != "" Then
|
||||
Var $Sum12020200621202030062TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020200621202030062TextValue = "" Then
|
||||
If $Sum12020200621202030062TextID = "" Then
|
||||
Var $Sum12020200621202030062TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3193,9 +3241,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020200631202030063 </State>
|
||||
|
|
@ -3218,6 +3267,11 @@
|
|||
If $Sum12020200631202030063TextID != "" Then
|
||||
Var $Sum12020200631202030063TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020200631202030063TextValue = "" Then
|
||||
If $Sum12020200631202030063TextID = "" Then
|
||||
Var $Sum12020200631202030063TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3542,9 +3596,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020200641202030064 </State>
|
||||
|
|
@ -3567,6 +3622,11 @@
|
|||
If $Sum12020200641202030064TextID != "" Then
|
||||
Var $Sum12020200641202030064TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020200641202030064TextValue = "" Then
|
||||
If $Sum12020200641202030064TextID = "" Then
|
||||
Var $Sum12020200641202030064TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3891,9 +3951,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020200651202030065 </State>
|
||||
|
|
@ -3916,6 +3977,11 @@
|
|||
If $Sum12020200651202030065TextID != "" Then
|
||||
Var $Sum12020200651202030065TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020200651202030065TextValue = "" Then
|
||||
If $Sum12020200651202030065TextID = "" Then
|
||||
Var $Sum12020200651202030065TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4240,9 +4306,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020090 </State>
|
||||
|
|
@ -4265,6 +4332,11 @@
|
|||
If $Sum1205020090TextID != "" Then
|
||||
Var $Sum1205020090TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020090TextValue = "" Then
|
||||
If $Sum1205020090TextID = "" Then
|
||||
Var $Sum1205020090TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4589,9 +4661,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050200911205030091 </State>
|
||||
|
|
@ -4614,6 +4687,11 @@
|
|||
If $Sum12050200911205030091TextID != "" Then
|
||||
Var $Sum12050200911205030091TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050200911205030091TextValue = "" Then
|
||||
If $Sum12050200911205030091TextID = "" Then
|
||||
Var $Sum12050200911205030091TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4938,9 +5016,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050201141205030114 </State>
|
||||
|
|
@ -4963,6 +5042,11 @@
|
|||
If $Sum12050201141205030114TextID != "" Then
|
||||
Var $Sum12050201141205030114TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050201141205030114TextValue = "" Then
|
||||
If $Sum12050201141205030114TextID = "" Then
|
||||
Var $Sum12050201141205030114TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5287,9 +5371,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020093 </State>
|
||||
|
|
@ -5312,6 +5397,11 @@
|
|||
If $Sum1205020093TextID != "" Then
|
||||
Var $Sum1205020093TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020093TextValue = "" Then
|
||||
If $Sum1205020093TextID = "" Then
|
||||
Var $Sum1205020093TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5636,9 +5726,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12030200241203030024 </State>
|
||||
|
|
@ -5661,6 +5752,11 @@
|
|||
If $Sum12030200241203030024TextID != "" Then
|
||||
Var $Sum12030200241203030024TextValue = ""
|
||||
EndIf
|
||||
If $Sum12030200241203030024TextValue = "" Then
|
||||
If $Sum12030200241203030024TextID = "" Then
|
||||
Var $Sum12030200241203030024TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5985,9 +6081,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030029 </State>
|
||||
|
|
@ -6010,6 +6107,11 @@
|
|||
If $Sum1203030029TextID != "" Then
|
||||
Var $Sum1203030029TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030029TextValue = "" Then
|
||||
If $Sum1203030029TextID = "" Then
|
||||
Var $Sum1203030029TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6334,9 +6436,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020057 </State>
|
||||
|
|
@ -6359,6 +6462,11 @@
|
|||
If $Sum1201020057TextID != "" Then
|
||||
Var $Sum1201020057TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020057TextValue = "" Then
|
||||
If $Sum1201020057TextID = "" Then
|
||||
Var $Sum1201020057TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6683,9 +6791,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1221020057 </State>
|
||||
|
|
@ -6708,6 +6817,11 @@
|
|||
If $Sum1221020057TextID != "" Then
|
||||
Var $Sum1221020057TextValue = ""
|
||||
EndIf
|
||||
If $Sum1221020057TextValue = "" Then
|
||||
If $Sum1221020057TextID = "" Then
|
||||
Var $Sum1221020057TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7032,9 +7146,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020058 </State>
|
||||
|
|
@ -7057,6 +7172,11 @@
|
|||
If $Sum1201020058TextID != "" Then
|
||||
Var $Sum1201020058TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020058TextValue = "" Then
|
||||
If $Sum1201020058TextID = "" Then
|
||||
Var $Sum1201020058TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7381,9 +7501,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1221020058 </State>
|
||||
|
|
@ -7406,6 +7527,11 @@
|
|||
If $Sum1221020058TextID != "" Then
|
||||
Var $Sum1221020058TextValue = ""
|
||||
EndIf
|
||||
If $Sum1221020058TextValue = "" Then
|
||||
If $Sum1221020058TextID = "" Then
|
||||
Var $Sum1221020058TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7730,9 +7856,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202030050 </State>
|
||||
|
|
@ -7755,6 +7882,11 @@
|
|||
If $Sum1202030050TextID != "" Then
|
||||
Var $Sum1202030050TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202030050TextValue = "" Then
|
||||
If $Sum1202030050TextID = "" Then
|
||||
Var $Sum1202030050TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8079,9 +8211,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020064 </State>
|
||||
|
|
@ -8104,6 +8237,11 @@
|
|||
If $Sum1201020064TextID != "" Then
|
||||
Var $Sum1201020064TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020064TextValue = "" Then
|
||||
If $Sum1201020064TextID = "" Then
|
||||
Var $Sum1201020064TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8428,9 +8566,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1221020064 </State>
|
||||
|
|
@ -8453,6 +8592,11 @@
|
|||
If $Sum1221020064TextID != "" Then
|
||||
Var $Sum1221020064TextValue = ""
|
||||
EndIf
|
||||
If $Sum1221020064TextValue = "" Then
|
||||
If $Sum1221020064TextID = "" Then
|
||||
Var $Sum1221020064TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8777,9 +8921,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203020035 </State>
|
||||
|
|
@ -8802,6 +8947,11 @@
|
|||
If $Sum1203020035TextID != "" Then
|
||||
Var $Sum1203020035TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203020035TextValue = "" Then
|
||||
If $Sum1203020035TextID = "" Then
|
||||
Var $Sum1203020035TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -9126,9 +9276,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030034 </State>
|
||||
|
|
@ -9151,6 +9302,11 @@
|
|||
If $Sum1203030034TextID != "" Then
|
||||
Var $Sum1203030034TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030034TextValue = "" Then
|
||||
If $Sum1203030034TextID = "" Then
|
||||
Var $Sum1203030034TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -9475,9 +9631,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030037 </State>
|
||||
|
|
@ -9500,6 +9657,11 @@
|
|||
If $Sum1203030037TextID != "" Then
|
||||
Var $Sum1203030037TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030037TextValue = "" Then
|
||||
If $Sum1203030037TextID = "" Then
|
||||
Var $Sum1203030037TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -9824,9 +9986,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020063 </State>
|
||||
|
|
@ -9849,6 +10012,11 @@
|
|||
If $Sum1205020063TextID != "" Then
|
||||
Var $Sum1205020063TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020063TextValue = "" Then
|
||||
If $Sum1205020063TextID = "" Then
|
||||
Var $Sum1205020063TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -10173,9 +10341,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020064 </State>
|
||||
|
|
@ -10198,6 +10367,11 @@
|
|||
If $Sum1205020064TextID != "" Then
|
||||
Var $Sum1205020064TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020064TextValue = "" Then
|
||||
If $Sum1205020064TextID = "" Then
|
||||
Var $Sum1205020064TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -10522,9 +10696,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020067 </State>
|
||||
|
|
@ -10547,6 +10722,11 @@
|
|||
If $Sum1205020067TextID != "" Then
|
||||
Var $Sum1205020067TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020067TextValue = "" Then
|
||||
If $Sum1205020067TextID = "" Then
|
||||
Var $Sum1205020067TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -404,9 +404,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201030043 </State>
|
||||
|
|
@ -429,6 +430,11 @@
|
|||
If $Sum1201030043TextID != "" Then
|
||||
Var $Sum1201030043TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201030043TextValue = "" Then
|
||||
If $Sum1201030043TextID = "" Then
|
||||
Var $Sum1201030043TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -753,9 +759,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202030044 </State>
|
||||
|
|
@ -778,6 +785,11 @@
|
|||
If $Sum1202030044TextID != "" Then
|
||||
Var $Sum1202030044TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202030044TextValue = "" Then
|
||||
If $Sum1202030044TextID = "" Then
|
||||
Var $Sum1202030044TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1102,9 +1114,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030009 </State>
|
||||
|
|
@ -1127,6 +1140,11 @@
|
|||
If $Sum1203030009TextID != "" Then
|
||||
Var $Sum1203030009TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030009TextValue = "" Then
|
||||
If $Sum1203030009TextID = "" Then
|
||||
Var $Sum1203030009TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1451,9 +1469,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030026 </State>
|
||||
|
|
@ -1476,6 +1495,11 @@
|
|||
If $Sum1203030026TextID != "" Then
|
||||
Var $Sum1203030026TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030026TextValue = "" Then
|
||||
If $Sum1203030026TextID = "" Then
|
||||
Var $Sum1203030026TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1800,9 +1824,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030027 </State>
|
||||
|
|
@ -1825,6 +1850,11 @@
|
|||
If $Sum1203030027TextID != "" Then
|
||||
Var $Sum1203030027TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030027TextValue = "" Then
|
||||
If $Sum1203030027TextID = "" Then
|
||||
Var $Sum1203030027TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2149,9 +2179,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030030 </State>
|
||||
|
|
@ -2174,6 +2205,11 @@
|
|||
If $Sum1203030030TextID != "" Then
|
||||
Var $Sum1203030030TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030030TextValue = "" Then
|
||||
If $Sum1203030030TextID = "" Then
|
||||
Var $Sum1203030030TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2498,9 +2534,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030031 </State>
|
||||
|
|
@ -2523,6 +2560,11 @@
|
|||
If $Sum1203030031TextID != "" Then
|
||||
Var $Sum1203030031TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030031TextValue = "" Then
|
||||
If $Sum1203030031TextID = "" Then
|
||||
Var $Sum1203030031TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2847,9 +2889,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030032 </State>
|
||||
|
|
@ -2872,6 +2915,11 @@
|
|||
If $Sum1203030032TextID != "" Then
|
||||
Var $Sum1203030032TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030032TextValue = "" Then
|
||||
If $Sum1203030032TextID = "" Then
|
||||
Var $Sum1203030032TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3196,9 +3244,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202030048 </State>
|
||||
|
|
@ -3221,6 +3270,11 @@
|
|||
If $Sum1202030048TextID != "" Then
|
||||
Var $Sum1202030048TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202030048TextValue = "" Then
|
||||
If $Sum1202030048TextID = "" Then
|
||||
Var $Sum1202030048TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3545,9 +3599,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202030043 </State>
|
||||
|
|
@ -3570,6 +3625,11 @@
|
|||
If $Sum1202030043TextID != "" Then
|
||||
Var $Sum1202030043TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202030043TextValue = "" Then
|
||||
If $Sum1202030043TextID = "" Then
|
||||
Var $Sum1202030043TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3894,9 +3954,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030028 </State>
|
||||
|
|
@ -3919,6 +3980,11 @@
|
|||
If $Sum1203030028TextID != "" Then
|
||||
Var $Sum1203030028TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030028TextValue = "" Then
|
||||
If $Sum1203030028TextID = "" Then
|
||||
Var $Sum1203030028TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4243,9 +4309,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030029 </State>
|
||||
|
|
@ -4268,6 +4335,11 @@
|
|||
If $Sum1203030029TextID != "" Then
|
||||
Var $Sum1203030029TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030029TextValue = "" Then
|
||||
If $Sum1203030029TextID = "" Then
|
||||
Var $Sum1203030029TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4592,9 +4664,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030034 </State>
|
||||
|
|
@ -4617,6 +4690,11 @@
|
|||
If $Sum1203030034TextID != "" Then
|
||||
Var $Sum1203030034TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030034TextValue = "" Then
|
||||
If $Sum1203030034TextID = "" Then
|
||||
Var $Sum1203030034TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4941,9 +5019,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202030056 </State>
|
||||
|
|
@ -4966,6 +5045,11 @@
|
|||
If $Sum1202030056TextID != "" Then
|
||||
Var $Sum1202030056TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202030056TextValue = "" Then
|
||||
If $Sum1202030056TextID = "" Then
|
||||
Var $Sum1202030056TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5290,9 +5374,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030086 </State>
|
||||
|
|
@ -5315,6 +5400,11 @@
|
|||
If $Sum1203030086TextID != "" Then
|
||||
Var $Sum1203030086TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030086TextValue = "" Then
|
||||
If $Sum1203030086TextID = "" Then
|
||||
Var $Sum1203030086TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5639,9 +5729,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030087 </State>
|
||||
|
|
@ -5664,6 +5755,11 @@
|
|||
If $Sum1203030087TextID != "" Then
|
||||
Var $Sum1203030087TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030087TextValue = "" Then
|
||||
If $Sum1203030087TextID = "" Then
|
||||
Var $Sum1203030087TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5988,9 +6084,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201030078 </State>
|
||||
|
|
@ -6013,6 +6110,11 @@
|
|||
If $Sum1201030078TextID != "" Then
|
||||
Var $Sum1201030078TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201030078TextValue = "" Then
|
||||
If $Sum1201030078TextID = "" Then
|
||||
Var $Sum1201030078TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6337,9 +6439,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1221030078 </State>
|
||||
|
|
@ -6362,6 +6465,11 @@
|
|||
If $Sum1221030078TextID != "" Then
|
||||
Var $Sum1221030078TextValue = ""
|
||||
EndIf
|
||||
If $Sum1221030078TextValue = "" Then
|
||||
If $Sum1221030078TextID = "" Then
|
||||
Var $Sum1221030078TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6686,9 +6794,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202030057 </State>
|
||||
|
|
@ -6711,6 +6820,11 @@
|
|||
If $Sum1202030057TextID != "" Then
|
||||
Var $Sum1202030057TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202030057TextValue = "" Then
|
||||
If $Sum1202030057TextID = "" Then
|
||||
Var $Sum1202030057TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7035,9 +7149,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202030058 </State>
|
||||
|
|
@ -7060,6 +7175,11 @@
|
|||
If $Sum1202030058TextID != "" Then
|
||||
Var $Sum1202030058TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202030058TextValue = "" Then
|
||||
If $Sum1202030058TextID = "" Then
|
||||
Var $Sum1202030058TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -399,9 +399,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020057 </State>
|
||||
|
|
@ -424,6 +425,11 @@
|
|||
If $Sum1201020057TextID != "" Then
|
||||
Var $Sum1201020057TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020057TextValue = "" Then
|
||||
If $Sum1201020057TextID = "" Then
|
||||
Var $Sum1201020057TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -748,9 +754,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1221020057 </State>
|
||||
|
|
@ -773,6 +780,11 @@
|
|||
If $Sum1221020057TextID != "" Then
|
||||
Var $Sum1221020057TextValue = ""
|
||||
EndIf
|
||||
If $Sum1221020057TextValue = "" Then
|
||||
If $Sum1221020057TextID = "" Then
|
||||
Var $Sum1221020057TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1097,9 +1109,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020058 </State>
|
||||
|
|
@ -1122,6 +1135,11 @@
|
|||
If $Sum1201020058TextID != "" Then
|
||||
Var $Sum1201020058TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020058TextValue = "" Then
|
||||
If $Sum1201020058TextID = "" Then
|
||||
Var $Sum1201020058TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1446,9 +1464,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1221020058 </State>
|
||||
|
|
@ -1471,6 +1490,11 @@
|
|||
If $Sum1221020058TextID != "" Then
|
||||
Var $Sum1221020058TextValue = ""
|
||||
EndIf
|
||||
If $Sum1221020058TextValue = "" Then
|
||||
If $Sum1221020058TextID = "" Then
|
||||
Var $Sum1221020058TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1795,9 +1819,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202030050 </State>
|
||||
|
|
@ -1820,6 +1845,11 @@
|
|||
If $Sum1202030050TextID != "" Then
|
||||
Var $Sum1202030050TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202030050TextValue = "" Then
|
||||
If $Sum1202030050TextID = "" Then
|
||||
Var $Sum1202030050TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2144,9 +2174,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020064 </State>
|
||||
|
|
@ -2169,6 +2200,11 @@
|
|||
If $Sum1201020064TextID != "" Then
|
||||
Var $Sum1201020064TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020064TextValue = "" Then
|
||||
If $Sum1201020064TextID = "" Then
|
||||
Var $Sum1201020064TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2493,9 +2529,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1221020064 </State>
|
||||
|
|
@ -2518,6 +2555,11 @@
|
|||
If $Sum1221020064TextID != "" Then
|
||||
Var $Sum1221020064TextValue = ""
|
||||
EndIf
|
||||
If $Sum1221020064TextValue = "" Then
|
||||
If $Sum1221020064TextID = "" Then
|
||||
Var $Sum1221020064TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2842,9 +2884,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203020035 </State>
|
||||
|
|
@ -2867,6 +2910,11 @@
|
|||
If $Sum1203020035TextID != "" Then
|
||||
Var $Sum1203020035TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203020035TextValue = "" Then
|
||||
If $Sum1203020035TextID = "" Then
|
||||
Var $Sum1203020035TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3191,9 +3239,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030034 </State>
|
||||
|
|
@ -3216,6 +3265,11 @@
|
|||
If $Sum1203030034TextID != "" Then
|
||||
Var $Sum1203030034TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030034TextValue = "" Then
|
||||
If $Sum1203030034TextID = "" Then
|
||||
Var $Sum1203030034TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3540,9 +3594,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030037 </State>
|
||||
|
|
@ -3565,6 +3620,11 @@
|
|||
If $Sum1203030037TextID != "" Then
|
||||
Var $Sum1203030037TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030037TextValue = "" Then
|
||||
If $Sum1203030037TextID = "" Then
|
||||
Var $Sum1203030037TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3889,9 +3949,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020063 </State>
|
||||
|
|
@ -3914,6 +3975,11 @@
|
|||
If $Sum1205020063TextID != "" Then
|
||||
Var $Sum1205020063TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020063TextValue = "" Then
|
||||
If $Sum1205020063TextID = "" Then
|
||||
Var $Sum1205020063TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4238,9 +4304,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020064 </State>
|
||||
|
|
@ -4263,6 +4330,11 @@
|
|||
If $Sum1205020064TextID != "" Then
|
||||
Var $Sum1205020064TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020064TextValue = "" Then
|
||||
If $Sum1205020064TextID = "" Then
|
||||
Var $Sum1205020064TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4587,9 +4659,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020067 </State>
|
||||
|
|
@ -4612,6 +4685,11 @@
|
|||
If $Sum1205020067TextID != "" Then
|
||||
Var $Sum1205020067TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020067TextValue = "" Then
|
||||
If $Sum1205020067TextID = "" Then
|
||||
Var $Sum1205020067TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -407,9 +407,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12010100591201020059 </State>
|
||||
|
|
@ -432,6 +433,11 @@
|
|||
If $Sum12010100591201020059TextID != "" Then
|
||||
Var $Sum12010100591201020059TextValue = ""
|
||||
EndIf
|
||||
If $Sum12010100591201020059TextValue = "" Then
|
||||
If $Sum12010100591201020059TextID = "" Then
|
||||
Var $Sum12010100591201020059TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -760,9 +766,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12210100591221020059 </State>
|
||||
|
|
@ -785,6 +792,11 @@
|
|||
If $Sum12210100591221020059TextID != "" Then
|
||||
Var $Sum12210100591221020059TextValue = ""
|
||||
EndIf
|
||||
If $Sum12210100591221020059TextValue = "" Then
|
||||
If $Sum12210100591221020059TextID = "" Then
|
||||
Var $Sum12210100591221020059TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1113,9 +1125,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120101006012010200601201030060 </State>
|
||||
|
|
@ -1138,6 +1151,11 @@
|
|||
If $Sum120101006012010200601201030060TextID != "" Then
|
||||
Var $Sum120101006012010200601201030060TextValue = ""
|
||||
EndIf
|
||||
If $Sum120101006012010200601201030060TextValue = "" Then
|
||||
If $Sum120101006012010200601201030060TextID = "" Then
|
||||
Var $Sum120101006012010200601201030060TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1466,9 +1484,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum122101006012210200601221030060 </State>
|
||||
|
|
@ -1491,6 +1510,11 @@
|
|||
If $Sum122101006012210200601221030060TextID != "" Then
|
||||
Var $Sum122101006012210200601221030060TextValue = ""
|
||||
EndIf
|
||||
If $Sum122101006012210200601221030060TextValue = "" Then
|
||||
If $Sum122101006012210200601221030060TextID = "" Then
|
||||
Var $Sum122101006012210200601221030060TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1819,9 +1843,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120201005112020200511202030051 </State>
|
||||
|
|
@ -1844,6 +1869,11 @@
|
|||
If $Sum120201005112020200511202030051TextID != "" Then
|
||||
Var $Sum120201005112020200511202030051TextValue = ""
|
||||
EndIf
|
||||
If $Sum120201005112020200511202030051TextValue = "" Then
|
||||
If $Sum120201005112020200511202030051TextID = "" Then
|
||||
Var $Sum120201005112020200511202030051TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2168,9 +2198,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202020052 </State>
|
||||
|
|
@ -2193,6 +2224,11 @@
|
|||
If $Sum1202020052TextID != "" Then
|
||||
Var $Sum1202020052TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202020052TextValue = "" Then
|
||||
If $Sum1202020052TextID = "" Then
|
||||
Var $Sum1202020052TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2521,9 +2557,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120301003812030200381203030038 </State>
|
||||
|
|
@ -2546,6 +2583,11 @@
|
|||
If $Sum120301003812030200381203030038TextID != "" Then
|
||||
Var $Sum120301003812030200381203030038TextValue = ""
|
||||
EndIf
|
||||
If $Sum120301003812030200381203030038TextValue = "" Then
|
||||
If $Sum120301003812030200381203030038TextID = "" Then
|
||||
Var $Sum120301003812030200381203030038TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2870,9 +2912,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12030200391203030039 </State>
|
||||
|
|
@ -2895,6 +2938,11 @@
|
|||
If $Sum12030200391203030039TextID != "" Then
|
||||
Var $Sum12030200391203030039TextValue = ""
|
||||
EndIf
|
||||
If $Sum12030200391203030039TextValue = "" Then
|
||||
If $Sum12030200391203030039TextID = "" Then
|
||||
Var $Sum12030200391203030039TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3219,9 +3267,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030040 </State>
|
||||
|
|
@ -3244,6 +3293,11 @@
|
|||
If $Sum1203030040TextID != "" Then
|
||||
Var $Sum1203030040TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030040TextValue = "" Then
|
||||
If $Sum1203030040TextID = "" Then
|
||||
Var $Sum1203030040TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3568,9 +3622,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020068 </State>
|
||||
|
|
@ -3593,6 +3648,11 @@
|
|||
If $Sum1205020068TextID != "" Then
|
||||
Var $Sum1205020068TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020068TextValue = "" Then
|
||||
If $Sum1205020068TextID = "" Then
|
||||
Var $Sum1205020068TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3917,9 +3977,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020069 </State>
|
||||
|
|
@ -3942,6 +4003,11 @@
|
|||
If $Sum1205020069TextID != "" Then
|
||||
Var $Sum1205020069TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020069TextValue = "" Then
|
||||
If $Sum1205020069TextID = "" Then
|
||||
Var $Sum1205020069TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4266,9 +4332,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020070 </State>
|
||||
|
|
@ -4291,6 +4358,11 @@
|
|||
If $Sum1205020070TextID != "" Then
|
||||
Var $Sum1205020070TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020070TextValue = "" Then
|
||||
If $Sum1205020070TextID = "" Then
|
||||
Var $Sum1205020070TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4615,9 +4687,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020072 </State>
|
||||
|
|
@ -4640,6 +4713,11 @@
|
|||
If $Sum1205020072TextID != "" Then
|
||||
Var $Sum1205020072TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020072TextValue = "" Then
|
||||
If $Sum1205020072TextID = "" Then
|
||||
Var $Sum1205020072TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4964,9 +5042,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020073 </State>
|
||||
|
|
@ -4989,6 +5068,11 @@
|
|||
If $Sum1205020073TextID != "" Then
|
||||
Var $Sum1205020073TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020073TextValue = "" Then
|
||||
If $Sum1205020073TextID = "" Then
|
||||
Var $Sum1205020073TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -404,9 +404,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020008 </State>
|
||||
|
|
@ -429,6 +430,11 @@
|
|||
If $Sum1299020008TextID != "" Then
|
||||
Var $Sum1299020008TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020008TextValue = "" Then
|
||||
If $Sum1299020008TextID = "" Then
|
||||
Var $Sum1299020008TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -753,9 +759,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020003 </State>
|
||||
|
|
@ -778,6 +785,11 @@
|
|||
If $Sum1299020003TextID != "" Then
|
||||
Var $Sum1299020003TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020003TextValue = "" Then
|
||||
If $Sum1299020003TextID = "" Then
|
||||
Var $Sum1299020003TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1102,9 +1114,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020046 </State>
|
||||
|
|
@ -1127,6 +1140,11 @@
|
|||
If $Sum1205020046TextID != "" Then
|
||||
Var $Sum1205020046TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020046TextValue = "" Then
|
||||
If $Sum1205020046TextID = "" Then
|
||||
Var $Sum1205020046TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1451,9 +1469,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050058 </State>
|
||||
|
|
@ -1476,6 +1495,11 @@
|
|||
If $Sum1299050058TextID != "" Then
|
||||
Var $Sum1299050058TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050058TextValue = "" Then
|
||||
If $Sum1299050058TextID = "" Then
|
||||
Var $Sum1299050058TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1800,9 +1824,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050060 </State>
|
||||
|
|
@ -1825,6 +1850,11 @@
|
|||
If $Sum1299050060TextID != "" Then
|
||||
Var $Sum1299050060TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050060TextValue = "" Then
|
||||
If $Sum1299050060TextID = "" Then
|
||||
Var $Sum1299050060TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2149,9 +2179,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020007 </State>
|
||||
|
|
@ -2174,6 +2205,11 @@
|
|||
If $Sum1205020007TextID != "" Then
|
||||
Var $Sum1205020007TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020007TextValue = "" Then
|
||||
If $Sum1205020007TextID = "" Then
|
||||
Var $Sum1205020007TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2498,9 +2534,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050053 </State>
|
||||
|
|
@ -2523,6 +2560,11 @@
|
|||
If $Sum1299050053TextID != "" Then
|
||||
Var $Sum1299050053TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050053TextValue = "" Then
|
||||
If $Sum1299050053TextID = "" Then
|
||||
Var $Sum1299050053TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2847,9 +2889,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050064 </State>
|
||||
|
|
@ -2872,6 +2915,11 @@
|
|||
If $Sum1299050064TextID != "" Then
|
||||
Var $Sum1299050064TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050064TextValue = "" Then
|
||||
If $Sum1299050064TextID = "" Then
|
||||
Var $Sum1299050064TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3196,9 +3244,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020007 </State>
|
||||
|
|
@ -3221,6 +3270,11 @@
|
|||
If $Sum1299020007TextID != "" Then
|
||||
Var $Sum1299020007TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020007TextValue = "" Then
|
||||
If $Sum1299020007TextID = "" Then
|
||||
Var $Sum1299020007TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3545,9 +3599,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020084 </State>
|
||||
|
|
@ -3570,6 +3625,11 @@
|
|||
If $Sum1205020084TextID != "" Then
|
||||
Var $Sum1205020084TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020084TextValue = "" Then
|
||||
If $Sum1205020084TextID = "" Then
|
||||
Var $Sum1205020084TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3894,9 +3954,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050052 </State>
|
||||
|
|
@ -3919,6 +3980,11 @@
|
|||
If $Sum1299050052TextID != "" Then
|
||||
Var $Sum1299050052TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050052TextValue = "" Then
|
||||
If $Sum1299050052TextID = "" Then
|
||||
Var $Sum1299050052TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4243,9 +4309,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020067 </State>
|
||||
|
|
@ -4268,6 +4335,11 @@
|
|||
If $Sum1205020067TextID != "" Then
|
||||
Var $Sum1205020067TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020067TextValue = "" Then
|
||||
If $Sum1205020067TextID = "" Then
|
||||
Var $Sum1205020067TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4592,9 +4664,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205030007 </State>
|
||||
|
|
@ -4617,6 +4690,11 @@
|
|||
If $Sum1205030007TextID != "" Then
|
||||
Var $Sum1205030007TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205030007TextValue = "" Then
|
||||
If $Sum1205030007TextID = "" Then
|
||||
Var $Sum1205030007TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4941,9 +5019,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050057 </State>
|
||||
|
|
@ -4966,6 +5045,11 @@
|
|||
If $Sum1299050057TextID != "" Then
|
||||
Var $Sum1299050057TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050057TextValue = "" Then
|
||||
If $Sum1299050057TextID = "" Then
|
||||
Var $Sum1299050057TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -405,9 +405,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202020044 </State>
|
||||
|
|
@ -430,6 +431,11 @@
|
|||
If $Sum1202020044TextID != "" Then
|
||||
Var $Sum1202020044TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202020044TextValue = "" Then
|
||||
If $Sum1202020044TextID = "" Then
|
||||
Var $Sum1202020044TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -754,9 +760,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202020043 </State>
|
||||
|
|
@ -779,6 +786,11 @@
|
|||
If $Sum1202020043TextID != "" Then
|
||||
Var $Sum1202020043TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202020043TextValue = "" Then
|
||||
If $Sum1202020043TextID = "" Then
|
||||
Var $Sum1202020043TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1103,9 +1115,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020003 </State>
|
||||
|
|
@ -1128,6 +1141,11 @@
|
|||
If $Sum1299020003TextID != "" Then
|
||||
Var $Sum1299020003TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020003TextValue = "" Then
|
||||
If $Sum1299020003TextID = "" Then
|
||||
Var $Sum1299020003TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1452,9 +1470,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020001 </State>
|
||||
|
|
@ -1477,6 +1496,11 @@
|
|||
If $Sum1299020001TextID != "" Then
|
||||
Var $Sum1299020001TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020001TextValue = "" Then
|
||||
If $Sum1299020001TextID = "" Then
|
||||
Var $Sum1299020001TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1801,9 +1825,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030046 </State>
|
||||
|
|
@ -1826,6 +1851,11 @@
|
|||
If $Sum1299030046TextID != "" Then
|
||||
Var $Sum1299030046TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030046TextValue = "" Then
|
||||
If $Sum1299030046TextID = "" Then
|
||||
Var $Sum1299030046TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2150,9 +2180,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020011 </State>
|
||||
|
|
@ -2175,6 +2206,11 @@
|
|||
If $Sum1299020011TextID != "" Then
|
||||
Var $Sum1299020011TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020011TextValue = "" Then
|
||||
If $Sum1299020011TextID = "" Then
|
||||
Var $Sum1299020011TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2499,9 +2535,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020015 </State>
|
||||
|
|
@ -2524,6 +2561,11 @@
|
|||
If $Sum1299020015TextID != "" Then
|
||||
Var $Sum1299020015TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020015TextValue = "" Then
|
||||
If $Sum1299020015TextID = "" Then
|
||||
Var $Sum1299020015TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2848,9 +2890,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050059 </State>
|
||||
|
|
@ -2873,6 +2916,11 @@
|
|||
If $Sum1299050059TextID != "" Then
|
||||
Var $Sum1299050059TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050059TextValue = "" Then
|
||||
If $Sum1299050059TextID = "" Then
|
||||
Var $Sum1299050059TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3197,9 +3245,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050057 </State>
|
||||
|
|
@ -3222,6 +3271,11 @@
|
|||
If $Sum1299050057TextID != "" Then
|
||||
Var $Sum1299050057TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050057TextValue = "" Then
|
||||
If $Sum1299050057TextID = "" Then
|
||||
Var $Sum1299050057TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3546,9 +3600,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030035 </State>
|
||||
|
|
@ -3571,6 +3626,11 @@
|
|||
If $Sum1203030035TextID != "" Then
|
||||
Var $Sum1203030035TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030035TextValue = "" Then
|
||||
If $Sum1203030035TextID = "" Then
|
||||
Var $Sum1203030035TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3895,9 +3955,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203020036 </State>
|
||||
|
|
@ -3920,6 +3981,11 @@
|
|||
If $Sum1203020036TextID != "" Then
|
||||
Var $Sum1203020036TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203020036TextValue = "" Then
|
||||
If $Sum1203020036TextID = "" Then
|
||||
Var $Sum1203020036TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4244,9 +4310,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030066 </State>
|
||||
|
|
@ -4269,6 +4336,11 @@
|
|||
If $Sum1299030066TextID != "" Then
|
||||
Var $Sum1299030066TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030066TextValue = "" Then
|
||||
If $Sum1299030066TextID = "" Then
|
||||
Var $Sum1299030066TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -404,9 +404,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205030064 </State>
|
||||
|
|
@ -429,6 +430,11 @@
|
|||
If $Sum1205030064TextID != "" Then
|
||||
Var $Sum1205030064TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205030064TextValue = "" Then
|
||||
If $Sum1205030064TextID = "" Then
|
||||
Var $Sum1205030064TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -753,9 +759,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050073 </State>
|
||||
|
|
@ -778,6 +785,11 @@
|
|||
If $Sum1299050073TextID != "" Then
|
||||
Var $Sum1299050073TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050073TextValue = "" Then
|
||||
If $Sum1299050073TextID = "" Then
|
||||
Var $Sum1299050073TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1102,9 +1114,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202020056 </State>
|
||||
|
|
@ -1127,6 +1140,11 @@
|
|||
If $Sum1202020056TextID != "" Then
|
||||
Var $Sum1202020056TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202020056TextValue = "" Then
|
||||
If $Sum1202020056TextID = "" Then
|
||||
Var $Sum1202020056TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1451,9 +1469,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020073 </State>
|
||||
|
|
@ -1476,6 +1495,11 @@
|
|||
If $Sum1201020073TextID != "" Then
|
||||
Var $Sum1201020073TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020073TextValue = "" Then
|
||||
If $Sum1201020073TextID = "" Then
|
||||
Var $Sum1201020073TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1800,9 +1824,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1221020073 </State>
|
||||
|
|
@ -1825,6 +1850,11 @@
|
|||
If $Sum1221020073TextID != "" Then
|
||||
Var $Sum1221020073TextValue = ""
|
||||
EndIf
|
||||
If $Sum1221020073TextValue = "" Then
|
||||
If $Sum1221020073TextID = "" Then
|
||||
Var $Sum1221020073TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2149,9 +2179,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030046 </State>
|
||||
|
|
@ -2174,6 +2205,11 @@
|
|||
If $Sum1203030046TextID != "" Then
|
||||
Var $Sum1203030046TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030046TextValue = "" Then
|
||||
If $Sum1203030046TextID = "" Then
|
||||
Var $Sum1203030046TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2498,9 +2534,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203020073 </State>
|
||||
|
|
@ -2523,6 +2560,11 @@
|
|||
If $Sum1203020073TextID != "" Then
|
||||
Var $Sum1203020073TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203020073TextValue = "" Then
|
||||
If $Sum1203020073TextID = "" Then
|
||||
Var $Sum1203020073TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2847,9 +2889,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202020067 </State>
|
||||
|
|
@ -2872,6 +2915,11 @@
|
|||
If $Sum1202020067TextID != "" Then
|
||||
Var $Sum1202020067TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202020067TextValue = "" Then
|
||||
If $Sum1202020067TextID = "" Then
|
||||
Var $Sum1202020067TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3196,9 +3244,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020074 </State>
|
||||
|
|
@ -3221,6 +3270,11 @@
|
|||
If $Sum1201020074TextID != "" Then
|
||||
Var $Sum1201020074TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020074TextValue = "" Then
|
||||
If $Sum1201020074TextID = "" Then
|
||||
Var $Sum1201020074TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3545,9 +3599,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1221020074 </State>
|
||||
|
|
@ -3570,6 +3625,11 @@
|
|||
If $Sum1221020074TextID != "" Then
|
||||
Var $Sum1221020074TextValue = ""
|
||||
EndIf
|
||||
If $Sum1221020074TextValue = "" Then
|
||||
If $Sum1221020074TextID = "" Then
|
||||
Var $Sum1221020074TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3894,9 +3954,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202030053 </State>
|
||||
|
|
@ -3919,6 +3980,11 @@
|
|||
If $Sum1202030053TextID != "" Then
|
||||
Var $Sum1202030053TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202030053TextValue = "" Then
|
||||
If $Sum1202030053TextID = "" Then
|
||||
Var $Sum1202030053TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4243,9 +4309,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205030115 </State>
|
||||
|
|
@ -4268,6 +4335,11 @@
|
|||
If $Sum1205030115TextID != "" Then
|
||||
Var $Sum1205030115TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205030115TextValue = "" Then
|
||||
If $Sum1205030115TextID = "" Then
|
||||
Var $Sum1205030115TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -406,9 +406,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120201003912020200391202030039 </State>
|
||||
|
|
@ -431,6 +432,11 @@
|
|||
If $Sum120201003912020200391202030039TextID != "" Then
|
||||
Var $Sum120201003912020200391202030039TextValue = ""
|
||||
EndIf
|
||||
If $Sum120201003912020200391202030039TextValue = "" Then
|
||||
If $Sum120201003912020200391202030039TextID = "" Then
|
||||
Var $Sum120201003912020200391202030039TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -759,9 +765,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020110381202021038 </State>
|
||||
|
|
@ -784,6 +791,11 @@
|
|||
If $Sum12020110381202021038TextID != "" Then
|
||||
Var $Sum12020110381202021038TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020110381202021038TextValue = "" Then
|
||||
If $Sum12020110381202021038TextID = "" Then
|
||||
Var $Sum12020110381202021038TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1112,9 +1124,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020100471202020047 </State>
|
||||
|
|
@ -1137,6 +1150,11 @@
|
|||
If $Sum12020100471202020047TextID != "" Then
|
||||
Var $Sum12020100471202020047TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020100471202020047TextValue = "" Then
|
||||
If $Sum12020100471202020047TextID = "" Then
|
||||
Var $Sum12020100471202020047TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1465,9 +1483,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120101005512010200551201030055 </State>
|
||||
|
|
@ -1490,6 +1509,11 @@
|
|||
If $Sum120101005512010200551201030055TextID != "" Then
|
||||
Var $Sum120101005512010200551201030055TextValue = ""
|
||||
EndIf
|
||||
If $Sum120101005512010200551201030055TextValue = "" Then
|
||||
If $Sum120101005512010200551201030055TextID = "" Then
|
||||
Var $Sum120101005512010200551201030055TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1818,9 +1842,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum122101005512210200551221030055 </State>
|
||||
|
|
@ -1843,6 +1868,11 @@
|
|||
If $Sum122101005512210200551221030055TextID != "" Then
|
||||
Var $Sum122101005512210200551221030055TextValue = ""
|
||||
EndIf
|
||||
If $Sum122101005512210200551221030055TextValue = "" Then
|
||||
If $Sum122101005512210200551221030055TextID = "" Then
|
||||
Var $Sum122101005512210200551221030055TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2171,9 +2201,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020110401202021040 </State>
|
||||
|
|
@ -2196,6 +2227,11 @@
|
|||
If $Sum12020110401202021040TextID != "" Then
|
||||
Var $Sum12020110401202021040TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020110401202021040TextValue = "" Then
|
||||
If $Sum12020110401202021040TextID = "" Then
|
||||
Var $Sum12020110401202021040TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2524,9 +2560,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020110391202021039 </State>
|
||||
|
|
@ -2549,6 +2586,11 @@
|
|||
If $Sum12020110391202021039TextID != "" Then
|
||||
Var $Sum12020110391202021039TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020110391202021039TextValue = "" Then
|
||||
If $Sum12020110391202021039TextID = "" Then
|
||||
Var $Sum12020110391202021039TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2873,9 +2915,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050062 </State>
|
||||
|
|
@ -2898,6 +2941,11 @@
|
|||
If $Sum1299050062TextID != "" Then
|
||||
Var $Sum1299050062TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050062TextValue = "" Then
|
||||
If $Sum1299050062TextID = "" Then
|
||||
Var $Sum1299050062TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3222,9 +3270,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202020054 </State>
|
||||
|
|
@ -3247,6 +3296,11 @@
|
|||
If $Sum1202020054TextID != "" Then
|
||||
Var $Sum1202020054TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202020054TextValue = "" Then
|
||||
If $Sum1202020054TextID = "" Then
|
||||
Var $Sum1202020054TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3571,9 +3625,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020002 </State>
|
||||
|
|
@ -3596,6 +3651,11 @@
|
|||
If $Sum1299020002TextID != "" Then
|
||||
Var $Sum1299020002TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020002TextValue = "" Then
|
||||
If $Sum1299020002TextID = "" Then
|
||||
Var $Sum1299020002TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3920,9 +3980,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202030045 </State>
|
||||
|
|
@ -3945,6 +4006,11 @@
|
|||
If $Sum1202030045TextID != "" Then
|
||||
Var $Sum1202030045TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202030045TextValue = "" Then
|
||||
If $Sum1202030045TextID = "" Then
|
||||
Var $Sum1202030045TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4273,9 +4339,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120201002612020200261202030026 </State>
|
||||
|
|
@ -4298,6 +4365,11 @@
|
|||
If $Sum120201002612020200261202030026TextID != "" Then
|
||||
Var $Sum120201002612020200261202030026TextValue = ""
|
||||
EndIf
|
||||
If $Sum120201002612020200261202030026TextValue = "" Then
|
||||
If $Sum120201002612020200261202030026TextID = "" Then
|
||||
Var $Sum120201002612020200261202030026TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4626,9 +4698,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020110261202021026 </State>
|
||||
|
|
@ -4651,6 +4724,11 @@
|
|||
If $Sum12020110261202021026TextID != "" Then
|
||||
Var $Sum12020110261202021026TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020110261202021026TextValue = "" Then
|
||||
If $Sum12020110261202021026TextID = "" Then
|
||||
Var $Sum12020110261202021026TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4979,9 +5057,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120201002712020200271202030027 </State>
|
||||
|
|
@ -5004,6 +5083,11 @@
|
|||
If $Sum120201002712020200271202030027TextID != "" Then
|
||||
Var $Sum120201002712020200271202030027TextValue = ""
|
||||
EndIf
|
||||
If $Sum120201002712020200271202030027TextValue = "" Then
|
||||
If $Sum120201002712020200271202030027TextID = "" Then
|
||||
Var $Sum120201002712020200271202030027TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5332,9 +5416,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020110271202021027 </State>
|
||||
|
|
@ -5357,6 +5442,11 @@
|
|||
If $Sum12020110271202021027TextID != "" Then
|
||||
Var $Sum12020110271202021027TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020110271202021027TextValue = "" Then
|
||||
If $Sum12020110271202021027TextID = "" Then
|
||||
Var $Sum12020110271202021027TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5685,9 +5775,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120201002812020200281202030028 </State>
|
||||
|
|
@ -5710,6 +5801,11 @@
|
|||
If $Sum120201002812020200281202030028TextID != "" Then
|
||||
Var $Sum120201002812020200281202030028TextValue = ""
|
||||
EndIf
|
||||
If $Sum120201002812020200281202030028TextValue = "" Then
|
||||
If $Sum120201002812020200281202030028TextID = "" Then
|
||||
Var $Sum120201002812020200281202030028TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6038,9 +6134,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120101003112010200311201030031 </State>
|
||||
|
|
@ -6063,6 +6160,11 @@
|
|||
If $Sum120101003112010200311201030031TextID != "" Then
|
||||
Var $Sum120101003112010200311201030031TextValue = ""
|
||||
EndIf
|
||||
If $Sum120101003112010200311201030031TextValue = "" Then
|
||||
If $Sum120101003112010200311201030031TextID = "" Then
|
||||
Var $Sum120101003112010200311201030031TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6391,9 +6493,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum122101003112210200311221030031 </State>
|
||||
|
|
@ -6416,6 +6519,11 @@
|
|||
If $Sum122101003112210200311221030031TextID != "" Then
|
||||
Var $Sum122101003112210200311221030031TextValue = ""
|
||||
EndIf
|
||||
If $Sum122101003112210200311221030031TextValue = "" Then
|
||||
If $Sum122101003112210200311221030031TextID = "" Then
|
||||
Var $Sum122101003112210200311221030031TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6740,9 +6848,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020062 </State>
|
||||
|
|
@ -6765,6 +6874,11 @@
|
|||
If $Sum1201020062TextID != "" Then
|
||||
Var $Sum1201020062TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020062TextValue = "" Then
|
||||
If $Sum1201020062TextID = "" Then
|
||||
Var $Sum1201020062TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7089,9 +7203,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1221020062 </State>
|
||||
|
|
@ -7114,6 +7229,11 @@
|
|||
If $Sum1221020062TextID != "" Then
|
||||
Var $Sum1221020062TextValue = ""
|
||||
EndIf
|
||||
If $Sum1221020062TextValue = "" Then
|
||||
If $Sum1221020062TextID = "" Then
|
||||
Var $Sum1221020062TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7438,9 +7558,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202020055 </State>
|
||||
|
|
@ -7463,6 +7584,11 @@
|
|||
If $Sum1202020055TextID != "" Then
|
||||
Var $Sum1202020055TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202020055TextValue = "" Then
|
||||
If $Sum1202020055TextID = "" Then
|
||||
Var $Sum1202020055TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7791,9 +7917,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120201003712020200371202030037 </State>
|
||||
|
|
@ -7816,6 +7943,11 @@
|
|||
If $Sum120201003712020200371202030037TextID != "" Then
|
||||
Var $Sum120201003712020200371202030037TextValue = ""
|
||||
EndIf
|
||||
If $Sum120201003712020200371202030037TextValue = "" Then
|
||||
If $Sum120201003712020200371202030037TextID = "" Then
|
||||
Var $Sum120201003712020200371202030037TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8144,9 +8276,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020110371202021037 </State>
|
||||
|
|
@ -8169,6 +8302,11 @@
|
|||
If $Sum12020110371202021037TextID != "" Then
|
||||
Var $Sum12020110371202021037TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020110371202021037TextValue = "" Then
|
||||
If $Sum12020110371202021037TextID = "" Then
|
||||
Var $Sum12020110371202021037TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8493,9 +8631,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202030043 </State>
|
||||
|
|
@ -8518,6 +8657,11 @@
|
|||
If $Sum1202030043TextID != "" Then
|
||||
Var $Sum1202030043TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202030043TextValue = "" Then
|
||||
If $Sum1202030043TextID = "" Then
|
||||
Var $Sum1202030043TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8842,9 +8986,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050052 </State>
|
||||
|
|
@ -8867,6 +9012,11 @@
|
|||
If $Sum1299050052TextID != "" Then
|
||||
Var $Sum1299050052TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050052TextValue = "" Then
|
||||
If $Sum1299050052TextID = "" Then
|
||||
Var $Sum1299050052TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -9195,9 +9345,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum129901004212990200441299030046 </State>
|
||||
|
|
@ -9220,6 +9371,11 @@
|
|||
If $Sum129901004212990200441299030046TextID != "" Then
|
||||
Var $Sum129901004212990200441299030046TextValue = ""
|
||||
EndIf
|
||||
If $Sum129901004212990200441299030046TextValue = "" Then
|
||||
If $Sum129901004212990200441299030046TextID = "" Then
|
||||
Var $Sum129901004212990200441299030046TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -9548,9 +9704,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum129901004312990200451299030047 </State>
|
||||
|
|
@ -9573,6 +9730,11 @@
|
|||
If $Sum129901004312990200451299030047TextID != "" Then
|
||||
Var $Sum129901004312990200451299030047TextValue = ""
|
||||
EndIf
|
||||
If $Sum129901004312990200451299030047TextValue = "" Then
|
||||
If $Sum129901004312990200451299030047TextID = "" Then
|
||||
Var $Sum129901004312990200451299030047TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -9901,9 +10063,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12990100491299020050 </State>
|
||||
|
|
@ -9926,6 +10089,11 @@
|
|||
If $Sum12990100491299020050TextID != "" Then
|
||||
Var $Sum12990100491299020050TextValue = ""
|
||||
EndIf
|
||||
If $Sum12990100491299020050TextValue = "" Then
|
||||
If $Sum12990100491299020050TextID = "" Then
|
||||
Var $Sum12990100491299020050TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -10250,9 +10418,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050051 </State>
|
||||
|
|
@ -10275,6 +10444,11 @@
|
|||
If $Sum1299050051TextID != "" Then
|
||||
Var $Sum1299050051TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050051TextValue = "" Then
|
||||
If $Sum1299050051TextID = "" Then
|
||||
Var $Sum1299050051TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -405,9 +405,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120301002212030200221203030022 </State>
|
||||
|
|
@ -430,6 +431,11 @@
|
|||
If $Sum120301002212030200221203030022TextID != "" Then
|
||||
Var $Sum120301002212030200221203030022TextValue = ""
|
||||
EndIf
|
||||
If $Sum120301002212030200221203030022TextValue = "" Then
|
||||
If $Sum120301002212030200221203030022TextID = "" Then
|
||||
Var $Sum120301002212030200221203030022TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -758,9 +764,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12010100391201020039 </State>
|
||||
|
|
@ -783,6 +790,11 @@
|
|||
If $Sum12010100391201020039TextID != "" Then
|
||||
Var $Sum12010100391201020039TextValue = ""
|
||||
EndIf
|
||||
If $Sum12010100391201020039TextValue = "" Then
|
||||
If $Sum12010100391201020039TextID = "" Then
|
||||
Var $Sum12010100391201020039TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1111,9 +1123,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12210100391221020039 </State>
|
||||
|
|
@ -1136,6 +1149,11 @@
|
|||
If $Sum12210100391221020039TextID != "" Then
|
||||
Var $Sum12210100391221020039TextValue = ""
|
||||
EndIf
|
||||
If $Sum12210100391221020039TextValue = "" Then
|
||||
If $Sum12210100391221020039TextID = "" Then
|
||||
Var $Sum12210100391221020039TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1460,9 +1478,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030028 </State>
|
||||
|
|
@ -1485,6 +1504,11 @@
|
|||
If $Sum1203030028TextID != "" Then
|
||||
Var $Sum1203030028TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030028TextValue = "" Then
|
||||
If $Sum1203030028TextID = "" Then
|
||||
Var $Sum1203030028TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1809,9 +1833,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020044 </State>
|
||||
|
|
@ -1834,6 +1859,11 @@
|
|||
If $Sum1205020044TextID != "" Then
|
||||
Var $Sum1205020044TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020044TextValue = "" Then
|
||||
If $Sum1205020044TextID = "" Then
|
||||
Var $Sum1205020044TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2158,9 +2188,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050200471205030047 </State>
|
||||
|
|
@ -2183,6 +2214,11 @@
|
|||
If $Sum12050200471205030047TextID != "" Then
|
||||
Var $Sum12050200471205030047TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050200471205030047TextValue = "" Then
|
||||
If $Sum12050200471205030047TextID = "" Then
|
||||
Var $Sum12050200471205030047TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2507,9 +2543,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050201051205030105 </State>
|
||||
|
|
@ -2532,6 +2569,11 @@
|
|||
If $Sum12050201051205030105TextID != "" Then
|
||||
Var $Sum12050201051205030105TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050201051205030105TextValue = "" Then
|
||||
If $Sum12050201051205030105TextID = "" Then
|
||||
Var $Sum12050201051205030105TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2856,9 +2898,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020011 </State>
|
||||
|
|
@ -2881,6 +2924,11 @@
|
|||
If $Sum1299020011TextID != "" Then
|
||||
Var $Sum1299020011TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020011TextValue = "" Then
|
||||
If $Sum1299020011TextID = "" Then
|
||||
Var $Sum1299020011TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3205,9 +3253,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020013 </State>
|
||||
|
|
@ -3230,6 +3279,11 @@
|
|||
If $Sum1299020013TextID != "" Then
|
||||
Var $Sum1299020013TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020013TextValue = "" Then
|
||||
If $Sum1299020013TextID = "" Then
|
||||
Var $Sum1299020013TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3554,9 +3608,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020014 </State>
|
||||
|
|
@ -3579,6 +3634,11 @@
|
|||
If $Sum1299020014TextID != "" Then
|
||||
Var $Sum1299020014TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020014TextValue = "" Then
|
||||
If $Sum1299020014TextID = "" Then
|
||||
Var $Sum1299020014TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3903,9 +3963,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020015 </State>
|
||||
|
|
@ -3928,6 +3989,11 @@
|
|||
If $Sum1299020015TextID != "" Then
|
||||
Var $Sum1299020015TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020015TextValue = "" Then
|
||||
If $Sum1299020015TextID = "" Then
|
||||
Var $Sum1299020015TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4252,9 +4318,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020016 </State>
|
||||
|
|
@ -4277,6 +4344,11 @@
|
|||
If $Sum1299020016TextID != "" Then
|
||||
Var $Sum1299020016TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020016TextValue = "" Then
|
||||
If $Sum1299020016TextID = "" Then
|
||||
Var $Sum1299020016TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4601,9 +4673,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020018 </State>
|
||||
|
|
@ -4626,6 +4699,11 @@
|
|||
If $Sum1299020018TextID != "" Then
|
||||
Var $Sum1299020018TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020018TextValue = "" Then
|
||||
If $Sum1299020018TextID = "" Then
|
||||
Var $Sum1299020018TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4950,9 +5028,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030016 </State>
|
||||
|
|
@ -4975,6 +5054,11 @@
|
|||
If $Sum1299030016TextID != "" Then
|
||||
Var $Sum1299030016TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030016TextValue = "" Then
|
||||
If $Sum1299030016TextID = "" Then
|
||||
Var $Sum1299030016TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5299,9 +5383,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -5324,6 +5409,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -404,9 +404,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201030078 </State>
|
||||
|
|
@ -429,6 +430,11 @@
|
|||
If $Sum1201030078TextID != "" Then
|
||||
Var $Sum1201030078TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201030078TextValue = "" Then
|
||||
If $Sum1201030078TextID = "" Then
|
||||
Var $Sum1201030078TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -753,9 +759,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1221030078 </State>
|
||||
|
|
@ -778,6 +785,11 @@
|
|||
If $Sum1221030078TextID != "" Then
|
||||
Var $Sum1221030078TextValue = ""
|
||||
EndIf
|
||||
If $Sum1221030078TextValue = "" Then
|
||||
If $Sum1221030078TextID = "" Then
|
||||
Var $Sum1221030078TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1102,9 +1114,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202030057 </State>
|
||||
|
|
@ -1127,6 +1140,11 @@
|
|||
If $Sum1202030057TextID != "" Then
|
||||
Var $Sum1202030057TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202030057TextValue = "" Then
|
||||
If $Sum1202030057TextID = "" Then
|
||||
Var $Sum1202030057TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1451,9 +1469,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202030058 </State>
|
||||
|
|
@ -1476,6 +1495,11 @@
|
|||
If $Sum1202030058TextID != "" Then
|
||||
Var $Sum1202030058TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202030058TextValue = "" Then
|
||||
If $Sum1202030058TextID = "" Then
|
||||
Var $Sum1202030058TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1800,9 +1824,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030058 </State>
|
||||
|
|
@ -1825,6 +1850,11 @@
|
|||
If $Sum1203030058TextID != "" Then
|
||||
Var $Sum1203030058TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030058TextValue = "" Then
|
||||
If $Sum1203030058TextID = "" Then
|
||||
Var $Sum1203030058TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2149,9 +2179,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030011 </State>
|
||||
|
|
@ -2174,6 +2205,11 @@
|
|||
If $Sum1203030011TextID != "" Then
|
||||
Var $Sum1203030011TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030011TextValue = "" Then
|
||||
If $Sum1203030011TextID = "" Then
|
||||
Var $Sum1203030011TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2498,9 +2534,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030059 </State>
|
||||
|
|
@ -2523,6 +2560,11 @@
|
|||
If $Sum1203030059TextID != "" Then
|
||||
Var $Sum1203030059TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030059TextValue = "" Then
|
||||
If $Sum1203030059TextID = "" Then
|
||||
Var $Sum1203030059TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2847,9 +2889,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202030062 </State>
|
||||
|
|
@ -2872,6 +2915,11 @@
|
|||
If $Sum1202030062TextID != "" Then
|
||||
Var $Sum1202030062TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202030062TextValue = "" Then
|
||||
If $Sum1202030062TextID = "" Then
|
||||
Var $Sum1202030062TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3196,9 +3244,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030004 </State>
|
||||
|
|
@ -3221,6 +3270,11 @@
|
|||
If $Sum1203030004TextID != "" Then
|
||||
Var $Sum1203030004TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030004TextValue = "" Then
|
||||
If $Sum1203030004TextID = "" Then
|
||||
Var $Sum1203030004TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3545,9 +3599,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030010 </State>
|
||||
|
|
@ -3570,6 +3625,11 @@
|
|||
If $Sum1203030010TextID != "" Then
|
||||
Var $Sum1203030010TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030010TextValue = "" Then
|
||||
If $Sum1203030010TextID = "" Then
|
||||
Var $Sum1203030010TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3894,9 +3954,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030032 </State>
|
||||
|
|
@ -3919,6 +3980,11 @@
|
|||
If $Sum1203030032TextID != "" Then
|
||||
Var $Sum1203030032TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030032TextValue = "" Then
|
||||
If $Sum1203030032TextID = "" Then
|
||||
Var $Sum1203030032TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4243,9 +4309,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030067 </State>
|
||||
|
|
@ -4268,6 +4335,11 @@
|
|||
If $Sum1203030067TextID != "" Then
|
||||
Var $Sum1203030067TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030067TextValue = "" Then
|
||||
If $Sum1203030067TextID = "" Then
|
||||
Var $Sum1203030067TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4592,9 +4664,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030065 </State>
|
||||
|
|
@ -4617,6 +4690,11 @@
|
|||
If $Sum1203030065TextID != "" Then
|
||||
Var $Sum1203030065TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030065TextValue = "" Then
|
||||
If $Sum1203030065TextID = "" Then
|
||||
Var $Sum1203030065TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4941,9 +5019,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020041 </State>
|
||||
|
|
@ -4966,6 +5045,11 @@
|
|||
If $Sum1201020041TextID != "" Then
|
||||
Var $Sum1201020041TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020041TextValue = "" Then
|
||||
If $Sum1201020041TextID = "" Then
|
||||
Var $Sum1201020041TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5290,9 +5374,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1221020041 </State>
|
||||
|
|
@ -5315,6 +5400,11 @@
|
|||
If $Sum1221020041TextID != "" Then
|
||||
Var $Sum1221020041TextValue = ""
|
||||
EndIf
|
||||
If $Sum1221020041TextValue = "" Then
|
||||
If $Sum1221020041TextID = "" Then
|
||||
Var $Sum1221020041TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5639,9 +5729,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205030127 </State>
|
||||
|
|
@ -5664,6 +5755,11 @@
|
|||
If $Sum1205030127TextID != "" Then
|
||||
Var $Sum1205030127TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205030127TextValue = "" Then
|
||||
If $Sum1205030127TextID = "" Then
|
||||
Var $Sum1205030127TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -404,9 +404,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030074 </State>
|
||||
|
|
@ -429,6 +430,11 @@
|
|||
If $Sum1299030074TextID != "" Then
|
||||
Var $Sum1299030074TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030074TextValue = "" Then
|
||||
If $Sum1299030074TextID = "" Then
|
||||
Var $Sum1299030074TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -753,9 +759,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030075 </State>
|
||||
|
|
@ -778,6 +785,11 @@
|
|||
If $Sum1299030075TextID != "" Then
|
||||
Var $Sum1299030075TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030075TextValue = "" Then
|
||||
If $Sum1299030075TextID = "" Then
|
||||
Var $Sum1299030075TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1102,9 +1114,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030076 </State>
|
||||
|
|
@ -1127,6 +1140,11 @@
|
|||
If $Sum1299030076TextID != "" Then
|
||||
Var $Sum1299030076TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030076TextValue = "" Then
|
||||
If $Sum1299030076TextID = "" Then
|
||||
Var $Sum1299030076TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1451,9 +1469,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030077 </State>
|
||||
|
|
@ -1476,6 +1495,11 @@
|
|||
If $Sum1299030077TextID != "" Then
|
||||
Var $Sum1299030077TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030077TextValue = "" Then
|
||||
If $Sum1299030077TextID = "" Then
|
||||
Var $Sum1299030077TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1800,9 +1824,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030058 </State>
|
||||
|
|
@ -1825,6 +1850,11 @@
|
|||
If $Sum1299030058TextID != "" Then
|
||||
Var $Sum1299030058TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030058TextValue = "" Then
|
||||
If $Sum1299030058TextID = "" Then
|
||||
Var $Sum1299030058TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2149,9 +2179,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030011 </State>
|
||||
|
|
@ -2174,6 +2205,11 @@
|
|||
If $Sum1299030011TextID != "" Then
|
||||
Var $Sum1299030011TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030011TextValue = "" Then
|
||||
If $Sum1299030011TextID = "" Then
|
||||
Var $Sum1299030011TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2498,9 +2534,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030059 </State>
|
||||
|
|
@ -2523,6 +2560,11 @@
|
|||
If $Sum1299030059TextID != "" Then
|
||||
Var $Sum1299030059TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030059TextValue = "" Then
|
||||
If $Sum1299030059TextID = "" Then
|
||||
Var $Sum1299030059TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2847,9 +2889,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030062 </State>
|
||||
|
|
@ -2872,6 +2915,11 @@
|
|||
If $Sum1299030062TextID != "" Then
|
||||
Var $Sum1299030062TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030062TextValue = "" Then
|
||||
If $Sum1299030062TextID = "" Then
|
||||
Var $Sum1299030062TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3196,9 +3244,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030004 </State>
|
||||
|
|
@ -3221,6 +3270,11 @@
|
|||
If $Sum1299030004TextID != "" Then
|
||||
Var $Sum1299030004TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030004TextValue = "" Then
|
||||
If $Sum1299030004TextID = "" Then
|
||||
Var $Sum1299030004TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3545,9 +3599,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030010 </State>
|
||||
|
|
@ -3570,6 +3625,11 @@
|
|||
If $Sum1299030010TextID != "" Then
|
||||
Var $Sum1299030010TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030010TextValue = "" Then
|
||||
If $Sum1299030010TextID = "" Then
|
||||
Var $Sum1299030010TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3894,9 +3954,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030032 </State>
|
||||
|
|
@ -3919,6 +3980,11 @@
|
|||
If $Sum1299030032TextID != "" Then
|
||||
Var $Sum1299030032TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030032TextValue = "" Then
|
||||
If $Sum1299030032TextID = "" Then
|
||||
Var $Sum1299030032TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4243,9 +4309,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030067 </State>
|
||||
|
|
@ -4268,6 +4335,11 @@
|
|||
If $Sum1299030067TextID != "" Then
|
||||
Var $Sum1299030067TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030067TextValue = "" Then
|
||||
If $Sum1299030067TextID = "" Then
|
||||
Var $Sum1299030067TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4592,9 +4664,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030065 </State>
|
||||
|
|
@ -4617,6 +4690,11 @@
|
|||
If $Sum1299030065TextID != "" Then
|
||||
Var $Sum1299030065TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030065TextValue = "" Then
|
||||
If $Sum1299030065TextID = "" Then
|
||||
Var $Sum1299030065TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4941,9 +5019,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030078 </State>
|
||||
|
|
@ -4966,6 +5045,11 @@
|
|||
If $Sum1299030078TextID != "" Then
|
||||
Var $Sum1299030078TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030078TextValue = "" Then
|
||||
If $Sum1299030078TextID = "" Then
|
||||
Var $Sum1299030078TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5290,9 +5374,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030079 </State>
|
||||
|
|
@ -5315,6 +5400,11 @@
|
|||
If $Sum1299030079TextID != "" Then
|
||||
Var $Sum1299030079TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030079TextValue = "" Then
|
||||
If $Sum1299030079TextID = "" Then
|
||||
Var $Sum1299030079TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5639,9 +5729,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030127 </State>
|
||||
|
|
@ -5664,6 +5755,11 @@
|
|||
If $Sum1299030127TextID != "" Then
|
||||
Var $Sum1299030127TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030127TextValue = "" Then
|
||||
If $Sum1299030127TextID = "" Then
|
||||
Var $Sum1299030127TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -403,9 +403,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1241030001 </State>
|
||||
|
|
@ -428,6 +429,11 @@
|
|||
If $Sum1241030001TextID != "" Then
|
||||
Var $Sum1241030001TextValue = ""
|
||||
EndIf
|
||||
If $Sum1241030001TextValue = "" Then
|
||||
If $Sum1241030001TextID = "" Then
|
||||
Var $Sum1241030001TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -752,9 +758,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1241030002 </State>
|
||||
|
|
@ -777,6 +784,11 @@
|
|||
If $Sum1241030002TextID != "" Then
|
||||
Var $Sum1241030002TextValue = ""
|
||||
EndIf
|
||||
If $Sum1241030002TextValue = "" Then
|
||||
If $Sum1241030002TextID = "" Then
|
||||
Var $Sum1241030002TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1101,9 +1113,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1241030003 </State>
|
||||
|
|
@ -1126,6 +1139,11 @@
|
|||
If $Sum1241030003TextID != "" Then
|
||||
Var $Sum1241030003TextValue = ""
|
||||
EndIf
|
||||
If $Sum1241030003TextValue = "" Then
|
||||
If $Sum1241030003TextID = "" Then
|
||||
Var $Sum1241030003TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1450,9 +1468,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1241030004 </State>
|
||||
|
|
@ -1475,6 +1494,11 @@
|
|||
If $Sum1241030004TextID != "" Then
|
||||
Var $Sum1241030004TextValue = ""
|
||||
EndIf
|
||||
If $Sum1241030004TextValue = "" Then
|
||||
If $Sum1241030004TextID = "" Then
|
||||
Var $Sum1241030004TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1799,9 +1823,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1241030005 </State>
|
||||
|
|
@ -1824,6 +1849,11 @@
|
|||
If $Sum1241030005TextID != "" Then
|
||||
Var $Sum1241030005TextValue = ""
|
||||
EndIf
|
||||
If $Sum1241030005TextValue = "" Then
|
||||
If $Sum1241030005TextID = "" Then
|
||||
Var $Sum1241030005TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2148,9 +2178,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1241030006 </State>
|
||||
|
|
@ -2173,6 +2204,11 @@
|
|||
If $Sum1241030006TextID != "" Then
|
||||
Var $Sum1241030006TextValue = ""
|
||||
EndIf
|
||||
If $Sum1241030006TextValue = "" Then
|
||||
If $Sum1241030006TextID = "" Then
|
||||
Var $Sum1241030006TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2497,9 +2533,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1241030007 </State>
|
||||
|
|
@ -2522,6 +2559,11 @@
|
|||
If $Sum1241030007TextID != "" Then
|
||||
Var $Sum1241030007TextValue = ""
|
||||
EndIf
|
||||
If $Sum1241030007TextValue = "" Then
|
||||
If $Sum1241030007TextID = "" Then
|
||||
Var $Sum1241030007TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2846,9 +2888,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1241030008 </State>
|
||||
|
|
@ -2871,6 +2914,11 @@
|
|||
If $Sum1241030008TextID != "" Then
|
||||
Var $Sum1241030008TextValue = ""
|
||||
EndIf
|
||||
If $Sum1241030008TextValue = "" Then
|
||||
If $Sum1241030008TextID = "" Then
|
||||
Var $Sum1241030008TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3195,9 +3243,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1241030009 </State>
|
||||
|
|
@ -3220,6 +3269,11 @@
|
|||
If $Sum1241030009TextID != "" Then
|
||||
Var $Sum1241030009TextValue = ""
|
||||
EndIf
|
||||
If $Sum1241030009TextValue = "" Then
|
||||
If $Sum1241030009TextID = "" Then
|
||||
Var $Sum1241030009TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3544,9 +3598,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1241030010 </State>
|
||||
|
|
@ -3569,6 +3624,11 @@
|
|||
If $Sum1241030010TextID != "" Then
|
||||
Var $Sum1241030010TextValue = ""
|
||||
EndIf
|
||||
If $Sum1241030010TextValue = "" Then
|
||||
If $Sum1241030010TextID = "" Then
|
||||
Var $Sum1241030010TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3893,9 +3953,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1241030011 </State>
|
||||
|
|
@ -3918,6 +3979,11 @@
|
|||
If $Sum1241030011TextID != "" Then
|
||||
Var $Sum1241030011TextValue = ""
|
||||
EndIf
|
||||
If $Sum1241030011TextValue = "" Then
|
||||
If $Sum1241030011TextID = "" Then
|
||||
Var $Sum1241030011TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4242,9 +4308,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1241030012 </State>
|
||||
|
|
@ -4267,6 +4334,11 @@
|
|||
If $Sum1241030012TextID != "" Then
|
||||
Var $Sum1241030012TextValue = ""
|
||||
EndIf
|
||||
If $Sum1241030012TextValue = "" Then
|
||||
If $Sum1241030012TextID = "" Then
|
||||
Var $Sum1241030012TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4591,9 +4663,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1241030013 </State>
|
||||
|
|
@ -4616,6 +4689,11 @@
|
|||
If $Sum1241030013TextID != "" Then
|
||||
Var $Sum1241030013TextValue = ""
|
||||
EndIf
|
||||
If $Sum1241030013TextValue = "" Then
|
||||
If $Sum1241030013TextID = "" Then
|
||||
Var $Sum1241030013TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4940,9 +5018,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1241030016 </State>
|
||||
|
|
@ -4965,6 +5044,11 @@
|
|||
If $Sum1241030016TextID != "" Then
|
||||
Var $Sum1241030016TextValue = ""
|
||||
EndIf
|
||||
If $Sum1241030016TextValue = "" Then
|
||||
If $Sum1241030016TextID = "" Then
|
||||
Var $Sum1241030016TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5289,9 +5373,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1241030018 </State>
|
||||
|
|
@ -5314,6 +5399,11 @@
|
|||
If $Sum1241030018TextID != "" Then
|
||||
Var $Sum1241030018TextValue = ""
|
||||
EndIf
|
||||
If $Sum1241030018TextValue = "" Then
|
||||
If $Sum1241030018TextID = "" Then
|
||||
Var $Sum1241030018TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5638,9 +5728,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1241030021 </State>
|
||||
|
|
@ -5663,6 +5754,11 @@
|
|||
If $Sum1241030021TextID != "" Then
|
||||
Var $Sum1241030021TextValue = ""
|
||||
EndIf
|
||||
If $Sum1241030021TextValue = "" Then
|
||||
If $Sum1241030021TextID = "" Then
|
||||
Var $Sum1241030021TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5987,9 +6083,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1241030022 </State>
|
||||
|
|
@ -6012,6 +6109,11 @@
|
|||
If $Sum1241030022TextID != "" Then
|
||||
Var $Sum1241030022TextValue = ""
|
||||
EndIf
|
||||
If $Sum1241030022TextValue = "" Then
|
||||
If $Sum1241030022TextID = "" Then
|
||||
Var $Sum1241030022TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6336,9 +6438,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1241030023 </State>
|
||||
|
|
@ -6361,6 +6464,11 @@
|
|||
If $Sum1241030023TextID != "" Then
|
||||
Var $Sum1241030023TextValue = ""
|
||||
EndIf
|
||||
If $Sum1241030023TextValue = "" Then
|
||||
If $Sum1241030023TextID = "" Then
|
||||
Var $Sum1241030023TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6685,9 +6793,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1241030029 </State>
|
||||
|
|
@ -6710,6 +6819,11 @@
|
|||
If $Sum1241030029TextID != "" Then
|
||||
Var $Sum1241030029TextValue = ""
|
||||
EndIf
|
||||
If $Sum1241030029TextValue = "" Then
|
||||
If $Sum1241030029TextID = "" Then
|
||||
Var $Sum1241030029TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -404,9 +404,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020053 </State>
|
||||
|
|
@ -429,6 +430,11 @@
|
|||
If $Sum1201020053TextID != "" Then
|
||||
Var $Sum1201020053TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020053TextValue = "" Then
|
||||
If $Sum1201020053TextID = "" Then
|
||||
Var $Sum1201020053TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -753,9 +759,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020054 </State>
|
||||
|
|
@ -778,6 +785,11 @@
|
|||
If $Sum1201020054TextID != "" Then
|
||||
Var $Sum1201020054TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020054TextValue = "" Then
|
||||
If $Sum1201020054TextID = "" Then
|
||||
Var $Sum1201020054TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1102,9 +1114,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203020026 </State>
|
||||
|
|
@ -1127,6 +1140,11 @@
|
|||
If $Sum1203020026TextID != "" Then
|
||||
Var $Sum1203020026TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203020026TextValue = "" Then
|
||||
If $Sum1203020026TextID = "" Then
|
||||
Var $Sum1203020026TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1451,9 +1469,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202020043 </State>
|
||||
|
|
@ -1476,6 +1495,11 @@
|
|||
If $Sum1202020043TextID != "" Then
|
||||
Var $Sum1202020043TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202020043TextValue = "" Then
|
||||
If $Sum1202020043TextID = "" Then
|
||||
Var $Sum1202020043TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1800,9 +1824,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202020044 </State>
|
||||
|
|
@ -1825,6 +1850,11 @@
|
|||
If $Sum1202020044TextID != "" Then
|
||||
Var $Sum1202020044TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202020044TextValue = "" Then
|
||||
If $Sum1202020044TextID = "" Then
|
||||
Var $Sum1202020044TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2149,9 +2179,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020055 </State>
|
||||
|
|
@ -2174,6 +2205,11 @@
|
|||
If $Sum1205020055TextID != "" Then
|
||||
Var $Sum1205020055TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020055TextValue = "" Then
|
||||
If $Sum1205020055TextID = "" Then
|
||||
Var $Sum1205020055TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2498,9 +2534,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020056 </State>
|
||||
|
|
@ -2523,6 +2560,11 @@
|
|||
If $Sum1205020056TextID != "" Then
|
||||
Var $Sum1205020056TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020056TextValue = "" Then
|
||||
If $Sum1205020056TextID = "" Then
|
||||
Var $Sum1205020056TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -603,9 +603,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204020001 </State>
|
||||
|
|
@ -628,6 +629,11 @@
|
|||
If $Sum1204020001TextID != "" Then
|
||||
Var $Sum1204020001TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204020001TextValue = "" Then
|
||||
If $Sum1204020001TextID = "" Then
|
||||
Var $Sum1204020001TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -952,9 +958,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204020016 </State>
|
||||
|
|
@ -977,6 +984,11 @@
|
|||
If $Sum1204020016TextID != "" Then
|
||||
Var $Sum1204020016TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204020016TextValue = "" Then
|
||||
If $Sum1204020016TextID = "" Then
|
||||
Var $Sum1204020016TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1301,9 +1313,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204020002 </State>
|
||||
|
|
@ -1326,6 +1339,11 @@
|
|||
If $Sum1204020002TextID != "" Then
|
||||
Var $Sum1204020002TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204020002TextValue = "" Then
|
||||
If $Sum1204020002TextID = "" Then
|
||||
Var $Sum1204020002TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1650,9 +1668,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204020003 </State>
|
||||
|
|
@ -1675,6 +1694,11 @@
|
|||
If $Sum1204020003TextID != "" Then
|
||||
Var $Sum1204020003TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204020003TextValue = "" Then
|
||||
If $Sum1204020003TextID = "" Then
|
||||
Var $Sum1204020003TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1999,9 +2023,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204020013 </State>
|
||||
|
|
@ -2024,6 +2049,11 @@
|
|||
If $Sum1204020013TextID != "" Then
|
||||
Var $Sum1204020013TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204020013TextValue = "" Then
|
||||
If $Sum1204020013TextID = "" Then
|
||||
Var $Sum1204020013TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2348,9 +2378,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204020018 </State>
|
||||
|
|
@ -2373,6 +2404,11 @@
|
|||
If $Sum1204020018TextID != "" Then
|
||||
Var $Sum1204020018TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204020018TextValue = "" Then
|
||||
If $Sum1204020018TextID = "" Then
|
||||
Var $Sum1204020018TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2697,9 +2733,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204020004 </State>
|
||||
|
|
@ -2722,6 +2759,11 @@
|
|||
If $Sum1204020004TextID != "" Then
|
||||
Var $Sum1204020004TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204020004TextValue = "" Then
|
||||
If $Sum1204020004TextID = "" Then
|
||||
Var $Sum1204020004TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3046,9 +3088,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204020005 </State>
|
||||
|
|
@ -3071,6 +3114,11 @@
|
|||
If $Sum1204020005TextID != "" Then
|
||||
Var $Sum1204020005TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204020005TextValue = "" Then
|
||||
If $Sum1204020005TextID = "" Then
|
||||
Var $Sum1204020005TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3395,9 +3443,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204020015 </State>
|
||||
|
|
@ -3420,6 +3469,11 @@
|
|||
If $Sum1204020015TextID != "" Then
|
||||
Var $Sum1204020015TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204020015TextValue = "" Then
|
||||
If $Sum1204020015TextID = "" Then
|
||||
Var $Sum1204020015TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3744,9 +3798,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204020055 </State>
|
||||
|
|
@ -3769,6 +3824,11 @@
|
|||
If $Sum1204020055TextID != "" Then
|
||||
Var $Sum1204020055TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204020055TextValue = "" Then
|
||||
If $Sum1204020055TextID = "" Then
|
||||
Var $Sum1204020055TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4093,9 +4153,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204020006 </State>
|
||||
|
|
@ -4118,6 +4179,11 @@
|
|||
If $Sum1204020006TextID != "" Then
|
||||
Var $Sum1204020006TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204020006TextValue = "" Then
|
||||
If $Sum1204020006TextID = "" Then
|
||||
Var $Sum1204020006TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4442,9 +4508,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204020008 </State>
|
||||
|
|
@ -4467,6 +4534,11 @@
|
|||
If $Sum1204020008TextID != "" Then
|
||||
Var $Sum1204020008TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204020008TextValue = "" Then
|
||||
If $Sum1204020008TextID = "" Then
|
||||
Var $Sum1204020008TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4791,9 +4863,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204020017 </State>
|
||||
|
|
@ -4816,6 +4889,11 @@
|
|||
If $Sum1204020017TextID != "" Then
|
||||
Var $Sum1204020017TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204020017TextValue = "" Then
|
||||
If $Sum1204020017TextID = "" Then
|
||||
Var $Sum1204020017TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5140,9 +5218,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204020009 </State>
|
||||
|
|
@ -5165,6 +5244,11 @@
|
|||
If $Sum1204020009TextID != "" Then
|
||||
Var $Sum1204020009TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204020009TextValue = "" Then
|
||||
If $Sum1204020009TextID = "" Then
|
||||
Var $Sum1204020009TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5489,9 +5573,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204020010 </State>
|
||||
|
|
@ -5514,6 +5599,11 @@
|
|||
If $Sum1204020010TextID != "" Then
|
||||
Var $Sum1204020010TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204020010TextValue = "" Then
|
||||
If $Sum1204020010TextID = "" Then
|
||||
Var $Sum1204020010TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5838,9 +5928,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204020011 </State>
|
||||
|
|
@ -5863,6 +5954,11 @@
|
|||
If $Sum1204020011TextID != "" Then
|
||||
Var $Sum1204020011TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204020011TextValue = "" Then
|
||||
If $Sum1204020011TextID = "" Then
|
||||
Var $Sum1204020011TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -354,9 +354,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum129901004212990200441299030046 </State>
|
||||
|
|
@ -379,6 +380,11 @@
|
|||
If $Sum129901004212990200441299030046TextID != "" Then
|
||||
Var $Sum129901004212990200441299030046TextValue = ""
|
||||
EndIf
|
||||
If $Sum129901004212990200441299030046TextValue = "" Then
|
||||
If $Sum129901004212990200441299030046TextID = "" Then
|
||||
Var $Sum129901004212990200441299030046TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -707,9 +713,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum129901004312990200451299030047 </State>
|
||||
|
|
@ -732,6 +739,11 @@
|
|||
If $Sum129901004312990200451299030047TextID != "" Then
|
||||
Var $Sum129901004312990200451299030047TextValue = ""
|
||||
EndIf
|
||||
If $Sum129901004312990200451299030047TextValue = "" Then
|
||||
If $Sum129901004312990200451299030047TextID = "" Then
|
||||
Var $Sum129901004312990200451299030047TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1056,9 +1068,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030048 </State>
|
||||
|
|
@ -1081,6 +1094,11 @@
|
|||
If $Sum1299030048TextID != "" Then
|
||||
Var $Sum1299030048TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030048TextValue = "" Then
|
||||
If $Sum1299030048TextID = "" Then
|
||||
Var $Sum1299030048TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1409,9 +1427,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12990100491299020050 </State>
|
||||
|
|
@ -1434,6 +1453,11 @@
|
|||
If $Sum12990100491299020050TextID != "" Then
|
||||
Var $Sum12990100491299020050TextValue = ""
|
||||
EndIf
|
||||
If $Sum12990100491299020050TextValue = "" Then
|
||||
If $Sum12990100491299020050TextID = "" Then
|
||||
Var $Sum12990100491299020050TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1758,9 +1782,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050051 </State>
|
||||
|
|
@ -1783,6 +1808,11 @@
|
|||
If $Sum1299050051TextID != "" Then
|
||||
Var $Sum1299050051TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050051TextValue = "" Then
|
||||
If $Sum1299050051TextID = "" Then
|
||||
Var $Sum1299050051TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2107,9 +2137,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050052 </State>
|
||||
|
|
@ -2132,6 +2163,11 @@
|
|||
If $Sum1299050052TextID != "" Then
|
||||
Var $Sum1299050052TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050052TextValue = "" Then
|
||||
If $Sum1299050052TextID = "" Then
|
||||
Var $Sum1299050052TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -11,7 +11,13 @@
|
|||
|
||||
OpenInst 0 "/mnt/sdcard/coffeevending/taobin_project/xml/page_main_blank.xml"
|
||||
|
||||
|
||||
Var ButtonLanguageCurrentXPosition = 1005
|
||||
Var ButtonLanguageCurrentYPosition = 458 - 38
|
||||
|
||||
Var ButtonLanguageListXPosition = 970
|
||||
Var ButtonLanguageListYPosition = 450 - 38
|
||||
|
||||
|
||||
Var Timeout = 0
|
||||
|
||||
</EventOpen>
|
||||
|
|
|
|||
|
|
@ -408,9 +408,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203020007 </State>
|
||||
|
|
@ -433,6 +434,11 @@
|
|||
If $Sum1203020007TextID != "" Then
|
||||
Var $Sum1203020007TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203020007TextValue = "" Then
|
||||
If $Sum1203020007TextID = "" Then
|
||||
Var $Sum1203020007TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -757,9 +763,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -782,6 +789,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1110,9 +1122,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204020012 </State>
|
||||
|
|
@ -1135,6 +1148,11 @@
|
|||
If $Sum1204020012TextID != "" Then
|
||||
Var $Sum1204020012TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204020012TextValue = "" Then
|
||||
If $Sum1204020012TextID = "" Then
|
||||
Var $Sum1204020012TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1459,9 +1477,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -1484,6 +1503,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1812,9 +1836,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020030 </State>
|
||||
|
|
@ -1837,6 +1862,11 @@
|
|||
If $Sum1205020030TextID != "" Then
|
||||
Var $Sum1205020030TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020030TextValue = "" Then
|
||||
If $Sum1205020030TextID = "" Then
|
||||
Var $Sum1205020030TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2161,9 +2191,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -2186,6 +2217,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2514,9 +2550,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020031 </State>
|
||||
|
|
@ -2539,6 +2576,11 @@
|
|||
If $Sum1205020031TextID != "" Then
|
||||
Var $Sum1205020031TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020031TextValue = "" Then
|
||||
If $Sum1205020031TextID = "" Then
|
||||
Var $Sum1205020031TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2863,9 +2905,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -2888,6 +2931,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3216,9 +3264,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020023 </State>
|
||||
|
|
@ -3241,6 +3290,11 @@
|
|||
If $Sum1205020023TextID != "" Then
|
||||
Var $Sum1205020023TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020023TextValue = "" Then
|
||||
If $Sum1205020023TextID = "" Then
|
||||
Var $Sum1205020023TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3565,9 +3619,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -3590,6 +3645,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3918,9 +3978,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020013 </State>
|
||||
|
|
@ -3943,6 +4004,11 @@
|
|||
If $Sum1205020013TextID != "" Then
|
||||
Var $Sum1205020013TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020013TextValue = "" Then
|
||||
If $Sum1205020013TextID = "" Then
|
||||
Var $Sum1205020013TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4267,9 +4333,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -4292,6 +4359,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4620,9 +4692,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020006 </State>
|
||||
|
|
@ -4645,6 +4718,11 @@
|
|||
If $Sum1205020006TextID != "" Then
|
||||
Var $Sum1205020006TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020006TextValue = "" Then
|
||||
If $Sum1205020006TextID = "" Then
|
||||
Var $Sum1205020006TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4969,9 +5047,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -4994,6 +5073,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5322,9 +5406,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020200101202010010 </State>
|
||||
|
|
@ -5347,6 +5432,11 @@
|
|||
If $Sum12020200101202010010TextID != "" Then
|
||||
Var $Sum12020200101202010010TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020200101202010010TextValue = "" Then
|
||||
If $Sum12020200101202010010TextID = "" Then
|
||||
Var $Sum12020200101202010010TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5671,9 +5761,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -5696,6 +5787,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6020,9 +6116,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050200211205030021 </State>
|
||||
|
|
@ -6045,6 +6142,11 @@
|
|||
If $Sum12050200211205030021TextID != "" Then
|
||||
Var $Sum12050200211205030021TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050200211205030021TextValue = "" Then
|
||||
If $Sum12050200211205030021TextID = "" Then
|
||||
Var $Sum12050200211205030021TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6369,9 +6471,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -6394,6 +6497,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6718,9 +6826,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050200191205030019 </State>
|
||||
|
|
@ -6743,6 +6852,11 @@
|
|||
If $Sum12050200191205030019TextID != "" Then
|
||||
Var $Sum12050200191205030019TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050200191205030019TextValue = "" Then
|
||||
If $Sum12050200191205030019TextID = "" Then
|
||||
Var $Sum12050200191205030019TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7067,9 +7181,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -7092,6 +7207,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7416,9 +7536,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050200201205030020 </State>
|
||||
|
|
@ -7441,6 +7562,11 @@
|
|||
If $Sum12050200201205030020TextID != "" Then
|
||||
Var $Sum12050200201205030020TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050200201205030020TextValue = "" Then
|
||||
If $Sum12050200201205030020TextID = "" Then
|
||||
Var $Sum12050200201205030020TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7765,9 +7891,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -7790,6 +7917,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8118,9 +8250,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120101001012010200071201030007 </State>
|
||||
|
|
@ -8143,6 +8276,11 @@
|
|||
If $Sum120101001012010200071201030007TextID != "" Then
|
||||
Var $Sum120101001012010200071201030007TextValue = ""
|
||||
EndIf
|
||||
If $Sum120101001012010200071201030007TextValue = "" Then
|
||||
If $Sum120101001012010200071201030007TextID = "" Then
|
||||
Var $Sum120101001012010200071201030007TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8471,9 +8609,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum122101001012210200071221030007 </State>
|
||||
|
|
@ -8496,6 +8635,11 @@
|
|||
If $Sum122101001012210200071221030007TextID != "" Then
|
||||
Var $Sum122101001012210200071221030007TextValue = ""
|
||||
EndIf
|
||||
If $Sum122101001012210200071221030007TextValue = "" Then
|
||||
If $Sum122101001012210200071221030007TextID = "" Then
|
||||
Var $Sum122101001012210200071221030007TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8824,9 +8968,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12010100121201020009 </State>
|
||||
|
|
@ -8849,6 +8994,11 @@
|
|||
If $Sum12010100121201020009TextID != "" Then
|
||||
Var $Sum12010100121201020009TextValue = ""
|
||||
EndIf
|
||||
If $Sum12010100121201020009TextValue = "" Then
|
||||
If $Sum12010100121201020009TextID = "" Then
|
||||
Var $Sum12010100121201020009TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -9173,9 +9323,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050200111205030011 </State>
|
||||
|
|
@ -9198,6 +9349,11 @@
|
|||
If $Sum12050200111205030011TextID != "" Then
|
||||
Var $Sum12050200111205030011TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050200111205030011TextValue = "" Then
|
||||
If $Sum12050200111205030011TextID = "" Then
|
||||
Var $Sum12050200111205030011TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -9522,9 +9678,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -9547,6 +9704,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -9875,9 +10037,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120201000212020200021202030002 </State>
|
||||
|
|
@ -9900,6 +10063,11 @@
|
|||
If $Sum120201000212020200021202030002TextID != "" Then
|
||||
Var $Sum120201000212020200021202030002TextValue = ""
|
||||
EndIf
|
||||
If $Sum120201000212020200021202030002TextValue = "" Then
|
||||
If $Sum120201000212020200021202030002TextID = "" Then
|
||||
Var $Sum120201000212020200021202030002TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -10224,9 +10392,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -10249,6 +10418,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -10577,9 +10751,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120201000112020200011202030001 </State>
|
||||
|
|
@ -10602,6 +10777,11 @@
|
|||
If $Sum120201000112020200011202030001TextID != "" Then
|
||||
Var $Sum120201000112020200011202030001TextValue = ""
|
||||
EndIf
|
||||
If $Sum120201000112020200011202030001TextValue = "" Then
|
||||
If $Sum120201000112020200011202030001TextID = "" Then
|
||||
Var $Sum120201000112020200011202030001TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -10926,9 +11106,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -10951,6 +11132,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -11279,9 +11465,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120201003612020200361202030036 </State>
|
||||
|
|
@ -11304,6 +11491,11 @@
|
|||
If $Sum120201003612020200361202030036TextID != "" Then
|
||||
Var $Sum120201003612020200361202030036TextValue = ""
|
||||
EndIf
|
||||
If $Sum120201003612020200361202030036TextValue = "" Then
|
||||
If $Sum120201003612020200361202030036TextID = "" Then
|
||||
Var $Sum120201003612020200361202030036TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -11628,9 +11820,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -11653,6 +11846,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -11977,9 +12175,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204020007 </State>
|
||||
|
|
@ -12002,6 +12201,11 @@
|
|||
If $Sum1204020007TextID != "" Then
|
||||
Var $Sum1204020007TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204020007TextValue = "" Then
|
||||
If $Sum1204020007TextID = "" Then
|
||||
Var $Sum1204020007TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -12326,9 +12530,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -12351,6 +12556,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -12675,9 +12885,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204020019 </State>
|
||||
|
|
@ -12700,6 +12911,11 @@
|
|||
If $Sum1204020019TextID != "" Then
|
||||
Var $Sum1204020019TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204020019TextValue = "" Then
|
||||
If $Sum1204020019TextID = "" Then
|
||||
Var $Sum1204020019TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -13024,9 +13240,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050063 </State>
|
||||
|
|
@ -13049,6 +13266,11 @@
|
|||
If $Sum1299050063TextID != "" Then
|
||||
Var $Sum1299050063TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050063TextValue = "" Then
|
||||
If $Sum1299050063TextID = "" Then
|
||||
Var $Sum1299050063TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -73,7 +73,7 @@
|
|||
|
||||
RootLayoutVisible 3 "hide"
|
||||
RootLayoutVisible 13 "hide"
|
||||
|
||||
|
||||
TRY "/mnt/sdcard/coffeevending/taobin_project/inter/tha/xml/event/script_common_for_open_promotion_xml.ev"
|
||||
</EventClick>
|
||||
</Button>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue