123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884 |
- import os, sys, time
- import xlrd
- import xlwt
- import json
- from collections import OrderedDict
- from xlwt import XFStyle, Pattern
- g_level = ['First', 'Second', 'Third', 'Fourth', 'Fifth', 'Sixth', 'Seventh', 'Eighth', 'Ninth', 'Tenth', 'Eleventh',
- 'Twelfth']
- class CPathParams():
- def __init__(self):
- self.paths = OrderedDict()
- def add_name(self, level, parent, move_key, enter_key, others):
- if level not in self.paths:
- self.paths[level] = {}
-
- move_key = move_key.replace(' ', '')
- self.paths[level][parent] = {"move_key": move_key.split(';'), "enter_key": enter_key, "others": others,
- "value": []}
- def add_item(self, level, parent, option, ocr, move_key, enter_key, others):
- if level in self.paths:
- if parent not in self.paths[level]:
- self.paths[level][parent] = {}
- else:
- self.paths[level] = {}
- self.paths[level][parent] = {}
- self.paths[level][parent]["value"].append(
- {"option": option, "option_for_ocr": ocr, "option_move_key": move_key, "option_enter_key": enter_key,
- "option_others": others})
- class CValueParams():
- def __init__(self):
- self.values = OrderedDict()
- def add_name(self, name, move_key, enter_key, others):
- if name not in self.values:
- move_key = move_key.replace(' ', '')
- self.values[name] = {"move_key": move_key.split(';'), "enter_key": enter_key, "others": others, "value": []}
- def add_item(self, name, option, ocr):
- if name in self.values:
- self.values[name]["value"].append({"value": option, "value_for_ocr": ocr})
- class CExcelParser():
- def __init__(self, xls_path):
- if type(xls_path) == str:
- xls_path = xls_path.decode('utf-8')
- self.xls_path = xls_path
- self.pathParams = CPathParams()
- self.valueParams = CValueParams()
- def read_excel(self, path=None):
- if path is not None:
- if type(path) == str:
- path = path.decode('utf-8')
- self.xls_path = path
-
- wb = xlrd.open_workbook(filename=self.xls_path)
- if wb is None:
- return
-
- sheet = None
- for sh_name in wb.sheet_names():
- sheet = wb.sheet_by_name(sh_name)
- self.parse_excel(sheet, False)
-
-
-
-
-
-
-
-
-
-
-
- def parse_excel(self, sheet, bpath=True):
- last_name = None
- if u"Value" == sheet.name:
- for i in range(1, sheet.nrows):
-
- rows = tuple(sheet.row_values(i))
- if rows[1].__len__() > 0 and rows[2].__len__() > 0 and last_name.__len__() > 0:
-
- self.valueParams.add_item(last_name, rows[1], rows[2])
- elif rows[0].__len__() > 0:
- last_name = rows[0]
-
- self.valueParams.add_name(last_name, rows[3], rows[4], rows[5])
- else:
- for i in range(1, sheet.nrows):
-
- rows = tuple(sheet.row_values(i))
- if rows[1].__len__() > 0 and rows[2].__len__() > 0 and last_name.__len__() > 0:
- move_key = rows[3].split(';')
- self.pathParams.add_item(sheet.name, last_name, rows[1], rows[2], move_key, rows[4], rows[5])
- elif rows[0].__len__() > 0:
- last_name = rows[0]
- self.pathParams.add_name(sheet.name, last_name, rows[3], rows[4], rows[5])
-
- def get_menu_paths(self, option, value):
- if type(option) == str:
- option = unicode(option)
- if type(value) == str:
- value = unicode(value)
-
- vp, pp = {}, OrderedDict()
- if option in self.valueParams.values:
- vp = {"option": option, "value": value, "enter_key": self.valueParams.values[option]["enter_key"],
- "move_key": self.valueParams.values[option]["move_key"]}
-
- for item in self.valueParams.values[option]["value"]:
- if "range(" in item["value"]:
- vp["value_for_ocr"] = item["value_for_ocr"].split(';')
- break
- elif item["value"].lower() == value.lower():
- vp["value_for_ocr"] = item["value_for_ocr"].split(';')
- break
-
- paths = reversed(self.pathParams.paths)
- for level in paths:
- found = False
- for parent in self.pathParams.paths[level]:
-
- for item in self.pathParams.paths[level][parent]["value"]:
-
- if item["option"].lower() == option.lower():
- pp[level] = {
- "parent": parent,
- "move_key": self.pathParams.paths[level][parent]["move_key"],
- "enter_key": self.pathParams.paths[level][parent]["enter_key"],
- "others": self.pathParams.paths[level][parent]["others"],
- "option": item["option"],
- "option_for_ocr": item["option_for_ocr"].split(';'),
- "option_move_key": item["option_move_key"],
- "option_enter_key": item["option_enter_key"],
- "option_others": item["option_others"]
- }
- option = parent
- found = True
- break
- if found:
- break
- else:
- if parent == option:
- for item in self.pathParams.paths[level][parent]["value"]:
-
- if item["option"].lower() == value.lower():
- pp[level] = {
- "parent": parent,
- "move_key": self.pathParams.paths[level][parent]["move_key"],
- "enter_key": self.pathParams.paths[level][parent]["enter_key"],
- "others": self.pathParams.paths[level][parent]["others"],
- "option": item["option"],
- "option_for_ocr": item["option_for_ocr"].split(';'),
- "option_move_key": item["option_move_key"],
- "option_enter_key": item["option_enter_key"],
- "option_others": item["option_others"]
- }
- option = parent
- found = True
- break
-
-
- break
-
-
- return vp, pp
- def get_option_paths(self, option):
-
- pp = OrderedDict()
-
- paths = reversed(self.pathParams.paths)
- for level in paths:
- found = False
- for parent in self.pathParams.paths[level]:
-
- for item in self.pathParams.paths[level][parent]["value"]:
-
- if item["option"].lower() == option.lower():
- pp[level] = {
- "parent": parent,
- "move_key": self.pathParams.paths[level][parent]["move_key"],
- "enter_key": self.pathParams.paths[level][parent]["enter_key"],
- "others": self.pathParams.paths[level][parent]["others"],
- "option": item["option"],
- "option_for_ocr": item["option_for_ocr"].split(';'),
- "option_move_key": item["option_move_key"],
- "option_enter_key": item["option_enter_key"],
- "option_others": item["option_others"]
- }
- option = parent
- found = True
- break
- if found:
- break
- else:
- if parent == option:
- for item in self.pathParams.paths[level][parent]["value"]:
-
- if item["option"].lower() == option.lower():
- pp[level] = {
- "parent": parent,
- "move_key": self.pathParams.paths[level][parent]["move_key"],
- "enter_key": self.pathParams.paths[level][parent]["enter_key"],
- "others": self.pathParams.paths[level][parent]["others"],
- "option": item["option"],
- "option_for_ocr": item["option_for_ocr"].split(';'),
- "option_move_key": item["option_move_key"],
- "option_enter_key": item["option_enter_key"],
- "option_others": item["option_others"]
- }
- option = parent
- found = True
- break
-
-
- break
-
-
-
-
-
-
-
-
-
-
-
- return pp
-
- def get_pair_values(self, name, option=True):
- if type(name) == str:
- name = unicode(name)
- pairs = []
- if option is True:
- find = False
- for level in self.pathParams.paths:
- for item in self.pathParams.paths[level]:
- if item.lower() == name.lower():
- find = True
- for item in self.pathParams.paths[level][name]["value"]:
- pairs.append({item['option']: item['option_for_ocr'].split(';')})
- break
-
- if find is True:
- break
-
- else:
- if name in self.valueParams.values:
- for item in self.valueParams.values[name]["value"]:
- pairs.append({item['value']: item['value_for_ocr'].split(';')})
-
- return pairs
-
- def get_ocr_list(self, level, name, option, is_option=True):
- if type(name) == str:
- name = unicode(name)
- if type(option) == str:
- option = unicode(option)
- list_ocr = []
- if is_option is True:
- find = False
- for item in self.pathParams.paths[level]:
- if item.lower() == name.lower():
- find = True
- for item in self.pathParams.paths[level][name]["value"]:
- if str(option).lower() != str(item["option"]).lower():
- list_ocr.append(item['option_for_ocr'].split(';'))
- break
-
- else:
- if name in self.valueParams.values:
- for item in self.valueParams.values[name]["value"]:
- list_ocr.append(item['value_for_ocr'].split(';'))
-
- return list_ocr
-
- def get_parent_ocr_list(self, option):
-
- if type(option) == str:
- option = unicode(option)
- found = False
- list_ocr = []
-
- paths = reversed(self.pathParams.paths)
- for level in paths:
- for parent in self.pathParams.paths[level]:
- for vals in self.pathParams.paths[level][parent]["value"]:
- if vals['option'].lower() == option.lower():
- found = True
- break
-
-
- if found is True:
- break
-
-
- if found is True:
- break
-
-
- if found is True:
- for val in self.pathParams.paths[level][parent]["value"]:
- list_ocr.extend(val['option_for_ocr'].split(';'))
-
- list_ocr.sort(key=lambda i: len(i), reverse=True)
-
- return list_ocr
-
-
- def get_parent_ocr_dict(self, option, value_sheet=False):
- print "get_parent_ocr_dict.option:", option
-
- if type(option) == str:
- option = unicode(option)
- found = False
- dict_ocr = {}
- list_ocr = []
- if value_sheet is False:
-
- paths = reversed(self.pathParams.paths)
- for level in paths:
- for parent in self.pathParams.paths[level]:
- for vals in self.pathParams.paths[level][parent]["value"]:
- if vals['option'].lower() == option.lower():
- found = True
- break
-
-
- if found is True:
- break
-
-
- if found is True:
- break
-
- if found is True:
- for val in self.pathParams.paths[level][parent]["value"]:
- list_ocr = val['option_for_ocr'].split(';')
- for ocr in list_ocr:
- dict_ocr[ocr.lower()] = val['option']
- else:
- if option in self.valueParams.values:
- for val in self.valueParams.values[option]["value"]:
- list_ocr = val['value_for_ocr'].split(';')
- for ocr in list_ocr:
- dict_ocr[ocr.lower()] = val['value']
- print 'unsorted=', dict_ocr
-
- list_ocr = sorted(dict_ocr.keys(), key=lambda key: len(key), reverse=True)
- dict_reuslt = OrderedDict()
- for ocr in list_ocr:
- dict_reuslt[ocr] = dict_ocr[ocr]
-
- return dict_reuslt
- def get_option_ocr(self, option):
-
- if type(option) == str:
- option = unicode(option)
- found = False
- list_ocr = []
-
- paths = reversed(self.pathParams.paths)
- for level in paths:
- for parent in self.pathParams.paths[level]:
- for vals in self.pathParams.paths[level][parent]["value"]:
- if vals['option'].lower() == option.lower():
- list_ocr = vals['option_for_ocr'].split(';')
- found = True
- break
-
-
- if found is True:
- break
-
-
- if found is True:
- break
-
-
- return list_ocr
- def get_value(self, option, value=""):
-
- if type(option) == str:
- option = unicode(option)
- xlsValue = self.valueParams.values[option]["value"]
- valueList = []
- valueOcrList = []
- for item in xlsValue:
- valueList.append(item["value"])
- valueOcrList.append(item["value_for_ocr"])
- vp = {}
- if option in self.valueParams.values:
- vp = {"option": option, "value": valueList, "value_for_ocr": valueOcrList,
- "enter_key": self.valueParams.values[option]["enter_key"],
- "move_key": self.valueParams.values[option]["move_key"],
- "others": self.valueParams.values[option]['others']}
-
- if value != "":
- vp["value"] = value
- for item in self.valueParams.values[option]["value"]:
- if "range(" in item["value"]:
- vp["value_for_ocr"] = item["value_for_ocr"].split(';')
- break
- elif item["value"].lower() == value.lower():
- vp["value_for_ocr"] = item["value_for_ocr"].split(';')
- break
-
-
-
-
- return vp
-
- def get_option(self, option):
-
- if type(option) == str:
- option = unicode(option)
- found = False
- layers = 0
- dict_option = {}
-
- paths = reversed(self.pathParams.paths)
- for level in paths:
- for parent in self.pathParams.paths[level]:
- for vals in self.pathParams.paths[level][parent]["value"]:
- if vals['option'].lower() == option.lower():
- if dict_option.__len__() == 0:
- found = True
- dict_option['level'] = level
- dict_option['parent'] = parent
- dict_option['others'] = self.pathParams.paths[level][parent]['others']
- dict_option['enter_key'] = self.pathParams.paths[level][parent]['enter_key']
- dict_option['move_key'] = self.pathParams.paths[level][parent]['move_key']
- dict_option['option_ocr'] = vals['option_for_ocr'].split(';')
- dict_option['option_move_key'] = vals['option_move_key']
- dict_option['option_enter_key'] = vals['option_enter_key']
- dict_option['option_others'] = vals['option_others']
- option = parent
- layers += 1
- break
-
-
-
- if found is True:
- dict_option['layers'] = layers
-
- dict_option['first_parent'] = option
-
- return found, dict_option
-
- def getRepeatValueName_ValueSheet(self):
- wb = xlrd.open_workbook(filename=self.xls_path)
- valueSheet = wb.sheet_by_name("Value")
- rows = valueSheet.nrows
- all_value_option_list = []
- RepeatValueName_ValueSheet_List = []
- for i in range(1, rows):
-
- rows = tuple(valueSheet.row_values(i))
- if rows[0].__len__() > 0:
- if rows[0] in all_value_option_list:
- RepeatValueName_ValueSheet_List.append([rows[0], "Value"])
- else:
- all_value_option_list.append(rows[0])
- print "RepeatValueName_ValueSheet_List:", RepeatValueName_ValueSheet_List
- return RepeatValueName_ValueSheet_List
- def getRepeatOption_otherSheet(self):
- wb = xlrd.open_workbook(filename=self.xls_path)
- all_option_list = []
- repeatOption_otherSheet_List = []
- for sh_name in wb.sheet_names():
- sheet = wb.sheet_by_name(sh_name)
- if u"Value" == sheet.name:
- pass
- else:
- for i in range(1, sheet.nrows):
-
- rows = tuple(sheet.row_values(i))
- if rows[1].__len__() > 0:
- if rows[1] in all_option_list:
- repeatOption_otherSheet_List.append([rows[1], sheet.name])
-
- else:
- all_option_list.append(rows[1])
- print "repeatOption_otherSheet_List:", repeatOption_otherSheet_List
- return repeatOption_otherSheet_List
- def getRepeatOptionList(self):
- RepeatOptionList = []
- repeatValueName_ValueSheet = self.getRepeatValueName_ValueSheet()
- repeatOption_otherSheet = self.getRepeatOption_otherSheet()
- RepeatOptionList = repeatOption_otherSheet + repeatValueName_ValueSheet
- print "RepeatOptionList:", RepeatOptionList
- return RepeatOptionList
- def getValueSheetOptionList(self):
- wb = xlrd.open_workbook(filename=self.xls_path)
- valueSheet = wb.sheet_by_name("Value")
- rows = valueSheet.nrows
- all_value_option_list = []
- for i in range(1, rows):
-
- rows = tuple(valueSheet.row_values(i))
- if rows[0].__len__() > 0:
- all_value_option_list.append(rows[0])
- print "all_value_option_list:", all_value_option_list
- return all_value_option_list
- def checkOptionPath(self, optionName):
- optionPath = ""
- optionPathResult = "Fail"
- path_params = self.get_option_paths(optionName)
-
- if path_params.__len__() <= 0:
- optionPathResult = "NoExit"
- optionPath = u"表格中不存在到达Option: %s 的路径" % str(optionName)
- return optionPath, optionPathResult
- else:
- optionPath = str(path_params)
-
- revpp = reversed(path_params)
- level_count = 0
- for level in revpp:
- if str(level) == str(g_level[level_count]):
- level_count = level_count + 1
- else:
-
- return optionPath, optionPathResult
- optionPathResult = "Pass"
- return optionPath, optionPathResult
- def checkRunOptionPath(self, path_params):
- optionPathResult = "Fail"
-
- if path_params.__len__() <= 0:
- optionPathResult = "NoExit"
- return optionPathResult
- else:
- optionPath = str(path_params)
-
- revpp = reversed(path_params)
- level_count = 0
- for level in revpp:
- if str(level) == str(g_level[level_count]):
- level_count = level_count + 1
- else:
-
- return optionPathResult
- optionPathResult = "Pass"
- return optionPathResult
- def getCheckOptionPathExcelData(self):
- checkOptionPathExcelData = []
- checkOptionPathExcelData_Fail = []
- checkOptionPathExcelData_NoExit = []
- checkOptionPathExcelData_Pass = []
- valueSheetOptionList = self.getValueSheetOptionList()
- for optionName in valueSheetOptionList:
- optionPath, optionPathResult = self.checkOptionPath(optionName)
- if str(optionPathResult) == "Fail":
- checkOptionPathExcelData_Fail.append([optionName, optionPathResult, optionPath])
- if str(optionPathResult) == "NoExit":
- checkOptionPathExcelData_NoExit.append([optionName, optionPathResult, optionPath])
- if str(optionPathResult) == "Pass":
- checkOptionPathExcelData_Pass.append([optionName, optionPathResult, optionPath])
-
- checkOptionPathExcelData = checkOptionPathExcelData_Fail + checkOptionPathExcelData_NoExit + checkOptionPathExcelData_Pass
- return checkOptionPathExcelData
- def saveExcelData(self, checkOptionPathExcelData, repeatOptionList, all_UI_TestLanguagePath):
-
- font = xlwt.Font()
- font.bold = True
-
- borders = xlwt.Borders()
- borders.left = xlwt.Borders.THIN
- borders.right = xlwt.Borders.THIN
- borders.top = xlwt.Borders.THIN
- borders.bottom = xlwt.Borders.THIN
-
- alignment = xlwt.Alignment()
-
- alignment.horz = xlwt.Alignment.HORZ_LEFT
- alignment.vert = xlwt.Alignment.VERT_TOP
- alignment.wrap = 1
-
- pattern = xlwt.Pattern()
- pattern.pattern = xlwt.Pattern.SOLID_PATTERN
- pattern.pattern_fore_colour = 3
-
- style1 = xlwt.XFStyle()
- style1.font = font
- style1.borders = borders
- style1.alignment = alignment
- style2 = xlwt.XFStyle()
- style2.borders = borders
- style2.alignment = alignment
- style = XFStyle()
- style.borders = borders
- style.alignment = alignment
- pattern = Pattern()
- pattern.pattern = Pattern.SOLID_PATTERN
- pattern.pattern_fore_colour = xlwt.Style.colour_map['red']
- style.pattern = pattern
-
- if os.path.exists(all_UI_TestLanguagePath):
- try:
- os.remove(all_UI_TestLanguagePath)
- except Exception, e:
- print e
- return False
-
- book = xlwt.Workbook(encoding='utf-8')
-
- sheet = book.add_sheet(u'到达Option路径检测', cell_overwrite_ok=True)
-
- col_width = [2, 25, 15, 120]
-
- row0 = [u'序号', u'Option名称', u'检测到达路径结果', u'到达Option路径']
- for i in range(len(row0)):
- sheet.write(0, i, row0[i], style=style1)
- index = 1
- for checkdata in checkOptionPathExcelData:
- sheet.write(index, 0, index, style=style2)
- for j in range(len(checkdata)):
-
- if j == 1 and checkdata[j] != 'Pass':
- sheet.write(index, j + 1, checkdata[j], style=style)
- else:
-
-
-
- sheet.write(index, j + 1, checkdata[j], style=style2)
-
-
- index += 1
-
- for i in range(len(col_width)):
- if col_width[i] > 10:
- sheet.col(i).width = 256 * (col_width[i] + 1)
- sheet2 = book.add_sheet(u'Option查重', cell_overwrite_ok=True)
-
- col_width2 = [2, 30, 30]
-
- row02 = [u'序号', u'重复Option名称', u'重复Option在源表格的sheet名称']
- for i in range(len(row02)):
- sheet2.write(0, i, row02[i], style=style1)
- index2 = 1
- for repeatOption in repeatOptionList:
- sheet2.write(index2, 0, index2, style=style2)
- for j in range(len(repeatOption)):
- sheet2.write(index2, j + 1, repeatOption[j], style=style2)
- index2 += 1
-
- for i in range(len(col_width2)):
- if col_width2[i] > 10:
- sheet2.col(i).width = 256 * (col_width2[i] + 1)
-
- try:
- book.save(all_UI_TestLanguagePath)
- return True
- except Exception, e:
- print e
- return False
-
-
-
-
-
-
-
-
-
-
-
-
-
- def getSubValueList(self, value_name):
- valueList = []
- if self.valueParams.values.has_key(value_name):
-
-
- valueDictList = self.valueParams.values[value_name]["value"]
- for valueDict in valueDictList:
- valueList.append(valueDict["value"])
-
- if valueList.__len__() == 1 and "range(" in valueList[0]:
- value_for_ocr_low = str(valueList[0]).lower()
- str_num = value_for_ocr_low.replace("range", "")
- list_num = eval(str_num)
- min_num = list_num[0]
- max_num = list_num[1]
- return [min_num, max_num]
- return valueList
-
- def getSubOptionList(self, parent):
- optionList = []
- paths = self.pathParams.paths
- for level in paths:
- if paths[level].has_key(parent):
- optionDictList = paths[level][parent]["value"]
- for optionDict in optionDictList:
- optionList.append(optionDict["option"])
-
- return optionList
-
- def getValueTextList(self, value_name, value):
- valueTextList = []
- if self.valueParams.values.has_key(value_name):
-
-
- valueDictList = self.valueParams.values[value_name]["value"]
- for valueDict in valueDictList:
- if valueDict["value"] == value:
- value_for_ocr = valueDict["value_for_ocr"]
-
- valueTextList = value_for_ocr.split(';')
-
- return valueTextList
-
- def getOptionTextList(self, parent, option):
- optionTextList = []
- paths = self.pathParams.paths
- for level in paths:
- if paths[level].has_key(parent):
- optionDictList = paths[level][parent]["value"]
- for optionDict in optionDictList:
- if optionDict["option"] == option:
- option_for_ocr = optionDict["option_for_ocr"]
-
- optionTextList = option_for_ocr.split(';')
-
- return optionTextList
- if __name__ == "__main__":
-
-
-
- path = r'E:\SAT\resource\MenuTree\MS6586\ATSC\MenuTree_DVBT.xls'
-
-
-
- parser = CExcelParser(path)
- parser.read_excel()
- dataDict = parser.get_parent_ocr_dict("network")
- print "dataDict:", dataDict, type(dataDict)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
|