aardio 文档

com.excel 库模块帮助文档

com 成员列表

com.excel

Excel 支持库,请不要使用精简版 Excel。
兼容 WPS 表格,小提示:可在「WPS 配置工具」中关闭广告推送。
参考: https://docs.microsoft.com/en-us/office/vba/api/overview/excel

注意 com.excel 支持 Excel 接口提供的所有方法与属性。
但并不是智能提示里都能看到这些方法与属性,这个数量太大了 aardio 没办法都做进来。
智能提示看不到,只要文档里有都可以使用。
Excel 接口的所有常量,都可以使用 _xl 前缀的智能提示模板输入常量值。
E也可以通过 com.excel 对象的成员名字指定 Excel 常量名以获取常量值。

com.excel( 是否创建新实例或文件路径 )

创建 Excel 对象。
如果参数为 false ,则获取已打开的 Excel 对象。
如果参数输入文件路径,则打开该文件。
如果文件不存在,则创建文件然后再打开。

com.excel()

返回对象:excelObject

全局对象 成员列表

xlDialogChartSourceData

541/*xlDialogChartSourceData*/

xlDialogPhonetic

538/*xlDialogPhonetic*/

excelBookNameObject 成员列表

excelBookNameObject.RefersTo

指向区域

excelBookNameObject.name

名称

excelBookObject 成员列表

excelBookObject.?

可在这里输入此对象提供的所有方法、属性。
智能提示看不到,只要文档里有都可以使用。
这个数量太大了 aardio 没办法都做进来。

excelBookObject.ActiveSheet

返回对象:excelSheetObject

excelBookObject.Charts("字符串参数")

返回指定名称的图表

excelBookObject.DialogSheets("字符串参数")

返回指定名称的对话框工作表

excelBookObject.Names(1)

返回对象:excelBookNameObject

excelBookObject.Names.count

名称计数

excelBookObject.Save()

保存

excelBookObject.SaveAs

excelBookObject.SaveAs( io.fullpath("\.xls"),51/*_xlOpenXMLWorkbook*/)

excelBookObject.Sheets

返回对象:excelSheetObject

excelBookObject.Sheets()

返回对象:excelSheetObject

返回对象:excelSheetObject

excelBookObject.Sheets(1)

返回工作簿上的指定工作表

excelBookObject.Sheets.Count

工作表总数

excelBookObject.Sheets.Item()

返回指定的工作表

excelBookObject.Subject

设置主题

excelBookObject.Title

设置标题

excelBookObject.Worksheets("字符串参数")

返回指定名称的工作表

excelBookObject.Worksheets()

返回对象:excelSheetObject

excelBookObject.Worksheets.Item()

返回对象:excelSheetObject

excelBookObject.close()

关闭工作簿

excelObject 成员列表

excelObject.?

可在这里输入 Excel 接口提供的所有方法、属性、或常量名。
智能提示看不到,只要文档里有都可以使用。
这个数量太大了 aardio 没办法都做进来。

excelObject.ActiveCell

活动单元格

excelObject.ActiveWorkbook

活动工作簿
请参考 https://docs.microsoft.com/en-us/office/vba/api/excel.application.activeworkbook

返回对象:excelBookObject

excelObject.Application

请参考: https://docs.microsoft.com/en-us/office/vba/api/excel.application%28object%29

excelObject.Application.DisplayAlerts

是否允许操作提示

excelObject.Application.ScreenUpdating

是否允许屏幕更新

excelObject.CalculateBeforeSave

将工作簿保存到磁盘之前是否对工作簿进行计算

excelObject.Calculation

返回或设置表示计算模式的 XlCalculation 值。
可指定 _xlCalculation 前缀常量

excelObject.CalculationState

指示在 Microsoft Excel 中执行的任何计算的应用程序的计算状态,只读

excelObject.Caption

获取或设置 Excel 窗口标题栏显示的文本

excelObject.Charts("字符串参数")

返回指定名称的图表

excelObject.Charts()

返回对象:excelSheetObject

excelObject.DialogSheets("字符串参数")

返回指定名称的对话框工作表

excelObject.DialogSheets()

返回对象:excelSheetObject

excelObject.EnableEvents

是否启用事件

excelObject.Evaluate("字符串参数")

计算公式或对象名称,例如"[BOOK1.XLS]Sheet1!A1" 或 "A1:C5" 。
也可以在 com.excel 对象的下标索引里用字符串计算公式或对象名称。

excelObject.Open("/my.xls")

打开 Excel 文件,返回 ActiveWorkbook 。

excelObject.Open()

返回对象:excelBookObject

excelObject.Quit()

退出Excel
注意所有存储 Excel 创建或返回对象的变量离开作用域并被回收后才会完全退出,
可调用 collectgarbage("collect") 提前回收资源,
也可以调用 com.Release 函数显式释放指定的 COM 对象

excelObject.Range

返回单元格集合对象

excelObject.Range("A1:C3")

返回单元格集合对象

excelObject.Range()

返回对象:excelRangeObject

excelObject.Run

运行宏或 VBA 函数

excelObject.Run("函数名",其他参数...)

运行宏或 VBA 函数,可指定任意个参数。
也可以用于调用 JSA 函数。

excelObject.Save()

保存 Excel文件

excelObject.SaveAs("/my.xlsx")

另存 Excel文件为指定路径。
如果保存到当前路径,建议改用 Save 函数。

存为 xls 文件后缀可能报 SaveAs 方法无效,
请改用 xlsx 后缀或调用 Save 函数

excelObject.SendKeys("字符串参数")

发送按键,参数 @1 用字符串指定要发送的字符或按键。
用法参考 Excel 文档。

excelObject.Sheets()

返回对象:excelSheetObject

excelObject.Sheets(1)

返回工作簿上的指定工作表

excelObject.Sheets.Count

工作表总数

excelObject.ThisWorkbook

返回对象:excelBookObject

excelObject.Visible

是否显示 Excel 界面。
注意这个属性的默认值是 false。
如果此值设为 true,则程序退出时不会自动调用 Quit 函数退出 Excel。
可调用 Quit 函数退出或将此属性设为 false 以在对象正常回收时自动退出。

excelObject.WorkBooks.Add()

添加并返回工作簿
可选参数excel文件名
新工作簿将成为活动工作簿

返回对象:excelBookObject

excelObject.WorkBooks.Open("字符串参数")

打开xls文件

excelObject.WorkBooks.Open()

返回对象:excelBookObject

返回对象:excelBookObject

excelObject.Worksheets("字符串参数")

返回指定名称的工作表

excelObject.Worksheets()

返回对象:excelSheetObject

excelObject.Worksheets(1)

返回活动工作簿上的指定工作表

excelObject.Worksheets.Item()

返回对象:excelSheetObject

excelObject.Worksheets.Item(1)

返回活动工作簿上指定工作表;

excelObject.Wps()

是否 WPS 表格。

excelObject.alerts

是否允许操作提示与屏幕更新,
这个属性会同时设置 Application 对象的 DisplayAlerts 与 ScreenUpdating 属性
如果只想设置其中一个属性,请直接通过 Application 对象设置即可

excelObject.createFile("/my.xls")

如果目标文件存在则打开,否则创建新文件。
返回 ActiveWorkbook 。

excelObject.createFile()

返回对象:excelBookObject

excelObject.eachValue(工作表序号)

for(i,values in excelObject.eachValue(1) ){ 
    io.print("行号"+i,values[1],values[2])  
}

excelObject.jsa

调用此对象的成员函数也就是调用 JSA 函数(宏)。

也可以用于调用 VBA 函数。

excelObject.jsa.?

请输入 JSA 函数(宏)的名称,可以作为普通函数一样调用。
也可以输入 VBA 函数名

excelObject.vba

调用此对象的成员函数也就是调用 VBA 函数(宏)。

也可以用于调用 JSA 函数。

excelObject.vba.?

请输入 VBA 函数(宏)的名称,可以作为普通函数一样调用。

也可以用于调用 JSA 函数。

excelRangeObject 成员列表

excelRangeObject.?

可在这里输入此对象提供的所有方法、属性。
智能提示看不到,只要文档里有都可以使用。
这个数量太大了 aardio 没办法都做进来。

excelRangeObject.Text

获取或设置单元格集合的文本

excelRangeObject.Value2

获取或设置单元格集合的值。
一般应当用 Value2 而不是 Value,
原因请查看:范例 / COM 组件 / Excel / 带能数属性。

excelRangeObject.clear()

清除

excelRangeObject.delete()

删除

excelRangeObject.formula

公式,例如 "=$A$4+$A$10__"

excelRangeObject.getValue2()

读单元格值。
一般应当用 getValue2 而不是 getValue,
原因请查看:范例 / COM 组件 / Excel / 带能数属性。

excelRangeObject.setValue2(新值)

写单元格值。
一般应当用 setValue2 而不是 setValue,
原因请查看:范例 / COM 组件 / Excel / 带能数属性。

excelSheetObject 成员列表

excelSheetObject.Activate()

激活指定的工作表

excelSheetObject.Cells()

返回对象:excelRangeObject

excelSheetObject.Cells(行,列)

返回指定的单元格

excelSheetObject.Cells.RowHeight

所有单元格行高;

excelSheetObject.Charts()

返回对象:excelRangeObject

excelSheetObject.Columns(2).ColumnWidth

列宽;

excelSheetObject.Move(null,sheet2)

移动表数据

excelSheetObject.Name

工作表名字

excelSheetObject.Range

返回单元格集合对象

excelSheetObject.Range("A1:C3")

返回单元格集合对象

excelSheetObject.Range()

返回对象:excelRangeObject

excelSheetObject.Rows(1).RowHeight

指定行行高;

excelSheetObject.Select()

激活工作表

excelSheetObject.UsedRange.Columns.count

列数

excelSheetObject.UsedRange.Rows.Count

工作表总行数;

自动完成常量

_msoLimited=1
_msoNoOverwrite=3
_msoOrganization=2
_msoPBIAbort=1
_msoPBIExport=0
_msoPBIIgnore=0
_msoPBIOverwrite=2
_msoPBIUpload=1
_msoPublic=0
_rgbAliceBlue=16775408
_rgbAntiqueWhite=14150650
_rgbAqua=16776960
_rgbAquamarine=13959039
_rgbAzure=16777200
_rgbBeige=14480885
_rgbBisque=12903679
_rgbBlack=0
_rgbBlanchedAlmond=13495295
_rgbBlue=16711680
_rgbBlueViolet=14822282
_rgbBrown=2763429
_rgbBurlyWood=8894686
_rgbCadetBlue=10526303
_rgbChartreuse=65407
_rgbCoral=5275647
_rgbCornflowerBlue=15570276
_rgbCornsilk=14481663
_rgbCrimson=3937500
_rgbDarkBlue=9109504
_rgbDarkCyan=9145088
_rgbDarkGoldenrod=755384
_rgbDarkGray=11119017
_rgbDarkGreen=25600
_rgbDarkGrey=11119017
_rgbDarkKhaki=7059389
_rgbDarkMagenta=9109643
_rgbDarkOliveGreen=3107669
_rgbDarkOrange=36095
_rgbDarkOrchid=13382297
_rgbDarkRed=139
_rgbDarkSalmon=8034025
_rgbDarkSeaGreen=9419919
_rgbDarkSlateBlue=9125192
_rgbDarkSlateGray=5197615
_rgbDarkSlateGrey=5197615
_rgbDarkTurquoise=13749760
_rgbDarkViolet=13828244
_rgbDeepPink=9639167
_rgbDeepSkyBlue=16760576
_rgbDimGray=6908265
_rgbDimGrey=6908265
_rgbDodgerBlue=16748574
_rgbFireBrick=2237106
_rgbFloralWhite=15792895
_rgbForestGreen=2263842
_rgbFuchsia=16711935
_rgbGainsboro=14474460
_rgbGhostWhite=16775416
_rgbGold=55295
_rgbGoldenrod=2139610
_rgbGray=8421504
_rgbGreen=32768
_rgbGreenYellow=3145645
_rgbGrey=8421504
_rgbHoneydew=15794160
_rgbHotPink=11823615
_rgbIndianRed=6053069
_rgbIndigo=8519755
_rgbIvory=15794175
_rgbKhaki=9234160
_rgbLavender=16443110
_rgbLavenderBlush=16118015
_rgbLawnGreen=64636
_rgbLemonChiffon=13499135
_rgbLightBlue=15128749
_rgbLightCoral=8421616
_rgbLightCyan=9145088
_rgbLightGoldenrodYellow=13826810
_rgbLightGray=13882323
_rgbLightGreen=9498256
_rgbLightGrey=13882323
_rgbLightPink=12695295
_rgbLightSalmon=8036607
_rgbLightSeaGreen=11186720
_rgbLightSkyBlue=16436871
_rgbLightSlateGray=10061943
_rgbLightSlateGrey=10061943
_rgbLightSteelBlue=14599344
_rgbLightYellow=14745599
_rgbLime=65280
_rgbLimeGreen=3329330
_rgbLinen=15134970
_rgbMaroon=128
_rgbMediumAquamarine=11206502
_rgbMediumBlue=13434880
_rgbMediumOrchid=13850042
_rgbMediumPurple=14381203
_rgbMediumSeaGreen=7451452
_rgbMediumSlateBlue=15624315
_rgbMediumSpringGreen=10156544
_rgbMediumTurquoise=13422920
_rgbMediumVioletRed=8721863
_rgbMidnightBlue=7346457
_rgbMintCream=16449525
_rgbMistyRose=14804223
_rgbMoccasin=11920639
_rgbNavajoWhite=11394815
_rgbNavy=8388608
_rgbNavyBlue=8388608
_rgbOldLace=15136253
_rgbOlive=32896
_rgbOliveDrab=2330219
_rgbOrange=42495
_rgbOrangeRed=17919
_rgbOrchid=14053594
_rgbPaleGoldenrod=7071982
_rgbPaleGreen=10025880
_rgbPaleTurquoise=15658671
_rgbPaleVioletRed=9662683
_rgbPapayaWhip=14020607
_rgbPeachPuff=12180223
_rgbPeru=4163021
_rgbPink=13353215
_rgbPlum=14524637
_rgbPowderBlue=15130800
_rgbPurple=8388736
_rgbRed=255
_rgbRosyBrown=9408444
_rgbRoyalBlue=14772545
_rgbSalmon=7504122
_rgbSandyBrown=6333684
_rgbSeaGreen=5737262
_rgbSeashell=15660543
_rgbSienna=2970272
_rgbSilver=12632256
_rgbSkyBlue=15453831
_rgbSlateBlue=13458026
_rgbSlateGray=9470064
_rgbSlateGrey=9470064
_rgbSnow=16448255
_rgbSpringGreen=8388352
_rgbSteelBlue=11829830
_rgbTan=9221330
_rgbTeal=8421376
_rgbThistle=14204888
_rgbTomato=4678655
_rgbTurquoise=13688896
_rgbViolet=15631086
_rgbWheat=11788021
_rgbWhite=16777215
_rgbWhiteSmoke=16119285
_rgbYellow=65535
_rgbYellowGreen=3329434
_xl24HourClock=33
_xl3Arrows=1
_xl3ArrowsGray=2
_xl3DArea=-4098
_xl3DAreaStacked=78
_xl3DAreaStacked100=79
_xl3DBar=-4099
_xl3DBarClustered=60
_xl3DBarStacked=61
_xl3DBarStacked100=62
_xl3DColumn=-4100
_xl3DColumnClustered=54
_xl3DColumnStacked=55
_xl3DColumnStacked100=56
_xl3DEffects1=13
_xl3DEffects2=14
_xl3DLine=-4101
_xl3DPie=-4102
_xl3DPieExploded=70
_xl3DSurface=-4103
_xl3Flags=3
_xl3Signs=6
_xl3Stars=18
_xl3Symbols=7
_xl3Symbols2=8
_xl3TrafficLights1=4
_xl3TrafficLights2=5
_xl3Triangles=19
_xl4Arrows=9
_xl4ArrowsGray=10
_xl4CRV=12
_xl4DigitYears=43
_xl4RedToBlack=11
_xl4TrafficLights=13
_xl5Arrows=14
_xl5ArrowsGray=15
_xl5Boxes=20
_xl5CRV=16
_xl5Quarters=17
_xlA1=1
_xlADORecordset=7
_xlAbove=0
_xlAboveAverage=0
_xlAboveAverageCondition=12
_xlAboveStdDev=4
_xlAbsRowRelColumn=2
_xlAbsolute=1
_xlAccounting1=4
_xlAccounting2=5
_xlAccounting3=6
_xlAccounting4=17
_xlActionTypeDrillthrough=256
_xlActionTypeReport=128
_xlActionTypeRowset=16
_xlActionTypeUrl=1
_xlAdd=2
_xlAddIn=18
_xlAddIn8=18
_xlAfter=33
_xlAfterOrEqualTo=34
_xlAll=-4104
_xlAllAtOnce=2
_xlAllChanges=2
_xlAllDatesInPeriodApril=60
_xlAllDatesInPeriodAugust=64
_xlAllDatesInPeriodDecember=68
_xlAllDatesInPeriodFebruary=58
_xlAllDatesInPeriodJanuary=57
_xlAllDatesInPeriodJuly=63
_xlAllDatesInPeriodJune=62
_xlAllDatesInPeriodMarch=59
_xlAllDatesInPeriodMay=61
_xlAllDatesInPeriodNovember=67
_xlAllDatesInPeriodOctober=66
_xlAllDatesInPeriodQuarter1=53
_xlAllDatesInPeriodQuarter2=54
_xlAllDatesInPeriodQuarter3=55
_xlAllDatesInPeriodQuarter4=56
_xlAllDatesInPeriodSeptember=65
_xlAllExceptBorders=7
_xlAllFaces=7
_xlAllTables=2
_xlAllValues=0
_xlAllocateIncrement=2
_xlAllocateValue=1
_xlAlternateArraySeparator=16
_xlAlways=1
_xlAnd=1
_xlAnyGallery=23
_xlAnyKey=2
_xlArabicBothStrict=3
_xlArabicNone=0
_xlArabicStrictAlefHamza=1
_xlArabicStrictFinalYaa=2
_xlArea=1
_xlAreaStacked=76
_xlAreaStacked100=77
_xlArrangeStyleCascade=7
_xlArrangeStyleHorizontal=-4128
_xlArrangeStyleTiled=1
_xlArrangeStyleVertical=-4166
_xlArrowHeadLengthLong=3
_xlArrowHeadLengthMedium=-4138
_xlArrowHeadLengthShort=1
_xlArrowHeadStyleClosed=3
_xlArrowHeadStyleDoubleClosed=5
_xlArrowHeadStyleDoubleOpen=4
_xlArrowHeadStyleNone=-4142
_xlArrowHeadStyleOpen=2
_xlArrowHeadWidthMedium=-4138
_xlArrowHeadWidthNarrow=1
_xlArrowHeadWidthWide=3
_xlAsRequired=0
_xlAscending=1
_xlAtBottom=2
_xlAtTop=1
_xlAutoActivate=3
_xlAutoClose=2
_xlAutoDeactivate=4
_xlAutoFill=4
_xlAutoOpen=1
_xlAutomatic=-4105
_xlAutomaticAllocation=2
_xlAutomaticScale=-4105
_xlAutomaticUpdate=4
_xlAverage=-4106
_xlAxis=21
_xlAxisCrossesAutomatic=-4105
_xlAxisCrossesCustom=-4114
_xlAxisCrossesMaximum=2
_xlAxisCrossesMinimum=4
_xlAxisTitle=17
_xlBIFF=2
_xlBMP=1
_xlBackgroundAutomatic=-4105
_xlBackgroundOpaque=3
_xlBackgroundTransparent=2
_xlBar=2
_xlBarClustered=57
_xlBarOfPie=71
_xlBarStacked=58
_xlBarStacked100=59
_xlBefore=31
_xlBeforeOrEqualTo=32
_xlBeginsWith=2
_xlBelow=1
_xlBelowAverage=1
_xlBelowStdDev=5
_xlBetween=1
_xlBidi=-5000
_xlBidiCalendar=3
_xlBinsTypeAutomatic=0
_xlBinsTypeBinCount=4
_xlBinsTypeBinSize=3
_xlBinsTypeCategorical=1
_xlBinsTypeManual=2
_xlBitmap=2
_xlBlankRow=19
_xlBlanks=4
_xlBlanksCondition=10
_xlBoth=1
_xlBottom=-4107
_xlBottom10Items=4
_xlBottom10Percent=6
_xlBottomCount=2
_xlBottomPercent=4
_xlBottomSum=6
_xlBox=0
_xlBoxwhisker=121
_xlBubble=15
_xlBubble3DEffect=87
_xlBuiltIn=21
_xlButton=15
_xlButtonControl=0
_xlButtonOnly=2
_xlByColumns=2
_xlByRows=1
_xlCGM=7
_xlCSV=6
_xlCSVMSDOS=24
_xlCSVMac=22
_xlCSVUTF8=62
_xlCSVWindows=23
_xlCalculatedMeasure=2
_xlCalculatedMember=0
_xlCalculatedSet=1
_xlCalculating=1
_xlCalculationAutomatic=-4105
_xlCalculationManual=-4135
_xlCalculationSemiautomatic=2
_xlCancel=1
_xlCap=1
_xlCaptionBeginsWith=17
_xlCaptionContains=21
_xlCaptionDoesNotBeginWith=18
_xlCaptionDoesNotContain=22
_xlCaptionDoesNotEndWith=20
_xlCaptionDoesNotEqual=16
_xlCaptionEndsWith=19
_xlCaptionEquals=15
_xlCaptionIsBetween=27
_xlCaptionIsGreaterThan=23
_xlCaptionIsGreaterThanOrEqualTo=24
_xlCaptionIsLessThan=25
_xlCaptionIsLessThanOrEqualTo=26
_xlCaptionIsNotBetween=28
_xlCascade=7
_xlCategory=1
_xlCategoryAscending=2
_xlCategoryDescending=3
_xlCategoryLabelLevelAll=-1
_xlCategoryLabelLevelCustom=-2
_xlCategoryLabelLevelNone=-3
_xlCategoryScale=2
_xlCellChangeApplied=3
_xlCellChanged=2
_xlCellNotChanged=1
_xlCellTypeAllFormatConditions=-4172
_xlCellTypeAllValidation=-4174
_xlCellTypeBlanks=4
_xlCellTypeComments=-4144
_xlCellTypeConstants=2
_xlCellTypeFormulas=-4123
_xlCellTypeLastCell=11
_xlCellTypeSameFormatConditions=-4173
_xlCellTypeSameValidation=-4175
_xlCellTypeVisible=12
_xlCellValue=1
_xlCenter=-4108
_xlCenterAcrossSelection=7
_xlCenterPoint=5
_xlCentimeters=1
_xlChangeAttributes=6
_xlChangeByExcel=0
_xlChangeByPowerPivotAddIn=1
_xlChart=-4109
_xlChart4=2
_xlChartArea=2
_xlChartAsWindow=5
_xlChartElementPositionAutomatic=-4105
_xlChartElementPositionCustom=-4114
_xlChartInPlace=4
_xlChartSeries=17
_xlChartShort=6
_xlChartTitle=4
_xlChartTitles=18
_xlCheckBox=1
_xlCheckInMajorVersion=1
_xlCheckInMinorVersion=0
_xlCheckInOverwriteVersion=2
_xlChecker=9
_xlChronological=3
_xlCircle=8
_xlClassic1=1
_xlClassic2=2
_xlClassic3=3
_xlClipboard=3
_xlClipboardFormatBIFF=8
_xlClipboardFormatBIFF12=63
_xlClipboardFormatBIFF2=18
_xlClipboardFormatBIFF3=20
_xlClipboardFormatBIFF4=30
_xlClipboardFormatBinary=15
_xlClipboardFormatBitmap=9
_xlClipboardFormatCGM=13
_xlClipboardFormatCSV=5
_xlClipboardFormatDIF=4
_xlClipboardFormatDspText=12
_xlClipboardFormatEmbedSource=22
_xlClipboardFormatEmbeddedObject=21
_xlClipboardFormatLink=11
_xlClipboardFormatLinkSource=23
_xlClipboardFormatLinkSourceDesc=32
_xlClipboardFormatMovie=24
_xlClipboardFormatNative=14
_xlClipboardFormatObjectDesc=31
_xlClipboardFormatObjectLink=19
_xlClipboardFormatOwnerLink=17
_xlClipboardFormatPICT=2
_xlClipboardFormatPrintPICT=3
_xlClipboardFormatRTF=7
_xlClipboardFormatSYLK=6
_xlClipboardFormatScreenPICT=29
_xlClipboardFormatStandardFont=28
_xlClipboardFormatStandardScale=27
_xlClipboardFormatTable=16
_xlClipboardFormatText=0
_xlClipboardFormatToolFace=25
_xlClipboardFormatToolFacePICT=26
_xlClipboardFormatVALU=1
_xlClipboardFormatWK1=10
_xlClosed=3
_xlCmdCube=1
_xlCmdDAX=8
_xlCmdDefault=4
_xlCmdExcel=7
_xlCmdList=5
_xlCmdSql=2
_xlCmdTable=3
_xlCmdTableCollection=6
_xlCodePage=2
_xlColGroups=2
_xlColor1=7
_xlColor2=8
_xlColor3=9
_xlColorIndexAutomatic=-4105
_xlColorIndexNone=-4142
_xlColorScale=3
_xlColorScaleBlackWhite=3
_xlColorScaleGYR=2
_xlColorScaleRYG=1
_xlColorScaleWhiteBlack=4
_xlColumn=3
_xlColumnClustered=51
_xlColumnField=2
_xlColumnHeader=-4110
_xlColumnItem=5
_xlColumnLabels=2
_xlColumnSeparator=14
_xlColumnStacked=52
_xlColumnStacked100=53
_xlColumnStripe1=7
_xlColumnStripe2=8
_xlColumnSubheading1=20
_xlColumnSubheading2=21
_xlColumnSubheading3=22
_xlColumnThenRow=2
_xlColumns=2
_xlCombination=-4111
_xlCommand=2
_xlCommandUnderlinesAutomatic=-4105
_xlCommandUnderlinesOff=-4146
_xlCommandUnderlinesOn=1
_xlCommentAndIndicator=1
_xlCommentIndicatorOnly=-1
_xlComments=-4144
_xlCommentsThreaded=-4184
_xlCompactRow=0
_xlComplete=4
_xlConditionValueAutomaticMax=7
_xlConditionValueAutomaticMin=6
_xlConditionValueFormula=4
_xlConditionValueHighestValue=2
_xlConditionValueLowestValue=1
_xlConditionValueNone=-1
_xlConditionValueNumber=0
_xlConditionValuePercent=3
_xlConditionValuePercentile=5
_xlConeBarClustered=102
_xlConeBarStacked=103
_xlConeBarStacked100=104
_xlConeCol=105
_xlConeColClustered=99
_xlConeColStacked=100
_xlConeColStacked100=101
_xlConeToMax=5
_xlConeToPoint=4
_xlConnectionTypeDATAFEED=6
_xlConnectionTypeMODEL=7
_xlConnectionTypeNOSOURCE=9
_xlConnectionTypeODBC=2
_xlConnectionTypeOLEDB=1
_xlConnectionTypeTEXT=4
_xlConnectionTypeWEB=5
_xlConnectionTypeWORKSHEET=8
_xlConnectionTypeXMLMAP=3
_xlConsolidation=3
_xlConstant=1
_xlConstants=2
_xlContains=0
_xlContents=2
_xlContext=-5002
_xlContinuous=1
_xlCopy=1
_xlCorner=2
_xlCorners=6
_xlCount=-4112
_xlCountNums=-4113
_xlCountryCode=1
_xlCountrySetting=2
_xlCreatorCode=1480803660
_xlCredentialsMethodIntegrated=0
_xlCredentialsMethodNone=1
_xlCredentialsMethodStored=2
_xlCrissCross=16
_xlCross=4
_xlCubeAttribute=4
_xlCubeCalculatedMeasure=5
_xlCubeHierarchy=1
_xlCubeImplicitMeasure=11
_xlCubeKPIGoal=7
_xlCubeKPIStatus=8
_xlCubeKPITrend=9
_xlCubeKPIValue=6
_xlCubeKPIWeight=10
_xlCubeMeasure=2
_xlCubeSet=3
_xlCurrencyBefore=37
_xlCurrencyCode=25
_xlCurrencyDigits=27
_xlCurrencyLeadingZeros=40
_xlCurrencyMinusSign=38
_xlCurrencyNegative=28
_xlCurrencySpaceBefore=36
_xlCurrencyTrailingZeros=39
_xlCurrentPlatformText=-4158
_xlCustom=-4114
_xlCustomSet=-1
_xlCut=2
_xlCylinder=3
_xlCylinderBarClustered=95
_xlCylinderBarStacked=96
_xlCylinderBarStacked100=97
_xlCylinderCol=98
_xlCylinderColClustered=92
_xlCylinderColStacked=93
_xlCylinderColStacked100=94
_xlDAORecordset=2
_xlDBF2=7
_xlDBF3=8
_xlDBF4=11
_xlDIF=9
_xlDMYFormat=4
_xlDRW=4
_xlDXF=5
_xlDYMFormat=7
_xlDash=-4115
_xlDashDot=4
_xlDashDotDot=5
_xlDataAndLabel=0
_xlDataBarAxisAutomatic=0
_xlDataBarAxisMidpoint=1
_xlDataBarAxisNone=2
_xlDataBarBorderNone=0
_xlDataBarBorderSolid=1
_xlDataBarColor=0
_xlDataBarFillGradient=1
_xlDataBarFillSolid=0
_xlDataBarSameAsPositive=1
_xlDataField=4
_xlDataFieldScope=2
_xlDataHeader=3
_xlDataItem=7
_xlDataLabel=0
_xlDataLabelSeparatorDefault=1
_xlDataLabelsShowBubbleSizes=6
_xlDataLabelsShowLabel=4
_xlDataLabelsShowLabelAndPercent=5
_xlDataLabelsShowNone=-4142
_xlDataLabelsShowPercent=3
_xlDataLabelsShowValue=2
_xlDataOnly=2
_xlDataSeriesLinear=-4132
_xlDataTable=7
_xlDatabar=4
_xlDatabase=1
_xlDate=2
_xlDateBetween=35
_xlDateLastMonth=45
_xlDateLastQuarter=48
_xlDateLastWeek=42
_xlDateLastYear=51
_xlDateNextMonth=43
_xlDateNextQuarter=46
_xlDateNextWeek=40
_xlDateNextYear=49
_xlDateNotBetween=36
_xlDateOrder=32
_xlDateSeparator=17
_xlDateThisMonth=44
_xlDateThisQuarter=47
_xlDateThisWeek=41
_xlDateThisYear=50
_xlDateToday=38
_xlDateTomorrow=37
_xlDateYesterday=39
_xlDay=1
_xlDayCode=21
_xlDayLeadingZero=42
_xlDays=0
_xlDebugCodePane=13
_xlDecimalSeparator=3
_xlDefault=-4143
_xlDefaultAutoFormat=-1
_xlDelimited=1
_xlDescending=2
_xlDesktop=9
_xlDiagonalDown=5
_xlDiagonalUp=6
_xlDialogActivate=103
_xlDialogActiveCellFont=476
_xlDialogAddChartAutoformat=390
_xlDialogAddinManager=321
_xlDialogAlignment=43
_xlDialogAppMove=170
_xlDialogAppSize=171
_xlDialogApplyNames=133
_xlDialogApplyStyle=212
_xlDialogArrangeAll=12
_xlDialogAssignToObject=213
_xlDialogAssignToTool=293
_xlDialogAttachText=80
_xlDialogAttachToolbars=323
_xlDialogAutoCorrect=485
_xlDialogAxes=78
_xlDialogBorder=45
_xlDialogCalculation=32
_xlDialogCellProtection=46
_xlDialogChangeLink=166
_xlDialogChartAddData=392
_xlDialogChartLocation=527
_xlDialogChartOptionsDataLabelMultiple=724
_xlDialogChartOptionsDataLabels=505
_xlDialogChartOptionsDataTable=506
_xlDialogChartSourceData=540
_xlDialogChartTrend=350
_xlDialogChartType=526
_xlDialogChartWizard=288
_xlDialogCheckboxProperties=435
_xlDialogClear=52
_xlDialogColorPalette=161
_xlDialogColumnWidth=47
_xlDialogCombination=73
_xlDialogConditionalFormatting=583
_xlDialogConsolidate=191
_xlDialogCopyChart=147
_xlDialogCopyPicture=108
_xlDialogCreateList=796
_xlDialogCreateNames=62
_xlDialogCreatePublisher=217
_xlDialogCreateRelationship=1272
_xlDialogCustomViews=493
_xlDialogCustomizeToolbar=276
_xlDialogDataDelete=36
_xlDialogDataLabel=379
_xlDialogDataLabelMultiple=723
_xlDialogDataSeries=40
_xlDialogDataValidation=525
_xlDialogDefineName=61
_xlDialogDefineStyle=229
_xlDialogDeleteFormat=111
_xlDialogDeleteName=110
_xlDialogDemote=203
_xlDialogDisplay=27
_xlDialogDocumentInspector=862
_xlDialogEditColor=223
_xlDialogEditDelete=54
_xlDialogEditSeries=228
_xlDialogEditboxProperties=438
_xlDialogEditionOptions=251
_xlDialogErrorChecking=732
_xlDialogErrorbarX=463
_xlDialogErrorbarY=464
_xlDialogEvaluateFormula=709
_xlDialogExternalDataProperties=530
_xlDialogExtract=35
_xlDialogFileDelete=6
_xlDialogFileSharing=481
_xlDialogFillGroup=200
_xlDialogFillWorkgroup=301
_xlDialogFilter=447
_xlDialogFilterAdvanced=370
_xlDialogFindFile=475
_xlDialogFont=26
_xlDialogFontProperties=381
_xlDialogForecastETS=1300
_xlDialogFormatAuto=269
_xlDialogFormatChart=465
_xlDialogFormatCharttype=423
_xlDialogFormatFont=150
_xlDialogFormatLegend=88
_xlDialogFormatMain=225
_xlDialogFormatMove=128
_xlDialogFormatNumber=42
_xlDialogFormatOverlay=226
_xlDialogFormatSize=129
_xlDialogFormatText=89
_xlDialogFormulaFind=64
_xlDialogFormulaGoto=63
_xlDialogFormulaReplace=130
_xlDialogFunctionWizard=450
_xlDialogGallery3dArea=193
_xlDialogGallery3dBar=272
_xlDialogGallery3dColumn=194
_xlDialogGallery3dLine=195
_xlDialogGallery3dPie=196
_xlDialogGallery3dSurface=273
_xlDialogGalleryArea=67
_xlDialogGalleryBar=68
_xlDialogGalleryColumn=69
_xlDialogGalleryCustom=388
_xlDialogGalleryDoughnut=344
_xlDialogGalleryLine=70
_xlDialogGalleryPie=71
_xlDialogGalleryRadar=249
_xlDialogGalleryScatter=72
_xlDialogGoalSeek=198
_xlDialogGridlines=76
_xlDialogImportTextFile=666
_xlDialogInsert=55
_xlDialogInsertHyperlink=596
_xlDialogInsertNameLabel=496
_xlDialogInsertObject=259
_xlDialogInsertPicture=342
_xlDialogInsertTitle=380
_xlDialogLabelProperties=436
_xlDialogListboxProperties=437
_xlDialogMacroOptions=382
_xlDialogMailEditMailer=470
_xlDialogMailLogon=339
_xlDialogMailNextLetter=378
_xlDialogMainChart=85
_xlDialogMainChartType=185
_xlDialogManageRelationships=1271
_xlDialogMenuEditor=322
_xlDialogMove=262
_xlDialogMyPermission=834
_xlDialogNameManager=977
_xlDialogNew=119
_xlDialogNewName=978
_xlDialogNewWebQuery=667
_xlDialogNote=154
_xlDialogObjectProperties=207
_xlDialogObjectProtection=214
_xlDialogOpen=1
_xlDialogOpenLinks=2
_xlDialogOpenMail=188
_xlDialogOpenText=441
_xlDialogOptionsCalculation=318
_xlDialogOptionsChart=325
_xlDialogOptionsEdit=319
_xlDialogOptionsGeneral=356
_xlDialogOptionsListsAdd=458
_xlDialogOptionsME=647
_xlDialogOptionsTransition=355
_xlDialogOptionsView=320
_xlDialogOutline=142
_xlDialogOverlay=86
_xlDialogOverlayChartType=186
_xlDialogPageSetup=7
_xlDialogParse=91
_xlDialogPasteNames=58
_xlDialogPasteSpecial=53
_xlDialogPatterns=84
_xlDialogPermission=832
_xlDialogPhonetic=656
_xlDialogPivotCalculatedField=570
_xlDialogPivotCalculatedItem=572
_xlDialogPivotClientServerSet=689
_xlDialogPivotDefaultLayout=1360
_xlDialogPivotFieldGroup=433
_xlDialogPivotFieldProperties=313
_xlDialogPivotFieldUngroup=434
_xlDialogPivotShowPages=421
_xlDialogPivotSolveOrder=568
_xlDialogPivotTableOptions=567
_xlDialogPivotTableSlicerConnections=1183
_xlDialogPivotTableWhatIfAnalysisSettings=1153
_xlDialogPivotTableWizard=312
_xlDialogPlacement=300
_xlDialogPrint=8
_xlDialogPrintPreview=222
_xlDialogPrinterSetup=9
_xlDialogPromote=202
_xlDialogProperties=474
_xlDialogPropertyFields=754
_xlDialogProtectDocument=28
_xlDialogProtectSharing=620
_xlDialogPublishAsWebPage=653
_xlDialogPushbuttonProperties=445
_xlDialogRecommendedPivotTables=1258
_xlDialogReplaceFont=134
_xlDialogRoutingSlip=336
_xlDialogRowHeight=127
_xlDialogRun=17
_xlDialogSaveAs=5
_xlDialogSaveCopyAs=456
_xlDialogSaveNewObject=208
_xlDialogSaveWorkbook=145
_xlDialogSaveWorkspace=285
_xlDialogScale=87
_xlDialogScenarioAdd=307
_xlDialogScenarioCells=305
_xlDialogScenarioEdit=308
_xlDialogScenarioMerge=473
_xlDialogScenarioSummary=311
_xlDialogScrollbarProperties=420
_xlDialogSearch=731
_xlDialogSelectSpecial=132
_xlDialogSendMail=189
_xlDialogSeriesAxes=460
_xlDialogSeriesOptions=557
_xlDialogSeriesOrder=466
_xlDialogSeriesShape=504
_xlDialogSeriesX=461
_xlDialogSeriesY=462
_xlDialogSetBackgroundPicture=509
_xlDialogSetMDXEditor=1208
_xlDialogSetManager=1109
_xlDialogSetPrintTitles=23
_xlDialogSetTupleEditorOnColumns=1108
_xlDialogSetTupleEditorOnRows=1107
_xlDialogSetUpdateStatus=159
_xlDialogSheet=-4116
_xlDialogShowDetail=204
_xlDialogShowToolbar=220
_xlDialogSize=261
_xlDialogSlicerCreation=1182
_xlDialogSlicerPivotTableConnections=1184
_xlDialogSlicerSettings=1179
_xlDialogSort=39
_xlDialogSortSpecial=192
_xlDialogSparklineInsertColumn=1134
_xlDialogSparklineInsertLine=1133
_xlDialogSparklineInsertWinLoss=1135
_xlDialogSplit=137
_xlDialogStandardFont=190
_xlDialogStandardWidth=472
_xlDialogStyle=44
_xlDialogSubscribeTo=218
_xlDialogSubtotalCreate=398
_xlDialogSummaryInfo=474
_xlDialogTabOrder=394
_xlDialogTable=41
_xlDialogTextToColumns=422
_xlDialogUnhide=94
_xlDialogUpdateLink=201
_xlDialogVbaInsertFile=328
_xlDialogVbaMakeAddin=478
_xlDialogVbaProcedureDefinition=330
_xlDialogView3d=197
_xlDialogWebOptionsBrowsers=773
_xlDialogWebOptionsEncoding=686
_xlDialogWebOptionsFiles=684
_xlDialogWebOptionsFonts=687
_xlDialogWebOptionsGeneral=683
_xlDialogWebOptionsPictures=685
_xlDialogWindowMove=14
_xlDialogWindowSize=13
_xlDialogWorkbookAdd=281
_xlDialogWorkbookCopy=283
_xlDialogWorkbookInsert=354
_xlDialogWorkbookMove=282
_xlDialogWorkbookName=386
_xlDialogWorkbookNew=302
_xlDialogWorkbookOptions=284
_xlDialogWorkbookProtect=417
_xlDialogWorkbookTabSplit=415
_xlDialogWorkbookUnhide=384
_xlDialogWorkgroup=199
_xlDialogWorkspace=95
_xlDialogZoom=256
_xlDiamond=2
_xlDifferenceFrom=2
_xlDirect=1
_xlDisabled=0
_xlDisplayNone=1
_xlDisplayPropertyInPivotTable=1
_xlDisplayPropertyInPivotTableAndTooltip=3
_xlDisplayPropertyInTooltip=2
_xlDisplayShapes=-4104
_xlDisplayUnitLabel=30
_xlDistinctCount=11
_xlDistributed=-4117
_xlDivide=5
_xlDoNotRepeatLabels=1
_xlDoNotSaveChanges=2
_xlDoesNotContain=1
_xlDone=0
_xlDot=-4118
_xlDouble=-4119
_xlDoubleAccounting=5
_xlDoubleClosed=5
_xlDoubleOpen=4
_xlDoubleQuote=1
_xlDoughnut=-4120
_xlDoughnutExploded=80
_xlDown=-4121
_xlDownBars=20
_xlDownThenOver=1
_xlDownward=-4170
_xlDrawingObject=14
_xlDropDown=2
_xlDropLines=26
_xlDuplicate=1
_xlEMDFormat=10
_xlEPS=8
_xlEdgeBottom=9
_xlEdgeLeft=7
_xlEdgeRight=10
_xlEdgeTop=8
_xlEditBox=3
_xlEditionDate=2
_xlEmptyCellReferences=7
_xlEnd=2
_xlEndSides=3
_xlEndsWith=3
_xlEntireChart=20
_xlEntirePage=1
_xlEqual=3
_xlEqualAboveAverage=2
_xlEqualAllocation=1
_xlEqualBelowAverage=3
_xlErrBlocked=2047
_xlErrCalc=2050
_xlErrConnect=2046
_xlErrDiv0=2007
_xlErrField=2049
_xlErrGettingData=2043
_xlErrNA=2042
_xlErrName=2029
_xlErrNull=2000
_xlErrNum=2036
_xlErrRef=2023
_xlErrSpill=2045
_xlErrUnknown=2048
_xlErrValue=2015
_xlErrorBarIncludeBoth=1
_xlErrorBarIncludeMinusValues=3
_xlErrorBarIncludeNone=-4142
_xlErrorBarIncludePlusValues=2
_xlErrorBarTypeCustom=-4114
_xlErrorBarTypeFixedValue=1
_xlErrorBarTypePercent=2
_xlErrorBarTypeStDev=-4155
_xlErrorBarTypeStError=4
_xlErrorBars=9
_xlErrorHandler=2
_xlErrors=16
_xlErrorsCondition=16
_xlEscKey=1
_xlEvaluateToError=1
_xlExcel12=50
_xlExcel2=16
_xlExcel2FarEast=27
_xlExcel3=29
_xlExcel4=33
_xlExcel4IntlMacroSheet=4
_xlExcel4MacroSheet=3
_xlExcel4Workbook=35
_xlExcel5=39
_xlExcel7=39
_xlExcel8=56
_xlExcel9795=43
_xlExcelLinks=1
_xlExcelMenus=1
_xlExclusive=3
_xlExponential=5
_xlExpression=2
_xlExtended=3
_xlExternal=2
_xlExtractData=2
_xlFieldsScope=1
_xlFileValidationPivotDefault=0
_xlFileValidationPivotRun=1
_xlFileValidationPivotSkip=2
_xlFill=5
_xlFillCopy=1
_xlFillDays=5
_xlFillDefault=0
_xlFillFormats=3
_xlFillMonths=7
_xlFillSeries=2
_xlFillValues=4
_xlFillWeekdays=6
_xlFillWithAll=-4104
_xlFillWithContents=2
_xlFillWithFormats=-4122
_xlFillYears=8
_xlFilterAboveAverage=33
_xlFilterAllDatesInPeriodApril=24
_xlFilterAllDatesInPeriodAugust=28
_xlFilterAllDatesInPeriodDay=2
_xlFilterAllDatesInPeriodDecember=32
_xlFilterAllDatesInPeriodFebruray=22
_xlFilterAllDatesInPeriodHour=3
_xlFilterAllDatesInPeriodJanuary=21
_xlFilterAllDatesInPeriodJuly=27
_xlFilterAllDatesInPeriodJune=26
_xlFilterAllDatesInPeriodMarch=23
_xlFilterAllDatesInPeriodMay=25
_xlFilterAllDatesInPeriodMinute=4
_xlFilterAllDatesInPeriodMonth=1
_xlFilterAllDatesInPeriodNovember=31
_xlFilterAllDatesInPeriodOctober=30
_xlFilterAllDatesInPeriodQuarter1=17
_xlFilterAllDatesInPeriodQuarter2=18
_xlFilterAllDatesInPeriodQuarter3=19
_xlFilterAllDatesInPeriodQuarter4=20
_xlFilterAllDatesInPeriodSecond=5
_xlFilterAllDatesInPeriodSeptember=29
_xlFilterAllDatesInPeriodYear=0
_xlFilterAutomaticFontColor=13
_xlFilterBelowAverage=34
_xlFilterBottom=0
_xlFilterBottomPercent=2
_xlFilterCellColor=8
_xlFilterCopy=2
_xlFilterDynamic=11
_xlFilterFontColor=9
_xlFilterIcon=10
_xlFilterInPlace=1
_xlFilterLastMonth=8
_xlFilterLastQuarter=11
_xlFilterLastWeek=5
_xlFilterLastYear=14
_xlFilterNextMonth=9
_xlFilterNextQuarter=12
_xlFilterNextWeek=6
_xlFilterNextYear=15
_xlFilterNoFill=12
_xlFilterNoIcon=14
_xlFilterStatusDateHasTime=2
_xlFilterStatusDateWrongOrder=1
_xlFilterStatusInvalidDate=3
_xlFilterStatusOK=0
_xlFilterThisMonth=7
_xlFilterThisQuarter=10
_xlFilterThisWeek=4
_xlFilterThisYear=13
_xlFilterToday=1
_xlFilterTomorrow=3
_xlFilterTop=1
_xlFilterTopPercent=3
_xlFilterValues=7
_xlFilterYearToDate=16
_xlFilterYesterday=2
_xlFirst=0
_xlFirstColumn=3
_xlFirstHeaderCell=9
_xlFirstRow=256
_xlFirstTotalCell=11
_xlFitToPage=2
_xlFixedValue=1
_xlFixedWidth=2
_xlFlashFill=11
_xlFloating=5
_xlFloor=23
_xlForecastAggregationAverage=1
_xlForecastAggregationCount=2
_xlForecastAggregationCountA=3
_xlForecastAggregationMax=4
_xlForecastAggregationMedian=5
_xlForecastAggregationMin=6
_xlForecastAggregationSum=7
_xlForecastChartTypeColumn=1
_xlForecastChartTypeLine=0
_xlForecastDataCompletionInterpolate=1
_xlForecastDataCompletionZeros=0
_xlFormatConditions=1
_xlFormatFromLeftOrAbove=0
_xlFormatFromRightOrBelow=1
_xlFormats=-4122
_xlFormula=5
_xlFormulas=-4123
_xlFormulas2=-4185
_xlFreeFloating=3
_xlFront=4
_xlFrontEnd=6
_xlFrontSides=5
_xlFullPage=3
_xlFullScript=1
_xlFunction=1
_xlFunnel=123
_xlGeneral=1
_xlGeneralFormat=1
_xlGeneralFormatName=26
_xlGenerateTableRefA1=0
_xlGenerateTableRefStruct=1
_xlGeoMappingLevelAutomatic=0
_xlGeoMappingLevelCountryRegion=5
_xlGeoMappingLevelCountryRegionList=6
_xlGeoMappingLevelCounty=3
_xlGeoMappingLevelDataOnly=1
_xlGeoMappingLevelPostalCode=2
_xlGeoMappingLevelState=4
_xlGeoMappingLevelWorld=7
_xlGeoProjectionTypeAlbers=3
_xlGeoProjectionTypeAutomatic=0
_xlGeoProjectionTypeMercator=1
_xlGeoProjectionTypeMiller=2
_xlGeoProjectionTypeRobinson=4
_xlGradientFillLinear=0
_xlGradientFillPath=1
_xlGradientStopPositionTypeExtremeValue=0
_xlGradientStopPositionTypeNumber=1
_xlGradientStopPositionTypePercent=2
_xlGrandTotalColumn=4
_xlGrandTotalRow=2
_xlGray16=17
_xlGray25=-4124
_xlGray50=-4125
_xlGray75=-4126
_xlGray8=18
_xlGreater=5
_xlGreaterEqual=7
_xlGregorian=2
_xlGrid=15
_xlGridline=22
_xlGroupBox=4
_xlGrowth=2
_xlGrowthTrend=10
_xlGuess=0
_xlHAlignCenter=-4108
_xlHAlignCenterAcrossSelection=7
_xlHAlignDistributed=-4117
_xlHAlignFill=5
_xlHAlignGeneral=1
_xlHAlignJustify=-4130
_xlHAlignLeft=-4131
_xlHAlignRight=-4152
_xlHGL=6
_xlHairline=1
_xlHeaderRow=1
_xlHebrewFullScript=0
_xlHebrewMixedAuthorizedScript=3
_xlHebrewMixedScript=2
_xlHebrewPartialScript=1
_xlHiLoLines=25
_xlHidden=0
_xlHide=3
_xlHierarchy=1
_xlHigh=-4127
_xlHindiNumerals=3
_xlHiragana=2
_xlHistogram=118
_xlHorizontal=-4128
_xlHorizontalCoordinate=1
_xlHourCode=22
_xlHtml=44
_xlHtmlCalc=1
_xlHtmlChart=3
_xlHtmlList=2
_xlHtmlStatic=0
_xlHundredMillions=-8
_xlHundredThousands=-5
_xlHundreds=-2
_xlIBeam=3
_xlIMEModeAlpha=8
_xlIMEModeAlphaFull=7
_xlIMEModeDisable=3
_xlIMEModeHangul=10
_xlIMEModeHangulFull=9
_xlIMEModeHiragana=4
_xlIMEModeKatakana=5
_xlIMEModeKatakanaHalf=6
_xlIMEModeNoControl=0
_xlIMEModeOff=2
_xlIMEModeOn=1
_xlIcon0Bars=37
_xlIcon0FilledBoxes=52
_xlIcon1Bar=38
_xlIcon1FilledBox=51
_xlIcon2Bars=39
_xlIcon2FilledBoxes=50
_xlIcon3Bars=40
_xlIcon3FilledBoxes=49
_xlIcon4Bars=41
_xlIcon4FilledBoxes=48
_xlIconBlackCircle=32
_xlIconBlackCircleWithBorder=13
_xlIconCircleWithOneWhiteQuarter=33
_xlIconCircleWithThreeWhiteQuarters=35
_xlIconCircleWithTwoWhiteQuarters=34
_xlIconGoldStar=42
_xlIconGrayCircle=31
_xlIconGrayDownArrow=6
_xlIconGrayDownInclineArrow=28
_xlIconGraySideArrow=5
_xlIconGrayUpArrow=4
_xlIconGrayUpInclineArrow=27
_xlIconGreenCheck=22
_xlIconGreenCheckSymbol=19
_xlIconGreenCircle=10
_xlIconGreenFlag=7
_xlIconGreenTrafficLight=14
_xlIconGreenUpArrow=1
_xlIconGreenUpTriangle=45
_xlIconHalfGoldStar=43
_xlIconNoCellIcon=-1
_xlIconPinkCircle=30
_xlIconRedCircle=29
_xlIconRedCircleWithBorder=12
_xlIconRedCross=24
_xlIconRedCrossSymbol=21
_xlIconRedDiamond=18
_xlIconRedDownArrow=3
_xlIconRedDownTriangle=47
_xlIconRedFlag=9
_xlIconRedTrafficLight=16
_xlIconSets=6
_xlIconSilverStar=44
_xlIconWhiteCircleAllWhiteQuarters=36
_xlIconYellowCircle=11
_xlIconYellowDash=46
_xlIconYellowDownInclineArrow=26
_xlIconYellowExclamation=23
_xlIconYellowExclamationSymbol=20
_xlIconYellowFlag=8
_xlIconYellowSideArrow=2
_xlIconYellowTrafficLight=15
_xlIconYellowTriangle=17
_xlIconYellowUpInclineArrow=25
_xlIcons=1
_xlImmediatePane=12
_xlInches=0
_xlInconsistentFormula=4
_xlInconsistentListFormula=9
_xlIndex=9
_xlIndexAscending=0
_xlIndexDescending=1
_xlIndicatorAndButton=0
_xlInfo=-4129
_xlInnerCenterPoint=8
_xlInnerClockwisePoint=7
_xlInnerCounterClockwisePoint=9
_xlInsertDeleteCells=1
_xlInsertEntireRows=2
_xlInside=2
_xlInsideHorizontal=12
_xlInsideVertical=11
_xlInteger=2
_xlInterpolated=3
_xlInterrupt=1
_xlIntlAddIn=26
_xlIntlMacro=25
_xlJustify=-4130
_xlKatakana=1
_xlKatakanaHalf=0
_xlLTR=-5003
_xlLabel=5
_xlLabelOnly=1
_xlLabelPositionAbove=0
_xlLabelPositionBelow=1
_xlLabelPositionBestFit=5
_xlLabelPositionCenter=-4108
_xlLabelPositionCustom=7
_xlLabelPositionInsideBase=4
_xlLabelPositionInsideEnd=3
_xlLabelPositionLeft=-4131
_xlLabelPositionMixed=6
_xlLabelPositionOutsideEnd=2
_xlLabelPositionRight=-4152
_xlLandscape=2
_xlLast=1
_xlLast7Days=2
_xlLastCell=11
_xlLastColumn=4
_xlLastHeaderCell=10
_xlLastMonth=5
_xlLastTotalCell=12
_xlLastWeek=4
_xlLatin=-5001
_xlLeaderLines=29
_xlLeft=-4131
_xlLeftBrace=12
_xlLeftBracket=10
_xlLeftToRight=2
_xlLegend=24
_xlLegendEntry=12
_xlLegendKey=13
_xlLegendPositionBottom=-4107
_xlLegendPositionCorner=2
_xlLegendPositionCustom=-4161
_xlLegendPositionLeft=-4131
_xlLegendPositionRight=-4152
_xlLegendPositionTop=-4160
_xlLensOnly=0
_xlLess=6
_xlLessEqual=8
_xlLightDown=13
_xlLightHorizontal=11
_xlLightUp=14
_xlLightVertical=12
_xlLine=4
_xlLineMarkers=65
_xlLineMarkersStacked=66
_xlLineMarkersStacked100=67
_xlLineStacked=63
_xlLineStacked100=64
_xlLineStyleNone=-4142
_xlLinear=-4132
_xlLinearTrend=9
_xlLinkInfoOLELinks=2
_xlLinkInfoPublishers=5
_xlLinkInfoStatus=3
_xlLinkInfoSubscribers=6
_xlLinkStatusCopiedValues=10
_xlLinkStatusIndeterminate=5
_xlLinkStatusInvalidName=7
_xlLinkStatusMissingFile=1
_xlLinkStatusMissingSheet=2
_xlLinkStatusNotStarted=6
_xlLinkStatusOK=0
_xlLinkStatusOld=3
_xlLinkStatusSourceNotCalculated=4
_xlLinkStatusSourceNotOpen=8
_xlLinkStatusSourceOpen=9
_xlLinkTypeExcelLinks=1
_xlLinkTypeOLELinks=2
_xlLinkedDataTypeStateBrokenLinkedData=3
_xlLinkedDataTypeStateDisambiguationNeeded=2
_xlLinkedDataTypeStateFetchingData=4
_xlLinkedDataTypeStateNone=0
_xlLinkedDataTypeStateValidLinkedData=1
_xlList1=10
_xlList2=11
_xlList3=12
_xlListBox=6
_xlListConflictDialog=0
_xlListConflictDiscardAllConflicts=2
_xlListConflictError=3
_xlListConflictRetryAllConflicts=1
_xlListDataTypeCheckbox=9
_xlListDataTypeChoice=6
_xlListDataTypeChoiceMulti=7
_xlListDataTypeCounter=11
_xlListDataTypeCurrency=4
_xlListDataTypeDateTime=5
_xlListDataTypeHyperLink=10
_xlListDataTypeListLookup=8
_xlListDataTypeMultiLineRichText=12
_xlListDataTypeMultiLineText=2
_xlListDataTypeNone=0
_xlListDataTypeNumber=3
_xlListDataTypeText=1
_xlListDataValidation=8
_xlListSeparator=5
_xlLocalFormat1=15
_xlLocalFormat2=16
_xlLocalSessionChanges=2
_xlLocationAsNewSheet=1
_xlLocationAsObject=2
_xlLocationAutomatic=3
_xlLogarithmic=-4133
_xlLogical=4
_xlLogicalCursor=1
_xlLong=3
_xlLookForBlanks=0
_xlLookForErrors=1
_xlLookForFormulas=2
_xlLotusHelp=2
_xlLow=-4134
_xlLowerCaseColumnLetter=9
_xlLowerCaseRowLetter=8
_xlMAPI=1
_xlMDY=44
_xlMDYFormat=3
_xlMSDOS=3
_xlMYDFormat=6
_xlMacintosh=1
_xlMacrosheetCell=7
_xlMajorGridlines=15
_xlManual=-4135
_xlManualAllocation=1
_xlManualUpdate=5
_xlMarkerStyleAutomatic=-4105
_xlMarkerStyleCircle=8
_xlMarkerStyleDash=-4115
_xlMarkerStyleDiamond=2
_xlMarkerStyleDot=-4118
_xlMarkerStyleNone=-4142
_xlMarkerStylePicture=-4147
_xlMarkerStylePlus=9
_xlMarkerStyleSquare=1
_xlMarkerStyleStar=5
_xlMarkerStyleTriangle=3
_xlMarkerStyleX=-4168
_xlMax=-4136
_xlMaximized=-4137
_xlMaximum=2
_xlMeasure=2
_xlMedium=-4138
_xlMetric=35
_xlMicrosoftAccess=4
_xlMicrosoftFoxPro=5
_xlMicrosoftMail=3
_xlMicrosoftPowerPoint=2
_xlMicrosoftProject=6
_xlMicrosoftSchedulePlus=7
_xlMicrosoftWord=1
_xlMidClockwiseRadiusPoint=4
_xlMidCounterClockwiseRadiusPoint=6
_xlMillimeters=2
_xlMillionMillions=-10
_xlMillions=-6
_xlMin=-4139
_xlMinimized=-4140
_xlMinimum=4
_xlMinorGridlines=16
_xlMinusValues=3
_xlMinuteCode=23
_xlMisleadingFormat=10
_xlMissingItemsDefault=-1
_xlMissingItemsMax=32500
_xlMissingItemsMax2=1048576
_xlMissingItemsNone=0
_xlMixed=2
_xlMixedAuthorizedScript=4
_xlMixedLabels=3
_xlMixedScript=3
_xlModule=-4141
_xlMonth=3
_xlMonthCode=20
_xlMonthLeadingZero=41
_xlMonthNameChars=30
_xlMonths=1
_xlMove=2
_xlMoveAndSize=1
_xlMovingAvg=6
_xlMultiply=4
_xlNarrow=1
_xlNever=2
_xlNext=1
_xlNextMonth=8
_xlNextToAxis=4
_xlNextWeek=7
_xlNo=2
_xlNoAdditionalCalculation=-4143
_xlNoBlanksCondition=13
_xlNoButton=0
_xlNoButtonChanges=1
_xlNoCap=2
_xlNoChange=1
_xlNoChanges=4
_xlNoConversion=3
_xlNoDockingChanges=3
_xlNoDocuments=3
_xlNoErrorsCondition=17
_xlNoIndicator=0
_xlNoKey=0
_xlNoLabels=-4142
_xlNoMailSystem=0
_xlNoRestrictions=0
_xlNoSelection=-4142
_xlNoShapeChanges=2
_xlNonEnglishFunctions=34
_xlNoncurrencyDigits=29
_xlNone=-4142
_xlNormal=-4143
_xlNormalLoad=0
_xlNormalView=1
_xlNorthwestArrow=1
_xlNotBetween=2
_xlNotEqual=4
_xlNotPlotted=1
_xlNotSpecificDate=30
_xlNotXLM=3
_xlNotYetReviewed=3
_xlNotYetRouted=0
_xlNotes=-4144
_xlNothing=28
_xlNumber=-4145
_xlNumberAsText=3
_xlNumberFormatTypeDefault=0
_xlNumberFormatTypeNumber=1
_xlNumberFormatTypePercent=2
_xlNumbers=1
_xlODBCQuery=1
_xlOLEControl=2
_xlOLEDBQuery=5
_xlOLEEmbed=1
_xlOLELink=0
_xlOLELinks=2
_xlOartHorizontalOverflowClip=1
_xlOartHorizontalOverflowOverflow=0
_xlOartVerticalOverflowClip=1
_xlOartVerticalOverflowEllipsis=2
_xlOartVerticalOverflowOverflow=0
_xlOff=-4146
_xlOmittedCells=5
_xlOn=1
_xlOneAfterAnother=1
_xlOpaque=3
_xlOpen=2
_xlOpenDocumentSpreadsheet=60
_xlOpenSource=3
_xlOpenXMLAddIn=55
_xlOpenXMLStrictWorkbook=61
_xlOpenXMLTemplate=54
_xlOpenXMLTemplateMacroEnabled=53
_xlOpenXMLWorkbook=51
_xlOpenXMLWorkbookMacroEnabled=52
_xlOptionButton=7
_xlOr=2
_xlOrigin=3
_xlOtherSessionChanges=3
_xlOutdatedLinkedDataType=11
_xlOuterCenterPoint=2
_xlOuterClockwisePoint=3
_xlOuterCounterClockwisePoint=1
_xlOutline=1
_xlOutlineRow=2
_xlOutside=3
_xlOverThenDown=2
_xlOverwriteCells=0
_xlPCT=13
_xlPCX=10
_xlPIC=11
_xlPICT=1
_xlPLT=12
_xlPTClassic=20
_xlPTNone=21
_xlPageBreakAutomatic=-4105
_xlPageBreakFull=1
_xlPageBreakManual=-4135
_xlPageBreakNone=-4142
_xlPageBreakPartial=2
_xlPageBreakPreview=2
_xlPageField=3
_xlPageFieldLabels=26
_xlPageFieldValues=27
_xlPageHeader=2
_xlPageItem=6
_xlPageLayoutView=3
_xlPaper10x14=16
_xlPaper11x17=17
_xlPaperA3=8
_xlPaperA4=9
_xlPaperA4Small=10
_xlPaperA5=11
_xlPaperB4=12
_xlPaperB5=13
_xlPaperCsheet=24
_xlPaperDsheet=25
_xlPaperEnvelope10=20
_xlPaperEnvelope11=21
_xlPaperEnvelope12=22
_xlPaperEnvelope14=23
_xlPaperEnvelope9=19
_xlPaperEnvelopeB4=33
_xlPaperEnvelopeB5=34
_xlPaperEnvelopeB6=35
_xlPaperEnvelopeC3=29
_xlPaperEnvelopeC4=30
_xlPaperEnvelopeC5=28
_xlPaperEnvelopeC6=31
_xlPaperEnvelopeC65=32
_xlPaperEnvelopeDL=27
_xlPaperEnvelopeItaly=36
_xlPaperEnvelopeMonarch=37
_xlPaperEnvelopePersonal=38
_xlPaperEsheet=26
_xlPaperExecutive=7
_xlPaperFanfoldLegalGerman=41
_xlPaperFanfoldStdGerman=40
_xlPaperFanfoldUS=39
_xlPaperFolio=14
_xlPaperLedger=4
_xlPaperLegal=5
_xlPaperLetter=1
_xlPaperLetterSmall=2
_xlPaperNote=18
_xlPaperQuarto=15
_xlPaperStatement=6
_xlPaperTabloid=3
_xlPaperUser=256
_xlParamTypeBigInt=-5
_xlParamTypeBinary=-2
_xlParamTypeBit=-7
_xlParamTypeChar=1
_xlParamTypeDate=9
_xlParamTypeDecimal=3
_xlParamTypeDouble=8
_xlParamTypeFloat=6
_xlParamTypeInteger=4
_xlParamTypeLongVarBinary=-4
_xlParamTypeLongVarChar=-1
_xlParamTypeNumeric=2
_xlParamTypeReal=7
_xlParamTypeSmallInt=5
_xlParamTypeTime=10
_xlParamTypeTimestamp=11
_xlParamTypeTinyInt=-6
_xlParamTypeUnknown=0
_xlParamTypeVarBinary=-3
_xlParamTypeVarChar=12
_xlParamTypeWChar=-8
_xlParentDataLabelOptionsBanner=1
_xlParentDataLabelOptionsNone=0
_xlParentDataLabelOptionsOverlapping=2
_xlPareto=122
_xlPart=2
_xlPartial=3
_xlPartialScript=2
_xlPasteAll=-4104
_xlPasteAllExceptBorders=7
_xlPasteAllMergingConditionalFormats=14
_xlPasteAllUsingSourceTheme=13
_xlPasteColumnWidths=8
_xlPasteComments=-4144
_xlPasteFormats=-4122
_xlPasteFormulas=-4123
_xlPasteFormulasAndNumberFormats=11
_xlPasteSpecialOperationAdd=2
_xlPasteSpecialOperationDivide=5
_xlPasteSpecialOperationMultiply=4
_xlPasteSpecialOperationNone=-4142
_xlPasteSpecialOperationSubtract=3
_xlPasteValidation=6
_xlPasteValues=-4163
_xlPasteValuesAndNumberFormats=12
_xlPatternAutomatic=-4105
_xlPatternChecker=9
_xlPatternCrissCross=16
_xlPatternDown=-4121
_xlPatternGray16=17
_xlPatternGray25=-4124
_xlPatternGray50=-4125
_xlPatternGray75=-4126
_xlPatternGray8=18
_xlPatternGrid=15
_xlPatternHorizontal=-4128
_xlPatternLightDown=13
_xlPatternLightHorizontal=11
_xlPatternLightUp=14
_xlPatternLightVertical=12
_xlPatternLinearGradient=4000
_xlPatternNone=-4142
_xlPatternRectangularGradient=4001
_xlPatternSemiGray75=10
_xlPatternSolid=1
_xlPatternUp=-4162
_xlPatternVertical=-4166
_xlPending=2
_xlPercent=2
_xlPercentDifferenceFrom=4
_xlPercentOf=3
_xlPercentOfColumn=7
_xlPercentOfParent=12
_xlPercentOfParentColumn=11
_xlPercentOfParentRow=10
_xlPercentOfRow=6
_xlPercentOfTotal=8
_xlPercentRunningTotal=13
_xlPhoneticAlignCenter=2
_xlPhoneticAlignDistributed=3
_xlPhoneticAlignLeft=1
_xlPhoneticAlignNoControl=0
_xlPicture=-4147
_xlPie=5
_xlPieExploded=69
_xlPieOfPie=68
_xlPinYin=1
_xlPivotCellBlankCell=9
_xlPivotCellCustomSubtotal=7
_xlPivotCellDataField=4
_xlPivotCellDataPivotField=8
_xlPivotCellGrandTotal=3
_xlPivotCellPageFieldItem=6
_xlPivotCellPivotField=5
_xlPivotCellPivotItem=1
_xlPivotCellSubtotal=2
_xlPivotCellValue=0
_xlPivotChartCollapseEntireFieldButton=34
_xlPivotChartDropZone=32
_xlPivotChartExpandEntireFieldButton=33
_xlPivotChartFieldButton=31
_xlPivotLineBlank=3
_xlPivotLineGrandTotal=2
_xlPivotLineRegular=0
_xlPivotLineSubtotal=1
_xlPivotTable=-4148
_xlPivotTableReport=1
_xlPivotTableVersion10=1
_xlPivotTableVersion11=2
_xlPivotTableVersion12=3
_xlPivotTableVersion14=4
_xlPivotTableVersion15=5
_xlPivotTableVersion2000=0
_xlPivotTableVersionCurrent=-1
_xlPlaceholders=2
_xlPlotArea=19
_xlPlus=9
_xlPlusValues=2
_xlPolynomial=3
_xlPortrait=1
_xlPortugueseBoth=3
_xlPortuguesePostReform=2
_xlPortuguesePreReform=1
_xlPower=4
_xlPowerTalk=2
_xlPrevious=2
_xlPrimary=1
_xlPrimaryButton=1
_xlPrintErrorsBlank=1
_xlPrintErrorsDash=2
_xlPrintErrorsDisplayed=0
_xlPrintErrorsNA=3
_xlPrintInPlace=16
_xlPrintNoComments=-4142
_xlPrintSheetEnd=1
_xlPrinter=2
_xlPriorityHigh=-4127
_xlPriorityLow=-4134
_xlPriorityNormal=-4143
_xlProduct=-4149
_xlPrompt=0
_xlProtectedViewCloseEdit=1
_xlProtectedViewCloseForced=2
_xlProtectedViewCloseNormal=0
_xlProtectedViewWindowMaximized=2
_xlProtectedViewWindowMinimized=1
_xlProtectedViewWindowNormal=0
_xlPublisher=1
_xlPublishers=5
_xlPyramidBarClustered=109
_xlPyramidBarStacked=110
_xlPyramidBarStacked100=111
_xlPyramidCol=112
_xlPyramidColClustered=106
_xlPyramidColStacked=107
_xlPyramidColStacked100=108
_xlPyramidToMax=2
_xlPyramidToPoint=1
_xlQualityMinimum=1
_xlQualityStandard=0
_xlQueryTable=0
_xlR1C1=-4150
_xlRDIAll=99
_xlRDIComments=1
_xlRDIContentType=16
_xlRDIDefinedNameComments=18
_xlRDIDocumentManagementPolicy=15
_xlRDIDocumentProperties=8
_xlRDIDocumentServerProperties=14
_xlRDIDocumentWorkspace=10
_xlRDIEmailHeader=5
_xlRDIExcelDataModel=23
_xlRDIInactiveDataConnections=19
_xlRDIInkAnnotations=11
_xlRDIInlineWebExtensions=21
_xlRDIPrinterPath=20
_xlRDIPublishInfo=13
_xlRDIRemovePersonalInformation=4
_xlRDIRoutingSlip=6
_xlRDIScenarioComments=12
_xlRDISendForReview=7
_xlRDITaskpaneWebExtensions=22
_xlRTF=4
_xlRTL=-5004
_xlRadar=-4151
_xlRadarAxisLabels=27
_xlRadarFilled=82
_xlRadarMarkers=81
_xlRange=2
_xlRangeAutoFormat3DEffects1=13
_xlRangeAutoFormat3DEffects2=14
_xlRangeAutoFormatAccounting1=4
_xlRangeAutoFormatAccounting2=5
_xlRangeAutoFormatAccounting3=6
_xlRangeAutoFormatAccounting4=17
_xlRangeAutoFormatClassic1=1
_xlRangeAutoFormatClassic2=2
_xlRangeAutoFormatClassic3=3
_xlRangeAutoFormatClassicPivotTable=31
_xlRangeAutoFormatColor1=7
_xlRangeAutoFormatColor2=8
_xlRangeAutoFormatColor3=9
_xlRangeAutoFormatList1=10
_xlRangeAutoFormatList2=11
_xlRangeAutoFormatList3=12
_xlRangeAutoFormatLocalFormat1=15
_xlRangeAutoFormatLocalFormat2=16
_xlRangeAutoFormatLocalFormat3=19
_xlRangeAutoFormatLocalFormat4=20
_xlRangeAutoFormatNone=-4142
_xlRangeAutoFormatPTNone=42
_xlRangeAutoFormatReport1=21
_xlRangeAutoFormatReport10=30
_xlRangeAutoFormatReport2=22
_xlRangeAutoFormatReport3=23
_xlRangeAutoFormatReport4=24
_xlRangeAutoFormatReport5=25
_xlRangeAutoFormatReport6=26
_xlRangeAutoFormatReport7=27
_xlRangeAutoFormatReport8=28
_xlRangeAutoFormatReport9=29
_xlRangeAutoFormatSimple=-4154
_xlRangeAutoFormatTable1=32
_xlRangeAutoFormatTable10=41
_xlRangeAutoFormatTable2=33
_xlRangeAutoFormatTable3=34
_xlRangeAutoFormatTable4=35
_xlRangeAutoFormatTable5=36
_xlRangeAutoFormatTable6=37
_xlRangeAutoFormatTable7=38
_xlRangeAutoFormatTable8=39
_xlRangeAutoFormatTable9=40
_xlRangeValueDefault=10
_xlRangeValueMSPersistXML=12
_xlRangeValueXMLSpreadsheet=11
_xlRankAscending=14
_xlRankDecending=15
_xlReadOnly=3
_xlReadWrite=2
_xlRecommendedCharts=2
_xlReference=4
_xlRegionLabelOptionsBestFitOnly=1
_xlRegionLabelOptionsNone=0
_xlRegionLabelOptionsShowAll=2
_xlRegionMap=140
_xlRelRowAbsColumn=3
_xlRelative=4
_xlRepairFile=1
_xlRepeatLabels=2
_xlReplaceFormula=0
_xlReplaceFormula2=1
_xlReport1=0
_xlReport10=9
_xlReport2=1
_xlReport3=2
_xlReport4=3
_xlReport5=4
_xlReport6=5
_xlReport7=6
_xlReport8=7
_xlReport9=8
_xlRight=-4152
_xlRightBrace=13
_xlRightBracket=11
_xlRoutingComplete=2
_xlRoutingInProgress=1
_xlRowField=1
_xlRowGroups=1
_xlRowHeader=-4153
_xlRowItem=4
_xlRowLabels=1
_xlRowSeparator=15
_xlRowStripe1=5
_xlRowStripe2=6
_xlRowSubheading1=23
_xlRowSubheading2=24
_xlRowSubheading3=25
_xlRowThenColumn=1
_xlRows=1
_xlRunningTotal=5
_xlSYLK=2
_xlSaveChanges=1
_xlScale=3
_xlScaleLinear=-4132
_xlScaleLogarithmic=-4133
_xlScenario=4
_xlScreen=1
_xlScreenSize=1
_xlScrollBar=8
_xlSecondCode=24
_xlSecondary=2
_xlSecondaryButton=2
_xlSelect=3
_xlSelectionScope=0
_xlSemiGray75=10
_xlSemiautomatic=2
_xlSendPublisher=2
_xlSeries=3
_xlSeriesAxis=3
_xlSeriesColorGradientStyleDiverging=1
_xlSeriesColorGradientStyleSequential=0
_xlSeriesLines=22
_xlSeriesNameLevelAll=-1
_xlSeriesNameLevelCustom=-2
_xlSeriesNameLevelNone=-3
_xlSet=3
_xlShape=14
_xlShared=2
_xlSheetHidden=0
_xlSheetVeryHidden=2
_xlSheetVisible=-1
_xlShiftDown=-4121
_xlShiftToLeft=-4159
_xlShiftToRight=-4161
_xlShiftUp=-4162
_xlShort=1
_xlShowLabel=4
_xlShowLabelAndPercent=5
_xlShowPercent=3
_xlShowValue=2
_xlSides=1
_xlSimple=-4154
_xlSinceMyLastSave=1
_xlSingle=2
_xlSingleAccounting=4
_xlSingleQuote=2
_xlSizeIsArea=1
_xlSizeIsWidth=2
_xlSkipColumn=9
_xlSlantDashDot=13
_xlSlicer=1
_xlSlicerCrossFilterHideButtonsWithNoData=4
_xlSlicerCrossFilterShowItemsWithDataAtTop=2
_xlSlicerCrossFilterShowItemsWithNoData=3
_xlSlicerHoveredSelectedItemWithData=33
_xlSlicerHoveredSelectedItemWithNoData=35
_xlSlicerHoveredUnselectedItemWithData=32
_xlSlicerHoveredUnselectedItemWithNoData=34
_xlSlicerNoCrossFilter=1
_xlSlicerSelectedItemWithData=30
_xlSlicerSelectedItemWithNoData=31
_xlSlicerSortAscending=2
_xlSlicerSortDataSourceOrder=1
_xlSlicerSortDescending=3
_xlSlicerUnselectedItemWithData=28
_xlSlicerUnselectedItemWithNoData=29
_xlSmartTagControlActiveX=13
_xlSmartTagControlButton=6
_xlSmartTagControlCheckbox=9
_xlSmartTagControlCombo=12
_xlSmartTagControlHelp=3
_xlSmartTagControlHelpURL=4
_xlSmartTagControlImage=8
_xlSmartTagControlLabel=7
_xlSmartTagControlLink=2
_xlSmartTagControlListbox=11
_xlSmartTagControlRadioGroup=14
_xlSmartTagControlSeparator=5
_xlSmartTagControlSmartTag=1
_xlSmartTagControlTextbox=10
_xlSolid=1
_xlSortColumns=1
_xlSortLabels=2
_xlSortNormal=0
_xlSortOnCellColor=1
_xlSortOnFontColor=2
_xlSortOnIcon=3
_xlSortOnValues=0
_xlSortRows=2
_xlSortTextAsNumbers=1
_xlSortValues=1
_xlSourceAutoFilter=3
_xlSourceChart=5
_xlSourcePivotTable=6
_xlSourcePrintArea=2
_xlSourceQuery=7
_xlSourceRange=4
_xlSourceSheet=1
_xlSourceWorkbook=0
_xlSpanishTuteoAndVoseo=1
_xlSpanishTuteoOnly=0
_xlSpanishVoseoOnly=2
_xlSparkColumn=2
_xlSparkColumnStacked100=3
_xlSparkLine=1
_xlSparkScaleCustom=3
_xlSparkScaleGroup=1
_xlSparkScaleSingle=2
_xlSparklineColumnsSquare=2
_xlSparklineNonSquare=0
_xlSparklineRowsSquare=1
_xlSparklines=5
_xlSpeakByColumns=1
_xlSpeakByRows=0
_xlSpecificDate=29
_xlSpecifiedTables=3
_xlSpinner=9
_xlSplitByCustomSplit=4
_xlSplitByPercentValue=3
_xlSplitByPosition=1
_xlSplitByValue=2
_xlSquare=1
_xlSrcExternal=0
_xlSrcModel=4
_xlSrcQuery=3
_xlSrcRange=1
_xlSrcXml=2
_xlStDev=-4155
_xlStDevP=-4156
_xlStError=4
_xlStack=2
_xlStackScale=3
_xlStandardSummary=1
_xlStar=5
_xlStockHLC=88
_xlStockOHLC=89
_xlStockVHLC=90
_xlStockVOHLC=91
_xlStretch=1
_xlStrict=2
_xlStroke=2
_xlSubscribeToPicture=-4147
_xlSubscribeToText=-4158
_xlSubscriber=2
_xlSubscribers=6
_xlSubtotalColumn1=13
_xlSubtotalColumn2=14
_xlSubtotalColumn3=15
_xlSubtotalRow1=16
_xlSubtotalRow2=17
_xlSubtotalRow3=18
_xlSubtract=3
_xlSum=-4157
_xlSummaryAbove=0
_xlSummaryBelow=1
_xlSummaryOnLeft=-4131
_xlSummaryOnRight=-4152
_xlSummaryPivotTable=-4148
_xlSunburst=120
_xlSurface=83
_xlSurfaceTopView=85
_xlSurfaceTopViewWireframe=86
_xlSurfaceWireframe=84
_xlSyllabary=1
_xlSystem=1
_xlTIF=9
_xlTabPositionFirst=0
_xlTabPositionLast=1
_xlTable=2
_xlTable1=10
_xlTable10=19
_xlTable2=11
_xlTable3=12
_xlTable4=13
_xlTable5=14
_xlTable6=15
_xlTable7=16
_xlTable8=17
_xlTable9=18
_xlTableBody=8
_xlTables=4
_xlTabular=0
_xlTabularRow=1
_xlTemplate=17
_xlTemplate8=17
_xlTenMillions=-7
_xlTenThousands=-4
_xlText=-4158
_xlTextBox=16
_xlTextDate=2
_xlTextFormat=2
_xlTextImport=6
_xlTextMSDOS=21
_xlTextMac=19
_xlTextPrinter=36
_xlTextQualifierDoubleQuote=1
_xlTextQualifierNone=-4142
_xlTextQualifierSingleQuote=2
_xlTextString=9
_xlTextValues=2
_xlTextVisualLTR=1
_xlTextVisualRTL=2
_xlTextWindows=20
_xlThemeColorAccent1=5
_xlThemeColorAccent2=6
_xlThemeColorAccent3=7
_xlThemeColorAccent4=8
_xlThemeColorAccent5=9
_xlThemeColorAccent6=10
_xlThemeColorDark1=1
_xlThemeColorDark2=3
_xlThemeColorFollowedHyperlink=12
_xlThemeColorHyperlink=11
_xlThemeColorLight1=2
_xlThemeColorLight2=4
_xlThemeFontMajor=1
_xlThemeFontMinor=2
_xlThemeFontNone=0
_xlThick=4
_xlThin=2
_xlThisMonth=9
_xlThisWeek=3
_xlThousandMillions=-9
_xlThousands=-3
_xlThousandsSeparator=4
_xlThreadModeAutomatic=0
_xlThreadModeManual=1
_xlTickLabelOrientationAutomatic=-4105
_xlTickLabelOrientationDownward=-4170
_xlTickLabelOrientationHorizontal=-4128
_xlTickLabelOrientationUpward=-4171
_xlTickLabelOrientationVertical=-4166
_xlTickLabelPositionHigh=-4127
_xlTickLabelPositionLow=-4134
_xlTickLabelPositionNextToAxis=4
_xlTickLabelPositionNone=-4142
_xlTickMarkCross=4
_xlTickMarkInside=2
_xlTickMarkNone=-4142
_xlTickMarkOutside=3
_xlTiled=1
_xlTimeLeadingZero=45
_xlTimePeriod=11
_xlTimeScale=3
_xlTimeSeparator=18
_xlTimeline=2
_xlTimelineLevelDays=3
_xlTimelineLevelMonths=2
_xlTimelineLevelQuarters=1
_xlTimelineLevelYears=0
_xlTimelinePeriodLabels1=38
_xlTimelinePeriodLabels2=39
_xlTimelineSelectedTimeBlock=40
_xlTimelineSelectedTimeBlockSpace=42
_xlTimelineSelectionLabel=36
_xlTimelineTimeLevel=37
_xlTimelineUnselectedTimeBlock=41
_xlTitleBar=8
_xlToLeft=-4159
_xlToRight=-4161
_xlToday=0
_xlTomorrow=6
_xlToolbar=1
_xlToolbarButton=2
_xlToolbarProtectionNone=-4143
_xlTop=-4160
_xlTop10=5
_xlTop10Bottom=0
_xlTop10Items=3
_xlTop10Percent=5
_xlTop10Top=1
_xlTopCount=1
_xlTopPercent=3
_xlTopSum=5
_xlTopToBottom=1
_xlTotalRow=2
_xlTotals=3
_xlTotalsCalculationAverage=2
_xlTotalsCalculationCount=3
_xlTotalsCalculationCountNums=4
_xlTotalsCalculationCustom=9
_xlTotalsCalculationMax=6
_xlTotalsCalculationMin=5
_xlTotalsCalculationNone=0
_xlTotalsCalculationStdDev=7
_xlTotalsCalculationSum=1
_xlTotalsCalculationVar=8
_xlTransparent=2
_xlTreemap=117
_xlTrendline=8
_xlTriangle=3
_xlTypePDF=0
_xlTypeXPS=1
_xlUICultureTag=46
_xlUnderlineStyleDouble=-4119
_xlUnderlineStyleDoubleAccounting=5
_xlUnderlineStyleNone=-4142
_xlUnderlineStyleSingle=2
_xlUnderlineStyleSingleAccounting=4
_xlUnicodeText=42
_xlUnique=0
_xlUniqueValues=8
_xlUnknown=1000
_xlUnlockedCells=1
_xlUnlockedFormulaCells=6
_xlUp=-4162
_xlUpBars=18
_xlUpdateLinksAlways=3
_xlUpdateLinksNever=2
_xlUpdateLinksUserSetting=1
_xlUpdateState=1
_xlUpdateSubscriber=2
_xlUpperCaseColumnLetter=7
_xlUpperCaseRowLetter=6
_xlUpward=-4171
_xlUserDefined=22
_xlUserResolution=1
_xlVALU=8
_xlVAlignBottom=-4107
_xlVAlignCenter=-4108
_xlVAlignDistributed=-4117
_xlVAlignJustify=-4130
_xlVAlignTop=-4160
_xlValidAlertInformation=3
_xlValidAlertStop=1
_xlValidAlertWarning=2
_xlValidateCustom=7
_xlValidateDate=4
_xlValidateDecimal=2
_xlValidateInputOnly=0
_xlValidateList=3
_xlValidateTextLength=6
_xlValidateTime=5
_xlValidateWholeNumber=1
_xlValue=2
_xlValueAscending=1
_xlValueDescending=2
_xlValueDoesNotEqual=8
_xlValueEquals=7
_xlValueIsBetween=13
_xlValueIsGreaterThan=9
_xlValueIsGreaterThanOrEqualTo=10
_xlValueIsLessThan=11
_xlValueIsLessThanOrEqualTo=12
_xlValueIsNotBetween=14
_xlValueNone=0
_xlValues=-4163
_xlVar=-4164
_xlVarP=-4165
_xlVerbOpen=2
_xlVerbPrimary=1
_xlVertical=-4166
_xlVerticalCoordinate=2
_xlVeryHidden=2
_xlVisible=12
_xlVisualCursor=2
_xlWBATChart=-4109
_xlWBATExcel4IntlMacroSheet=4
_xlWBATExcel4MacroSheet=3
_xlWBATWorksheet=-4167
_xlWJ2WD1=14
_xlWJ3=40
_xlWJ3FJ3=41
_xlWK1=5
_xlWK1ALL=31
_xlWK1FMT=30
_xlWK3=15
_xlWK3FM3=32
_xlWK4=38
_xlWKS=4
_xlWMF=2
_xlWPG=3
_xlWQ1=34
_xlWait=2
_xlWalls=5
_xlWatchPane=11
_xlWaterfall=119
_xlWebArchive=45
_xlWebFormattingAll=1
_xlWebFormattingNone=3
_xlWebFormattingRTF=2
_xlWebQuery=4
_xlWeekday=2
_xlWeekdayNameChars=31
_xlWeightedAllocation=2
_xlWhole=1
_xlWholeTable=0
_xlWide=3
_xlWindows=2
_xlWithinSheet=1
_xlWithinWorkbook=2
_xlWorkbook=1
_xlWorkbookDefault=51
_xlWorkbookNormal=-4143
_xlWorkbookTab=6
_xlWorks2FarEast=28
_xlWorksheet=-4167
_xlWorksheet4=1
_xlWorksheetCell=3
_xlWorksheetShort=5
_xlX=-4168
_xlXErrorBars=10
_xlXMLSpreadsheet=46
_xlXYScatter=-4169
_xlXYScatterLines=74
_xlXYScatterLinesNoMarkers=75
_xlXYScatterSmooth=72
_xlXYScatterSmoothNoMarkers=73
_xlXmlExportSuccess=0
_xlXmlExportValidationFailed=1
_xlXmlImportElementsTruncated=1
_xlXmlImportSuccess=0
_xlXmlImportValidationFailed=2
_xlXmlLoadImportToList=2
_xlXmlLoadMapXml=3
_xlXmlLoadOpenXml=1
_xlXmlLoadPromptUser=0
_xlY=1
_xlYDMFormat=8
_xlYErrorBars=11
_xlYMDFormat=5
_xlYear=4
_xlYearCode=19
_xlYearToDate=52
_xlYears=2
_xlYes=1
_xlYesterday=1
_xlZero=2

Markdown 格式