using DocumentFormat.OpenXml.Packaging; using Ap = DocumentFormat.OpenXml.ExtendedProperties; using Vt = DocumentFormat.OpenXml.VariantTypes; using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Spreadsheet; using Xdr = DocumentFormat.OpenXml.Drawing.Spreadsheet; using A = DocumentFormat.OpenXml.Drawing; using C = DocumentFormat.OpenXml.Drawing.Charts; using System.Linq; namespace ExcelExport { public class FlexExport : ExportBase { // Creates a SpreadsheetDocument. public void CreatePackage(string filePath, string testNumber, string testDate, string carName, string model, string testTemperature, string measurementPoint, string collisionSpeed, string impactorID, string impactorType, string studyPersonnel, string and1, string and2, string cfc, string tibiaUnits, string aclMCLPCLLCLUnits, string femurUnits, string timeUnits, string impactorWeight, string tibia1MaxAndTime, string tibia1MinAndTime, string tibia2MaxAndTime, string tibia2MinAndTime, string tibia3MaxAndTime, string tibia3MinAndTime, string tibia4MaxAndTime, string tibia4MinAndTime, string MCLMaxAndTime, string MCLMinAndTime, string ACLMaxAndTime, string ACLMinAndTime, string PCLMaxAndTime, string PCLMinAndTime, string Femur1MaxAndTime, string Femur1MinAndTime, string femur2MaxAndTime, string femur2MinAndTime, string femur3MAxAndTime, string femur3MinAndTime, string LCLMaxAndTime, string LCLMinAndTime, double [] tibia1X, double [] tibia1Y, double [] tibia2X, double [] tibia2Y, double [] tibia3X, double [] tibia3Y, double [] tibia4X, double [] tibia4Y, double [] mclX, double[] mclY, double [] aclX, double [] aclY, double [] pclX, double [] pclY, double [] femur1X, double [] femur1Y, double [] femur2X, double [] femur2Y, double [] femur3X, double [] femur3Y, double [] lclX, double [] lclY, double? tibiaMin, double? tibiaMax, double? mclMin, double? mclMax, double? femurMin, double? femurMax, double? aclPCLMin, double? aclPCLMax, double? lclMin, double? lclMax, string tibiaThresholds, string mclThresholds, string lclThresholds, string femurThresholds, string aclpclThresholds ) { using (SpreadsheetDocument package = SpreadsheetDocument.Create(filePath, SpreadsheetDocumentType.Workbook)) { CreateParts(package, testNumber, testDate, carName, model, testTemperature, measurementPoint, collisionSpeed, impactorID, impactorType, studyPersonnel, and1, and2, cfc, tibiaUnits, aclMCLPCLLCLUnits, femurUnits, timeUnits, impactorWeight, tibia1MaxAndTime, tibia1MinAndTime, tibia2MaxAndTime, tibia2MinAndTime, tibia3MaxAndTime, tibia3MinAndTime, tibia4MaxAndTime, tibia4MinAndTime, MCLMaxAndTime, MCLMinAndTime, ACLMaxAndTime, ACLMinAndTime, PCLMaxAndTime, PCLMinAndTime, Femur1MaxAndTime, Femur1MinAndTime, femur2MaxAndTime, femur2MinAndTime, femur3MAxAndTime, femur3MinAndTime, LCLMaxAndTime, LCLMinAndTime, tibia1X, tibia1Y, tibia2X, tibia2Y, tibia3X, tibia3Y, tibia4X, tibia4Y, mclX, mclY, aclX, aclY, pclX, pclY, femur1X, femur1Y, femur2X, femur2Y, femur3X, femur3Y, lclX, lclY, tibiaMin, tibiaMax, mclMin, mclMax, femurMin, femurMax, aclPCLMin, aclPCLMax, lclMin, lclMax, tibiaThresholds, mclThresholds, lclThresholds, femurThresholds, aclpclThresholds); } } // Adds child parts and generates content of the specified part. private void CreateParts(SpreadsheetDocument document, string testNumber, string testDate, string carName, string model, string testTemperature, string measurementPoint, string collisionSpeed, string impactorID, string impactorType, string studyPersonnel, string and1, string and2, string cfc, string tibiaUnits, string aclMCLPCLLCLUnits, string femurUnits, string timeUnits, string impactorWeight, string tibia1MaxAndTime, string tibia1MinAndTime, string tibia2MaxAndTime, string tibia2MinAndTime, string tibia3MaxAndTime, string tibia3MinAndTime, string tibia4MaxAndTime, string tibia4MinAndTime, string MCLMaxAndTime, string MCLMinAndTime, string ACLMaxAndTime, string ACLMinAndTime, string PCLMaxAndTime, string PCLMinAndTime, string Femur1MaxAndTime, string Femur1MinAndTime, string femur2MaxAndTime, string femur2MinAndTime, string femur3MAxAndTime, string femur3MinAndTime, string LCLMaxAndTime, string LCLMinAndTime, double[] tibia1X, double[] tibia1Y, double[] tibia2X, double[] tibia2Y, double[] tibia3X, double[] tibia3Y, double[] tibia4X, double[] tibia4Y, double[] mclX, double[] mclY, double[] aclX, double[] aclY, double[] pclX, double[] pclY, double[] femur1X, double[] femur1Y, double[] femur2X, double[] femur2Y, double[] femur3X, double[] femur3Y, double[] lclX, double[] lclY, double? tibiaMin, double? tibiaMax, double? mclMin, double? mclMax, double? femurMin, double? femurMax, double? aclPCLMin, double? aclPCLMax, double? lclMin, double? lclMax, string tibiaThresholds, string mclThresholds, string lclThresholds, string femurThresholds, string aclpclThresholds) { if (null != tibiaMin && double.IsNaN((double)tibiaMin)) { tibiaMin = null; } if (null != tibiaMax && double.IsNaN((double)tibiaMax)) { tibiaMax = null; } if (null != mclMin && double.IsNaN((double)mclMin)) { mclMin = null; } if (null != mclMax && double.IsNaN((double)mclMax)) { mclMax = null; } if (null != femurMin && double.IsNaN((double)femurMin)) { femurMin = null; } if (null != femurMax && double.IsNaN((double)femurMax)) { femurMax = null; } if (null != aclPCLMin && double.IsNaN((double)aclPCLMin)) { aclPCLMin = null; } if (null != aclPCLMax && double.IsNaN((double)aclPCLMax)) { aclPCLMax = null; } if (null != lclMin && double.IsNaN((double)lclMin)) { lclMin = null; } if (null != lclMax && double.IsNaN((double)lclMax)) { lclMax = null; } ExtendedFilePropertiesPart extendedFilePropertiesPart1 = document.AddNewPart("rId3"); GenerateExtendedFilePropertiesPart1Content(extendedFilePropertiesPart1); WorkbookPart workbookPart1 = document.AddWorkbookPart(); GenerateWorkbookPart1Content(workbookPart1); _sharedStringTablePart = workbookPart1.AddNewPart("rId6"); _sharedStringTablePart.SharedStringTable = new SharedStringTable(); WorksheetPart worksheetPart3 = workbookPart1.AddNewPart("rId1"); GenerateTopSheetWorksheetPart3Content(worksheetPart3, testNumber, testDate, carName, model, testTemperature, measurementPoint, collisionSpeed, impactorID, impactorType, studyPersonnel, and1, and2, cfc, tibiaUnits, aclMCLPCLLCLUnits, femurUnits, timeUnits, impactorWeight); WorksheetPart worksheetPart1 = workbookPart1.AddNewPart("rId3"); GenerateDataWorksheetPart1Content(worksheetPart1,tibia1X, tibia1Y, tibia2X, tibia2Y, tibia3X, tibia3Y, tibia4X, tibia4Y, mclX, mclY, aclX, aclY, pclX, pclY, femur1X, femur1Y,femur2X, femur2Y, femur3X, femur3Y, lclX, lclY); WorksheetPart worksheetPart2 = workbookPart1.AddNewPart("rId2"); GenerateReportWorksheetPart2Content(worksheetPart2, testNumber, testDate, testTemperature, impactorID, cfc, impactorType, carName, model, measurementPoint, impactorWeight, and1, and2, studyPersonnel, collisionSpeed, tibiaUnits, femurUnits, aclMCLPCLLCLUnits, tibia1MaxAndTime, tibia1MinAndTime, tibia2MaxAndTime, tibia2MinAndTime, tibia3MaxAndTime, tibia3MinAndTime, tibia4MaxAndTime, tibia4MinAndTime, MCLMaxAndTime, MCLMinAndTime, ACLMaxAndTime, ACLMinAndTime, PCLMaxAndTime, PCLMinAndTime, Femur1MaxAndTime, Femur1MinAndTime, femur2MaxAndTime, femur2MinAndTime, femur3MAxAndTime, femur3MinAndTime, LCLMaxAndTime, LCLMinAndTime); DrawingsPart drawingsPart1 = worksheetPart2.AddNewPart("rId2"); GenerateDrawingsPart1Content(drawingsPart1); ChartPart chartPart1 = drawingsPart1.AddNewPart("rId3"); GenerateACLPCLChartPart1Content(chartPart1, aclX, aclY, pclX, pclY, aclPCLMin, aclPCLMax, aclpclThresholds); ChartPart chartPart2 = drawingsPart1.AddNewPart("rId2"); GenerateMCLChartPart2Content(chartPart2, mclX, mclY, mclMin, mclMax, mclThresholds); ChartPart chartPart3 = drawingsPart1.AddNewPart("rId1"); GenerateTibiaChartPart3Content(chartPart3, tibia1X, tibia1Y, tibia2X, tibia2Y, tibia3X, tibia3Y, tibia4X, tibia4Y, timeUnits, tibiaMin, tibiaMax, tibiaThresholds); ChartPart chartPart4 = drawingsPart1.AddNewPart("rId5"); GenerateLCLChartPart4Content(chartPart4, lclX, lclY, timeUnits, lclMin, lclMax, lclThresholds); ChartPart chartPart5 = drawingsPart1.AddNewPart("rId4"); GenerateFemurChartPart5Content(chartPart5, femur1X, femur1Y, femur2X, femur2Y, femur3X, femur3Y, femurMin, femurMax, femurThresholds); SpreadsheetPrinterSettingsPart spreadsheetPrinterSettingsPart1 = worksheetPart2.AddNewPart("rId1"); GenerateSpreadsheetPrinterSettingsPart1Content(spreadsheetPrinterSettingsPart1); DrawingsPart drawingsPart2 = worksheetPart3.AddNewPart("rId2"); GenerateDrawingsPart2Content(drawingsPart2); CalculationChainPart calculationChainPart1 = workbookPart1.AddNewPart("rId17"); calculationChainPart1.CalculationChain = _calculationChain1; SpreadsheetPrinterSettingsPart spreadsheetPrinterSettingsPart2 = worksheetPart3.AddNewPart("rId1"); GenerateSpreadsheetPrinterSettingsPart2Content(spreadsheetPrinterSettingsPart2); WorkbookStylesPart workbookStylesPart1 = workbookPart1.AddNewPart("rId5"); GenerateWorkbookStylesPart1Content(workbookStylesPart1); ThemePart themePart1 = workbookPart1.AddNewPart("rId4"); GenerateThemePart1Content(themePart1); SetPackageProperties(document); } // Generates content of extendedFilePropertiesPart1. private void GenerateExtendedFilePropertiesPart1Content(ExtendedFilePropertiesPart extendedFilePropertiesPart1) { Ap.Properties properties1 = new Ap.Properties(); properties1.AddNamespaceDeclaration("vt", "http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes"); Ap.Application application1 = new Ap.Application(); application1.Text = "Microsoft Excel"; Ap.DocumentSecurity documentSecurity1 = new Ap.DocumentSecurity(); documentSecurity1.Text = "0"; Ap.ScaleCrop scaleCrop1 = new Ap.ScaleCrop(); scaleCrop1.Text = "false"; Ap.HeadingPairs headingPairs1 = new Ap.HeadingPairs(); Vt.VTVector vTVector1 = new Vt.VTVector() { BaseType = Vt.VectorBaseValues.Variant, Size = (UInt32Value)4U }; Vt.Variant variant1 = new Vt.Variant(); Vt.VTLPSTR vTLPSTR1 = new Vt.VTLPSTR(); vTLPSTR1.Text = "Worksheets"; variant1.Append(vTLPSTR1); Vt.Variant variant2 = new Vt.Variant(); Vt.VTInt32 vTInt321 = new Vt.VTInt32(); vTInt321.Text = "3"; variant2.Append(vTInt321); Vt.Variant variant3 = new Vt.Variant(); Vt.VTLPSTR vTLPSTR2 = new Vt.VTLPSTR(); vTLPSTR2.Text = "Named Ranges"; variant3.Append(vTLPSTR2); Vt.Variant variant4 = new Vt.Variant(); Vt.VTInt32 vTInt322 = new Vt.VTInt32(); vTInt322.Text = "2"; variant4.Append(vTInt322); vTVector1.Append(variant1); vTVector1.Append(variant2); vTVector1.Append(variant3); vTVector1.Append(variant4); headingPairs1.Append(vTVector1); Ap.TitlesOfParts titlesOfParts1 = new Ap.TitlesOfParts(); Vt.VTVector vTVector2 = new Vt.VTVector() { BaseType = Vt.VectorBaseValues.Lpstr, Size = (UInt32Value)5U }; Vt.VTLPSTR vTLPSTR3 = new Vt.VTLPSTR(); vTLPSTR3.Text = "Top page"; Vt.VTLPSTR vTLPSTR4 = new Vt.VTLPSTR(); vTLPSTR4.Text = "TEST"; Vt.VTLPSTR vTLPSTR5 = new Vt.VTLPSTR(); vTLPSTR5.Text = "Data"; Vt.VTLPSTR vTLPSTR6 = new Vt.VTLPSTR(); vTLPSTR6.Text = "TEST!Print_Area"; Vt.VTLPSTR vTLPSTR7 = new Vt.VTLPSTR(); vTLPSTR7.Text = "\'Top page\'!Print_Area"; vTVector2.Append(vTLPSTR3); vTVector2.Append(vTLPSTR4); vTVector2.Append(vTLPSTR5); vTVector2.Append(vTLPSTR6); vTVector2.Append(vTLPSTR7); titlesOfParts1.Append(vTVector2); Ap.LinksUpToDate linksUpToDate1 = new Ap.LinksUpToDate(); linksUpToDate1.Text = "false"; Ap.SharedDocument sharedDocument1 = new Ap.SharedDocument(); sharedDocument1.Text = "false"; Ap.HyperlinksChanged hyperlinksChanged1 = new Ap.HyperlinksChanged(); hyperlinksChanged1.Text = "false"; Ap.ApplicationVersion applicationVersion1 = new Ap.ApplicationVersion(); applicationVersion1.Text = "12.0000"; properties1.Append(application1); properties1.Append(documentSecurity1); properties1.Append(scaleCrop1); properties1.Append(headingPairs1); properties1.Append(titlesOfParts1); properties1.Append(linksUpToDate1); properties1.Append(sharedDocument1); properties1.Append(hyperlinksChanged1); properties1.Append(applicationVersion1); extendedFilePropertiesPart1.Properties = properties1; } // Generates content of workbookPart1. private void GenerateWorkbookPart1Content(WorkbookPart workbookPart1) { Workbook workbook1 = new Workbook(); workbook1.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships"); FileVersion fileVersion1 = new FileVersion() { ApplicationName = "xl", LastEdited = "4", LowestEdited = "4", BuildVersion = "4507" }; WorkbookProperties workbookProperties1 = new WorkbookProperties() { DefaultThemeVersion = (UInt32Value)124226U }; BookViews bookViews1 = new BookViews(); WorkbookView workbookView1 = new WorkbookView() { XWindow = 0, YWindow = 30, WindowWidth = (UInt32Value)19155U, WindowHeight = (UInt32Value)8505U }; bookViews1.Append(workbookView1); Sheets sheets1 = new Sheets(); Sheet sheet1 = new Sheet() { Name = "Top page", SheetId = (UInt32Value)1U, Id = "rId1" }; Sheet sheet2 = new Sheet() { Name = "TEST", SheetId = (UInt32Value)2U, Id = "rId2" }; Sheet sheet3 = new Sheet() { Name = "Data", SheetId = (UInt32Value)3U, Id = "rId3" }; sheets1.Append(sheet1); sheets1.Append(sheet2); sheets1.Append(sheet3); DefinedNames definedNames1 = new DefinedNames(); DefinedName definedName1 = new DefinedName() { Name = "_xlnm.Print_Area", LocalSheetId = (UInt32Value)1U }; definedName1.Text = "TEST!$A$1:$AV$67"; DefinedName definedName2 = new DefinedName() { Name = "_xlnm.Print_Area", LocalSheetId = (UInt32Value)0U }; definedName2.Text = "\'Top page\'!$A$1:$AD$53"; definedNames1.Append(definedName1); definedNames1.Append(definedName2); CalculationProperties calculationProperties1 = new CalculationProperties() { CalculationId = (UInt32Value)125725U }; workbook1.Append(fileVersion1); workbook1.Append(workbookProperties1); workbook1.Append(bookViews1); workbook1.Append(sheets1); workbook1.Append(definedNames1); workbook1.Append(calculationProperties1); workbookPart1.Workbook = workbook1; } // Generates content of worksheetPart1. private void GenerateDataWorksheetPart1Content(WorksheetPart worksheetPart1, double [] tibiaX, double [] tibiaY, double [] tibia2X, double [] tibia2Y, double [] tibia3X, double [] tibia3Y, double [] tibia4X, double [] tibia4Y, double [] mclX, double [] mclY, double [] aclX, double [] aclY, double [] pclX, double [] pclY, double [] femur1X, double [] femur1Y, double [] femur2X, double [] femur2Y, double [] femur3X, double [] femur3Y, double [] lclX, double [] lclY) { Worksheet worksheet1 = new Worksheet(); worksheet1.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships"); SheetDimension sheetDimension1 = new SheetDimension() { Reference = "A1:V4" }; SheetViews sheetViews1 = new SheetViews(); SheetView sheetView1 = new SheetView() { WorkbookViewId = (UInt32Value)0U }; Selection selection1 = new Selection() { ActiveCell = "A1", SequenceOfReferences = new ListValue() { InnerText = "A1" } }; sheetView1.Append(selection1); sheetViews1.Append(sheetView1); SheetFormatProperties sheetFormatProperties1 = new SheetFormatProperties() { DefaultRowHeight = 15D }; SheetData sheetData1 = new SheetData(); Row row1 = new Row() { RowIndex = (UInt32Value)1U, Spans = new ListValue() { InnerText = "1:22" } }; Cell cell1 = new Cell() { CellReference = "A1", DataType = CellValues.SharedString }; CellValue cv = new CellValue(); cv.Text = InsertSharedStringItem("Tibia1Time").ToString(); cell1.Append(cv); row1.Append(cell1); cell1 = new Cell() { CellReference = "B1", DataType = CellValues.SharedString }; cv = new CellValue(); cv.Text = InsertSharedStringItem("Tibia1EU").ToString(); cell1.Append(cv); row1.Append(cell1); cell1 = new Cell() { CellReference = "C1", DataType = CellValues.SharedString }; cv = new CellValue(); cv.Text = InsertSharedStringItem("Tibia2Time").ToString(); cell1.Append(cv); row1.Append(cell1); cell1 = new Cell() { CellReference = "D1", DataType = CellValues.SharedString }; cv = new CellValue(); cv.Text = InsertSharedStringItem("Tibia2EU").ToString(); cell1.Append(cv); row1.Append(cell1); cell1 = new Cell() { CellReference = "E1", DataType = CellValues.SharedString }; cv = new CellValue(); cv.Text = InsertSharedStringItem("Tibia3Time").ToString(); cell1.Append(cv); row1.Append(cell1); cell1 = new Cell() { CellReference = "F1", DataType = CellValues.SharedString }; cv = new CellValue(); cv.Text = InsertSharedStringItem("Tibia3EU").ToString(); cell1.Append(cv); row1.Append(cell1); cell1 = new Cell() { CellReference = "G1", DataType = CellValues.SharedString }; cv = new CellValue(); cv.Text = InsertSharedStringItem("Tibia4Time").ToString(); cell1.Append(cv); row1.Append(cell1); cell1 = new Cell() { CellReference = "H1", DataType = CellValues.SharedString }; cv = new CellValue(); cv.Text = InsertSharedStringItem("Tibia4EU").ToString(); cell1.Append(cv); row1.Append(cell1); cell1 = new Cell() { CellReference = "I1", DataType = CellValues.SharedString }; cv = new CellValue(); cv.Text = InsertSharedStringItem("MCLTime").ToString(); cell1.Append(cv); row1.Append(cell1); cell1 = new Cell() { CellReference = "J1", DataType = CellValues.SharedString }; cv = new CellValue(); cv.Text = InsertSharedStringItem("MCLEU").ToString(); cell1.Append(cv); row1.Append(cell1); cell1 = new Cell() { CellReference = "K1", DataType = CellValues.SharedString }; cv = new CellValue(); cv.Text = InsertSharedStringItem("ACLTime").ToString(); cell1.Append(cv); row1.Append(cell1); cell1 = new Cell() { CellReference = "L1", DataType = CellValues.SharedString }; cv = new CellValue(); cv.Text = InsertSharedStringItem("ACLEU").ToString(); cell1.Append(cv); row1.Append(cell1); cell1 = new Cell() { CellReference = "M1", DataType = CellValues.SharedString }; cv = new CellValue(); cv.Text = InsertSharedStringItem("PCLTime").ToString(); cell1.Append(cv); row1.Append(cell1); cell1 = new Cell() { CellReference = "N1", DataType = CellValues.SharedString }; cv = new CellValue(); cv.Text = InsertSharedStringItem("PCLEU").ToString(); cell1.Append(cv); row1.Append(cell1); cell1 = new Cell() { CellReference = "O1", DataType = CellValues.SharedString }; cv = new CellValue(); cv.Text = InsertSharedStringItem("Femur1Time").ToString(); cell1.Append(cv); row1.Append(cell1); cell1 = new Cell() { CellReference = "P1", DataType = CellValues.SharedString }; cv = new CellValue(); cv.Text = InsertSharedStringItem("Femur1EU").ToString(); cell1.Append(cv); row1.Append(cell1); cell1 = new Cell() { CellReference = "Q1", DataType = CellValues.SharedString }; cv = new CellValue(); cv.Text = InsertSharedStringItem("Femur2Time").ToString(); cell1.Append(cv); row1.Append(cell1); cell1 = new Cell() { CellReference = "R1", DataType = CellValues.SharedString }; cv = new CellValue(); cv.Text = InsertSharedStringItem("Femur2EU").ToString(); cell1.Append(cv); row1.Append(cell1); cell1 = new Cell() { CellReference = "S1", DataType = CellValues.SharedString }; cv = new CellValue(); cv.Text = InsertSharedStringItem("Femur3Time").ToString(); cell1.Append(cv); row1.Append(cell1); cell1 = new Cell() { CellReference = "T1", DataType = CellValues.SharedString }; cv = new CellValue(); cv.Text = InsertSharedStringItem("Femur3EU").ToString(); cell1.Append(cv); row1.Append(cell1); cell1 = new Cell() { CellReference = "U1", DataType = CellValues.SharedString }; cv = new CellValue(); cv.Text = InsertSharedStringItem("LCLTime").ToString(); cell1.Append(cv); row1.Append(cell1); cell1 = new Cell() { CellReference = "V1", DataType = CellValues.SharedString }; cv = new CellValue(); cv.Text = InsertSharedStringItem("LCLEU").ToString(); cell1.Append(cv); row1.Append(cell1); sheetData1.Append(row1); int maxRows = System.Math.Max(tibiaX.Length, tibia2X.Length); maxRows = System.Math.Max(maxRows, tibia3X.Length); maxRows = System.Math.Max(maxRows, tibia4X.Length); maxRows = System.Math.Max(maxRows, mclX.Length); maxRows = System.Math.Max(maxRows, aclX.Length); maxRows = System.Math.Max(maxRows, pclX.Length); maxRows = System.Math.Max(maxRows, femur1X.Length); maxRows = System.Math.Max(maxRows, femur2X.Length); maxRows = System.Math.Max(maxRows, femur3X.Length); maxRows = System.Math.Max(maxRows, lclX.Length); for (int i = 0; i < maxRows; i++) { Row r = new Row() { RowIndex = (UInt32Value)System.Convert.ToUInt32(2 + i), Spans = new ListValue() { InnerText = "1:22" } }; Cell c = new Cell() { CellReference = string.Format("A{0}", 2 + i) }; cv = new CellValue(); cv.Text = (i < tibiaX.Length) ? tibiaX[i].ToString() : ""; c.Append(cv); r.Append(c); c = new Cell() { CellReference = string.Format("B{0}", 2 + i) }; cv = new CellValue(); cv.Text = (i < tibiaY.Length) ? tibiaY[i].ToString() : ""; c.Append(cv); r.Append(c); c = new Cell() { CellReference = string.Format("C{0}", 2 + i) }; cv = new CellValue(); cv.Text = (i < tibia2X.Length) ? tibia2X[i].ToString() : ""; c.Append(cv); r.Append(c); c = new Cell() { CellReference = string.Format("D{0}", 2 + i) }; cv = new CellValue(); cv.Text = (i < tibia2Y.Length) ? tibia2Y[i].ToString() : ""; c.Append(cv); r.Append(c); c = new Cell() { CellReference = string.Format("E{0}", 2 + i) }; cv = new CellValue(); cv.Text = (i < tibia3X.Length) ? tibia3X[i].ToString() : ""; c.Append(cv); r.Append(c); c = new Cell() { CellReference = string.Format("F{0}", 2 + i) }; cv = new CellValue(); cv.Text = (i < tibia3Y.Length) ? tibia3Y[i].ToString() : ""; c.Append(cv); r.Append(c); c = new Cell() { CellReference = string.Format("G{0}", 2 + i) }; cv = new CellValue(); cv.Text = (i < tibia4X.Length) ? tibia4X[i].ToString() : ""; c.Append(cv); r.Append(c); c = new Cell() { CellReference = string.Format("H{0}", 2 + i) }; cv = new CellValue(); cv.Text = (i < tibia4Y.Length) ? tibia4Y[i].ToString() : ""; c.Append(cv); r.Append(c); c = new Cell() { CellReference = string.Format("I{0}", 2 + i) }; cv = new CellValue(); cv.Text = (i < mclX.Length) ? mclX[i].ToString() : ""; c.Append(cv); r.Append(c); c = new Cell() { CellReference = string.Format("J{0}", 2 + i) }; cv = new CellValue(); cv.Text = (i < mclY.Length) ? mclY[i].ToString() : ""; c.Append(cv); r.Append(c); c = new Cell() { CellReference = string.Format("K{0}", 2 + i) }; cv = new CellValue(); cv.Text = (i < aclX.Length) ? aclX[i].ToString() : ""; c.Append(cv); r.Append(c); c = new Cell() { CellReference = string.Format("L{0}", 2 + i) }; cv = new CellValue(); cv.Text = (i < aclY.Length) ? aclY[i].ToString() : ""; c.Append(cv); r.Append(c); c = new Cell() { CellReference = string.Format("M{0}", 2 + i) }; cv = new CellValue(); cv.Text = (i < pclX.Length) ? pclX[i].ToString() : ""; c.Append(cv); r.Append(c); c = new Cell() { CellReference = string.Format("N{0}", 2 + i) }; cv = new CellValue(); cv.Text = (i < pclY.Length) ? pclY[i].ToString() : ""; c.Append(cv); r.Append(c); c = new Cell() { CellReference = string.Format("O{0}", 2 + i) }; cv = new CellValue(); cv.Text = (i < femur1X.Length) ? femur1X[i].ToString() : ""; c.Append(cv); r.Append(c); c = new Cell() { CellReference = string.Format("P{0}", 2 + i) }; cv = new CellValue(); cv.Text = (i < femur1Y.Length) ? femur1Y[i].ToString() : ""; c.Append(cv); r.Append(c); c = new Cell() { CellReference = string.Format("Q{0}", 2 + i) }; cv = new CellValue(); cv.Text = (i < femur2X.Length) ? femur2X[i].ToString() : ""; c.Append(cv); r.Append(c); c = new Cell() { CellReference = string.Format("R{0}", 2 + i) }; cv = new CellValue(); cv.Text = (i < femur2Y.Length) ? femur2Y[i].ToString() : ""; c.Append(cv); r.Append(c); c = new Cell() { CellReference = string.Format("S{0}", 2 + i) }; cv = new CellValue(); cv.Text = (i < femur3X.Length) ? femur3X[i].ToString() : ""; c.Append(cv); r.Append(c); c = new Cell() { CellReference = string.Format("T{0}", 2 + i) }; cv = new CellValue(); cv.Text = (i < femur3Y.Length) ? femur3Y[i].ToString() : ""; c.Append(cv); r.Append(c); c = new Cell() { CellReference = string.Format("U{0}", 2 + i) }; cv = new CellValue(); cv.Text = (i < lclX.Length) ? lclX[i].ToString() : ""; c.Append(cv); r.Append(c); c = new Cell() { CellReference = string.Format("V{0}", 2 + i) }; cv = new CellValue(); cv.Text = (i < lclY.Length) ? lclY[i].ToString() : ""; c.Append(cv); r.Append(c); sheetData1.Append(r); } PageMargins pageMargins1 = new PageMargins() { Left = 0.7D, Right = 0.7D, Top = 0.75D, Bottom = 0.75D, Header = 0.3D, Footer = 0.3D }; worksheet1.Append(sheetDimension1); worksheet1.Append(sheetViews1); worksheet1.Append(sheetFormatProperties1); worksheet1.Append(sheetData1); worksheet1.Append(pageMargins1); worksheetPart1.Worksheet = worksheet1; } private void InsertFirstHalfBlankRow(uint row, ref Row r) { r.Append(new Cell() { CellReference = string.Format("A{0}",row), StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = string.Format("B{0}",row), StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = string.Format("C{0}",row), StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = string.Format("D{0}",row), StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = string.Format("E{0}",row), StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = string.Format("F{0}",row), StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = string.Format("G{0}",row), StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = string.Format("H{0}",row), StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = string.Format("I{0}",row), StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = string.Format("J{0}",row), StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = string.Format("K{0}",row), StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = string.Format("L{0}",row), StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = string.Format("M{0}",row), StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = string.Format("N{0}",row), StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = string.Format("O{0}",row), StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = string.Format("P{0}",row), StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = string.Format("Q{0}",row), StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = string.Format("R{0}",row), StyleIndex = (UInt32Value)6U }); } private void InsertSecondHalfBlankRow(uint row, ref Row r) { r.Append(new Cell() { CellReference = string.Format("Y{0}",row), StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = string.Format("Z{0}",row), StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = string.Format("AA{0}",row), StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = string.Format("AB{0}",row), StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = string.Format("AC{0}",row), StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = string.Format("AD{0}",row), StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = string.Format("AE{0}",row), StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = string.Format("AF{0}",row), StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = string.Format("AG{0}",row), StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = string.Format("AH{0}",row), StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = string.Format("AI{0}",row), StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = string.Format("AJ{0}",row), StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = string.Format("AK{0}",row), StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = string.Format("AL{0}",row), StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = string.Format("AM{0}",row), StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = string.Format("AN{0}",row), StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = string.Format("AO{0}",row), StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = string.Format("AP{0}",row), StyleIndex = (UInt32Value)6U }); } private Row InsertFullBlankReportRow(uint idx) { Row r = new Row() { RowIndex = (UInt32Value)idx, Spans = new ListValue() { InnerText = "1:48" }, Height = 11.25D, CustomHeight = true }; InsertFirstHalfBlankRow(idx, ref r); r.Append(new Cell() { CellReference = string.Format("S{0}",idx), StyleIndex = (UInt32Value)3U }); r.Append(new Cell() { CellReference = string.Format("T{0}",idx), StyleIndex = (UInt32Value)3U }); r.Append(new Cell() { CellReference = string.Format("U{0}",idx), StyleIndex = (UInt32Value)3U }); r.Append(new Cell() { CellReference = string.Format("V{0}",idx), StyleIndex = (UInt32Value)3U }); r.Append(new Cell() { CellReference = string.Format("W{0}",idx), StyleIndex = (UInt32Value)3U }); r.Append(new Cell() { CellReference = string.Format("X{0}",idx), StyleIndex = (UInt32Value)3U }); InsertSecondHalfBlankRow(idx, ref r); r.Append(new Cell() { CellReference = string.Format("AQ{0}",idx), StyleIndex = (UInt32Value)3U }); r.Append(new Cell() { CellReference = string.Format("AR{0}",idx), StyleIndex = (UInt32Value)3U }); r.Append(new Cell() { CellReference = string.Format("AS{0}",idx), StyleIndex = (UInt32Value)3U }); r.Append(new Cell() { CellReference = string.Format("AT{0}",idx), StyleIndex = (UInt32Value)3U }); r.Append(new Cell() { CellReference = string.Format("AU{0}",idx), StyleIndex = (UInt32Value)3U }); r.Append(new Cell() { CellReference = string.Format("AV{0}",idx), StyleIndex = (UInt32Value)3U }); return r; } // Generates content of worksheetPart2. private void GenerateReportWorksheetPart2Content(WorksheetPart worksheetPart2, string testNo, string testDate, string testTemperature, string impactorId, string testCFC, string impactorType, string carMaker, string carModel, string measurementPoint, string impactorWeight, string And1, string And2, string testAdministrator, string collisionSpeed, string tibiaUnits, string femurUnits, string mclUnits, string tibia1MaxAndTime, string tibia1MinAndTime, string tibia2MaxAndTime, string tibia2MinAndTime, string tibia3MaxAndTime, string tibia3MinAndTime, string tibia4MaxAndTime, string tibia4MinAndTime, string mclMaxAndTime, string mclMinAndTime, string aclMaxAndTime, string aclMinAndTime, string pclMaxAndTime, string pclMinAndTime, string femur1MaxAndTime, string femur1MinAndTime, string femur2MaxAndTime, string femur2MinAndTime, string femur3MaxAndTime, string femur3MinAndTime, string lclMaxAndTime, string lclMinAndTime ) { Worksheet worksheet2 = new Worksheet(); worksheet2.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships"); SheetDimension sheetDimension2 = new SheetDimension() { Reference = "A1:AV67" }; SheetViews sheetViews2 = new SheetViews(); SheetView sheetView2 = new SheetView() { WorkbookViewId = (UInt32Value)0U }; Selection selection2 = new Selection() { ActiveCell = "AI55", SequenceOfReferences = new ListValue() { InnerText = "AI55" } }; sheetView2.Append(selection2); sheetViews2.Append(sheetView2); SheetFormatProperties sheetFormatProperties2 = new SheetFormatProperties() { DefaultColumnWidth = 3.5703125D, DefaultRowHeight = 11.25D, CustomHeight = true }; Columns columns1 = new Columns(); Column column1 = new Column() { Min = (UInt32Value)1U, Max = (UInt32Value)16384U, Width = 3.5703125D, Style = (UInt32Value)5U }; columns1.Append(column1); SheetData sheetData2 = new SheetData(); Row r = new Row() { RowIndex = (UInt32Value)1U, Spans = new ListValue() { InnerText = "1:48" }, Height = 11.25D, CustomHeight = true, ThickBot = true }; Cell c = new Cell() { CellReference = "A1", StyleIndex = (UInt32Value)58U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("LWRLEG(Flex)").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "B1", StyleIndex = (UInt32Value)59U }); r.Append(new Cell() { CellReference = "C1", StyleIndex = (UInt32Value)60U }); r.Append(new Cell() { CellReference = "D1", StyleIndex = (UInt32Value)61U }); r.Append(new Cell() { CellReference = "E1", StyleIndex = (UInt32Value)62U }); r.Append(new Cell() { CellReference = "F1", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "G1", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "H1", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "I1", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "J1", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "K1", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "L1", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "M1", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "N1", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "O1", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "P1", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "Q1", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "R1", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "S1", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "T1", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "U1", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "V1", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "W1", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "X1", StyleIndex = (UInt32Value)6U }); c = new Cell() { CellReference = "Y1", StyleIndex = (UInt32Value)58U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("LWRLeg(Flex)").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "Z1", StyleIndex = (UInt32Value)59U }); r.Append(new Cell() { CellReference = "AA1", StyleIndex = (UInt32Value)60U }); r.Append(new Cell() { CellReference = "AB1", StyleIndex = (UInt32Value)61U }); r.Append(new Cell() { CellReference = "AC1", StyleIndex = (UInt32Value)62U }); r.Append(new Cell() { CellReference = "AD1", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AE1", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AF1", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AG1", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AH1", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AI1", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AJ1", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AK1", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AL1", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AM1", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AN1", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AO1", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AP1", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AQ1", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AR1", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AS1", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AT1", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AU1", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AV1", StyleIndex = (UInt32Value)6U }); sheetData2.Append(r); r = new Row() { RowIndex = (UInt32Value)2U, Spans = new ListValue() { InnerText = "1:48" }, Height = 11.25D, CustomHeight = true, ThickBot = true }; c = new Cell() { CellReference = "A2", StyleIndex = (UInt32Value)63U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("TEST").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "B2", StyleIndex = (UInt32Value)64U }); r.Append(new Cell() { CellReference = "C2", StyleIndex = (UInt32Value)65U }); r.Append(new Cell() { CellReference = "D2", StyleIndex = (UInt32Value)61U }); r.Append(new Cell() { CellReference = "E2", StyleIndex = (UInt32Value)62U }); r.Append(new Cell() { CellReference = "F2", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "G2", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "H2", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "I2", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "J2", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "K2", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "L2", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "M2", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "N2", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "O2", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "P2", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "Q2", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "R2", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "S2", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "T2", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "U2", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "V2", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "W2", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "X2", StyleIndex = (UInt32Value)6U }); c = new Cell() { CellReference = "Y2", StyleIndex = (UInt32Value)63U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("TEST").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "Z2", StyleIndex = (UInt32Value)64U }); r.Append(new Cell() { CellReference = "AA2", StyleIndex = (UInt32Value)65U }); r.Append(new Cell() { CellReference = "AB2", StyleIndex = (UInt32Value)61U }); r.Append(new Cell() { CellReference = "AC2", StyleIndex = (UInt32Value)62U }); r.Append(new Cell() { CellReference = "AD2", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AE2", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AF2", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AG2", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AH2", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AI2", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AJ2", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AK2", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AL2", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AM2", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AN2", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AO2", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AP2", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AQ2", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AR2", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AS2", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AT2", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AU2", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AV2", StyleIndex = (UInt32Value)6U }); sheetData2.Append(r); r = new Row() { RowIndex = (UInt32Value)3U, Spans = new ListValue() { InnerText = "1:48" }, Height = 11.25D, CustomHeight = true, ThickBot = true }; r.Append(new Cell() { CellReference = "A3", StyleIndex = (UInt32Value)6U }); c = new Cell() { CellReference = "B3", StyleIndex = (UInt32Value)10U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("試験NO").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "C3", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "D3", StyleIndex = (UInt32Value)6U }); c = new Cell() { CellReference = "E3", StyleIndex = (UInt32Value)55U, DataType = CellValues.SharedString }; InsertCalculation("E3", 2, true); c.Append(new CellFormula() { Text = string.Format("\'Top page\'!{0}", GetCell("試験NO")) }); c.Append(new CellValue() { Text = InsertSharedStringItem(testNo).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "F3", StyleIndex = (UInt32Value)55U }); r.Append(new Cell() { CellReference = "G3", StyleIndex = (UInt32Value)55U }); c = new Cell() { CellReference = "H3", StyleIndex = (UInt32Value)14U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("試験温度").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "I3", StyleIndex = (UInt32Value)6U }); c = new Cell() { CellReference = "J3", StyleIndex = (UInt32Value)55U, DataType = CellValues.SharedString }; InsertCalculation("J3", 2, true); c.Append(new CellFormula() { Text = string.Format("\'Top page\'!{0}", GetCell("試験温度")) }); c.Append(new CellValue() { Text = InsertSharedStringItem(testTemperature.ToString()).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "K3", StyleIndex = (UInt32Value)55U }); r.Append(new Cell() { CellReference = "L3", StyleIndex = (UInt32Value)55U }); c = new Cell() { CellReference = "M3", StyleIndex = (UInt32Value)52U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("インパクタID").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "N3", StyleIndex = (UInt32Value)53U }); r.Append(new Cell() { CellReference = "O3", StyleIndex = (UInt32Value)53U }); c = new Cell() { CellReference = "P3", StyleIndex = (UInt32Value)56U, DataType = CellValues.SharedString }; InsertCalculation("P3", 2, true); c.Append(new CellFormula() { Text = string.Format("\'Top page\'!{0}", GetCell("インパクタID")) }); c.Append(new CellValue() { Text = InsertSharedStringItem(impactorId).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "Q3", StyleIndex = (UInt32Value)56U }); r.Append(new Cell() { CellReference = "R3", StyleIndex = (UInt32Value)56U }); c = new Cell() { CellReference = "S3", StyleIndex = (UInt32Value)52U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("周波数クラス").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "T3", StyleIndex = (UInt32Value)53U }); r.Append(new Cell() { CellReference = "U3", StyleIndex = (UInt32Value)53U }); c = new Cell() { CellReference = "V3", StyleIndex = (UInt32Value)49U, DataType = CellValues.SharedString }; InsertCalculation("V3", 2, true); c.Append(new CellFormula() { Text = string.Format("\'Top page\'!{0}", GetCell("周波数クラス")) }); c.Append(new CellValue() { Text = InsertSharedStringItem(testCFC).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "W3", StyleIndex = (UInt32Value)49U }); r.Append(new Cell() { CellReference = "X3", StyleIndex = (UInt32Value)49U }); r.Append(new Cell() { CellReference = "Y3", StyleIndex = (UInt32Value)6U }); c = new Cell() { CellReference = "Z3", StyleIndex = (UInt32Value)18U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("試験NO").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "AA3", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AB3", StyleIndex = (UInt32Value)6U }); c = new Cell() { CellReference = "AC3", StyleIndex = (UInt32Value)55U, DataType = CellValues.SharedString }; InsertCalculation("AC3", 2, true); c.Append(new CellFormula() { Text = string.Format("\'Top page\'!{0}", GetCell("試験NO")) }); c.Append(new CellValue() { Text = InsertSharedStringItem(testNo).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "AD3", StyleIndex = (UInt32Value)55U }); r.Append(new Cell() { CellReference = "AE3", StyleIndex = (UInt32Value)55U }); c = new Cell() { CellReference = "AF3", StyleIndex = (UInt32Value)18U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("試験温度").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "AG3", StyleIndex = (UInt32Value)6U }); c = new Cell() { CellReference = "AH3", StyleIndex = (UInt32Value)55U, DataType = CellValues.SharedString }; InsertCalculation("AH3", 2, true); c.Append(new CellFormula() { Text = string.Format("\'Top page\'!{0}", GetCell("試験温度")) }); c.Append(new CellValue() { Text = InsertSharedStringItem(testTemperature).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "AI3", StyleIndex = (UInt32Value)55U }); r.Append(new Cell() { CellReference = "AJ3", StyleIndex = (UInt32Value)55U }); c = new Cell() { CellReference = "AK3", StyleIndex = (UInt32Value)52U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("インパクタID").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "AL3", StyleIndex = (UInt32Value)53U }); r.Append(new Cell() { CellReference = "AM3", StyleIndex = (UInt32Value)53U }); c = new Cell() { CellReference = "AN3", StyleIndex = (UInt32Value)56U, DataType = CellValues.SharedString }; InsertCalculation("AN3", 2, true); c.Append(new CellFormula() { Text = string.Format("\'Top page\'!{0}", GetCell("インパクタID")) }); c.Append(new CellValue() { Text = InsertSharedStringItem(impactorId).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "AO3", StyleIndex = (UInt32Value)56U }); r.Append(new Cell() { CellReference = "AP3", StyleIndex = (UInt32Value)56U }); c = new Cell() { CellReference = "AQ3", StyleIndex = (UInt32Value)52U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("周波数クラス").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "AR3", StyleIndex = (UInt32Value)53U }); r.Append(new Cell() { CellReference = "AS3", StyleIndex = (UInt32Value)53U }); c = new Cell() { CellReference = "AT3", StyleIndex = (UInt32Value)49U, DataType = CellValues.SharedString }; InsertCalculation("AT3", 2, true); c.Append(new CellFormula() { Text = string.Format("\'Top page\'!{0}", GetCell("周波数クラス")) }); c.Append(new CellValue() { Text = InsertSharedStringItem(testCFC).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "AU3", StyleIndex = (UInt32Value)49U }); r.Append(new Cell() { CellReference = "AV3", StyleIndex = (UInt32Value)49U }); sheetData2.Append(r); r = new Row() { RowIndex = (UInt32Value)4U, Spans = new ListValue() { InnerText = "1:48" }, Height = 11.25D, CustomHeight = true, ThickTop = true, ThickBot = true }; r.Append(new Cell() { CellReference = "A4", StyleIndex = (UInt32Value)6U }); c = new Cell() { CellReference = "B4", StyleIndex = (UInt32Value)11U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("試験実施日").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "C4", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "D4", StyleIndex = (UInt32Value)6U }); c = new Cell() { CellReference = "E4", StyleIndex = (UInt32Value)50U, DataType = CellValues.SharedString }; InsertCalculation("E4", 2, true); c.Append(new CellFormula() { Text = string.Format("\'Top page\'!{0}", GetCell("試験実施日")) }); c.Append(new CellValue() { Text = InsertSharedStringItem(testDate).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "F4", StyleIndex = (UInt32Value)50U }); r.Append(new Cell() { CellReference = "G4", StyleIndex = (UInt32Value)50U }); r.Append(new Cell() { CellReference = "H4", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "I4", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "J4", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "K4", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "L4", StyleIndex = (UInt32Value)6U }); c = new Cell() { CellReference = "M4", StyleIndex = (UInt32Value)52U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("インパクタ種類").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "N4", StyleIndex = (UInt32Value)53U }); r.Append(new Cell() { CellReference = "O4", StyleIndex = (UInt32Value)53U }); c = new Cell() { CellReference = "P4", StyleIndex = (UInt32Value)54U, DataType = CellValues.SharedString }; InsertCalculation("P4", 2, true); c.Append(new CellFormula() { Text = string.Format("\'Top page\'!{0}", GetCell("インパクタ種類")) }); c.Append(new CellValue() { Text = InsertSharedStringItem(impactorType).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "Q4", StyleIndex = (UInt32Value)54U }); r.Append(new Cell() { CellReference = "R4", StyleIndex = (UInt32Value)54U }); r.Append(new Cell() { CellReference = "S4", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "T4", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "U4", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "V4", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "W4", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "X4", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "Y4", StyleIndex = (UInt32Value)6U }); c = new Cell() { CellReference = "Z4", StyleIndex = (UInt32Value)18U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("試験実施日").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "AA4", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AB4", StyleIndex = (UInt32Value)6U }); c = new Cell() { CellReference = "AC4", StyleIndex = (UInt32Value)50U, DataType = CellValues.SharedString }; InsertCalculation("AC4", 2, true); c.Append(new CellFormula() { Text = string.Format("\'Top page\'!{0}", GetCell("試験実施日")) }); c.Append(new CellValue() { Text = InsertSharedStringItem(testDate).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "AD4", StyleIndex = (UInt32Value)50U }); r.Append(new Cell() { CellReference = "AE4", StyleIndex = (UInt32Value)50U }); r.Append(new Cell() { CellReference = "AF4", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AG4", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AH4", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AI4", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AJ4", StyleIndex = (UInt32Value)6U }); c = new Cell() { CellReference = "AK4", StyleIndex = (UInt32Value)52U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("インパクタ種類").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "AL4", StyleIndex = (UInt32Value)53U }); r.Append(new Cell() { CellReference = "AM4", StyleIndex = (UInt32Value)53U }); c = new Cell() { CellReference = "AN4", StyleIndex = (UInt32Value)54U, DataType = CellValues.SharedString }; InsertCalculation("AN4", 2, true); c.Append(new CellFormula() { Text = string.Format("\'Top page\'!{0}", GetCell("インパクタ種類")) }); c.Append(new CellValue() { Text = InsertSharedStringItem(impactorType).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "AO4", StyleIndex = (UInt32Value)54U }); r.Append(new Cell() { CellReference = "AP4", StyleIndex = (UInt32Value)54U }); r.Append(new Cell() { CellReference = "AQ4", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AR4", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AS4", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AT4", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AU4", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AV4", StyleIndex = (UInt32Value)6U }); sheetData2.Append(r); r = new Row() { RowIndex = (UInt32Value)5U, Spans = new ListValue() { InnerText = "1:48" }, Height = 11.25D, CustomHeight = true, ThickTop = true, ThickBot = true }; r.Append(new Cell() { CellReference = "A5", StyleIndex = (UInt32Value)6U }); c = new Cell() { CellReference = "B5", StyleIndex = (UInt32Value)12U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("車名").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "C5", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "D5", StyleIndex = (UInt32Value)6U }); c = new Cell() { CellReference = "E5", StyleIndex = (UInt32Value)50U, DataType = CellValues.SharedString }; InsertCalculation("E5", 2, true); c.Append(new CellFormula() { Text = string.Format("\'Top page\'!{0}", GetCell("車名")) }); c.Append(new CellValue(){Text = InsertSharedStringItem(carMaker).ToString()}); r.Append(c); r.Append(new Cell() { CellReference = "F5", StyleIndex = (UInt32Value)50U }); r.Append(new Cell() { CellReference = "G5", StyleIndex = (UInt32Value)50U }); c = new Cell() { CellReference = "H5", StyleIndex = (UInt32Value)15U, DataType = CellValues.SharedString }; c.Append(new CellValue(){Text = InsertSharedStringItem("測定点").ToString()}); r.Append(c); r.Append(new Cell() { CellReference = "I5", StyleIndex = (UInt32Value)6U }); c = new Cell() { CellReference = "J5", StyleIndex = (UInt32Value)57U, DataType = CellValues.SharedString }; InsertCalculation("J5", 2, true); c.Append(new CellFormula() { Text = string.Format("\'Top page\'!{0}", GetCell("測定点")) }); c.Append(new CellValue(){Text = InsertSharedStringItem(measurementPoint).ToString()}); r.Append(c); r.Append(new Cell() { CellReference = "K5", StyleIndex = (UInt32Value)57U }); r.Append(new Cell() { CellReference = "L5", StyleIndex = (UInt32Value)57U }); c = new Cell() { CellReference = "M5", StyleIndex = (UInt32Value)52U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("インパクタ重量").ToString() }); r.Append(c); c.Append(new Cell() { CellReference = "N5", StyleIndex = (UInt32Value)53U }); c.Append(new Cell() { CellReference = "O5", StyleIndex = (UInt32Value)53U }); c = new Cell() { CellReference = "P5", StyleIndex = (UInt32Value)54U, DataType = CellValues.SharedString }; InsertCalculation("P5", 2, true); c.Append(new CellFormula() { Text = string.Format("\'Top page\'!{0}", GetCell("インパクタ重量")) }); c.Append(new CellValue() { Text = InsertSharedStringItem(impactorWeight).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "Q5", StyleIndex = (UInt32Value)54U }); r.Append(new Cell() { CellReference = "R5", StyleIndex = (UInt32Value)54U }); c = new Cell() { CellReference = "S5", StyleIndex = (UInt32Value)17U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("予備1").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "T5", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "U5", StyleIndex = (UInt32Value)6U }); c = new Cell() { CellReference = "V5", StyleIndex = (UInt32Value)49U, DataType = CellValues.SharedString }; InsertCalculation("V5", 2, true); c.Append(new CellFormula() { Text = string.Format("\'Top page\'!{0}", GetCell("予備1")) }); c.Append(new CellValue() { Text = InsertSharedStringItem(And1).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "W5", StyleIndex = (UInt32Value)49U }); r.Append(new Cell() { CellReference = "X5", StyleIndex = (UInt32Value)49U }); r.Append(new Cell() { CellReference = "Y5", StyleIndex = (UInt32Value)6U }); c = new Cell() { CellReference = "Z5", StyleIndex = (UInt32Value)18U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("車名").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "AA5", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AB5", StyleIndex = (UInt32Value)6U }); c = new Cell() { CellReference = "AC5", StyleIndex = (UInt32Value)50U, DataType = CellValues.SharedString }; InsertCalculation("AC5", 2, true); c.Append(new CellFormula() { Text = string.Format("\'Top page\'!{0}", GetCell("車名")) }); c.Append(new CellValue() { Text = InsertSharedStringItem(carMaker).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "AD5", StyleIndex = (UInt32Value)50U }); r.Append(new Cell() { CellReference = "AE5", StyleIndex = (UInt32Value)50U }); c = new Cell() { CellReference = "AF5", StyleIndex = (UInt32Value)18U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("測定点").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "AG5", StyleIndex = (UInt32Value)6U }); c = new Cell() { CellReference = "AH5", StyleIndex = (UInt32Value)57U, DataType = CellValues.SharedString }; InsertCalculation("AH5", 2, true); c.Append(new CellFormula() { Text = string.Format("\'Top page\'!{0}", GetCell("測定点")) }); c.Append(new CellValue() { Text = InsertSharedStringItem(measurementPoint).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "AI5", StyleIndex = (UInt32Value)57U }); r.Append(new Cell() { CellReference = "AJ5", StyleIndex = (UInt32Value)57U }); c = new Cell() { CellReference = "AK5", StyleIndex = (UInt32Value)52U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("インパクタ重量").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "AL5", StyleIndex = (UInt32Value)53U }); r.Append(new Cell() { CellReference = "AM5", StyleIndex = (UInt32Value)53U }); c = new Cell() { CellReference = "AN5", StyleIndex = (UInt32Value)54U, DataType = CellValues.SharedString }; InsertCalculation("AN5", 2, true); c.Append(new CellFormula() { Text = string.Format("\'Top page\'!{0}", GetCell("インパクタ重量")) }); c.Append(new CellValue() { Text = InsertSharedStringItem(impactorWeight).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "AO5", StyleIndex = (UInt32Value)54U }); r.Append(new Cell() { CellReference = "AP5", StyleIndex = (UInt32Value)54U }); c = new Cell() { CellReference = "AQ5", StyleIndex = (UInt32Value)19U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("予備1").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "AR5", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AS5", StyleIndex = (UInt32Value)6U }); c = new Cell() { CellReference = "AT5", StyleIndex = (UInt32Value)49U, DataType = CellValues.SharedString }; InsertCalculation("AT5", 2, true); c.Append(new CellFormula() { Text = string.Format("\'Top page\'!{0}", GetCell("予備1")) }); c.Append(new CellValue() { Text = InsertSharedStringItem(And1).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "AU5", StyleIndex = (UInt32Value)49U }); r.Append(new Cell() { CellReference = "AV5", StyleIndex = (UInt32Value)49U }); sheetData2.Append(r); r = new Row() { RowIndex = (UInt32Value)6U, Spans = new ListValue() { InnerText = "1:48" }, Height = 11.25D, CustomHeight = true, ThickTop = true, ThickBot = true }; r.Append(new Cell() { CellReference = "A6", StyleIndex = (UInt32Value)6U }); c = new Cell() { CellReference = "B6", StyleIndex = (UInt32Value)13U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("型式").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "C6", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "D6", StyleIndex = (UInt32Value)6U }); c = new Cell() { CellReference = "E6", StyleIndex = (UInt32Value)50U, DataType = CellValues.SharedString }; InsertCalculation("E6", 2, true); c.Append(new CellFormula() { Text = string.Format("\'Top page\'!{0}", GetCell("型式")) }); c.Append(new CellValue() { Text = InsertSharedStringItem(carModel).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "F6", StyleIndex = (UInt32Value)50U }); r.Append(new Cell() { CellReference = "G6", StyleIndex = (UInt32Value)50U }); c = new Cell() { CellReference = "H6", StyleIndex = (UInt32Value)16U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("衝突速度").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "I6", StyleIndex = (UInt32Value)6U }); c = new Cell() { CellReference = "J6", StyleIndex = (UInt32Value)51U, DataType = CellValues.SharedString }; InsertCalculation("J6", 2, true); c.Append(new CellFormula() { Text = string.Format("\'Top page\'!{0}", GetCell("衝突速度")) }); c.Append(new CellValue() { Text = InsertSharedStringItem(collisionSpeed).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "K6", StyleIndex = (UInt32Value)51U }); r.Append(new Cell() { CellReference = "L6", StyleIndex = (UInt32Value)51U }); c = new Cell() { CellReference = "M6", StyleIndex = (UInt32Value)52U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("試験担当者").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "N6", StyleIndex = (UInt32Value)53U }); r.Append(new Cell() { CellReference = "O6", StyleIndex = (UInt32Value)53U }); c = new Cell() { CellReference = "P6", StyleIndex = (UInt32Value)54U, DataType = CellValues.SharedString }; InsertCalculation("P6", 2, true); c.Append(new CellFormula() { Text = string.Format("\'Top page\'!{0}", GetCell("試験担当者")) }); c.Append(new CellValue() { Text = InsertSharedStringItem(testAdministrator).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "Q6", StyleIndex = (UInt32Value)54U }); r.Append(new Cell() { CellReference = "R6", StyleIndex = (UInt32Value)54U }); c = new Cell() { CellReference = "S6", StyleIndex = (UInt32Value)19U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("予備2").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "T6", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "U6", StyleIndex = (UInt32Value)6U }); c = new Cell() { CellReference = "V6", StyleIndex = (UInt32Value)54U, DataType = CellValues.SharedString }; InsertCalculation("V6", 2, true); c.Append(new CellFormula() { Text = string.Format("\'Top page\'!{0}", GetCell("予備2")) }); c.Append(new CellValue() { Text = InsertSharedStringItem(And2).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "W6", StyleIndex = (UInt32Value)54U }); r.Append(new Cell() { CellReference = "X6", StyleIndex = (UInt32Value)54U }); r.Append(new Cell() { CellReference = "Y6", StyleIndex = (UInt32Value)6U }); c = new Cell() { CellReference = "Z6", StyleIndex = (UInt32Value)18U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("型式").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "AA6", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AB6", StyleIndex = (UInt32Value)6U }); c = new Cell() { CellReference = "AC6", StyleIndex = (UInt32Value)50U, DataType = CellValues.SharedString }; InsertCalculation("AC6", 2, true); c.Append(new CellFormula() { Text = string.Format("\'Top page\'!{0}", GetCell("型式")) }); c.Append(new CellValue() { Text = InsertSharedStringItem(carModel).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "AD6", StyleIndex = (UInt32Value)50U }); r.Append(new Cell() { CellReference = "AE6", StyleIndex = (UInt32Value)50U }); c = new Cell() { CellReference = "AF6", StyleIndex = (UInt32Value)19U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("衝突速度").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "AG6", StyleIndex = (UInt32Value)6U }); c = new Cell() { CellReference = "AH6", StyleIndex = (UInt32Value)51U, DataType = CellValues.SharedString }; InsertCalculation("AH6", 2, true); c.Append(new CellFormula() { Text = string.Format("\'Top page\'!{0}", GetCell("衝突速度")) }); c.Append(new CellValue() { Text = InsertSharedStringItem(collisionSpeed).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "AI6", StyleIndex = (UInt32Value)51U }); r.Append(new Cell() { CellReference = "AJ6", StyleIndex = (UInt32Value)51U }); c = new Cell() { CellReference = "AK6", StyleIndex = (UInt32Value)52U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("試験担当者").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "AL6", StyleIndex = (UInt32Value)53U }); r.Append(new Cell() { CellReference = "AM6", StyleIndex = (UInt32Value)53U }); c = new Cell() { CellReference = "AN6", StyleIndex = (UInt32Value)54U, DataType = CellValues.SharedString }; InsertCalculation("AN6", 2, true); c.Append(new CellFormula() { Text = string.Format("\'Top page\'!{0}", GetCell("試験担当者")) }); c.Append(new CellValue() { Text = InsertSharedStringItem(testAdministrator).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "AO6", StyleIndex = (UInt32Value)54U }); r.Append(new Cell() { CellReference = "AP6", StyleIndex = (UInt32Value)54U }); c = new Cell() { CellReference = "AQ6", StyleIndex = (UInt32Value)19U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("予備2").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "AR6", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AS6", StyleIndex = (UInt32Value)6U }); c = new Cell() { CellReference = "AT6", StyleIndex = (UInt32Value)54U, DataType = CellValues.SharedString }; InsertCalculation("AT6", 2, true); c.Append(new CellFormula() { Text = string.Format("\'Top page\'!{0}", GetCell("予備2")) }); c.Append(new CellValue() { Text = InsertSharedStringItem(And2).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "AU6", StyleIndex = (UInt32Value)54U }); r.Append(new Cell() { CellReference = "AV6", StyleIndex = (UInt32Value)54U }); sheetData2.Append(r); r = new Row() { RowIndex = (UInt32Value)7U, Spans = new ListValue() { InnerText = "1:48" }, Height = 11.25D, CustomHeight = true }; c = new Cell() { CellReference = "A7", StyleIndex = (UInt32Value)43U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("Tibia").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "B7", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "C7", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "D7", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "E7", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "F7", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "G7", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "H7", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "I7", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "J7", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "K7", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "L7", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "M7", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "N7", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "O7", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "P7", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "Q7", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "R7", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "S7", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "T7", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "U7", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "V7", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "W7", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "X7", StyleIndex = (UInt32Value)6U }); c = new Cell() { CellReference = "Y7", StyleIndex = (UInt32Value)43U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("Femur").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "Z7", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "AA7", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "AB7", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "AC7", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "AD7", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "AE7", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "AF7", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "AG7", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "AH7", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "AI7", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "AJ7", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "AK7", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "AL7", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "AM7", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "AN7", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "AO7", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "AP7", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "AQ7", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AR7", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AS7", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AT7", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AU7", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AV7", StyleIndex = (UInt32Value)6U }); sheetData2.Append(r); r = new Row() { RowIndex = (UInt32Value)8U, Spans = new ListValue() { InnerText = "1:48" }, Height = 11.25D, CustomHeight = true }; InsertFirstHalfBlankRow(8U,ref r); c = new Cell() { CellReference = "S8", StyleIndex = (UInt32Value)45U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem(string.Format("Tibia -1({0})", tibiaUnits)).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "T8", StyleIndex = (UInt32Value)45U }); r.Append(new Cell() { CellReference = "U8", StyleIndex = (UInt32Value)45U }); r.Append(new Cell() { CellReference = "V8", StyleIndex = (UInt32Value)45U }); r.Append(new Cell() { CellReference = "W8", StyleIndex = (UInt32Value)45U }); r.Append(new Cell() { CellReference = "X8", StyleIndex = (UInt32Value)45U }); InsertSecondHalfBlankRow(8U,ref r); c = new Cell() { CellReference = "AQ8", StyleIndex = (UInt32Value)45U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem(string.Format("Femur -1({0})", femurUnits)).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "AR8", StyleIndex = (UInt32Value)45U }); r.Append(new Cell() { CellReference = "AS8", StyleIndex = (UInt32Value)45U }); r.Append(new Cell() { CellReference = "AT8", StyleIndex = (UInt32Value)45U }); r.Append(new Cell() { CellReference = "AU8", StyleIndex = (UInt32Value)45U }); r.Append(new Cell() { CellReference = "AV8", StyleIndex = (UInt32Value)45U }); sheetData2.Append(r); r = new Row() { RowIndex = (UInt32Value)9U, Spans = new ListValue() { InnerText = "1:48" }, Height = 11.25D, CustomHeight = true }; InsertFirstHalfBlankRow(9U, ref r); c = new Cell() { CellReference = "S9", StyleIndex = (UInt32Value)41U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("MAX (T)").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "T9", StyleIndex = (UInt32Value)41U }); r.Append(new Cell() { CellReference = "U9", StyleIndex = (UInt32Value)41U }); c = new Cell() { CellReference = "V9", StyleIndex = (UInt32Value)42U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem(tibia1MaxAndTime).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "W9", StyleIndex = (UInt32Value)42U }); r.Append(new Cell() { CellReference = "X9", StyleIndex = (UInt32Value)42U }); InsertSecondHalfBlankRow(9U, ref r); c = new Cell() { CellReference = "AQ9", StyleIndex = (UInt32Value)41U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("MAX (T)").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "AR9", StyleIndex = (UInt32Value)41U }); r.Append(new Cell() { CellReference = "AS9", StyleIndex = (UInt32Value)41U }); c = new Cell() { CellReference = "AT9", StyleIndex = (UInt32Value)42U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem(femur1MaxAndTime).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "AU9", StyleIndex = (UInt32Value)42U }); r.Append(new Cell() { CellReference = "AV9", StyleIndex = (UInt32Value)42U }); sheetData2.Append(r); r = new Row() { RowIndex = (UInt32Value)10U, Spans = new ListValue() { InnerText = "1:48" }, Height = 11.25D, CustomHeight = true }; InsertFirstHalfBlankRow(10U, ref r); c = new Cell() { CellReference = "S10", StyleIndex = (UInt32Value)41U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("MIN (T)").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "T10", StyleIndex = (UInt32Value)41U }); r.Append(new Cell() { CellReference = "U10", StyleIndex = (UInt32Value)41U }); c = new Cell() { CellReference = "V10", StyleIndex = (UInt32Value)42U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem(tibia1MinAndTime).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "W10", StyleIndex = (UInt32Value)42U }); r.Append(new Cell() { CellReference = "X10", StyleIndex = (UInt32Value)42U }); InsertSecondHalfBlankRow(10U, ref r); c = new Cell() { CellReference = "AQ10", StyleIndex = (UInt32Value)41U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("MIN (T)").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "AR10", StyleIndex = (UInt32Value)41U }); r.Append(new Cell() { CellReference = "AS10", StyleIndex = (UInt32Value)41U }); c = new Cell() { CellReference = "AT10", StyleIndex = (UInt32Value)42U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem(femur1MinAndTime).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "AU10", StyleIndex = (UInt32Value)42U }); r.Append(new Cell() { CellReference = "AV10", StyleIndex = (UInt32Value)42U }); sheetData2.Append(r); r = new Row() { RowIndex = (UInt32Value)11U, Spans = new ListValue() { InnerText = "1:48" }, Height = 11.25D, CustomHeight = true }; InsertFirstHalfBlankRow(11U, ref r); r.Append(new Cell() { CellReference = "S11", StyleIndex = (UInt32Value)3U }); r.Append(new Cell() { CellReference = "T11", StyleIndex = (UInt32Value)3U }); r.Append(new Cell() { CellReference = "U11", StyleIndex = (UInt32Value)3U }); r.Append(new Cell() { CellReference = "V11", StyleIndex = (UInt32Value)3U }); r.Append(new Cell() { CellReference = "W11", StyleIndex = (UInt32Value)3U }); r.Append(new Cell() { CellReference = "X11", StyleIndex = (UInt32Value)3U }); InsertSecondHalfBlankRow(11U, ref r); r.Append(new Cell() { CellReference = "AQ11", StyleIndex = (UInt32Value)3U }); r.Append(new Cell() { CellReference = "AR11", StyleIndex = (UInt32Value)3U }); r.Append(new Cell() { CellReference = "AS11", StyleIndex = (UInt32Value)3U }); r.Append(new Cell() { CellReference = "AT11", StyleIndex = (UInt32Value)3U }); r.Append(new Cell() { CellReference = "AU11", StyleIndex = (UInt32Value)3U }); r.Append(new Cell() { CellReference = "AV11", StyleIndex = (UInt32Value)3U }); sheetData2.Append(r); r = new Row() { RowIndex = (UInt32Value)12U, Spans = new ListValue() { InnerText = "1:48" }, Height = 11.25D, CustomHeight = true }; InsertFirstHalfBlankRow(12U, ref r); c = new Cell() { CellReference = "S12", StyleIndex = (UInt32Value)46U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem(string.Format("Tibia -2({0})", tibiaUnits)).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "T12", StyleIndex = (UInt32Value)46U }); r.Append(new Cell() { CellReference = "U12", StyleIndex = (UInt32Value)46U }); r.Append(new Cell() { CellReference = "V12", StyleIndex = (UInt32Value)46U }); r.Append(new Cell() { CellReference = "W12", StyleIndex = (UInt32Value)46U }); r.Append(new Cell() { CellReference = "X12", StyleIndex = (UInt32Value)46U }); InsertSecondHalfBlankRow(12U, ref r); c = new Cell() { CellReference = "AQ12", StyleIndex = (UInt32Value)46U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem(string.Format("Femur -2({0})", femurUnits)).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "AR12", StyleIndex = (UInt32Value)46U }); r.Append(new Cell() { CellReference = "AS12", StyleIndex = (UInt32Value)46U }); r.Append(new Cell() { CellReference = "AT12", StyleIndex = (UInt32Value)46U }); r.Append(new Cell() { CellReference = "AU12", StyleIndex = (UInt32Value)46U }); r.Append(new Cell() { CellReference = "AV12", StyleIndex = (UInt32Value)46U }); sheetData2.Append(r); r = new Row() { RowIndex = (UInt32Value)13U, Spans = new ListValue() { InnerText = "1:48" }, Height = 11.25D, CustomHeight = true }; InsertFirstHalfBlankRow(13U, ref r); c = new Cell() { CellReference = "S13", StyleIndex = (UInt32Value)41U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("MAX (T)").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "T13", StyleIndex = (UInt32Value)41U }); r.Append(new Cell() { CellReference = "U13", StyleIndex = (UInt32Value)41U }); c = new Cell() { CellReference = "V13", StyleIndex = (UInt32Value)42U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem(tibia2MaxAndTime).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "W13", StyleIndex = (UInt32Value)42U }); r.Append(new Cell() { CellReference = "X13", StyleIndex = (UInt32Value)42U }); InsertSecondHalfBlankRow(13U, ref r); c = new Cell() { CellReference = "AQ13", StyleIndex = (UInt32Value)41U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("MAX (T)").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "AR13", StyleIndex = (UInt32Value)41U }); r.Append(new Cell() { CellReference = "AS13", StyleIndex = (UInt32Value)41U }); c = new Cell() { CellReference = "AT13", StyleIndex = (UInt32Value)42U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem(femur2MaxAndTime).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "AU13", StyleIndex = (UInt32Value)42U }); r.Append(new Cell() { CellReference = "AV13", StyleIndex = (UInt32Value)42U }); sheetData2.Append(r); r = new Row() { RowIndex = (UInt32Value)14U, Spans = new ListValue() { InnerText = "1:48" }, Height = 11.25D, CustomHeight = true }; InsertFirstHalfBlankRow(14U, ref r); c = new Cell() { CellReference = "S14", StyleIndex = (UInt32Value)41U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("MIN (T)").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "T14", StyleIndex = (UInt32Value)41U }); r.Append(new Cell() { CellReference = "U14", StyleIndex = (UInt32Value)41U }); c = new Cell() { CellReference = "V14", StyleIndex = (UInt32Value)42U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem(tibia2MinAndTime).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "W14", StyleIndex = (UInt32Value)42U }); r.Append(new Cell() { CellReference = "X14", StyleIndex = (UInt32Value)42U }); InsertSecondHalfBlankRow(14U, ref r); c = new Cell() { CellReference = "AQ14", StyleIndex = (UInt32Value)41U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("MIN (T)").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "AR14", StyleIndex = (UInt32Value)41U }); r.Append(new Cell() { CellReference = "AS14", StyleIndex = (UInt32Value)41U }); c = new Cell() { CellReference = "AT14", StyleIndex = (UInt32Value)42U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem(femur2MinAndTime).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "AU14", StyleIndex = (UInt32Value)42U }); r.Append(new Cell() { CellReference = "AV14", StyleIndex = (UInt32Value)42U }); sheetData2.Append(r); r = new Row() { RowIndex = (UInt32Value)15U, Spans = new ListValue() { InnerText = "1:48" }, Height = 11.25D, CustomHeight = true }; InsertFirstHalfBlankRow(15U, ref r); r.Append(new Cell() { CellReference = "S15", StyleIndex = (UInt32Value)3U }); r.Append(new Cell() { CellReference = "T15", StyleIndex = (UInt32Value)3U }); r.Append(new Cell() { CellReference = "U15", StyleIndex = (UInt32Value)3U }); r.Append(new Cell() { CellReference = "V15", StyleIndex = (UInt32Value)3U }); r.Append(new Cell() { CellReference = "W15", StyleIndex = (UInt32Value)3U }); r.Append(new Cell() { CellReference = "X15", StyleIndex = (UInt32Value)3U }); InsertSecondHalfBlankRow(15U, ref r); r.Append(new Cell() { CellReference = "AQ15", StyleIndex = (UInt32Value)3U }); r.Append(new Cell() { CellReference = "AR15", StyleIndex = (UInt32Value)3U }); r.Append(new Cell() { CellReference = "AS15", StyleIndex = (UInt32Value)3U }); r.Append(new Cell() { CellReference = "AT15", StyleIndex = (UInt32Value)3U }); r.Append(new Cell() { CellReference = "AU15", StyleIndex = (UInt32Value)3U }); r.Append(new Cell() { CellReference = "AV15", StyleIndex = (UInt32Value)3U }); sheetData2.Append(r); r = new Row() { RowIndex = (UInt32Value)16U, Spans = new ListValue() { InnerText = "1:48" }, Height = 11.25D, CustomHeight = true }; InsertFirstHalfBlankRow(16U, ref r); c = new Cell() { CellReference = "S16", StyleIndex = (UInt32Value)47U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem(string.Format("Tibia -3({0})", tibiaUnits)).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "T16", StyleIndex = (UInt32Value)47U }); r.Append(new Cell() { CellReference = "U16", StyleIndex = (UInt32Value)47U }); r.Append(new Cell() { CellReference = "V16", StyleIndex = (UInt32Value)47U }); r.Append(new Cell() { CellReference = "W16", StyleIndex = (UInt32Value)47U }); r.Append(new Cell() { CellReference = "X16", StyleIndex = (UInt32Value)47U }); InsertSecondHalfBlankRow(16U, ref r); c = new Cell() { CellReference = "AQ16", StyleIndex = (UInt32Value)47U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem(string.Format("Femur -3({0})", femurUnits)).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "AR16", StyleIndex = (UInt32Value)47U }); r.Append(new Cell() { CellReference = "AS16", StyleIndex = (UInt32Value)47U }); r.Append(new Cell() { CellReference = "AT16", StyleIndex = (UInt32Value)47U }); r.Append(new Cell() { CellReference = "AU16", StyleIndex = (UInt32Value)47U }); r.Append(new Cell() { CellReference = "AV16", StyleIndex = (UInt32Value)47U }); sheetData2.Append(r); r = new Row() { RowIndex = (UInt32Value)17U, Spans = new ListValue() { InnerText = "1:48" }, Height = 11.25D, CustomHeight = true }; InsertFirstHalfBlankRow(17U, ref r); c = new Cell() { CellReference = "S17", StyleIndex = (UInt32Value)41U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("MAX (T)").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "T17", StyleIndex = (UInt32Value)41U }); r.Append(new Cell() { CellReference = "U17", StyleIndex = (UInt32Value)41U }); c = new Cell() { CellReference = "V17", StyleIndex = (UInt32Value)42U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem(tibia3MaxAndTime).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "W17", StyleIndex = (UInt32Value)42U }); r.Append(new Cell() { CellReference = "X17", StyleIndex = (UInt32Value)42U }); InsertSecondHalfBlankRow(17U, ref r); c = new Cell() { CellReference = "AQ17", StyleIndex = (UInt32Value)41U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("MAX (T)").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "AR17", StyleIndex = (UInt32Value)41U }); r.Append(new Cell() { CellReference = "AS17", StyleIndex = (UInt32Value)41U }); c = new Cell() { CellReference = "AT17", StyleIndex = (UInt32Value)42U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem(femur3MaxAndTime).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "AU17", StyleIndex = (UInt32Value)42U }); r.Append(new Cell() { CellReference = "AV17", StyleIndex = (UInt32Value)42U }); sheetData2.Append(r); r = new Row() { RowIndex = (UInt32Value)18U, Spans = new ListValue() { InnerText = "1:48" }, Height = 11.25D, CustomHeight = true }; InsertFirstHalfBlankRow(18U, ref r); c = new Cell() { CellReference = "S18", StyleIndex = (UInt32Value)41U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("MIN (T)").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "T18", StyleIndex = (UInt32Value)41U }); r.Append(new Cell() { CellReference = "U18", StyleIndex = (UInt32Value)41U }); c = new Cell() { CellReference = "V18", StyleIndex = (UInt32Value)42U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem(tibia3MinAndTime).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "W18", StyleIndex = (UInt32Value)42U }); r.Append(new Cell() { CellReference = "X18", StyleIndex = (UInt32Value)42U }); InsertSecondHalfBlankRow(18U, ref r); c = new Cell() { CellReference = "AQ18", StyleIndex = (UInt32Value)41U, DataType = CellValues.SharedString }; c.Append(new CellValue(){Text = InsertSharedStringItem("MIN (T)").ToString()}); r.Append(c); r.Append(new Cell() { CellReference = "AR18", StyleIndex = (UInt32Value)41U }); r.Append(new Cell() { CellReference = "AS18", StyleIndex = (UInt32Value)41U }); c = new Cell() { CellReference = "AT18", StyleIndex = (UInt32Value)42U, DataType = CellValues.SharedString }; c.Append(new CellValue(){Text = InsertSharedStringItem(femur3MinAndTime).ToString()}); r.Append(c); r.Append(new Cell() { CellReference = "AU18", StyleIndex = (UInt32Value)42U }); r.Append(new Cell() { CellReference = "AV18", StyleIndex = (UInt32Value)42U }); sheetData2.Append(r); r = new Row() { RowIndex = (UInt32Value)19U, Spans = new ListValue() { InnerText = "1:48" }, Height = 11.25D, CustomHeight = true }; InsertFirstHalfBlankRow(19U, ref r); r.Append(new Cell() { CellReference = "S19", StyleIndex = (UInt32Value)3U }); r.Append(new Cell() { CellReference = "T19", StyleIndex = (UInt32Value)3U }); r.Append(new Cell() { CellReference = "U19", StyleIndex = (UInt32Value)3U }); r.Append(new Cell() { CellReference = "V19", StyleIndex = (UInt32Value)3U }); r.Append(new Cell() { CellReference = "W19", StyleIndex = (UInt32Value)3U }); r.Append(new Cell() { CellReference = "X19", StyleIndex = (UInt32Value)3U }); InsertSecondHalfBlankRow(19U, ref r); r.Append(new Cell() { CellReference = "AQ19", StyleIndex = (UInt32Value)3U }); r.Append(new Cell() { CellReference = "AR19", StyleIndex = (UInt32Value)3U }); r.Append(new Cell() { CellReference = "AS19", StyleIndex = (UInt32Value)3U }); r.Append(new Cell() { CellReference = "AT19", StyleIndex = (UInt32Value)3U }); r.Append(new Cell() { CellReference = "AU19", StyleIndex = (UInt32Value)3U }); r.Append(new Cell() { CellReference = "AV19", StyleIndex = (UInt32Value)3U }); sheetData2.Append(r); r = new Row() { RowIndex = (UInt32Value)20U, Spans = new ListValue() { InnerText = "1:48" }, Height = 11.25D, CustomHeight = true }; InsertFirstHalfBlankRow(20U, ref r); c = new Cell() { CellReference = "S20", StyleIndex = (UInt32Value)48U, DataType = CellValues.SharedString }; c.Append(new CellValue(){Text = InsertSharedStringItem(string.Format("Tibia -4({0})", tibiaUnits)).ToString()}); r.Append(c); r.Append(new Cell() { CellReference = "T20", StyleIndex = (UInt32Value)48U }); r.Append(new Cell() { CellReference = "U20", StyleIndex = (UInt32Value)48U }); r.Append(new Cell() { CellReference = "V20", StyleIndex = (UInt32Value)48U }); r.Append(new Cell() { CellReference = "W20", StyleIndex = (UInt32Value)48U }); r.Append(new Cell() { CellReference = "X20", StyleIndex = (UInt32Value)48U }); InsertSecondHalfBlankRow(20U, ref r); r.Append(new Cell() { CellReference = "AQ20", StyleIndex = (UInt32Value)8U }); r.Append(new Cell() { CellReference = "AR20", StyleIndex = (UInt32Value)8U }); r.Append(new Cell() { CellReference = "AS20", StyleIndex = (UInt32Value)8U }); r.Append(new Cell() { CellReference = "AT20", StyleIndex = (UInt32Value)8U }); r.Append(new Cell() { CellReference = "AU20", StyleIndex = (UInt32Value)8U }); r.Append(new Cell() { CellReference = "AV20", StyleIndex = (UInt32Value)8U }); sheetData2.Append(r); r = new Row() { RowIndex = (UInt32Value)21U, Spans = new ListValue() { InnerText = "1:48" }, Height = 11.25D, CustomHeight = true }; InsertFirstHalfBlankRow(21U, ref r); c = new Cell() { CellReference = "S21", StyleIndex = (UInt32Value)41U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("MAX (T)").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "T21", StyleIndex = (UInt32Value)41U }); r.Append(new Cell() { CellReference = "U21", StyleIndex = (UInt32Value)41U }); c = new Cell() { CellReference = "V21", StyleIndex = (UInt32Value)42U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem(tibia4MaxAndTime).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "W21", StyleIndex = (UInt32Value)42U }); r.Append(new Cell() { CellReference = "X21", StyleIndex = (UInt32Value)42U }); InsertSecondHalfBlankRow(21U, ref r); r.Append(new Cell() { CellReference = "AQ21", StyleIndex = (UInt32Value)9U }); r.Append(new Cell() { CellReference = "AR21", StyleIndex = (UInt32Value)9U }); r.Append(new Cell() { CellReference = "AS21", StyleIndex = (UInt32Value)9U }); r.Append(new Cell() { CellReference = "AT21", StyleIndex = (UInt32Value)7U }); r.Append(new Cell() { CellReference = "AU21", StyleIndex = (UInt32Value)7U }); r.Append(new Cell() { CellReference = "AV21", StyleIndex = (UInt32Value)7U }); sheetData2.Append(r); r = new Row() { RowIndex = (UInt32Value)22U, Spans = new ListValue() { InnerText = "1:48" }, Height = 11.25D, CustomHeight = true }; InsertFirstHalfBlankRow(22U, ref r); c = new Cell() { CellReference = "S22", StyleIndex = (UInt32Value)41U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("MIN (T)").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "T22", StyleIndex = (UInt32Value)41U }); r.Append(new Cell() { CellReference = "U22", StyleIndex = (UInt32Value)41U }); c = new Cell() { CellReference = "V22", StyleIndex = (UInt32Value)42U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem(tibia4MinAndTime).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "W22", StyleIndex = (UInt32Value)42U }); r.Append(new Cell() { CellReference = "X22", StyleIndex = (UInt32Value)42U }); InsertSecondHalfBlankRow(22U, ref r); r.Append(new Cell() { CellReference = "AQ22", StyleIndex = (UInt32Value)9U }); r.Append(new Cell() { CellReference = "AR22", StyleIndex = (UInt32Value)9U }); r.Append(new Cell() { CellReference = "AS22", StyleIndex = (UInt32Value)9U }); r.Append(new Cell() { CellReference = "AT22", StyleIndex = (UInt32Value)7U }); r.Append(new Cell() { CellReference = "AU22", StyleIndex = (UInt32Value)7U }); r.Append(new Cell() { CellReference = "AV22", StyleIndex = (UInt32Value)7U }); sheetData2.Append(r); sheetData2.Append(InsertFullBlankReportRow(23U)); sheetData2.Append(InsertFullBlankReportRow(24U)); sheetData2.Append(InsertFullBlankReportRow(25U)); sheetData2.Append(InsertFullBlankReportRow(26U)); sheetData2.Append(InsertFullBlankReportRow(27U)); r = new Row() { RowIndex = (UInt32Value)28U, Spans = new ListValue() { InnerText = "1:48" }, Height = 11.25D, CustomHeight = true }; c = new Cell() { CellReference = "A28", StyleIndex = (UInt32Value)43U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("MCL").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "B28", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "C28", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "D28", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "E28", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "F28", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "G28", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "H28", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "I28", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "J28", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "K28", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "L28", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "M28", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "N28", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "O28", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "P28", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "Q28", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "R28", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "S28", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "T28", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "U28", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "V28", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "W28", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "X28", StyleIndex = (UInt32Value)6U }); c = new Cell() { CellReference = "Y28", StyleIndex = (UInt32Value)43U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("LCL").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "Z28", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "AA28", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "AB28", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "AC28", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "AD28", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "AE28", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "AF28", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "AG28", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "AH28", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "AI28", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "AJ28", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "AK28", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "AL28", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "AM28", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "AN28", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "AO28", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "AP28", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "AQ28", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AR28", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AS28", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AT28", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AU28", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AV28", StyleIndex = (UInt32Value)6U }); sheetData2.Append(r); r = new Row() { RowIndex = (UInt32Value)29U, Spans = new ListValue() { InnerText = "1:48" }, Height = 11.25D, CustomHeight = true }; InsertFirstHalfBlankRow(29U, ref r); c = new Cell() { CellReference = "S29", StyleIndex = (UInt32Value)44U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem(string.Format("MCL({0})", mclUnits)).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "T29", StyleIndex = (UInt32Value)44U }); r.Append(new Cell() { CellReference = "U29", StyleIndex = (UInt32Value)44U }); r.Append(new Cell() { CellReference = "V29", StyleIndex = (UInt32Value)44U }); r.Append(new Cell() { CellReference = "W29", StyleIndex = (UInt32Value)44U }); r.Append(new Cell() { CellReference = "X29", StyleIndex = (UInt32Value)44U }); InsertSecondHalfBlankRow(29U, ref r); c = new Cell() { CellReference = "AQ29", StyleIndex = (UInt32Value)44U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem(string.Format("LCL({0})", mclUnits)).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "AR29", StyleIndex = (UInt32Value)44U }); r.Append(new Cell() { CellReference = "AS29", StyleIndex = (UInt32Value)44U }); r.Append(new Cell() { CellReference = "AT29", StyleIndex = (UInt32Value)44U }); r.Append(new Cell() { CellReference = "AU29", StyleIndex = (UInt32Value)44U }); r.Append(new Cell() { CellReference = "AV29", StyleIndex = (UInt32Value)44U }); sheetData2.Append(r); r = new Row() { RowIndex = (UInt32Value)30U, Spans = new ListValue() { InnerText = "1:48" }, Height = 11.25D, CustomHeight = true }; InsertFirstHalfBlankRow(30U, ref r); c = new Cell() { CellReference = "S30", StyleIndex = (UInt32Value)41U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("MAX (T)").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "T30", StyleIndex = (UInt32Value)41U }); r.Append(new Cell() { CellReference = "U30", StyleIndex = (UInt32Value)41U }); c = new Cell() { CellReference = "V30", StyleIndex = (UInt32Value)42U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem(mclMaxAndTime).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "W30", StyleIndex = (UInt32Value)42U }); r.Append(new Cell() { CellReference = "X30", StyleIndex = (UInt32Value)42U }); InsertSecondHalfBlankRow(30U, ref r); c = new Cell() { CellReference = "AQ30", StyleIndex = (UInt32Value)41U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("MAX (T)").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "AR30", StyleIndex = (UInt32Value)41U }); r.Append(new Cell() { CellReference = "AS30", StyleIndex = (UInt32Value)41U }); c = new Cell() { CellReference = "AT30", StyleIndex = (UInt32Value)42U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem(lclMaxAndTime).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "AU30", StyleIndex = (UInt32Value)42U }); r.Append(new Cell() { CellReference = "AV30", StyleIndex = (UInt32Value)42U }); sheetData2.Append(r); r = new Row() { RowIndex = (UInt32Value)31U, Spans = new ListValue() { InnerText = "1:48" }, Height = 11.25D, CustomHeight = true }; InsertFirstHalfBlankRow(31U, ref r); c = new Cell() { CellReference = "S31", StyleIndex = (UInt32Value)41U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("MIN (T)").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "T31", StyleIndex = (UInt32Value)41U }); r.Append(new Cell() { CellReference = "U31", StyleIndex = (UInt32Value)41U }); c = new Cell() { CellReference = "V31", StyleIndex = (UInt32Value)42U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem(mclMinAndTime).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "W31", StyleIndex = (UInt32Value)42U }); r.Append(new Cell() { CellReference = "X31", StyleIndex = (UInt32Value)42U }); InsertSecondHalfBlankRow(31U, ref r); c = new Cell() { CellReference = "AQ31", StyleIndex = (UInt32Value)41U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("MIN (T)").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "AR31", StyleIndex = (UInt32Value)41U }); r.Append(new Cell() { CellReference = "AS31", StyleIndex = (UInt32Value)41U }); c = new Cell() { CellReference = "AT31", StyleIndex = (UInt32Value)42U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem(lclMinAndTime).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "AU31", StyleIndex = (UInt32Value)42U }); r.Append(new Cell() { CellReference = "AV31", StyleIndex = (UInt32Value)42U }); sheetData2.Append(r); for (uint i = 32; i < 48; i++) { sheetData2.Append(InsertFullBlankReportRow(i)); } r = new Row() { RowIndex = (UInt32Value)48U, Spans = new ListValue() { InnerText = "1:48" }, Height = 11.25D, CustomHeight = true }; c = new Cell() { CellReference = "A48", StyleIndex = (UInt32Value)43U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("ACL/PCL").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "B48", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "C48", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "D48", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "E48", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "F48", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "G48", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "H48", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "I48", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "J48", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "K48", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "L48", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "M48", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "N48", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "O48", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "P48", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "Q48", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "R48", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "S48", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "T48", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "U48", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "V48", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "W48", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "X48", StyleIndex = (UInt32Value)43U }); r.Append(new Cell() { CellReference = "Y48", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "Z48", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AA48", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AB48", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AC48", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AD48", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AE48", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AF48", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AG48", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AH48", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AI48", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AJ48", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AK48", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AL48", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AM48", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AN48", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AO48", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AP48", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AQ48", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AR48", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AS48", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AT48", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AU48", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AV48", StyleIndex = (UInt32Value)6U }); sheetData2.Append(r); r = new Row() { RowIndex = (UInt32Value)49U, Spans = new ListValue() { InnerText = "1:48" }, Height = 11.25D, CustomHeight = true }; InsertFirstHalfBlankRow(49U, ref r); c = new Cell() { CellReference = "S49", StyleIndex = (UInt32Value)44U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem(string.Format("ACL ({0})", mclUnits)).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "T49", StyleIndex = (UInt32Value)44U }); r.Append(new Cell() { CellReference = "U49", StyleIndex = (UInt32Value)44U }); r.Append(new Cell() { CellReference = "V49", StyleIndex = (UInt32Value)44U }); r.Append(new Cell() { CellReference = "W49", StyleIndex = (UInt32Value)44U }); r.Append(new Cell() { CellReference = "X49", StyleIndex = (UInt32Value)44U }); InsertSecondHalfBlankRow(49U, ref r); r.Append(new Cell() { CellReference = "AQ49", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AR49", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AS49", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AT49", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AU49", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AV49", StyleIndex = (UInt32Value)6U }); sheetData2.Append(r); r = new Row() { RowIndex = (UInt32Value)50U, Spans = new ListValue() { InnerText = "1:48" }, Height = 11.25D, CustomHeight = true }; InsertFirstHalfBlankRow(50U, ref r); c = new Cell() { CellReference = "S50", StyleIndex = (UInt32Value)41U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("MAX (T)").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "T50", StyleIndex = (UInt32Value)41U }); r.Append(new Cell() { CellReference = "U50", StyleIndex = (UInt32Value)41U }); c = new Cell() { CellReference = "V50", StyleIndex = (UInt32Value)42U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem(aclMaxAndTime).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "W50", StyleIndex = (UInt32Value)42U }); r.Append(new Cell() { CellReference = "X50", StyleIndex = (UInt32Value)42U }); InsertSecondHalfBlankRow(50U, ref r); r.Append(new Cell() { CellReference = "AQ50", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AR50", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AS50", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AT50", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AU50", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AV50", StyleIndex = (UInt32Value)6U }); sheetData2.Append(r); r = new Row() { RowIndex = (UInt32Value)51U, Spans = new ListValue() { InnerText = "1:48" }, Height = 11.25D, CustomHeight = true }; InsertFirstHalfBlankRow(51U, ref r); c = new Cell() { CellReference = "S51", StyleIndex = (UInt32Value)41U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("MIN (T)").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "T51", StyleIndex = (UInt32Value)41U }); r.Append(new Cell() { CellReference = "U51", StyleIndex = (UInt32Value)41U }); c = new Cell() { CellReference = "V51", StyleIndex = (UInt32Value)42U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem(aclMinAndTime).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "W51", StyleIndex = (UInt32Value)42U }); r.Append(new Cell() { CellReference = "X51", StyleIndex = (UInt32Value)42U }); InsertSecondHalfBlankRow(51U, ref r); r.Append(new Cell() { CellReference = "AQ51", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AR51", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AS51", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AT51", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AU51", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AV51", StyleIndex = (UInt32Value)6U }); sheetData2.Append(r); sheetData2.Append(InsertFullBlankReportRow(52U)); r = new Row() { RowIndex = (UInt32Value)53U, Spans = new ListValue() { InnerText = "1:48" }, Height = 11.25D, CustomHeight = true }; InsertFirstHalfBlankRow(53U, ref r); c = new Cell() { CellReference = "S53", StyleIndex = (UInt32Value)46U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem(string.Format("PCL ({0})", mclUnits)).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "T53", StyleIndex = (UInt32Value)46U }); r.Append(new Cell() { CellReference = "U53", StyleIndex = (UInt32Value)46U }); r.Append(new Cell() { CellReference = "V53", StyleIndex = (UInt32Value)46U }); r.Append(new Cell() { CellReference = "W53", StyleIndex = (UInt32Value)46U }); r.Append(new Cell() { CellReference = "X53", StyleIndex = (UInt32Value)46U }); InsertSecondHalfBlankRow(53U, ref r); r.Append(new Cell() { CellReference = "AQ53", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AR53", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AS53", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AT53", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AU53", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AV53", StyleIndex = (UInt32Value)6U }); sheetData2.Append(r); r = new Row() { RowIndex = (UInt32Value)54U, Spans = new ListValue() { InnerText = "1:48" }, Height = 11.25D, CustomHeight = true }; InsertFirstHalfBlankRow(54U, ref r); c = new Cell() { CellReference = "S54", StyleIndex = (UInt32Value)41U, DataType = CellValues.SharedString }; c.Append(new CellValue(){Text = InsertSharedStringItem("MAX (T)").ToString()}); r.Append(c); r.Append(new Cell() { CellReference = "T54", StyleIndex = (UInt32Value)41U }); r.Append(new Cell() { CellReference = "U54", StyleIndex = (UInt32Value)41U }); c = new Cell() { CellReference = "V54", StyleIndex = (UInt32Value)42U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem(pclMaxAndTime).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "W54", StyleIndex = (UInt32Value)42U }); r.Append(new Cell() { CellReference = "X54", StyleIndex = (UInt32Value)42U }); InsertSecondHalfBlankRow(54U, ref r); r.Append(new Cell() { CellReference = "AQ54", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AR54", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AS54", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AT54", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AU54", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AV54", StyleIndex = (UInt32Value)6U }); sheetData2.Append(r); r = new Row() { RowIndex = (UInt32Value)55U, Spans = new ListValue() { InnerText = "1:48" }, Height = 11.25D, CustomHeight = true }; InsertFirstHalfBlankRow(55U, ref r); c = new Cell() { CellReference = "S55", StyleIndex = (UInt32Value)41U, DataType = CellValues.SharedString }; c.Append(new CellValue(){Text = InsertSharedStringItem("MIN (T)").ToString()}); r.Append(c); r.Append(new Cell() { CellReference = "T55", StyleIndex = (UInt32Value)41U }); r.Append(new Cell() { CellReference = "U55", StyleIndex = (UInt32Value)41U }); c = new Cell() { CellReference = "V55", StyleIndex = (UInt32Value)42U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem(pclMinAndTime).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "W55", StyleIndex = (UInt32Value)42U }); r.Append(new Cell() { CellReference = "X55", StyleIndex = (UInt32Value)42U }); InsertSecondHalfBlankRow(55U, ref r); r.Append(new Cell() { CellReference = "AR55", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AS55", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AT55", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AU55", StyleIndex = (UInt32Value)6U }); r.Append(new Cell() { CellReference = "AV55", StyleIndex = (UInt32Value)6U }); sheetData2.Append(r); Row row60 = new Row() { RowIndex = (UInt32Value)56U, Spans = new ListValue() { InnerText = "1:48" }, Height = 11.25D, CustomHeight = true }; Cell cell2729 = new Cell() { CellReference = "A56", StyleIndex = (UInt32Value)6U }; Cell cell2730 = new Cell() { CellReference = "B56", StyleIndex = (UInt32Value)6U }; Cell cell2731 = new Cell() { CellReference = "C56", StyleIndex = (UInt32Value)6U }; Cell cell2732 = new Cell() { CellReference = "D56", StyleIndex = (UInt32Value)6U }; Cell cell2733 = new Cell() { CellReference = "E56", StyleIndex = (UInt32Value)6U }; Cell cell2734 = new Cell() { CellReference = "F56", StyleIndex = (UInt32Value)6U }; Cell cell2735 = new Cell() { CellReference = "G56", StyleIndex = (UInt32Value)6U }; Cell cell2736 = new Cell() { CellReference = "H56", StyleIndex = (UInt32Value)6U }; Cell cell2737 = new Cell() { CellReference = "I56", StyleIndex = (UInt32Value)6U }; Cell cell2738 = new Cell() { CellReference = "J56", StyleIndex = (UInt32Value)6U }; Cell cell2739 = new Cell() { CellReference = "K56", StyleIndex = (UInt32Value)6U }; Cell cell2740 = new Cell() { CellReference = "L56", StyleIndex = (UInt32Value)6U }; Cell cell2741 = new Cell() { CellReference = "M56", StyleIndex = (UInt32Value)6U }; Cell cell2742 = new Cell() { CellReference = "N56", StyleIndex = (UInt32Value)6U }; Cell cell2743 = new Cell() { CellReference = "O56", StyleIndex = (UInt32Value)6U }; Cell cell2744 = new Cell() { CellReference = "P56", StyleIndex = (UInt32Value)6U }; Cell cell2745 = new Cell() { CellReference = "Q56", StyleIndex = (UInt32Value)6U }; Cell cell2746 = new Cell() { CellReference = "R56", StyleIndex = (UInt32Value)6U }; Cell cell2747 = new Cell() { CellReference = "S56", StyleIndex = (UInt32Value)3U }; Cell cell2748 = new Cell() { CellReference = "T56", StyleIndex = (UInt32Value)3U }; Cell cell2749 = new Cell() { CellReference = "U56", StyleIndex = (UInt32Value)3U }; Cell cell2750 = new Cell() { CellReference = "V56", StyleIndex = (UInt32Value)3U }; Cell cell2751 = new Cell() { CellReference = "W56", StyleIndex = (UInt32Value)3U }; Cell cell2752 = new Cell() { CellReference = "X56", StyleIndex = (UInt32Value)3U }; Cell cell2753 = new Cell() { CellReference = "Y56", StyleIndex = (UInt32Value)6U }; Cell cell2754 = new Cell() { CellReference = "Z56", StyleIndex = (UInt32Value)6U }; Cell cell2755 = new Cell() { CellReference = "AA56", StyleIndex = (UInt32Value)6U }; Cell cell2756 = new Cell() { CellReference = "AB56", StyleIndex = (UInt32Value)6U }; Cell cell2757 = new Cell() { CellReference = "AC56", StyleIndex = (UInt32Value)6U }; Cell cell2758 = new Cell() { CellReference = "AD56", StyleIndex = (UInt32Value)6U }; Cell cell2759 = new Cell() { CellReference = "AE56", StyleIndex = (UInt32Value)6U }; Cell cell2760 = new Cell() { CellReference = "AF56", StyleIndex = (UInt32Value)6U }; Cell cell2761 = new Cell() { CellReference = "AG56", StyleIndex = (UInt32Value)6U }; Cell cell2762 = new Cell() { CellReference = "AH56", StyleIndex = (UInt32Value)6U }; Cell cell2763 = new Cell() { CellReference = "AI56", StyleIndex = (UInt32Value)6U }; Cell cell2764 = new Cell() { CellReference = "AJ56", StyleIndex = (UInt32Value)6U }; Cell cell2765 = new Cell() { CellReference = "AK56", StyleIndex = (UInt32Value)6U }; Cell cell2766 = new Cell() { CellReference = "AL56", StyleIndex = (UInt32Value)6U }; Cell cell2767 = new Cell() { CellReference = "AM56", StyleIndex = (UInt32Value)6U }; Cell cell2768 = new Cell() { CellReference = "AN56", StyleIndex = (UInt32Value)6U }; Cell cell2769 = new Cell() { CellReference = "AO56", StyleIndex = (UInt32Value)6U }; Cell cell2770 = new Cell() { CellReference = "AP56", StyleIndex = (UInt32Value)6U }; Cell cell2771 = new Cell() { CellReference = "AQ56", StyleIndex = (UInt32Value)6U }; Cell cell2772 = new Cell() { CellReference = "AR56", StyleIndex = (UInt32Value)6U }; Cell cell2773 = new Cell() { CellReference = "AS56", StyleIndex = (UInt32Value)6U }; Cell cell2774 = new Cell() { CellReference = "AT56", StyleIndex = (UInt32Value)6U }; Cell cell2775 = new Cell() { CellReference = "AU56", StyleIndex = (UInt32Value)6U }; Cell cell2776 = new Cell() { CellReference = "AV56", StyleIndex = (UInt32Value)6U }; row60.Append(cell2729); row60.Append(cell2730); row60.Append(cell2731); row60.Append(cell2732); row60.Append(cell2733); row60.Append(cell2734); row60.Append(cell2735); row60.Append(cell2736); row60.Append(cell2737); row60.Append(cell2738); row60.Append(cell2739); row60.Append(cell2740); row60.Append(cell2741); row60.Append(cell2742); row60.Append(cell2743); row60.Append(cell2744); row60.Append(cell2745); row60.Append(cell2746); row60.Append(cell2747); row60.Append(cell2748); row60.Append(cell2749); row60.Append(cell2750); row60.Append(cell2751); row60.Append(cell2752); row60.Append(cell2753); row60.Append(cell2754); row60.Append(cell2755); row60.Append(cell2756); row60.Append(cell2757); row60.Append(cell2758); row60.Append(cell2759); row60.Append(cell2760); row60.Append(cell2761); row60.Append(cell2762); row60.Append(cell2763); row60.Append(cell2764); row60.Append(cell2765); row60.Append(cell2766); row60.Append(cell2767); row60.Append(cell2768); row60.Append(cell2769); row60.Append(cell2770); row60.Append(cell2771); row60.Append(cell2772); row60.Append(cell2773); row60.Append(cell2774); row60.Append(cell2775); row60.Append(cell2776); Row row61 = new Row() { RowIndex = (UInt32Value)57U, Spans = new ListValue() { InnerText = "1:48" }, Height = 11.25D, CustomHeight = true }; Cell cell2777 = new Cell() { CellReference = "A57", StyleIndex = (UInt32Value)6U }; Cell cell2778 = new Cell() { CellReference = "B57", StyleIndex = (UInt32Value)6U }; Cell cell2779 = new Cell() { CellReference = "C57", StyleIndex = (UInt32Value)6U }; Cell cell2780 = new Cell() { CellReference = "D57", StyleIndex = (UInt32Value)6U }; Cell cell2781 = new Cell() { CellReference = "E57", StyleIndex = (UInt32Value)6U }; Cell cell2782 = new Cell() { CellReference = "F57", StyleIndex = (UInt32Value)6U }; Cell cell2783 = new Cell() { CellReference = "G57", StyleIndex = (UInt32Value)6U }; Cell cell2784 = new Cell() { CellReference = "H57", StyleIndex = (UInt32Value)6U }; Cell cell2785 = new Cell() { CellReference = "I57", StyleIndex = (UInt32Value)6U }; Cell cell2786 = new Cell() { CellReference = "J57", StyleIndex = (UInt32Value)6U }; Cell cell2787 = new Cell() { CellReference = "K57", StyleIndex = (UInt32Value)6U }; Cell cell2788 = new Cell() { CellReference = "L57", StyleIndex = (UInt32Value)6U }; Cell cell2789 = new Cell() { CellReference = "M57", StyleIndex = (UInt32Value)6U }; Cell cell2790 = new Cell() { CellReference = "N57", StyleIndex = (UInt32Value)6U }; Cell cell2791 = new Cell() { CellReference = "O57", StyleIndex = (UInt32Value)6U }; Cell cell2792 = new Cell() { CellReference = "P57", StyleIndex = (UInt32Value)6U }; Cell cell2793 = new Cell() { CellReference = "Q57", StyleIndex = (UInt32Value)6U }; Cell cell2794 = new Cell() { CellReference = "R57", StyleIndex = (UInt32Value)6U }; Cell cell2795 = new Cell() { CellReference = "S57", StyleIndex = (UInt32Value)3U }; Cell cell2796 = new Cell() { CellReference = "T57", StyleIndex = (UInt32Value)3U }; Cell cell2797 = new Cell() { CellReference = "U57", StyleIndex = (UInt32Value)3U }; Cell cell2798 = new Cell() { CellReference = "V57", StyleIndex = (UInt32Value)3U }; Cell cell2799 = new Cell() { CellReference = "W57", StyleIndex = (UInt32Value)3U }; Cell cell2800 = new Cell() { CellReference = "X57", StyleIndex = (UInt32Value)3U }; Cell cell2801 = new Cell() { CellReference = "Y57", StyleIndex = (UInt32Value)6U }; Cell cell2802 = new Cell() { CellReference = "Z57", StyleIndex = (UInt32Value)6U }; Cell cell2803 = new Cell() { CellReference = "AA57", StyleIndex = (UInt32Value)6U }; Cell cell2804 = new Cell() { CellReference = "AB57", StyleIndex = (UInt32Value)6U }; Cell cell2805 = new Cell() { CellReference = "AC57", StyleIndex = (UInt32Value)6U }; Cell cell2806 = new Cell() { CellReference = "AD57", StyleIndex = (UInt32Value)6U }; Cell cell2807 = new Cell() { CellReference = "AE57", StyleIndex = (UInt32Value)6U }; Cell cell2808 = new Cell() { CellReference = "AF57", StyleIndex = (UInt32Value)6U }; Cell cell2809 = new Cell() { CellReference = "AG57", StyleIndex = (UInt32Value)6U }; Cell cell2810 = new Cell() { CellReference = "AH57", StyleIndex = (UInt32Value)6U }; Cell cell2811 = new Cell() { CellReference = "AI57", StyleIndex = (UInt32Value)6U }; Cell cell2812 = new Cell() { CellReference = "AJ57", StyleIndex = (UInt32Value)6U }; Cell cell2813 = new Cell() { CellReference = "AK57", StyleIndex = (UInt32Value)6U }; Cell cell2814 = new Cell() { CellReference = "AL57", StyleIndex = (UInt32Value)6U }; Cell cell2815 = new Cell() { CellReference = "AM57", StyleIndex = (UInt32Value)6U }; Cell cell2816 = new Cell() { CellReference = "AN57", StyleIndex = (UInt32Value)6U }; Cell cell2817 = new Cell() { CellReference = "AO57", StyleIndex = (UInt32Value)6U }; Cell cell2818 = new Cell() { CellReference = "AP57", StyleIndex = (UInt32Value)6U }; Cell cell2819 = new Cell() { CellReference = "AQ57", StyleIndex = (UInt32Value)6U }; Cell cell2820 = new Cell() { CellReference = "AR57", StyleIndex = (UInt32Value)6U }; Cell cell2821 = new Cell() { CellReference = "AS57", StyleIndex = (UInt32Value)6U }; Cell cell2822 = new Cell() { CellReference = "AT57", StyleIndex = (UInt32Value)6U }; Cell cell2823 = new Cell() { CellReference = "AU57", StyleIndex = (UInt32Value)6U }; Cell cell2824 = new Cell() { CellReference = "AV57", StyleIndex = (UInt32Value)6U }; row61.Append(cell2777); row61.Append(cell2778); row61.Append(cell2779); row61.Append(cell2780); row61.Append(cell2781); row61.Append(cell2782); row61.Append(cell2783); row61.Append(cell2784); row61.Append(cell2785); row61.Append(cell2786); row61.Append(cell2787); row61.Append(cell2788); row61.Append(cell2789); row61.Append(cell2790); row61.Append(cell2791); row61.Append(cell2792); row61.Append(cell2793); row61.Append(cell2794); row61.Append(cell2795); row61.Append(cell2796); row61.Append(cell2797); row61.Append(cell2798); row61.Append(cell2799); row61.Append(cell2800); row61.Append(cell2801); row61.Append(cell2802); row61.Append(cell2803); row61.Append(cell2804); row61.Append(cell2805); row61.Append(cell2806); row61.Append(cell2807); row61.Append(cell2808); row61.Append(cell2809); row61.Append(cell2810); row61.Append(cell2811); row61.Append(cell2812); row61.Append(cell2813); row61.Append(cell2814); row61.Append(cell2815); row61.Append(cell2816); row61.Append(cell2817); row61.Append(cell2818); row61.Append(cell2819); row61.Append(cell2820); row61.Append(cell2821); row61.Append(cell2822); row61.Append(cell2823); row61.Append(cell2824); Row row62 = new Row() { RowIndex = (UInt32Value)58U, Spans = new ListValue() { InnerText = "1:48" }, Height = 11.25D, CustomHeight = true }; Cell cell2825 = new Cell() { CellReference = "A58", StyleIndex = (UInt32Value)6U }; Cell cell2826 = new Cell() { CellReference = "B58", StyleIndex = (UInt32Value)6U }; Cell cell2827 = new Cell() { CellReference = "C58", StyleIndex = (UInt32Value)6U }; Cell cell2828 = new Cell() { CellReference = "D58", StyleIndex = (UInt32Value)6U }; Cell cell2829 = new Cell() { CellReference = "E58", StyleIndex = (UInt32Value)6U }; Cell cell2830 = new Cell() { CellReference = "F58", StyleIndex = (UInt32Value)6U }; Cell cell2831 = new Cell() { CellReference = "G58", StyleIndex = (UInt32Value)6U }; Cell cell2832 = new Cell() { CellReference = "H58", StyleIndex = (UInt32Value)6U }; Cell cell2833 = new Cell() { CellReference = "I58", StyleIndex = (UInt32Value)6U }; Cell cell2834 = new Cell() { CellReference = "J58", StyleIndex = (UInt32Value)6U }; Cell cell2835 = new Cell() { CellReference = "K58", StyleIndex = (UInt32Value)6U }; Cell cell2836 = new Cell() { CellReference = "L58", StyleIndex = (UInt32Value)6U }; Cell cell2837 = new Cell() { CellReference = "M58", StyleIndex = (UInt32Value)6U }; Cell cell2838 = new Cell() { CellReference = "N58", StyleIndex = (UInt32Value)6U }; Cell cell2839 = new Cell() { CellReference = "O58", StyleIndex = (UInt32Value)6U }; Cell cell2840 = new Cell() { CellReference = "P58", StyleIndex = (UInt32Value)6U }; Cell cell2841 = new Cell() { CellReference = "Q58", StyleIndex = (UInt32Value)6U }; Cell cell2842 = new Cell() { CellReference = "R58", StyleIndex = (UInt32Value)6U }; Cell cell2843 = new Cell() { CellReference = "S58", StyleIndex = (UInt32Value)3U }; Cell cell2844 = new Cell() { CellReference = "T58", StyleIndex = (UInt32Value)3U }; Cell cell2845 = new Cell() { CellReference = "U58", StyleIndex = (UInt32Value)3U }; Cell cell2846 = new Cell() { CellReference = "V58", StyleIndex = (UInt32Value)3U }; Cell cell2847 = new Cell() { CellReference = "W58", StyleIndex = (UInt32Value)3U }; Cell cell2848 = new Cell() { CellReference = "X58", StyleIndex = (UInt32Value)3U }; Cell cell2849 = new Cell() { CellReference = "Y58", StyleIndex = (UInt32Value)6U }; Cell cell2850 = new Cell() { CellReference = "Z58", StyleIndex = (UInt32Value)6U }; Cell cell2851 = new Cell() { CellReference = "AA58", StyleIndex = (UInt32Value)6U }; Cell cell2852 = new Cell() { CellReference = "AB58", StyleIndex = (UInt32Value)6U }; Cell cell2853 = new Cell() { CellReference = "AC58", StyleIndex = (UInt32Value)6U }; Cell cell2854 = new Cell() { CellReference = "AD58", StyleIndex = (UInt32Value)6U }; Cell cell2855 = new Cell() { CellReference = "AE58", StyleIndex = (UInt32Value)6U }; Cell cell2856 = new Cell() { CellReference = "AF58", StyleIndex = (UInt32Value)6U }; Cell cell2857 = new Cell() { CellReference = "AG58", StyleIndex = (UInt32Value)6U }; Cell cell2858 = new Cell() { CellReference = "AH58", StyleIndex = (UInt32Value)6U }; Cell cell2859 = new Cell() { CellReference = "AI58", StyleIndex = (UInt32Value)6U }; Cell cell2860 = new Cell() { CellReference = "AJ58", StyleIndex = (UInt32Value)6U }; Cell cell2861 = new Cell() { CellReference = "AK58", StyleIndex = (UInt32Value)6U }; Cell cell2862 = new Cell() { CellReference = "AL58", StyleIndex = (UInt32Value)6U }; Cell cell2863 = new Cell() { CellReference = "AM58", StyleIndex = (UInt32Value)6U }; Cell cell2864 = new Cell() { CellReference = "AN58", StyleIndex = (UInt32Value)6U }; Cell cell2865 = new Cell() { CellReference = "AO58", StyleIndex = (UInt32Value)6U }; Cell cell2866 = new Cell() { CellReference = "AP58", StyleIndex = (UInt32Value)6U }; Cell cell2867 = new Cell() { CellReference = "AQ58", StyleIndex = (UInt32Value)6U }; Cell cell2868 = new Cell() { CellReference = "AR58", StyleIndex = (UInt32Value)6U }; Cell cell2869 = new Cell() { CellReference = "AS58", StyleIndex = (UInt32Value)6U }; Cell cell2870 = new Cell() { CellReference = "AT58", StyleIndex = (UInt32Value)6U }; Cell cell2871 = new Cell() { CellReference = "AU58", StyleIndex = (UInt32Value)6U }; Cell cell2872 = new Cell() { CellReference = "AV58", StyleIndex = (UInt32Value)6U }; row62.Append(cell2825); row62.Append(cell2826); row62.Append(cell2827); row62.Append(cell2828); row62.Append(cell2829); row62.Append(cell2830); row62.Append(cell2831); row62.Append(cell2832); row62.Append(cell2833); row62.Append(cell2834); row62.Append(cell2835); row62.Append(cell2836); row62.Append(cell2837); row62.Append(cell2838); row62.Append(cell2839); row62.Append(cell2840); row62.Append(cell2841); row62.Append(cell2842); row62.Append(cell2843); row62.Append(cell2844); row62.Append(cell2845); row62.Append(cell2846); row62.Append(cell2847); row62.Append(cell2848); row62.Append(cell2849); row62.Append(cell2850); row62.Append(cell2851); row62.Append(cell2852); row62.Append(cell2853); row62.Append(cell2854); row62.Append(cell2855); row62.Append(cell2856); row62.Append(cell2857); row62.Append(cell2858); row62.Append(cell2859); row62.Append(cell2860); row62.Append(cell2861); row62.Append(cell2862); row62.Append(cell2863); row62.Append(cell2864); row62.Append(cell2865); row62.Append(cell2866); row62.Append(cell2867); row62.Append(cell2868); row62.Append(cell2869); row62.Append(cell2870); row62.Append(cell2871); row62.Append(cell2872); Row row63 = new Row() { RowIndex = (UInt32Value)59U, Spans = new ListValue() { InnerText = "1:48" }, Height = 11.25D, CustomHeight = true }; Cell cell2873 = new Cell() { CellReference = "A59", StyleIndex = (UInt32Value)6U }; Cell cell2874 = new Cell() { CellReference = "B59", StyleIndex = (UInt32Value)6U }; Cell cell2875 = new Cell() { CellReference = "C59", StyleIndex = (UInt32Value)6U }; Cell cell2876 = new Cell() { CellReference = "D59", StyleIndex = (UInt32Value)6U }; Cell cell2877 = new Cell() { CellReference = "E59", StyleIndex = (UInt32Value)6U }; Cell cell2878 = new Cell() { CellReference = "F59", StyleIndex = (UInt32Value)6U }; Cell cell2879 = new Cell() { CellReference = "G59", StyleIndex = (UInt32Value)6U }; Cell cell2880 = new Cell() { CellReference = "H59", StyleIndex = (UInt32Value)6U }; Cell cell2881 = new Cell() { CellReference = "I59", StyleIndex = (UInt32Value)6U }; Cell cell2882 = new Cell() { CellReference = "J59", StyleIndex = (UInt32Value)6U }; Cell cell2883 = new Cell() { CellReference = "K59", StyleIndex = (UInt32Value)6U }; Cell cell2884 = new Cell() { CellReference = "L59", StyleIndex = (UInt32Value)6U }; Cell cell2885 = new Cell() { CellReference = "M59", StyleIndex = (UInt32Value)6U }; Cell cell2886 = new Cell() { CellReference = "N59", StyleIndex = (UInt32Value)6U }; Cell cell2887 = new Cell() { CellReference = "O59", StyleIndex = (UInt32Value)6U }; Cell cell2888 = new Cell() { CellReference = "P59", StyleIndex = (UInt32Value)6U }; Cell cell2889 = new Cell() { CellReference = "Q59", StyleIndex = (UInt32Value)6U }; Cell cell2890 = new Cell() { CellReference = "R59", StyleIndex = (UInt32Value)6U }; Cell cell2891 = new Cell() { CellReference = "S59", StyleIndex = (UInt32Value)3U }; Cell cell2892 = new Cell() { CellReference = "T59", StyleIndex = (UInt32Value)3U }; Cell cell2893 = new Cell() { CellReference = "U59", StyleIndex = (UInt32Value)3U }; Cell cell2894 = new Cell() { CellReference = "V59", StyleIndex = (UInt32Value)3U }; Cell cell2895 = new Cell() { CellReference = "W59", StyleIndex = (UInt32Value)3U }; Cell cell2896 = new Cell() { CellReference = "X59", StyleIndex = (UInt32Value)3U }; Cell cell2897 = new Cell() { CellReference = "Y59", StyleIndex = (UInt32Value)6U }; Cell cell2898 = new Cell() { CellReference = "Z59", StyleIndex = (UInt32Value)6U }; Cell cell2899 = new Cell() { CellReference = "AA59", StyleIndex = (UInt32Value)6U }; Cell cell2900 = new Cell() { CellReference = "AB59", StyleIndex = (UInt32Value)6U }; Cell cell2901 = new Cell() { CellReference = "AC59", StyleIndex = (UInt32Value)6U }; Cell cell2902 = new Cell() { CellReference = "AD59", StyleIndex = (UInt32Value)6U }; Cell cell2903 = new Cell() { CellReference = "AE59", StyleIndex = (UInt32Value)6U }; Cell cell2904 = new Cell() { CellReference = "AF59", StyleIndex = (UInt32Value)6U }; Cell cell2905 = new Cell() { CellReference = "AG59", StyleIndex = (UInt32Value)6U }; Cell cell2906 = new Cell() { CellReference = "AH59", StyleIndex = (UInt32Value)6U }; Cell cell2907 = new Cell() { CellReference = "AI59", StyleIndex = (UInt32Value)6U }; Cell cell2908 = new Cell() { CellReference = "AJ59", StyleIndex = (UInt32Value)6U }; Cell cell2909 = new Cell() { CellReference = "AK59", StyleIndex = (UInt32Value)6U }; Cell cell2910 = new Cell() { CellReference = "AL59", StyleIndex = (UInt32Value)6U }; Cell cell2911 = new Cell() { CellReference = "AM59", StyleIndex = (UInt32Value)6U }; Cell cell2912 = new Cell() { CellReference = "AN59", StyleIndex = (UInt32Value)6U }; Cell cell2913 = new Cell() { CellReference = "AO59", StyleIndex = (UInt32Value)6U }; Cell cell2914 = new Cell() { CellReference = "AP59", StyleIndex = (UInt32Value)6U }; Cell cell2915 = new Cell() { CellReference = "AQ59", StyleIndex = (UInt32Value)6U }; Cell cell2916 = new Cell() { CellReference = "AR59", StyleIndex = (UInt32Value)6U }; Cell cell2917 = new Cell() { CellReference = "AS59", StyleIndex = (UInt32Value)6U }; Cell cell2918 = new Cell() { CellReference = "AT59", StyleIndex = (UInt32Value)6U }; Cell cell2919 = new Cell() { CellReference = "AU59", StyleIndex = (UInt32Value)6U }; Cell cell2920 = new Cell() { CellReference = "AV59", StyleIndex = (UInt32Value)6U }; row63.Append(cell2873); row63.Append(cell2874); row63.Append(cell2875); row63.Append(cell2876); row63.Append(cell2877); row63.Append(cell2878); row63.Append(cell2879); row63.Append(cell2880); row63.Append(cell2881); row63.Append(cell2882); row63.Append(cell2883); row63.Append(cell2884); row63.Append(cell2885); row63.Append(cell2886); row63.Append(cell2887); row63.Append(cell2888); row63.Append(cell2889); row63.Append(cell2890); row63.Append(cell2891); row63.Append(cell2892); row63.Append(cell2893); row63.Append(cell2894); row63.Append(cell2895); row63.Append(cell2896); row63.Append(cell2897); row63.Append(cell2898); row63.Append(cell2899); row63.Append(cell2900); row63.Append(cell2901); row63.Append(cell2902); row63.Append(cell2903); row63.Append(cell2904); row63.Append(cell2905); row63.Append(cell2906); row63.Append(cell2907); row63.Append(cell2908); row63.Append(cell2909); row63.Append(cell2910); row63.Append(cell2911); row63.Append(cell2912); row63.Append(cell2913); row63.Append(cell2914); row63.Append(cell2915); row63.Append(cell2916); row63.Append(cell2917); row63.Append(cell2918); row63.Append(cell2919); row63.Append(cell2920); Row row64 = new Row() { RowIndex = (UInt32Value)60U, Spans = new ListValue() { InnerText = "1:48" }, Height = 11.25D, CustomHeight = true }; Cell cell2921 = new Cell() { CellReference = "A60", StyleIndex = (UInt32Value)6U }; Cell cell2922 = new Cell() { CellReference = "B60", StyleIndex = (UInt32Value)6U }; Cell cell2923 = new Cell() { CellReference = "C60", StyleIndex = (UInt32Value)6U }; Cell cell2924 = new Cell() { CellReference = "D60", StyleIndex = (UInt32Value)6U }; Cell cell2925 = new Cell() { CellReference = "E60", StyleIndex = (UInt32Value)6U }; Cell cell2926 = new Cell() { CellReference = "F60", StyleIndex = (UInt32Value)6U }; Cell cell2927 = new Cell() { CellReference = "G60", StyleIndex = (UInt32Value)6U }; Cell cell2928 = new Cell() { CellReference = "H60", StyleIndex = (UInt32Value)6U }; Cell cell2929 = new Cell() { CellReference = "I60", StyleIndex = (UInt32Value)6U }; Cell cell2930 = new Cell() { CellReference = "J60", StyleIndex = (UInt32Value)6U }; Cell cell2931 = new Cell() { CellReference = "K60", StyleIndex = (UInt32Value)6U }; Cell cell2932 = new Cell() { CellReference = "L60", StyleIndex = (UInt32Value)6U }; Cell cell2933 = new Cell() { CellReference = "M60", StyleIndex = (UInt32Value)6U }; Cell cell2934 = new Cell() { CellReference = "N60", StyleIndex = (UInt32Value)6U }; Cell cell2935 = new Cell() { CellReference = "O60", StyleIndex = (UInt32Value)6U }; Cell cell2936 = new Cell() { CellReference = "P60", StyleIndex = (UInt32Value)6U }; Cell cell2937 = new Cell() { CellReference = "Q60", StyleIndex = (UInt32Value)6U }; Cell cell2938 = new Cell() { CellReference = "R60", StyleIndex = (UInt32Value)6U }; Cell cell2939 = new Cell() { CellReference = "S60", StyleIndex = (UInt32Value)3U }; Cell cell2940 = new Cell() { CellReference = "T60", StyleIndex = (UInt32Value)3U }; Cell cell2941 = new Cell() { CellReference = "U60", StyleIndex = (UInt32Value)3U }; Cell cell2942 = new Cell() { CellReference = "V60", StyleIndex = (UInt32Value)3U }; Cell cell2943 = new Cell() { CellReference = "W60", StyleIndex = (UInt32Value)3U }; Cell cell2944 = new Cell() { CellReference = "X60", StyleIndex = (UInt32Value)3U }; Cell cell2945 = new Cell() { CellReference = "Y60", StyleIndex = (UInt32Value)6U }; Cell cell2946 = new Cell() { CellReference = "Z60", StyleIndex = (UInt32Value)6U }; Cell cell2947 = new Cell() { CellReference = "AA60", StyleIndex = (UInt32Value)6U }; Cell cell2948 = new Cell() { CellReference = "AB60", StyleIndex = (UInt32Value)6U }; Cell cell2949 = new Cell() { CellReference = "AC60", StyleIndex = (UInt32Value)6U }; Cell cell2950 = new Cell() { CellReference = "AD60", StyleIndex = (UInt32Value)6U }; Cell cell2951 = new Cell() { CellReference = "AE60", StyleIndex = (UInt32Value)6U }; Cell cell2952 = new Cell() { CellReference = "AF60", StyleIndex = (UInt32Value)6U }; Cell cell2953 = new Cell() { CellReference = "AG60", StyleIndex = (UInt32Value)6U }; Cell cell2954 = new Cell() { CellReference = "AH60", StyleIndex = (UInt32Value)6U }; Cell cell2955 = new Cell() { CellReference = "AI60", StyleIndex = (UInt32Value)6U }; Cell cell2956 = new Cell() { CellReference = "AJ60", StyleIndex = (UInt32Value)6U }; Cell cell2957 = new Cell() { CellReference = "AK60", StyleIndex = (UInt32Value)6U }; Cell cell2958 = new Cell() { CellReference = "AL60", StyleIndex = (UInt32Value)6U }; Cell cell2959 = new Cell() { CellReference = "AM60", StyleIndex = (UInt32Value)6U }; Cell cell2960 = new Cell() { CellReference = "AN60", StyleIndex = (UInt32Value)6U }; Cell cell2961 = new Cell() { CellReference = "AO60", StyleIndex = (UInt32Value)6U }; Cell cell2962 = new Cell() { CellReference = "AP60", StyleIndex = (UInt32Value)6U }; Cell cell2963 = new Cell() { CellReference = "AQ60", StyleIndex = (UInt32Value)6U }; Cell cell2964 = new Cell() { CellReference = "AR60", StyleIndex = (UInt32Value)6U }; Cell cell2965 = new Cell() { CellReference = "AS60", StyleIndex = (UInt32Value)6U }; Cell cell2966 = new Cell() { CellReference = "AT60", StyleIndex = (UInt32Value)6U }; Cell cell2967 = new Cell() { CellReference = "AU60", StyleIndex = (UInt32Value)6U }; Cell cell2968 = new Cell() { CellReference = "AV60", StyleIndex = (UInt32Value)6U }; row64.Append(cell2921); row64.Append(cell2922); row64.Append(cell2923); row64.Append(cell2924); row64.Append(cell2925); row64.Append(cell2926); row64.Append(cell2927); row64.Append(cell2928); row64.Append(cell2929); row64.Append(cell2930); row64.Append(cell2931); row64.Append(cell2932); row64.Append(cell2933); row64.Append(cell2934); row64.Append(cell2935); row64.Append(cell2936); row64.Append(cell2937); row64.Append(cell2938); row64.Append(cell2939); row64.Append(cell2940); row64.Append(cell2941); row64.Append(cell2942); row64.Append(cell2943); row64.Append(cell2944); row64.Append(cell2945); row64.Append(cell2946); row64.Append(cell2947); row64.Append(cell2948); row64.Append(cell2949); row64.Append(cell2950); row64.Append(cell2951); row64.Append(cell2952); row64.Append(cell2953); row64.Append(cell2954); row64.Append(cell2955); row64.Append(cell2956); row64.Append(cell2957); row64.Append(cell2958); row64.Append(cell2959); row64.Append(cell2960); row64.Append(cell2961); row64.Append(cell2962); row64.Append(cell2963); row64.Append(cell2964); row64.Append(cell2965); row64.Append(cell2966); row64.Append(cell2967); row64.Append(cell2968); Row row65 = new Row() { RowIndex = (UInt32Value)61U, Spans = new ListValue() { InnerText = "1:48" }, Height = 11.25D, CustomHeight = true }; Cell cell2969 = new Cell() { CellReference = "A61", StyleIndex = (UInt32Value)6U }; Cell cell2970 = new Cell() { CellReference = "B61", StyleIndex = (UInt32Value)6U }; Cell cell2971 = new Cell() { CellReference = "C61", StyleIndex = (UInt32Value)6U }; Cell cell2972 = new Cell() { CellReference = "D61", StyleIndex = (UInt32Value)6U }; Cell cell2973 = new Cell() { CellReference = "E61", StyleIndex = (UInt32Value)6U }; Cell cell2974 = new Cell() { CellReference = "F61", StyleIndex = (UInt32Value)6U }; Cell cell2975 = new Cell() { CellReference = "G61", StyleIndex = (UInt32Value)6U }; Cell cell2976 = new Cell() { CellReference = "H61", StyleIndex = (UInt32Value)6U }; Cell cell2977 = new Cell() { CellReference = "I61", StyleIndex = (UInt32Value)6U }; Cell cell2978 = new Cell() { CellReference = "J61", StyleIndex = (UInt32Value)6U }; Cell cell2979 = new Cell() { CellReference = "K61", StyleIndex = (UInt32Value)6U }; Cell cell2980 = new Cell() { CellReference = "L61", StyleIndex = (UInt32Value)6U }; Cell cell2981 = new Cell() { CellReference = "M61", StyleIndex = (UInt32Value)6U }; Cell cell2982 = new Cell() { CellReference = "N61", StyleIndex = (UInt32Value)6U }; Cell cell2983 = new Cell() { CellReference = "O61", StyleIndex = (UInt32Value)6U }; Cell cell2984 = new Cell() { CellReference = "P61", StyleIndex = (UInt32Value)6U }; Cell cell2985 = new Cell() { CellReference = "Q61", StyleIndex = (UInt32Value)6U }; Cell cell2986 = new Cell() { CellReference = "R61", StyleIndex = (UInt32Value)6U }; Cell cell2987 = new Cell() { CellReference = "S61", StyleIndex = (UInt32Value)3U }; Cell cell2988 = new Cell() { CellReference = "T61", StyleIndex = (UInt32Value)3U }; Cell cell2989 = new Cell() { CellReference = "U61", StyleIndex = (UInt32Value)3U }; Cell cell2990 = new Cell() { CellReference = "V61", StyleIndex = (UInt32Value)3U }; Cell cell2991 = new Cell() { CellReference = "W61", StyleIndex = (UInt32Value)3U }; Cell cell2992 = new Cell() { CellReference = "X61", StyleIndex = (UInt32Value)3U }; Cell cell2993 = new Cell() { CellReference = "Y61", StyleIndex = (UInt32Value)6U }; Cell cell2994 = new Cell() { CellReference = "Z61", StyleIndex = (UInt32Value)6U }; Cell cell2995 = new Cell() { CellReference = "AA61", StyleIndex = (UInt32Value)6U }; Cell cell2996 = new Cell() { CellReference = "AB61", StyleIndex = (UInt32Value)6U }; Cell cell2997 = new Cell() { CellReference = "AC61", StyleIndex = (UInt32Value)6U }; Cell cell2998 = new Cell() { CellReference = "AD61", StyleIndex = (UInt32Value)6U }; Cell cell2999 = new Cell() { CellReference = "AE61", StyleIndex = (UInt32Value)6U }; Cell cell3000 = new Cell() { CellReference = "AF61", StyleIndex = (UInt32Value)6U }; Cell cell3001 = new Cell() { CellReference = "AG61", StyleIndex = (UInt32Value)6U }; Cell cell3002 = new Cell() { CellReference = "AH61", StyleIndex = (UInt32Value)6U }; Cell cell3003 = new Cell() { CellReference = "AI61", StyleIndex = (UInt32Value)6U }; Cell cell3004 = new Cell() { CellReference = "AJ61", StyleIndex = (UInt32Value)6U }; Cell cell3005 = new Cell() { CellReference = "AK61", StyleIndex = (UInt32Value)6U }; Cell cell3006 = new Cell() { CellReference = "AL61", StyleIndex = (UInt32Value)6U }; Cell cell3007 = new Cell() { CellReference = "AM61", StyleIndex = (UInt32Value)6U }; Cell cell3008 = new Cell() { CellReference = "AN61", StyleIndex = (UInt32Value)6U }; Cell cell3009 = new Cell() { CellReference = "AO61", StyleIndex = (UInt32Value)6U }; Cell cell3010 = new Cell() { CellReference = "AP61", StyleIndex = (UInt32Value)6U }; Cell cell3011 = new Cell() { CellReference = "AQ61", StyleIndex = (UInt32Value)6U }; Cell cell3012 = new Cell() { CellReference = "AR61", StyleIndex = (UInt32Value)6U }; Cell cell3013 = new Cell() { CellReference = "AS61", StyleIndex = (UInt32Value)6U }; Cell cell3014 = new Cell() { CellReference = "AT61", StyleIndex = (UInt32Value)6U }; Cell cell3015 = new Cell() { CellReference = "AU61", StyleIndex = (UInt32Value)6U }; Cell cell3016 = new Cell() { CellReference = "AV61", StyleIndex = (UInt32Value)6U }; row65.Append(cell2969); row65.Append(cell2970); row65.Append(cell2971); row65.Append(cell2972); row65.Append(cell2973); row65.Append(cell2974); row65.Append(cell2975); row65.Append(cell2976); row65.Append(cell2977); row65.Append(cell2978); row65.Append(cell2979); row65.Append(cell2980); row65.Append(cell2981); row65.Append(cell2982); row65.Append(cell2983); row65.Append(cell2984); row65.Append(cell2985); row65.Append(cell2986); row65.Append(cell2987); row65.Append(cell2988); row65.Append(cell2989); row65.Append(cell2990); row65.Append(cell2991); row65.Append(cell2992); row65.Append(cell2993); row65.Append(cell2994); row65.Append(cell2995); row65.Append(cell2996); row65.Append(cell2997); row65.Append(cell2998); row65.Append(cell2999); row65.Append(cell3000); row65.Append(cell3001); row65.Append(cell3002); row65.Append(cell3003); row65.Append(cell3004); row65.Append(cell3005); row65.Append(cell3006); row65.Append(cell3007); row65.Append(cell3008); row65.Append(cell3009); row65.Append(cell3010); row65.Append(cell3011); row65.Append(cell3012); row65.Append(cell3013); row65.Append(cell3014); row65.Append(cell3015); row65.Append(cell3016); Row row66 = new Row() { RowIndex = (UInt32Value)62U, Spans = new ListValue() { InnerText = "1:48" }, Height = 11.25D, CustomHeight = true }; Cell cell3017 = new Cell() { CellReference = "A62", StyleIndex = (UInt32Value)6U }; Cell cell3018 = new Cell() { CellReference = "B62", StyleIndex = (UInt32Value)6U }; Cell cell3019 = new Cell() { CellReference = "C62", StyleIndex = (UInt32Value)6U }; Cell cell3020 = new Cell() { CellReference = "D62", StyleIndex = (UInt32Value)6U }; Cell cell3021 = new Cell() { CellReference = "E62", StyleIndex = (UInt32Value)6U }; Cell cell3022 = new Cell() { CellReference = "F62", StyleIndex = (UInt32Value)6U }; Cell cell3023 = new Cell() { CellReference = "G62", StyleIndex = (UInt32Value)6U }; Cell cell3024 = new Cell() { CellReference = "H62", StyleIndex = (UInt32Value)6U }; Cell cell3025 = new Cell() { CellReference = "I62", StyleIndex = (UInt32Value)6U }; Cell cell3026 = new Cell() { CellReference = "J62", StyleIndex = (UInt32Value)6U }; Cell cell3027 = new Cell() { CellReference = "K62", StyleIndex = (UInt32Value)6U }; Cell cell3028 = new Cell() { CellReference = "L62", StyleIndex = (UInt32Value)6U }; Cell cell3029 = new Cell() { CellReference = "M62", StyleIndex = (UInt32Value)6U }; Cell cell3030 = new Cell() { CellReference = "N62", StyleIndex = (UInt32Value)6U }; Cell cell3031 = new Cell() { CellReference = "O62", StyleIndex = (UInt32Value)6U }; Cell cell3032 = new Cell() { CellReference = "P62", StyleIndex = (UInt32Value)6U }; Cell cell3033 = new Cell() { CellReference = "Q62", StyleIndex = (UInt32Value)6U }; Cell cell3034 = new Cell() { CellReference = "R62", StyleIndex = (UInt32Value)6U }; Cell cell3035 = new Cell() { CellReference = "S62", StyleIndex = (UInt32Value)3U }; Cell cell3036 = new Cell() { CellReference = "T62", StyleIndex = (UInt32Value)3U }; Cell cell3037 = new Cell() { CellReference = "U62", StyleIndex = (UInt32Value)3U }; Cell cell3038 = new Cell() { CellReference = "V62", StyleIndex = (UInt32Value)3U }; Cell cell3039 = new Cell() { CellReference = "W62", StyleIndex = (UInt32Value)3U }; Cell cell3040 = new Cell() { CellReference = "X62", StyleIndex = (UInt32Value)3U }; Cell cell3041 = new Cell() { CellReference = "Y62", StyleIndex = (UInt32Value)6U }; Cell cell3042 = new Cell() { CellReference = "Z62", StyleIndex = (UInt32Value)6U }; Cell cell3043 = new Cell() { CellReference = "AA62", StyleIndex = (UInt32Value)6U }; Cell cell3044 = new Cell() { CellReference = "AB62", StyleIndex = (UInt32Value)6U }; Cell cell3045 = new Cell() { CellReference = "AC62", StyleIndex = (UInt32Value)6U }; Cell cell3046 = new Cell() { CellReference = "AD62", StyleIndex = (UInt32Value)6U }; Cell cell3047 = new Cell() { CellReference = "AE62", StyleIndex = (UInt32Value)6U }; Cell cell3048 = new Cell() { CellReference = "AF62", StyleIndex = (UInt32Value)6U }; Cell cell3049 = new Cell() { CellReference = "AG62", StyleIndex = (UInt32Value)6U }; Cell cell3050 = new Cell() { CellReference = "AH62", StyleIndex = (UInt32Value)6U }; Cell cell3051 = new Cell() { CellReference = "AI62", StyleIndex = (UInt32Value)6U }; Cell cell3052 = new Cell() { CellReference = "AJ62", StyleIndex = (UInt32Value)6U }; Cell cell3053 = new Cell() { CellReference = "AK62", StyleIndex = (UInt32Value)6U }; Cell cell3054 = new Cell() { CellReference = "AL62", StyleIndex = (UInt32Value)6U }; Cell cell3055 = new Cell() { CellReference = "AM62", StyleIndex = (UInt32Value)6U }; Cell cell3056 = new Cell() { CellReference = "AN62", StyleIndex = (UInt32Value)6U }; Cell cell3057 = new Cell() { CellReference = "AO62", StyleIndex = (UInt32Value)6U }; Cell cell3058 = new Cell() { CellReference = "AP62", StyleIndex = (UInt32Value)6U }; Cell cell3059 = new Cell() { CellReference = "AQ62", StyleIndex = (UInt32Value)6U }; Cell cell3060 = new Cell() { CellReference = "AR62", StyleIndex = (UInt32Value)6U }; Cell cell3061 = new Cell() { CellReference = "AS62", StyleIndex = (UInt32Value)6U }; Cell cell3062 = new Cell() { CellReference = "AT62", StyleIndex = (UInt32Value)6U }; Cell cell3063 = new Cell() { CellReference = "AU62", StyleIndex = (UInt32Value)6U }; Cell cell3064 = new Cell() { CellReference = "AV62", StyleIndex = (UInt32Value)6U }; row66.Append(cell3017); row66.Append(cell3018); row66.Append(cell3019); row66.Append(cell3020); row66.Append(cell3021); row66.Append(cell3022); row66.Append(cell3023); row66.Append(cell3024); row66.Append(cell3025); row66.Append(cell3026); row66.Append(cell3027); row66.Append(cell3028); row66.Append(cell3029); row66.Append(cell3030); row66.Append(cell3031); row66.Append(cell3032); row66.Append(cell3033); row66.Append(cell3034); row66.Append(cell3035); row66.Append(cell3036); row66.Append(cell3037); row66.Append(cell3038); row66.Append(cell3039); row66.Append(cell3040); row66.Append(cell3041); row66.Append(cell3042); row66.Append(cell3043); row66.Append(cell3044); row66.Append(cell3045); row66.Append(cell3046); row66.Append(cell3047); row66.Append(cell3048); row66.Append(cell3049); row66.Append(cell3050); row66.Append(cell3051); row66.Append(cell3052); row66.Append(cell3053); row66.Append(cell3054); row66.Append(cell3055); row66.Append(cell3056); row66.Append(cell3057); row66.Append(cell3058); row66.Append(cell3059); row66.Append(cell3060); row66.Append(cell3061); row66.Append(cell3062); row66.Append(cell3063); row66.Append(cell3064); Row row67 = new Row() { RowIndex = (UInt32Value)63U, Spans = new ListValue() { InnerText = "1:48" }, Height = 11.25D, CustomHeight = true }; Cell cell3065 = new Cell() { CellReference = "A63", StyleIndex = (UInt32Value)6U }; Cell cell3066 = new Cell() { CellReference = "B63", StyleIndex = (UInt32Value)6U }; Cell cell3067 = new Cell() { CellReference = "C63", StyleIndex = (UInt32Value)6U }; Cell cell3068 = new Cell() { CellReference = "D63", StyleIndex = (UInt32Value)6U }; Cell cell3069 = new Cell() { CellReference = "E63", StyleIndex = (UInt32Value)6U }; Cell cell3070 = new Cell() { CellReference = "F63", StyleIndex = (UInt32Value)6U }; Cell cell3071 = new Cell() { CellReference = "G63", StyleIndex = (UInt32Value)6U }; Cell cell3072 = new Cell() { CellReference = "H63", StyleIndex = (UInt32Value)6U }; Cell cell3073 = new Cell() { CellReference = "I63", StyleIndex = (UInt32Value)6U }; Cell cell3074 = new Cell() { CellReference = "J63", StyleIndex = (UInt32Value)6U }; Cell cell3075 = new Cell() { CellReference = "K63", StyleIndex = (UInt32Value)6U }; Cell cell3076 = new Cell() { CellReference = "L63", StyleIndex = (UInt32Value)6U }; Cell cell3077 = new Cell() { CellReference = "M63", StyleIndex = (UInt32Value)6U }; Cell cell3078 = new Cell() { CellReference = "N63", StyleIndex = (UInt32Value)6U }; Cell cell3079 = new Cell() { CellReference = "O63", StyleIndex = (UInt32Value)6U }; Cell cell3080 = new Cell() { CellReference = "P63", StyleIndex = (UInt32Value)6U }; Cell cell3081 = new Cell() { CellReference = "Q63", StyleIndex = (UInt32Value)6U }; Cell cell3082 = new Cell() { CellReference = "R63", StyleIndex = (UInt32Value)6U }; Cell cell3083 = new Cell() { CellReference = "S63", StyleIndex = (UInt32Value)3U }; Cell cell3084 = new Cell() { CellReference = "T63", StyleIndex = (UInt32Value)3U }; Cell cell3085 = new Cell() { CellReference = "U63", StyleIndex = (UInt32Value)3U }; Cell cell3086 = new Cell() { CellReference = "V63", StyleIndex = (UInt32Value)3U }; Cell cell3087 = new Cell() { CellReference = "W63", StyleIndex = (UInt32Value)3U }; Cell cell3088 = new Cell() { CellReference = "X63", StyleIndex = (UInt32Value)3U }; Cell cell3089 = new Cell() { CellReference = "Y63", StyleIndex = (UInt32Value)6U }; Cell cell3090 = new Cell() { CellReference = "Z63", StyleIndex = (UInt32Value)6U }; Cell cell3091 = new Cell() { CellReference = "AA63", StyleIndex = (UInt32Value)6U }; Cell cell3092 = new Cell() { CellReference = "AB63", StyleIndex = (UInt32Value)6U }; Cell cell3093 = new Cell() { CellReference = "AC63", StyleIndex = (UInt32Value)6U }; Cell cell3094 = new Cell() { CellReference = "AD63", StyleIndex = (UInt32Value)6U }; Cell cell3095 = new Cell() { CellReference = "AE63", StyleIndex = (UInt32Value)6U }; Cell cell3096 = new Cell() { CellReference = "AF63", StyleIndex = (UInt32Value)6U }; Cell cell3097 = new Cell() { CellReference = "AG63", StyleIndex = (UInt32Value)6U }; Cell cell3098 = new Cell() { CellReference = "AH63", StyleIndex = (UInt32Value)6U }; Cell cell3099 = new Cell() { CellReference = "AI63", StyleIndex = (UInt32Value)6U }; Cell cell3100 = new Cell() { CellReference = "AJ63", StyleIndex = (UInt32Value)6U }; Cell cell3101 = new Cell() { CellReference = "AK63", StyleIndex = (UInt32Value)6U }; Cell cell3102 = new Cell() { CellReference = "AL63", StyleIndex = (UInt32Value)6U }; Cell cell3103 = new Cell() { CellReference = "AM63", StyleIndex = (UInt32Value)6U }; Cell cell3104 = new Cell() { CellReference = "AN63", StyleIndex = (UInt32Value)6U }; Cell cell3105 = new Cell() { CellReference = "AO63", StyleIndex = (UInt32Value)6U }; Cell cell3106 = new Cell() { CellReference = "AP63", StyleIndex = (UInt32Value)6U }; Cell cell3107 = new Cell() { CellReference = "AQ63", StyleIndex = (UInt32Value)6U }; Cell cell3108 = new Cell() { CellReference = "AR63", StyleIndex = (UInt32Value)6U }; Cell cell3109 = new Cell() { CellReference = "AS63", StyleIndex = (UInt32Value)6U }; Cell cell3110 = new Cell() { CellReference = "AT63", StyleIndex = (UInt32Value)6U }; Cell cell3111 = new Cell() { CellReference = "AU63", StyleIndex = (UInt32Value)6U }; Cell cell3112 = new Cell() { CellReference = "AV63", StyleIndex = (UInt32Value)6U }; row67.Append(cell3065); row67.Append(cell3066); row67.Append(cell3067); row67.Append(cell3068); row67.Append(cell3069); row67.Append(cell3070); row67.Append(cell3071); row67.Append(cell3072); row67.Append(cell3073); row67.Append(cell3074); row67.Append(cell3075); row67.Append(cell3076); row67.Append(cell3077); row67.Append(cell3078); row67.Append(cell3079); row67.Append(cell3080); row67.Append(cell3081); row67.Append(cell3082); row67.Append(cell3083); row67.Append(cell3084); row67.Append(cell3085); row67.Append(cell3086); row67.Append(cell3087); row67.Append(cell3088); row67.Append(cell3089); row67.Append(cell3090); row67.Append(cell3091); row67.Append(cell3092); row67.Append(cell3093); row67.Append(cell3094); row67.Append(cell3095); row67.Append(cell3096); row67.Append(cell3097); row67.Append(cell3098); row67.Append(cell3099); row67.Append(cell3100); row67.Append(cell3101); row67.Append(cell3102); row67.Append(cell3103); row67.Append(cell3104); row67.Append(cell3105); row67.Append(cell3106); row67.Append(cell3107); row67.Append(cell3108); row67.Append(cell3109); row67.Append(cell3110); row67.Append(cell3111); row67.Append(cell3112); Row row68 = new Row() { RowIndex = (UInt32Value)64U, Spans = new ListValue() { InnerText = "1:48" }, Height = 11.25D, CustomHeight = true }; Cell cell3113 = new Cell() { CellReference = "A64", StyleIndex = (UInt32Value)6U }; Cell cell3114 = new Cell() { CellReference = "B64", StyleIndex = (UInt32Value)6U }; Cell cell3115 = new Cell() { CellReference = "C64", StyleIndex = (UInt32Value)6U }; Cell cell3116 = new Cell() { CellReference = "D64", StyleIndex = (UInt32Value)6U }; Cell cell3117 = new Cell() { CellReference = "E64", StyleIndex = (UInt32Value)6U }; Cell cell3118 = new Cell() { CellReference = "F64", StyleIndex = (UInt32Value)6U }; Cell cell3119 = new Cell() { CellReference = "G64", StyleIndex = (UInt32Value)6U }; Cell cell3120 = new Cell() { CellReference = "H64", StyleIndex = (UInt32Value)6U }; Cell cell3121 = new Cell() { CellReference = "I64", StyleIndex = (UInt32Value)6U }; Cell cell3122 = new Cell() { CellReference = "J64", StyleIndex = (UInt32Value)6U }; Cell cell3123 = new Cell() { CellReference = "K64", StyleIndex = (UInt32Value)6U }; Cell cell3124 = new Cell() { CellReference = "L64", StyleIndex = (UInt32Value)6U }; Cell cell3125 = new Cell() { CellReference = "M64", StyleIndex = (UInt32Value)6U }; Cell cell3126 = new Cell() { CellReference = "N64", StyleIndex = (UInt32Value)6U }; Cell cell3127 = new Cell() { CellReference = "O64", StyleIndex = (UInt32Value)6U }; Cell cell3128 = new Cell() { CellReference = "P64", StyleIndex = (UInt32Value)6U }; Cell cell3129 = new Cell() { CellReference = "Q64", StyleIndex = (UInt32Value)6U }; Cell cell3130 = new Cell() { CellReference = "R64", StyleIndex = (UInt32Value)6U }; Cell cell3131 = new Cell() { CellReference = "S64", StyleIndex = (UInt32Value)3U }; Cell cell3132 = new Cell() { CellReference = "T64", StyleIndex = (UInt32Value)3U }; Cell cell3133 = new Cell() { CellReference = "U64", StyleIndex = (UInt32Value)3U }; Cell cell3134 = new Cell() { CellReference = "V64", StyleIndex = (UInt32Value)3U }; Cell cell3135 = new Cell() { CellReference = "W64", StyleIndex = (UInt32Value)3U }; Cell cell3136 = new Cell() { CellReference = "X64", StyleIndex = (UInt32Value)3U }; Cell cell3137 = new Cell() { CellReference = "Y64", StyleIndex = (UInt32Value)6U }; Cell cell3138 = new Cell() { CellReference = "Z64", StyleIndex = (UInt32Value)6U }; Cell cell3139 = new Cell() { CellReference = "AA64", StyleIndex = (UInt32Value)6U }; Cell cell3140 = new Cell() { CellReference = "AB64", StyleIndex = (UInt32Value)6U }; Cell cell3141 = new Cell() { CellReference = "AC64", StyleIndex = (UInt32Value)6U }; Cell cell3142 = new Cell() { CellReference = "AD64", StyleIndex = (UInt32Value)6U }; Cell cell3143 = new Cell() { CellReference = "AE64", StyleIndex = (UInt32Value)6U }; Cell cell3144 = new Cell() { CellReference = "AF64", StyleIndex = (UInt32Value)6U }; Cell cell3145 = new Cell() { CellReference = "AG64", StyleIndex = (UInt32Value)6U }; Cell cell3146 = new Cell() { CellReference = "AH64", StyleIndex = (UInt32Value)6U }; Cell cell3147 = new Cell() { CellReference = "AI64", StyleIndex = (UInt32Value)6U }; Cell cell3148 = new Cell() { CellReference = "AJ64", StyleIndex = (UInt32Value)6U }; Cell cell3149 = new Cell() { CellReference = "AK64", StyleIndex = (UInt32Value)6U }; Cell cell3150 = new Cell() { CellReference = "AL64", StyleIndex = (UInt32Value)6U }; Cell cell3151 = new Cell() { CellReference = "AM64", StyleIndex = (UInt32Value)6U }; Cell cell3152 = new Cell() { CellReference = "AN64", StyleIndex = (UInt32Value)6U }; Cell cell3153 = new Cell() { CellReference = "AO64", StyleIndex = (UInt32Value)6U }; Cell cell3154 = new Cell() { CellReference = "AP64", StyleIndex = (UInt32Value)6U }; Cell cell3155 = new Cell() { CellReference = "AQ64", StyleIndex = (UInt32Value)6U }; Cell cell3156 = new Cell() { CellReference = "AR64", StyleIndex = (UInt32Value)6U }; Cell cell3157 = new Cell() { CellReference = "AS64", StyleIndex = (UInt32Value)6U }; Cell cell3158 = new Cell() { CellReference = "AT64", StyleIndex = (UInt32Value)6U }; Cell cell3159 = new Cell() { CellReference = "AU64", StyleIndex = (UInt32Value)6U }; Cell cell3160 = new Cell() { CellReference = "AV64", StyleIndex = (UInt32Value)6U }; row68.Append(cell3113); row68.Append(cell3114); row68.Append(cell3115); row68.Append(cell3116); row68.Append(cell3117); row68.Append(cell3118); row68.Append(cell3119); row68.Append(cell3120); row68.Append(cell3121); row68.Append(cell3122); row68.Append(cell3123); row68.Append(cell3124); row68.Append(cell3125); row68.Append(cell3126); row68.Append(cell3127); row68.Append(cell3128); row68.Append(cell3129); row68.Append(cell3130); row68.Append(cell3131); row68.Append(cell3132); row68.Append(cell3133); row68.Append(cell3134); row68.Append(cell3135); row68.Append(cell3136); row68.Append(cell3137); row68.Append(cell3138); row68.Append(cell3139); row68.Append(cell3140); row68.Append(cell3141); row68.Append(cell3142); row68.Append(cell3143); row68.Append(cell3144); row68.Append(cell3145); row68.Append(cell3146); row68.Append(cell3147); row68.Append(cell3148); row68.Append(cell3149); row68.Append(cell3150); row68.Append(cell3151); row68.Append(cell3152); row68.Append(cell3153); row68.Append(cell3154); row68.Append(cell3155); row68.Append(cell3156); row68.Append(cell3157); row68.Append(cell3158); row68.Append(cell3159); row68.Append(cell3160); Row row69 = new Row() { RowIndex = (UInt32Value)65U, Spans = new ListValue() { InnerText = "1:48" }, Height = 11.25D, CustomHeight = true }; Cell cell3161 = new Cell() { CellReference = "A65", StyleIndex = (UInt32Value)6U }; Cell cell3162 = new Cell() { CellReference = "B65", StyleIndex = (UInt32Value)6U }; Cell cell3163 = new Cell() { CellReference = "C65", StyleIndex = (UInt32Value)6U }; Cell cell3164 = new Cell() { CellReference = "D65", StyleIndex = (UInt32Value)6U }; Cell cell3165 = new Cell() { CellReference = "E65", StyleIndex = (UInt32Value)6U }; Cell cell3166 = new Cell() { CellReference = "F65", StyleIndex = (UInt32Value)6U }; Cell cell3167 = new Cell() { CellReference = "G65", StyleIndex = (UInt32Value)6U }; Cell cell3168 = new Cell() { CellReference = "H65", StyleIndex = (UInt32Value)6U }; Cell cell3169 = new Cell() { CellReference = "I65", StyleIndex = (UInt32Value)6U }; Cell cell3170 = new Cell() { CellReference = "J65", StyleIndex = (UInt32Value)6U }; Cell cell3171 = new Cell() { CellReference = "K65", StyleIndex = (UInt32Value)6U }; Cell cell3172 = new Cell() { CellReference = "L65", StyleIndex = (UInt32Value)6U }; Cell cell3173 = new Cell() { CellReference = "M65", StyleIndex = (UInt32Value)6U }; Cell cell3174 = new Cell() { CellReference = "N65", StyleIndex = (UInt32Value)6U }; Cell cell3175 = new Cell() { CellReference = "O65", StyleIndex = (UInt32Value)6U }; Cell cell3176 = new Cell() { CellReference = "P65", StyleIndex = (UInt32Value)6U }; Cell cell3177 = new Cell() { CellReference = "Q65", StyleIndex = (UInt32Value)6U }; Cell cell3178 = new Cell() { CellReference = "R65", StyleIndex = (UInt32Value)6U }; Cell cell3179 = new Cell() { CellReference = "S65", StyleIndex = (UInt32Value)3U }; Cell cell3180 = new Cell() { CellReference = "T65", StyleIndex = (UInt32Value)3U }; Cell cell3181 = new Cell() { CellReference = "U65", StyleIndex = (UInt32Value)3U }; Cell cell3182 = new Cell() { CellReference = "V65", StyleIndex = (UInt32Value)3U }; Cell cell3183 = new Cell() { CellReference = "W65", StyleIndex = (UInt32Value)3U }; Cell cell3184 = new Cell() { CellReference = "X65", StyleIndex = (UInt32Value)3U }; Cell cell3185 = new Cell() { CellReference = "Y65", StyleIndex = (UInt32Value)6U }; Cell cell3186 = new Cell() { CellReference = "Z65", StyleIndex = (UInt32Value)6U }; Cell cell3187 = new Cell() { CellReference = "AA65", StyleIndex = (UInt32Value)6U }; Cell cell3188 = new Cell() { CellReference = "AB65", StyleIndex = (UInt32Value)6U }; Cell cell3189 = new Cell() { CellReference = "AC65", StyleIndex = (UInt32Value)6U }; Cell cell3190 = new Cell() { CellReference = "AD65", StyleIndex = (UInt32Value)6U }; Cell cell3191 = new Cell() { CellReference = "AE65", StyleIndex = (UInt32Value)6U }; Cell cell3192 = new Cell() { CellReference = "AF65", StyleIndex = (UInt32Value)6U }; Cell cell3193 = new Cell() { CellReference = "AG65", StyleIndex = (UInt32Value)6U }; Cell cell3194 = new Cell() { CellReference = "AH65", StyleIndex = (UInt32Value)6U }; Cell cell3195 = new Cell() { CellReference = "AI65", StyleIndex = (UInt32Value)6U }; Cell cell3196 = new Cell() { CellReference = "AJ65", StyleIndex = (UInt32Value)6U }; Cell cell3197 = new Cell() { CellReference = "AK65", StyleIndex = (UInt32Value)6U }; Cell cell3198 = new Cell() { CellReference = "AL65", StyleIndex = (UInt32Value)6U }; Cell cell3199 = new Cell() { CellReference = "AM65", StyleIndex = (UInt32Value)6U }; Cell cell3200 = new Cell() { CellReference = "AN65", StyleIndex = (UInt32Value)6U }; Cell cell3201 = new Cell() { CellReference = "AO65", StyleIndex = (UInt32Value)6U }; Cell cell3202 = new Cell() { CellReference = "AP65", StyleIndex = (UInt32Value)6U }; Cell cell3203 = new Cell() { CellReference = "AQ65", StyleIndex = (UInt32Value)6U }; Cell cell3204 = new Cell() { CellReference = "AR65", StyleIndex = (UInt32Value)6U }; Cell cell3205 = new Cell() { CellReference = "AS65", StyleIndex = (UInt32Value)6U }; Cell cell3206 = new Cell() { CellReference = "AT65", StyleIndex = (UInt32Value)6U }; Cell cell3207 = new Cell() { CellReference = "AU65", StyleIndex = (UInt32Value)6U }; Cell cell3208 = new Cell() { CellReference = "AV65", StyleIndex = (UInt32Value)6U }; row69.Append(cell3161); row69.Append(cell3162); row69.Append(cell3163); row69.Append(cell3164); row69.Append(cell3165); row69.Append(cell3166); row69.Append(cell3167); row69.Append(cell3168); row69.Append(cell3169); row69.Append(cell3170); row69.Append(cell3171); row69.Append(cell3172); row69.Append(cell3173); row69.Append(cell3174); row69.Append(cell3175); row69.Append(cell3176); row69.Append(cell3177); row69.Append(cell3178); row69.Append(cell3179); row69.Append(cell3180); row69.Append(cell3181); row69.Append(cell3182); row69.Append(cell3183); row69.Append(cell3184); row69.Append(cell3185); row69.Append(cell3186); row69.Append(cell3187); row69.Append(cell3188); row69.Append(cell3189); row69.Append(cell3190); row69.Append(cell3191); row69.Append(cell3192); row69.Append(cell3193); row69.Append(cell3194); row69.Append(cell3195); row69.Append(cell3196); row69.Append(cell3197); row69.Append(cell3198); row69.Append(cell3199); row69.Append(cell3200); row69.Append(cell3201); row69.Append(cell3202); row69.Append(cell3203); row69.Append(cell3204); row69.Append(cell3205); row69.Append(cell3206); row69.Append(cell3207); row69.Append(cell3208); Row row70 = new Row() { RowIndex = (UInt32Value)66U, Spans = new ListValue() { InnerText = "1:48" }, Height = 11.25D, CustomHeight = true }; Cell cell3209 = new Cell() { CellReference = "A66", StyleIndex = (UInt32Value)6U }; Cell cell3210 = new Cell() { CellReference = "B66", StyleIndex = (UInt32Value)6U }; Cell cell3211 = new Cell() { CellReference = "C66", StyleIndex = (UInt32Value)6U }; Cell cell3212 = new Cell() { CellReference = "D66", StyleIndex = (UInt32Value)6U }; Cell cell3213 = new Cell() { CellReference = "E66", StyleIndex = (UInt32Value)6U }; Cell cell3214 = new Cell() { CellReference = "F66", StyleIndex = (UInt32Value)6U }; Cell cell3215 = new Cell() { CellReference = "G66", StyleIndex = (UInt32Value)6U }; Cell cell3216 = new Cell() { CellReference = "H66", StyleIndex = (UInt32Value)6U }; Cell cell3217 = new Cell() { CellReference = "I66", StyleIndex = (UInt32Value)6U }; Cell cell3218 = new Cell() { CellReference = "J66", StyleIndex = (UInt32Value)6U }; Cell cell3219 = new Cell() { CellReference = "K66", StyleIndex = (UInt32Value)6U }; Cell cell3220 = new Cell() { CellReference = "L66", StyleIndex = (UInt32Value)6U }; Cell cell3221 = new Cell() { CellReference = "M66", StyleIndex = (UInt32Value)6U }; Cell cell3222 = new Cell() { CellReference = "N66", StyleIndex = (UInt32Value)6U }; Cell cell3223 = new Cell() { CellReference = "O66", StyleIndex = (UInt32Value)6U }; Cell cell3224 = new Cell() { CellReference = "P66", StyleIndex = (UInt32Value)6U }; Cell cell3225 = new Cell() { CellReference = "Q66", StyleIndex = (UInt32Value)6U }; Cell cell3226 = new Cell() { CellReference = "R66", StyleIndex = (UInt32Value)6U }; Cell cell3227 = new Cell() { CellReference = "S66", StyleIndex = (UInt32Value)3U }; Cell cell3228 = new Cell() { CellReference = "T66", StyleIndex = (UInt32Value)3U }; Cell cell3229 = new Cell() { CellReference = "U66", StyleIndex = (UInt32Value)3U }; Cell cell3230 = new Cell() { CellReference = "V66", StyleIndex = (UInt32Value)3U }; Cell cell3231 = new Cell() { CellReference = "W66", StyleIndex = (UInt32Value)3U }; Cell cell3232 = new Cell() { CellReference = "X66", StyleIndex = (UInt32Value)3U }; Cell cell3233 = new Cell() { CellReference = "Y66", StyleIndex = (UInt32Value)6U }; Cell cell3234 = new Cell() { CellReference = "Z66", StyleIndex = (UInt32Value)6U }; Cell cell3235 = new Cell() { CellReference = "AA66", StyleIndex = (UInt32Value)6U }; Cell cell3236 = new Cell() { CellReference = "AB66", StyleIndex = (UInt32Value)6U }; Cell cell3237 = new Cell() { CellReference = "AC66", StyleIndex = (UInt32Value)6U }; Cell cell3238 = new Cell() { CellReference = "AD66", StyleIndex = (UInt32Value)6U }; Cell cell3239 = new Cell() { CellReference = "AE66", StyleIndex = (UInt32Value)6U }; Cell cell3240 = new Cell() { CellReference = "AF66", StyleIndex = (UInt32Value)6U }; Cell cell3241 = new Cell() { CellReference = "AG66", StyleIndex = (UInt32Value)6U }; Cell cell3242 = new Cell() { CellReference = "AH66", StyleIndex = (UInt32Value)6U }; Cell cell3243 = new Cell() { CellReference = "AI66", StyleIndex = (UInt32Value)6U }; Cell cell3244 = new Cell() { CellReference = "AJ66", StyleIndex = (UInt32Value)6U }; Cell cell3245 = new Cell() { CellReference = "AK66", StyleIndex = (UInt32Value)6U }; Cell cell3246 = new Cell() { CellReference = "AL66", StyleIndex = (UInt32Value)6U }; Cell cell3247 = new Cell() { CellReference = "AM66", StyleIndex = (UInt32Value)6U }; Cell cell3248 = new Cell() { CellReference = "AN66", StyleIndex = (UInt32Value)6U }; Cell cell3249 = new Cell() { CellReference = "AO66", StyleIndex = (UInt32Value)6U }; Cell cell3250 = new Cell() { CellReference = "AP66", StyleIndex = (UInt32Value)6U }; Cell cell3251 = new Cell() { CellReference = "AQ66", StyleIndex = (UInt32Value)6U }; Cell cell3252 = new Cell() { CellReference = "AR66", StyleIndex = (UInt32Value)6U }; Cell cell3253 = new Cell() { CellReference = "AS66", StyleIndex = (UInt32Value)6U }; Cell cell3254 = new Cell() { CellReference = "AT66", StyleIndex = (UInt32Value)6U }; Cell cell3255 = new Cell() { CellReference = "AU66", StyleIndex = (UInt32Value)6U }; Cell cell3256 = new Cell() { CellReference = "AV66", StyleIndex = (UInt32Value)6U }; row70.Append(cell3209); row70.Append(cell3210); row70.Append(cell3211); row70.Append(cell3212); row70.Append(cell3213); row70.Append(cell3214); row70.Append(cell3215); row70.Append(cell3216); row70.Append(cell3217); row70.Append(cell3218); row70.Append(cell3219); row70.Append(cell3220); row70.Append(cell3221); row70.Append(cell3222); row70.Append(cell3223); row70.Append(cell3224); row70.Append(cell3225); row70.Append(cell3226); row70.Append(cell3227); row70.Append(cell3228); row70.Append(cell3229); row70.Append(cell3230); row70.Append(cell3231); row70.Append(cell3232); row70.Append(cell3233); row70.Append(cell3234); row70.Append(cell3235); row70.Append(cell3236); row70.Append(cell3237); row70.Append(cell3238); row70.Append(cell3239); row70.Append(cell3240); row70.Append(cell3241); row70.Append(cell3242); row70.Append(cell3243); row70.Append(cell3244); row70.Append(cell3245); row70.Append(cell3246); row70.Append(cell3247); row70.Append(cell3248); row70.Append(cell3249); row70.Append(cell3250); row70.Append(cell3251); row70.Append(cell3252); row70.Append(cell3253); row70.Append(cell3254); row70.Append(cell3255); row70.Append(cell3256); Row row71 = new Row() { RowIndex = (UInt32Value)67U, Spans = new ListValue() { InnerText = "1:48" }, Height = 11.25D, CustomHeight = true }; Cell cell3257 = new Cell() { CellReference = "A67", StyleIndex = (UInt32Value)6U }; Cell cell3258 = new Cell() { CellReference = "B67", StyleIndex = (UInt32Value)6U }; Cell cell3259 = new Cell() { CellReference = "C67", StyleIndex = (UInt32Value)6U }; Cell cell3260 = new Cell() { CellReference = "D67", StyleIndex = (UInt32Value)6U }; Cell cell3261 = new Cell() { CellReference = "E67", StyleIndex = (UInt32Value)6U }; Cell cell3262 = new Cell() { CellReference = "F67", StyleIndex = (UInt32Value)6U }; Cell cell3263 = new Cell() { CellReference = "G67", StyleIndex = (UInt32Value)6U }; Cell cell3264 = new Cell() { CellReference = "H67", StyleIndex = (UInt32Value)6U }; Cell cell3265 = new Cell() { CellReference = "I67", StyleIndex = (UInt32Value)6U }; Cell cell3266 = new Cell() { CellReference = "J67", StyleIndex = (UInt32Value)6U }; Cell cell3267 = new Cell() { CellReference = "K67", StyleIndex = (UInt32Value)6U }; Cell cell3268 = new Cell() { CellReference = "L67", StyleIndex = (UInt32Value)6U }; Cell cell3269 = new Cell() { CellReference = "M67", StyleIndex = (UInt32Value)6U }; Cell cell3270 = new Cell() { CellReference = "N67", StyleIndex = (UInt32Value)6U }; Cell cell3271 = new Cell() { CellReference = "O67", StyleIndex = (UInt32Value)6U }; Cell cell3272 = new Cell() { CellReference = "P67", StyleIndex = (UInt32Value)6U }; Cell cell3273 = new Cell() { CellReference = "Q67", StyleIndex = (UInt32Value)6U }; Cell cell3274 = new Cell() { CellReference = "R67", StyleIndex = (UInt32Value)6U }; Cell cell3275 = new Cell() { CellReference = "S67", StyleIndex = (UInt32Value)3U }; Cell cell3276 = new Cell() { CellReference = "T67", StyleIndex = (UInt32Value)3U }; Cell cell3277 = new Cell() { CellReference = "U67", StyleIndex = (UInt32Value)3U }; Cell cell3278 = new Cell() { CellReference = "V67", StyleIndex = (UInt32Value)3U }; Cell cell3279 = new Cell() { CellReference = "W67", StyleIndex = (UInt32Value)3U }; Cell cell3280 = new Cell() { CellReference = "X67", StyleIndex = (UInt32Value)3U }; Cell cell3281 = new Cell() { CellReference = "Y67", StyleIndex = (UInt32Value)6U }; Cell cell3282 = new Cell() { CellReference = "Z67", StyleIndex = (UInt32Value)6U }; Cell cell3283 = new Cell() { CellReference = "AA67", StyleIndex = (UInt32Value)6U }; Cell cell3284 = new Cell() { CellReference = "AB67", StyleIndex = (UInt32Value)6U }; Cell cell3285 = new Cell() { CellReference = "AC67", StyleIndex = (UInt32Value)6U }; Cell cell3286 = new Cell() { CellReference = "AD67", StyleIndex = (UInt32Value)6U }; Cell cell3287 = new Cell() { CellReference = "AE67", StyleIndex = (UInt32Value)6U }; Cell cell3288 = new Cell() { CellReference = "AF67", StyleIndex = (UInt32Value)6U }; Cell cell3289 = new Cell() { CellReference = "AG67", StyleIndex = (UInt32Value)6U }; Cell cell3290 = new Cell() { CellReference = "AH67", StyleIndex = (UInt32Value)6U }; Cell cell3291 = new Cell() { CellReference = "AI67", StyleIndex = (UInt32Value)6U }; Cell cell3292 = new Cell() { CellReference = "AJ67", StyleIndex = (UInt32Value)6U }; Cell cell3293 = new Cell() { CellReference = "AK67", StyleIndex = (UInt32Value)6U }; Cell cell3294 = new Cell() { CellReference = "AL67", StyleIndex = (UInt32Value)6U }; Cell cell3295 = new Cell() { CellReference = "AM67", StyleIndex = (UInt32Value)6U }; Cell cell3296 = new Cell() { CellReference = "AN67", StyleIndex = (UInt32Value)6U }; Cell cell3297 = new Cell() { CellReference = "AO67", StyleIndex = (UInt32Value)6U }; Cell cell3298 = new Cell() { CellReference = "AP67", StyleIndex = (UInt32Value)6U }; Cell cell3299 = new Cell() { CellReference = "AQ67", StyleIndex = (UInt32Value)6U }; Cell cell3300 = new Cell() { CellReference = "AR67", StyleIndex = (UInt32Value)6U }; Cell cell3301 = new Cell() { CellReference = "AS67", StyleIndex = (UInt32Value)6U }; Cell cell3302 = new Cell() { CellReference = "AT67", StyleIndex = (UInt32Value)6U }; Cell cell3303 = new Cell() { CellReference = "AU67", StyleIndex = (UInt32Value)6U }; Cell cell3304 = new Cell() { CellReference = "AV67", StyleIndex = (UInt32Value)6U }; row71.Append(cell3257); row71.Append(cell3258); row71.Append(cell3259); row71.Append(cell3260); row71.Append(cell3261); row71.Append(cell3262); row71.Append(cell3263); row71.Append(cell3264); row71.Append(cell3265); row71.Append(cell3266); row71.Append(cell3267); row71.Append(cell3268); row71.Append(cell3269); row71.Append(cell3270); row71.Append(cell3271); row71.Append(cell3272); row71.Append(cell3273); row71.Append(cell3274); row71.Append(cell3275); row71.Append(cell3276); row71.Append(cell3277); row71.Append(cell3278); row71.Append(cell3279); row71.Append(cell3280); row71.Append(cell3281); row71.Append(cell3282); row71.Append(cell3283); row71.Append(cell3284); row71.Append(cell3285); row71.Append(cell3286); row71.Append(cell3287); row71.Append(cell3288); row71.Append(cell3289); row71.Append(cell3290); row71.Append(cell3291); row71.Append(cell3292); row71.Append(cell3293); row71.Append(cell3294); row71.Append(cell3295); row71.Append(cell3296); row71.Append(cell3297); row71.Append(cell3298); row71.Append(cell3299); row71.Append(cell3300); row71.Append(cell3301); row71.Append(cell3302); row71.Append(cell3303); row71.Append(cell3304); sheetData2.Append(row60); sheetData2.Append(row61); sheetData2.Append(row62); sheetData2.Append(row63); sheetData2.Append(row64); sheetData2.Append(row65); sheetData2.Append(row66); sheetData2.Append(row67); sheetData2.Append(row68); sheetData2.Append(row69); sheetData2.Append(row70); sheetData2.Append(row71); MergeCells mergeCells1 = new MergeCells() { Count = (UInt32Value)102U }; MergeCell mergeCell1 = new MergeCell() { Reference = "Y1:AC1" }; MergeCell mergeCell2 = new MergeCell() { Reference = "Y2:AC2" }; MergeCell mergeCell3 = new MergeCell() { Reference = "E3:G3" }; MergeCell mergeCell4 = new MergeCell() { Reference = "E4:G4" }; MergeCell mergeCell5 = new MergeCell() { Reference = "E5:G5" }; MergeCell mergeCell6 = new MergeCell() { Reference = "S3:U3" }; MergeCell mergeCell7 = new MergeCell() { Reference = "V3:X3" }; MergeCell mergeCell8 = new MergeCell() { Reference = "V5:X5" }; MergeCell mergeCell9 = new MergeCell() { Reference = "A1:E1" }; MergeCell mergeCell10 = new MergeCell() { Reference = "A2:E2" }; MergeCell mergeCell11 = new MergeCell() { Reference = "E6:G6" }; MergeCell mergeCell12 = new MergeCell() { Reference = "J3:L3" }; MergeCell mergeCell13 = new MergeCell() { Reference = "J5:L5" }; MergeCell mergeCell14 = new MergeCell() { Reference = "J6:L6" }; MergeCell mergeCell15 = new MergeCell() { Reference = "P3:R3" }; MergeCell mergeCell16 = new MergeCell() { Reference = "M4:O4" }; MergeCell mergeCell17 = new MergeCell() { Reference = "M3:O3" }; MergeCell mergeCell18 = new MergeCell() { Reference = "M5:O5" }; MergeCell mergeCell19 = new MergeCell() { Reference = "M6:O6" }; MergeCell mergeCell20 = new MergeCell() { Reference = "P4:R4" }; MergeCell mergeCell21 = new MergeCell() { Reference = "P5:R5" }; MergeCell mergeCell22 = new MergeCell() { Reference = "P6:R6" }; MergeCell mergeCell23 = new MergeCell() { Reference = "V6:X6" }; MergeCell mergeCell24 = new MergeCell() { Reference = "AC3:AE3" }; MergeCell mergeCell25 = new MergeCell() { Reference = "AH3:AJ3" }; MergeCell mergeCell26 = new MergeCell() { Reference = "AK3:AM3" }; MergeCell mergeCell27 = new MergeCell() { Reference = "AN3:AP3" }; MergeCell mergeCell28 = new MergeCell() { Reference = "AC5:AE5" }; MergeCell mergeCell29 = new MergeCell() { Reference = "AH5:AJ5" }; MergeCell mergeCell30 = new MergeCell() { Reference = "AK5:AM5" }; MergeCell mergeCell31 = new MergeCell() { Reference = "AN5:AP5" }; MergeCell mergeCell32 = new MergeCell() { Reference = "AT5:AV5" }; MergeCell mergeCell33 = new MergeCell() { Reference = "AC6:AE6" }; MergeCell mergeCell34 = new MergeCell() { Reference = "AH6:AJ6" }; MergeCell mergeCell35 = new MergeCell() { Reference = "AK6:AM6" }; MergeCell mergeCell36 = new MergeCell() { Reference = "AN6:AP6" }; MergeCell mergeCell37 = new MergeCell() { Reference = "AT6:AV6" }; MergeCell mergeCell38 = new MergeCell() { Reference = "AQ3:AS3" }; MergeCell mergeCell39 = new MergeCell() { Reference = "AT3:AV3" }; MergeCell mergeCell40 = new MergeCell() { Reference = "AC4:AE4" }; MergeCell mergeCell41 = new MergeCell() { Reference = "AK4:AM4" }; MergeCell mergeCell42 = new MergeCell() { Reference = "AN4:AP4" }; MergeCell mergeCell43 = new MergeCell() { Reference = "A48:R48" }; MergeCell mergeCell44 = new MergeCell() { Reference = "S49:X49" }; MergeCell mergeCell45 = new MergeCell() { Reference = "S50:U50" }; MergeCell mergeCell46 = new MergeCell() { Reference = "A7:R7" }; MergeCell mergeCell47 = new MergeCell() { Reference = "S16:X16" }; MergeCell mergeCell48 = new MergeCell() { Reference = "S20:X20" }; MergeCell mergeCell49 = new MergeCell() { Reference = "A28:R28" }; MergeCell mergeCell50 = new MergeCell() { Reference = "S29:X29" }; MergeCell mergeCell51 = new MergeCell() { Reference = "S14:U14" }; MergeCell mergeCell52 = new MergeCell() { Reference = "S17:U17" }; MergeCell mergeCell53 = new MergeCell() { Reference = "S18:U18" }; MergeCell mergeCell54 = new MergeCell() { Reference = "S22:U22" }; MergeCell mergeCell55 = new MergeCell() { Reference = "S21:U21" }; MergeCell mergeCell56 = new MergeCell() { Reference = "S8:X8" }; MergeCell mergeCell57 = new MergeCell() { Reference = "S9:U9" }; MergeCell mergeCell58 = new MergeCell() { Reference = "S10:U10" }; MergeCell mergeCell59 = new MergeCell() { Reference = "S12:X12" }; MergeCell mergeCell60 = new MergeCell() { Reference = "S13:U13" }; MergeCell mergeCell61 = new MergeCell() { Reference = "S51:U51" }; MergeCell mergeCell62 = new MergeCell() { Reference = "S53:X53" }; MergeCell mergeCell63 = new MergeCell() { Reference = "S54:U54" }; MergeCell mergeCell64 = new MergeCell() { Reference = "S55:U55" }; MergeCell mergeCell65 = new MergeCell() { Reference = "V9:X9" }; MergeCell mergeCell66 = new MergeCell() { Reference = "V10:X10" }; MergeCell mergeCell67 = new MergeCell() { Reference = "V13:X13" }; MergeCell mergeCell68 = new MergeCell() { Reference = "V14:X14" }; MergeCell mergeCell69 = new MergeCell() { Reference = "V17:X17" }; MergeCell mergeCell70 = new MergeCell() { Reference = "V18:X18" }; MergeCell mergeCell71 = new MergeCell() { Reference = "V21:X21" }; MergeCell mergeCell72 = new MergeCell() { Reference = "V22:X22" }; MergeCell mergeCell73 = new MergeCell() { Reference = "V30:X30" }; MergeCell mergeCell74 = new MergeCell() { Reference = "V31:X31" }; MergeCell mergeCell75 = new MergeCell() { Reference = "V50:X50" }; MergeCell mergeCell76 = new MergeCell() { Reference = "V51:X51" }; MergeCell mergeCell77 = new MergeCell() { Reference = "S30:U30" }; MergeCell mergeCell78 = new MergeCell() { Reference = "S31:U31" }; MergeCell mergeCell79 = new MergeCell() { Reference = "V55:X55" }; MergeCell mergeCell80 = new MergeCell() { Reference = "Y7:AP7" }; MergeCell mergeCell81 = new MergeCell() { Reference = "AQ8:AV8" }; MergeCell mergeCell82 = new MergeCell() { Reference = "AQ9:AS9" }; MergeCell mergeCell83 = new MergeCell() { Reference = "AT9:AV9" }; MergeCell mergeCell84 = new MergeCell() { Reference = "AQ10:AS10" }; MergeCell mergeCell85 = new MergeCell() { Reference = "AT10:AV10" }; MergeCell mergeCell86 = new MergeCell() { Reference = "AQ12:AV12" }; MergeCell mergeCell87 = new MergeCell() { Reference = "AQ13:AS13" }; MergeCell mergeCell88 = new MergeCell() { Reference = "AT13:AV13" }; MergeCell mergeCell89 = new MergeCell() { Reference = "AQ14:AS14" }; MergeCell mergeCell90 = new MergeCell() { Reference = "AT14:AV14" }; MergeCell mergeCell91 = new MergeCell() { Reference = "AQ16:AV16" }; MergeCell mergeCell92 = new MergeCell() { Reference = "AQ17:AS17" }; MergeCell mergeCell93 = new MergeCell() { Reference = "AT17:AV17" }; MergeCell mergeCell94 = new MergeCell() { Reference = "AQ31:AS31" }; MergeCell mergeCell95 = new MergeCell() { Reference = "AT31:AV31" }; MergeCell mergeCell96 = new MergeCell() { Reference = "Y28:AP28" }; MergeCell mergeCell97 = new MergeCell() { Reference = "AQ29:AV29" }; MergeCell mergeCell98 = new MergeCell() { Reference = "AQ30:AS30" }; MergeCell mergeCell99 = new MergeCell() { Reference = "AT30:AV30" }; MergeCell mergeCell100 = new MergeCell() { Reference = "AQ18:AS18" }; MergeCell mergeCell101 = new MergeCell() { Reference = "AT18:AV18" }; MergeCell mergeCell102 = new MergeCell() { Reference = "V54:X54" }; mergeCells1.Append(mergeCell1); mergeCells1.Append(mergeCell2); mergeCells1.Append(mergeCell3); mergeCells1.Append(mergeCell4); mergeCells1.Append(mergeCell5); mergeCells1.Append(mergeCell6); mergeCells1.Append(mergeCell7); mergeCells1.Append(mergeCell8); mergeCells1.Append(mergeCell9); mergeCells1.Append(mergeCell10); mergeCells1.Append(mergeCell11); mergeCells1.Append(mergeCell12); mergeCells1.Append(mergeCell13); mergeCells1.Append(mergeCell14); mergeCells1.Append(mergeCell15); mergeCells1.Append(mergeCell16); mergeCells1.Append(mergeCell17); mergeCells1.Append(mergeCell18); mergeCells1.Append(mergeCell19); mergeCells1.Append(mergeCell20); mergeCells1.Append(mergeCell21); mergeCells1.Append(mergeCell22); mergeCells1.Append(mergeCell23); mergeCells1.Append(mergeCell24); mergeCells1.Append(mergeCell25); mergeCells1.Append(mergeCell26); mergeCells1.Append(mergeCell27); mergeCells1.Append(mergeCell28); mergeCells1.Append(mergeCell29); mergeCells1.Append(mergeCell30); mergeCells1.Append(mergeCell31); mergeCells1.Append(mergeCell32); mergeCells1.Append(mergeCell33); mergeCells1.Append(mergeCell34); mergeCells1.Append(mergeCell35); mergeCells1.Append(mergeCell36); mergeCells1.Append(mergeCell37); mergeCells1.Append(mergeCell38); mergeCells1.Append(mergeCell39); mergeCells1.Append(mergeCell40); mergeCells1.Append(mergeCell41); mergeCells1.Append(mergeCell42); mergeCells1.Append(mergeCell43); mergeCells1.Append(mergeCell44); mergeCells1.Append(mergeCell45); mergeCells1.Append(mergeCell46); mergeCells1.Append(mergeCell47); mergeCells1.Append(mergeCell48); mergeCells1.Append(mergeCell49); mergeCells1.Append(mergeCell50); mergeCells1.Append(mergeCell51); mergeCells1.Append(mergeCell52); mergeCells1.Append(mergeCell53); mergeCells1.Append(mergeCell54); mergeCells1.Append(mergeCell55); mergeCells1.Append(mergeCell56); mergeCells1.Append(mergeCell57); mergeCells1.Append(mergeCell58); mergeCells1.Append(mergeCell59); mergeCells1.Append(mergeCell60); mergeCells1.Append(mergeCell61); mergeCells1.Append(mergeCell62); mergeCells1.Append(mergeCell63); mergeCells1.Append(mergeCell64); mergeCells1.Append(mergeCell65); mergeCells1.Append(mergeCell66); mergeCells1.Append(mergeCell67); mergeCells1.Append(mergeCell68); mergeCells1.Append(mergeCell69); mergeCells1.Append(mergeCell70); mergeCells1.Append(mergeCell71); mergeCells1.Append(mergeCell72); mergeCells1.Append(mergeCell73); mergeCells1.Append(mergeCell74); mergeCells1.Append(mergeCell75); mergeCells1.Append(mergeCell76); mergeCells1.Append(mergeCell77); mergeCells1.Append(mergeCell78); mergeCells1.Append(mergeCell79); mergeCells1.Append(mergeCell80); mergeCells1.Append(mergeCell81); mergeCells1.Append(mergeCell82); mergeCells1.Append(mergeCell83); mergeCells1.Append(mergeCell84); mergeCells1.Append(mergeCell85); mergeCells1.Append(mergeCell86); mergeCells1.Append(mergeCell87); mergeCells1.Append(mergeCell88); mergeCells1.Append(mergeCell89); mergeCells1.Append(mergeCell90); mergeCells1.Append(mergeCell91); mergeCells1.Append(mergeCell92); mergeCells1.Append(mergeCell93); mergeCells1.Append(mergeCell94); mergeCells1.Append(mergeCell95); mergeCells1.Append(mergeCell96); mergeCells1.Append(mergeCell97); mergeCells1.Append(mergeCell98); mergeCells1.Append(mergeCell99); mergeCells1.Append(mergeCell100); mergeCells1.Append(mergeCell101); mergeCells1.Append(mergeCell102); PageMargins pageMargins2 = new PageMargins() { Left = 0.7D, Right = 0.7D, Top = 0.75D, Bottom = 0.75D, Header = 0.3D, Footer = 0.3D }; PageSetup pageSetup1 = new PageSetup() { PaperSize = (UInt32Value)9U, Orientation = OrientationValues.Portrait, Id = "rId1" }; Drawing drawing1 = new Drawing() { Id = "rId2" }; worksheet2.Append(sheetDimension2); worksheet2.Append(sheetViews2); worksheet2.Append(sheetFormatProperties2); worksheet2.Append(columns1); worksheet2.Append(sheetData2); worksheet2.Append(mergeCells1); worksheet2.Append(pageMargins2); worksheet2.Append(pageSetup1); worksheet2.Append(drawing1); worksheetPart2.Worksheet = worksheet2; } // Generates content of drawingsPart1. private void GenerateDrawingsPart1Content(DrawingsPart drawingsPart1) { Xdr.WorksheetDrawing worksheetDrawing1 = new Xdr.WorksheetDrawing(); worksheetDrawing1.AddNamespaceDeclaration("xdr", "http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing"); worksheetDrawing1.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main"); Xdr.TwoCellAnchor twoCellAnchor1 = new Xdr.TwoCellAnchor(); Xdr.FromMarker fromMarker1 = new Xdr.FromMarker(); Xdr.ColumnId columnId1 = new Xdr.ColumnId(); columnId1.Text = "0"; Xdr.ColumnOffset columnOffset1 = new Xdr.ColumnOffset(); columnOffset1.Text = "38100"; Xdr.RowId rowId1 = new Xdr.RowId(); rowId1.Text = "7"; Xdr.RowOffset rowOffset1 = new Xdr.RowOffset(); rowOffset1.Text = "28575"; fromMarker1.Append(columnId1); fromMarker1.Append(columnOffset1); fromMarker1.Append(rowId1); fromMarker1.Append(rowOffset1); Xdr.ToMarker toMarker1 = new Xdr.ToMarker(); Xdr.ColumnId columnId2 = new Xdr.ColumnId(); columnId2.Text = "18"; Xdr.ColumnOffset columnOffset2 = new Xdr.ColumnOffset(); columnOffset2.Text = "0"; Xdr.RowId rowId2 = new Xdr.RowId(); rowId2.Text = "26"; Xdr.RowOffset rowOffset2 = new Xdr.RowOffset(); rowOffset2.Text = "123825"; toMarker1.Append(columnId2); toMarker1.Append(columnOffset2); toMarker1.Append(rowId2); toMarker1.Append(rowOffset2); Xdr.GraphicFrame graphicFrame1 = new Xdr.GraphicFrame() { Macro = "" }; Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties1 = new Xdr.NonVisualGraphicFrameProperties(); Xdr.NonVisualDrawingProperties nonVisualDrawingProperties1 = new Xdr.NonVisualDrawingProperties() { Id = (UInt32Value)2U, Name = "Chart 1" }; Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties1 = new Xdr.NonVisualGraphicFrameDrawingProperties(); nonVisualGraphicFrameProperties1.Append(nonVisualDrawingProperties1); nonVisualGraphicFrameProperties1.Append(nonVisualGraphicFrameDrawingProperties1); Xdr.Transform transform1 = new Xdr.Transform(); A.Offset offset1 = new A.Offset() { X = 0L, Y = 0L }; A.Extents extents1 = new A.Extents() { Cx = 0L, Cy = 0L }; transform1.Append(offset1); transform1.Append(extents1); A.Graphic graphic1 = new A.Graphic(); A.GraphicData graphicData1 = new A.GraphicData() { Uri = "http://schemas.openxmlformats.org/drawingml/2006/chart" }; C.ChartReference chartReference1 = new C.ChartReference() { Id = "rId1" }; chartReference1.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart"); chartReference1.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships"); graphicData1.Append(chartReference1); graphic1.Append(graphicData1); graphicFrame1.Append(nonVisualGraphicFrameProperties1); graphicFrame1.Append(transform1); graphicFrame1.Append(graphic1); Xdr.ClientData clientData1 = new Xdr.ClientData(); twoCellAnchor1.Append(fromMarker1); twoCellAnchor1.Append(toMarker1); twoCellAnchor1.Append(graphicFrame1); twoCellAnchor1.Append(clientData1); Xdr.TwoCellAnchor twoCellAnchor2 = new Xdr.TwoCellAnchor(); Xdr.FromMarker fromMarker2 = new Xdr.FromMarker(); Xdr.ColumnId columnId3 = new Xdr.ColumnId(); columnId3.Text = "0"; Xdr.ColumnOffset columnOffset3 = new Xdr.ColumnOffset(); columnOffset3.Text = "57150"; Xdr.RowId rowId3 = new Xdr.RowId(); rowId3.Text = "28"; Xdr.RowOffset rowOffset3 = new Xdr.RowOffset(); rowOffset3.Text = "38100"; fromMarker2.Append(columnId3); fromMarker2.Append(columnOffset3); fromMarker2.Append(rowId3); fromMarker2.Append(rowOffset3); Xdr.ToMarker toMarker2 = new Xdr.ToMarker(); Xdr.ColumnId columnId4 = new Xdr.ColumnId(); columnId4.Text = "18"; Xdr.ColumnOffset columnOffset4 = new Xdr.ColumnOffset(); columnOffset4.Text = "9525"; Xdr.RowId rowId4 = new Xdr.RowId(); rowId4.Text = "46"; Xdr.RowOffset rowOffset4 = new Xdr.RowOffset(); rowOffset4.Text = "133349"; toMarker2.Append(columnId4); toMarker2.Append(columnOffset4); toMarker2.Append(rowId4); toMarker2.Append(rowOffset4); Xdr.GraphicFrame graphicFrame2 = new Xdr.GraphicFrame() { Macro = "" }; Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties2 = new Xdr.NonVisualGraphicFrameProperties(); Xdr.NonVisualDrawingProperties nonVisualDrawingProperties2 = new Xdr.NonVisualDrawingProperties() { Id = (UInt32Value)3U, Name = "Chart 2" }; Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties2 = new Xdr.NonVisualGraphicFrameDrawingProperties(); nonVisualGraphicFrameProperties2.Append(nonVisualDrawingProperties2); nonVisualGraphicFrameProperties2.Append(nonVisualGraphicFrameDrawingProperties2); Xdr.Transform transform2 = new Xdr.Transform(); A.Offset offset2 = new A.Offset() { X = 0L, Y = 0L }; A.Extents extents2 = new A.Extents() { Cx = 0L, Cy = 0L }; transform2.Append(offset2); transform2.Append(extents2); A.Graphic graphic2 = new A.Graphic(); A.GraphicData graphicData2 = new A.GraphicData() { Uri = "http://schemas.openxmlformats.org/drawingml/2006/chart" }; C.ChartReference chartReference2 = new C.ChartReference() { Id = "rId2" }; chartReference2.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart"); chartReference2.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships"); graphicData2.Append(chartReference2); graphic2.Append(graphicData2); graphicFrame2.Append(nonVisualGraphicFrameProperties2); graphicFrame2.Append(transform2); graphicFrame2.Append(graphic2); Xdr.ClientData clientData2 = new Xdr.ClientData(); twoCellAnchor2.Append(fromMarker2); twoCellAnchor2.Append(toMarker2); twoCellAnchor2.Append(graphicFrame2); twoCellAnchor2.Append(clientData2); Xdr.TwoCellAnchor twoCellAnchor3 = new Xdr.TwoCellAnchor(); Xdr.FromMarker fromMarker3 = new Xdr.FromMarker(); Xdr.ColumnId columnId5 = new Xdr.ColumnId(); columnId5.Text = "0"; Xdr.ColumnOffset columnOffset5 = new Xdr.ColumnOffset(); columnOffset5.Text = "66675"; Xdr.RowId rowId5 = new Xdr.RowId(); rowId5.Text = "47"; Xdr.RowOffset rowOffset5 = new Xdr.RowOffset(); rowOffset5.Text = "133350"; fromMarker3.Append(columnId5); fromMarker3.Append(columnOffset5); fromMarker3.Append(rowId5); fromMarker3.Append(rowOffset5); Xdr.ToMarker toMarker3 = new Xdr.ToMarker(); Xdr.ColumnId columnId6 = new Xdr.ColumnId(); columnId6.Text = "18"; Xdr.ColumnOffset columnOffset6 = new Xdr.ColumnOffset(); columnOffset6.Text = "19050"; Xdr.RowId rowId6 = new Xdr.RowId(); rowId6.Text = "66"; Xdr.RowOffset rowOffset6 = new Xdr.RowOffset(); rowOffset6.Text = "76200"; toMarker3.Append(columnId6); toMarker3.Append(columnOffset6); toMarker3.Append(rowId6); toMarker3.Append(rowOffset6); Xdr.GraphicFrame graphicFrame3 = new Xdr.GraphicFrame() { Macro = "" }; Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties3 = new Xdr.NonVisualGraphicFrameProperties(); Xdr.NonVisualDrawingProperties nonVisualDrawingProperties3 = new Xdr.NonVisualDrawingProperties() { Id = (UInt32Value)4U, Name = "Chart 3" }; Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties3 = new Xdr.NonVisualGraphicFrameDrawingProperties(); nonVisualGraphicFrameProperties3.Append(nonVisualDrawingProperties3); nonVisualGraphicFrameProperties3.Append(nonVisualGraphicFrameDrawingProperties3); Xdr.Transform transform3 = new Xdr.Transform(); A.Offset offset3 = new A.Offset() { X = 0L, Y = 0L }; A.Extents extents3 = new A.Extents() { Cx = 0L, Cy = 0L }; transform3.Append(offset3); transform3.Append(extents3); A.Graphic graphic3 = new A.Graphic(); A.GraphicData graphicData3 = new A.GraphicData() { Uri = "http://schemas.openxmlformats.org/drawingml/2006/chart" }; C.ChartReference chartReference3 = new C.ChartReference() { Id = "rId3" }; chartReference3.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart"); chartReference3.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships"); graphicData3.Append(chartReference3); graphic3.Append(graphicData3); graphicFrame3.Append(nonVisualGraphicFrameProperties3); graphicFrame3.Append(transform3); graphicFrame3.Append(graphic3); Xdr.ClientData clientData3 = new Xdr.ClientData(); twoCellAnchor3.Append(fromMarker3); twoCellAnchor3.Append(toMarker3); twoCellAnchor3.Append(graphicFrame3); twoCellAnchor3.Append(clientData3); Xdr.TwoCellAnchor twoCellAnchor4 = new Xdr.TwoCellAnchor(); Xdr.FromMarker fromMarker4 = new Xdr.FromMarker(); Xdr.ColumnId columnId7 = new Xdr.ColumnId(); columnId7.Text = "24"; Xdr.ColumnOffset columnOffset7 = new Xdr.ColumnOffset(); columnOffset7.Text = "47625"; Xdr.RowId rowId7 = new Xdr.RowId(); rowId7.Text = "7"; Xdr.RowOffset rowOffset7 = new Xdr.RowOffset(); rowOffset7.Text = "38100"; fromMarker4.Append(columnId7); fromMarker4.Append(columnOffset7); fromMarker4.Append(rowId7); fromMarker4.Append(rowOffset7); Xdr.ToMarker toMarker4 = new Xdr.ToMarker(); Xdr.ColumnId columnId8 = new Xdr.ColumnId(); columnId8.Text = "42"; Xdr.ColumnOffset columnOffset8 = new Xdr.ColumnOffset(); columnOffset8.Text = "9525"; Xdr.RowId rowId8 = new Xdr.RowId(); rowId8.Text = "26"; Xdr.RowOffset rowOffset8 = new Xdr.RowOffset(); rowOffset8.Text = "133350"; toMarker4.Append(columnId8); toMarker4.Append(columnOffset8); toMarker4.Append(rowId8); toMarker4.Append(rowOffset8); Xdr.GraphicFrame graphicFrame4 = new Xdr.GraphicFrame() { Macro = "" }; Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties4 = new Xdr.NonVisualGraphicFrameProperties(); Xdr.NonVisualDrawingProperties nonVisualDrawingProperties4 = new Xdr.NonVisualDrawingProperties() { Id = (UInt32Value)5U, Name = "Chart 4" }; Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties4 = new Xdr.NonVisualGraphicFrameDrawingProperties(); nonVisualGraphicFrameProperties4.Append(nonVisualDrawingProperties4); nonVisualGraphicFrameProperties4.Append(nonVisualGraphicFrameDrawingProperties4); Xdr.Transform transform4 = new Xdr.Transform(); A.Offset offset4 = new A.Offset() { X = 0L, Y = 0L }; A.Extents extents4 = new A.Extents() { Cx = 0L, Cy = 0L }; transform4.Append(offset4); transform4.Append(extents4); A.Graphic graphic4 = new A.Graphic(); A.GraphicData graphicData4 = new A.GraphicData() { Uri = "http://schemas.openxmlformats.org/drawingml/2006/chart" }; C.ChartReference chartReference4 = new C.ChartReference() { Id = "rId4" }; chartReference4.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart"); chartReference4.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships"); graphicData4.Append(chartReference4); graphic4.Append(graphicData4); graphicFrame4.Append(nonVisualGraphicFrameProperties4); graphicFrame4.Append(transform4); graphicFrame4.Append(graphic4); Xdr.ClientData clientData4 = new Xdr.ClientData(); twoCellAnchor4.Append(fromMarker4); twoCellAnchor4.Append(toMarker4); twoCellAnchor4.Append(graphicFrame4); twoCellAnchor4.Append(clientData4); Xdr.TwoCellAnchor twoCellAnchor5 = new Xdr.TwoCellAnchor(); Xdr.FromMarker fromMarker5 = new Xdr.FromMarker(); Xdr.ColumnId columnId9 = new Xdr.ColumnId(); columnId9.Text = "24"; Xdr.ColumnOffset columnOffset9 = new Xdr.ColumnOffset(); columnOffset9.Text = "47625"; Xdr.RowId rowId9 = new Xdr.RowId(); rowId9.Text = "28"; Xdr.RowOffset rowOffset9 = new Xdr.RowOffset(); rowOffset9.Text = "19050"; fromMarker5.Append(columnId9); fromMarker5.Append(columnOffset9); fromMarker5.Append(rowId9); fromMarker5.Append(rowOffset9); Xdr.ToMarker toMarker5 = new Xdr.ToMarker(); Xdr.ColumnId columnId10 = new Xdr.ColumnId(); columnId10.Text = "42"; Xdr.ColumnOffset columnOffset10 = new Xdr.ColumnOffset(); columnOffset10.Text = "0"; Xdr.RowId rowId10 = new Xdr.RowId(); rowId10.Text = "46"; Xdr.RowOffset rowOffset10 = new Xdr.RowOffset(); rowOffset10.Text = "114299"; toMarker5.Append(columnId10); toMarker5.Append(columnOffset10); toMarker5.Append(rowId10); toMarker5.Append(rowOffset10); Xdr.GraphicFrame graphicFrame5 = new Xdr.GraphicFrame() { Macro = "" }; Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties5 = new Xdr.NonVisualGraphicFrameProperties(); Xdr.NonVisualDrawingProperties nonVisualDrawingProperties5 = new Xdr.NonVisualDrawingProperties() { Id = (UInt32Value)6U, Name = "Chart 5" }; Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties5 = new Xdr.NonVisualGraphicFrameDrawingProperties(); nonVisualGraphicFrameProperties5.Append(nonVisualDrawingProperties5); nonVisualGraphicFrameProperties5.Append(nonVisualGraphicFrameDrawingProperties5); Xdr.Transform transform5 = new Xdr.Transform(); A.Offset offset5 = new A.Offset() { X = 0L, Y = 0L }; A.Extents extents5 = new A.Extents() { Cx = 0L, Cy = 0L }; transform5.Append(offset5); transform5.Append(extents5); A.Graphic graphic5 = new A.Graphic(); A.GraphicData graphicData5 = new A.GraphicData() { Uri = "http://schemas.openxmlformats.org/drawingml/2006/chart" }; C.ChartReference chartReference5 = new C.ChartReference() { Id = "rId5" }; chartReference5.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart"); chartReference5.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships"); graphicData5.Append(chartReference5); graphic5.Append(graphicData5); graphicFrame5.Append(nonVisualGraphicFrameProperties5); graphicFrame5.Append(transform5); graphicFrame5.Append(graphic5); Xdr.ClientData clientData5 = new Xdr.ClientData(); twoCellAnchor5.Append(fromMarker5); twoCellAnchor5.Append(toMarker5); twoCellAnchor5.Append(graphicFrame5); twoCellAnchor5.Append(clientData5); worksheetDrawing1.Append(twoCellAnchor1); worksheetDrawing1.Append(twoCellAnchor2); worksheetDrawing1.Append(twoCellAnchor3); worksheetDrawing1.Append(twoCellAnchor4); worksheetDrawing1.Append(twoCellAnchor5); drawingsPart1.WorksheetDrawing = worksheetDrawing1; } // Generates content of chartPart1. private void GenerateACLPCLChartPart1Content(ChartPart chartPart1, double[] aclX, double[] aclY, double[] pclX, double[] pclY, double? aclPCLMin, double? aclPCLMax, string thresholds) { System.Collections.Generic.List lines = new System.Collections.Generic.List(); foreach (string t in thresholds.Split(',')) { double d; if (double.TryParse(t.Trim(), out d)) { lines.Add(d); } } C.ChartSpace chartSpace1 = new C.ChartSpace(); chartSpace1.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart"); chartSpace1.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main"); chartSpace1.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships"); C.EditingLanguage editingLanguage1 = new C.EditingLanguage() { Val = "en-US" }; C.Chart chart1 = new C.Chart(); C.PlotArea plotArea1 = new C.PlotArea(); C.Layout layout1 = new C.Layout(); C.ScatterChart scatterChart1 = new C.ScatterChart(); C.ScatterStyle scatterStyle1 = new C.ScatterStyle() { Val = C.ScatterStyleValues.Line }; C.ScatterChartSeries scatterChartSeries1 = new C.ScatterChartSeries(); C.Index index1 = new C.Index() { Val = (UInt32Value)0U }; C.Order order1 = new C.Order() { Val = (UInt32Value)0U }; C.ChartShapeProperties chartShapeProperties1 = new C.ChartShapeProperties(); A.Outline outline1 = new A.Outline(){ Width = 12700 }; A.SolidFill solidFill1 = new A.SolidFill(); A.RgbColorModelHex rgbColorModelHex1 = new A.RgbColorModelHex() { Val = "0070C0" }; solidFill1.Append(rgbColorModelHex1); outline1.Append(solidFill1); chartShapeProperties1.Append(outline1); C.Marker marker1 = new C.Marker(); C.Symbol symbol1 = new C.Symbol() { Val = C.MarkerStyleValues.None }; marker1.Append(symbol1); C.XValues xValues1 = new C.XValues(); C.NumberReference numberReference1 = new C.NumberReference(); C.Formula formula1 = new C.Formula(); formula1.Text = string.Format("Data!$K$2:$K${0}", 2 + aclX.Length); C.NumberingCache numberingCache1 = new C.NumberingCache(); C.FormatCode formatCode1 = new C.FormatCode(); formatCode1.Text = "General"; C.PointCount pointCount1 = new C.PointCount() { Val = (UInt32Value)System.Convert.ToUInt32(aclX.Length) }; numberingCache1.Append(formatCode1); numberingCache1.Append(pointCount1); for (int i = 0; i < aclX.Length; i++) { C.NumericPoint p = new C.NumericPoint() { Index = (UInt32Value)System.Convert.ToUInt32(i) }; C.NumericValue v = new C.NumericValue() { Text = aclX[i].ToString() }; p.Append(v); numberingCache1.Append(p); } numberReference1.Append(formula1); numberReference1.Append(numberingCache1); xValues1.Append(numberReference1); C.YValues yValues1 = new C.YValues(); C.NumberReference numberReference2 = new C.NumberReference(); C.Formula formula2 = new C.Formula(); formula2.Text = string.Format("Data!$L$2:$L${0}", 2 + aclY.Length); C.NumberingCache numberingCache2 = new C.NumberingCache(); C.FormatCode formatCode2 = new C.FormatCode(); formatCode2.Text = "General"; C.PointCount pointCount2 = new C.PointCount() { Val = (UInt32Value)System.Convert.ToUInt32(aclY.Length) }; numberingCache2.Append(formatCode2); numberingCache2.Append(pointCount2); for (int i = 0; i < aclY.Length; i++) { C.NumericPoint p = new C.NumericPoint() { Index = (UInt32Value)System.Convert.ToUInt32(i) }; C.NumericValue v = new C.NumericValue() { Text = aclY[i].ToString() }; p.Append(v); numberingCache2.Append(p); } numberReference2.Append(formula2); numberReference2.Append(numberingCache2); yValues1.Append(numberReference2); C.Smooth smooth1 = new C.Smooth() { Val = false }; scatterChartSeries1.Append(index1); scatterChartSeries1.Append(order1); scatterChartSeries1.Append(chartShapeProperties1); scatterChartSeries1.Append(marker1); scatterChartSeries1.Append(xValues1); scatterChartSeries1.Append(yValues1); scatterChartSeries1.Append(smooth1); C.ScatterChartSeries scatterChartSeries2 = new C.ScatterChartSeries(); C.Index index2 = new C.Index() { Val = (UInt32Value)1U }; C.Order order2 = new C.Order() { Val = (UInt32Value)1U }; C.ChartShapeProperties chartShapeProperties2 = new C.ChartShapeProperties(); A.Outline outline2 = new A.Outline(){ Width = 12700 }; A.SolidFill solidFill2 = new A.SolidFill(); A.RgbColorModelHex rgbColorModelHex2 = new A.RgbColorModelHex() { Val = "FF0000" }; solidFill2.Append(rgbColorModelHex2); outline2.Append(solidFill2); chartShapeProperties2.Append(outline2); C.Marker marker2 = new C.Marker(); C.Symbol symbol2 = new C.Symbol() { Val = C.MarkerStyleValues.None }; marker2.Append(symbol2); C.XValues xValues2 = new C.XValues(); C.NumberReference numberReference3 = new C.NumberReference(); C.Formula formula3 = new C.Formula(); formula3.Text = string.Format("Data!$M$2:$M${0}", 2 + pclX.Length); C.NumberingCache numberingCache3 = new C.NumberingCache(); C.FormatCode formatCode3 = new C.FormatCode(); formatCode3.Text = "General"; C.PointCount pointCount3 = new C.PointCount() { Val = (UInt32Value)System.Convert.ToUInt32(pclX.Length) }; numberingCache3.Append(formatCode3); numberingCache3.Append(pointCount3); for (int i = 0; i < pclX.Length; i++) { C.NumericPoint p = new C.NumericPoint() { Index = (UInt32Value)System.Convert.ToUInt32(i) }; C.NumericValue v = new C.NumericValue() { Text = pclX[i].ToString() }; p.Append(v); numberingCache3.Append(p); } numberReference3.Append(formula3); numberReference3.Append(numberingCache3); xValues2.Append(numberReference3); C.YValues yValues2 = new C.YValues(); C.NumberReference numberReference4 = new C.NumberReference(); C.Formula formula4 = new C.Formula(); formula4.Text = string.Format("Data!$N$2:$N${0}", 2 + pclY.Length); C.NumberingCache numberingCache4 = new C.NumberingCache(); C.FormatCode formatCode4 = new C.FormatCode(); formatCode4.Text = "General"; C.PointCount pointCount4 = new C.PointCount() { Val = (UInt32Value)System.Convert.ToUInt32(pclY.Length) }; numberingCache4.Append(formatCode4); numberingCache4.Append(pointCount4); for (int i = 0; i < pclY.Length; i++) { C.NumericPoint p = new C.NumericPoint() { Index = (UInt32Value)System.Convert.ToUInt32(i) }; C.NumericValue v = new C.NumericValue() { Text = pclY[i].ToString() }; p.Append(v); numberingCache4.Append(p); } numberReference4.Append(formula4); numberReference4.Append(numberingCache4); yValues2.Append(numberReference4); C.Smooth smooth2 = new C.Smooth() { Val = false }; scatterChartSeries2.Append(index2); scatterChartSeries2.Append(order2); scatterChartSeries2.Append(chartShapeProperties2); scatterChartSeries2.Append(marker2); scatterChartSeries2.Append(xValues2); scatterChartSeries2.Append(yValues2); scatterChartSeries2.Append(smooth2); C.AxisId axisId1 = new C.AxisId() { Val = (UInt32Value)131050496U }; C.AxisId axisId2 = new C.AxisId() { Val = (UInt32Value)131056384U }; scatterChart1.Append(scatterStyle1); scatterChart1.Append(scatterChartSeries1); scatterChart1.Append(scatterChartSeries2); double minX = 0D; double maxX = 0D; if (aclX.Count() > 0 && pclX.Count() > 0) { minX = System.Math.Min(aclX.Min(), pclX.Min()); maxX = System.Math.Max(aclX.Max(), pclX.Max()); } for (int i = 0; i < lines.Count; i++) { C.ScatterChartSeries scatterChartSeries = new C.ScatterChartSeries(); C.Index index = new C.Index() { Val = (UInt32Value)System.Convert.ToUInt32(3 + i) }; C.Order order = new C.Order() { Val = (UInt32Value)System.Convert.ToUInt32(3 + i) }; C.SeriesText seriesText = new C.SeriesText(); C.NumericValue numericValue31 = new C.NumericValue(); numericValue31.Text = string.Format("Threshold{0}", 1 + i); seriesText.Append(numericValue31); C.ChartShapeProperties chartShapeProperties = new C.ChartShapeProperties(); A.Outline outline = new A.Outline(){ Width = 12700 }; A.SolidFill solidFill = new A.SolidFill(); A.RgbColorModelHex rgbColorModelHex = new A.RgbColorModelHex() { Val = "A52A2A" }; solidFill.Append(rgbColorModelHex); outline.Append(solidFill); chartShapeProperties.Append(outline); C.Marker marker = new C.Marker(); C.Symbol symbol = new C.Symbol() { Val = C.MarkerStyleValues.None }; marker.Append(symbol); C.XValues xValues = new C.XValues(); C.NumberLiteral numberLiteral1 = new C.NumberLiteral(); C.FormatCode formatCode13 = new C.FormatCode(); formatCode13.Text = "General"; C.PointCount pointCount13 = new C.PointCount() { Val = (UInt32Value)2U }; C.NumericPoint numericPoint25 = new C.NumericPoint() { Index = (UInt32Value)0U }; C.NumericValue numericValue32 = new C.NumericValue(); numericValue32.Text = minX.ToString(); numericPoint25.Append(numericValue32); C.NumericPoint numericPoint26 = new C.NumericPoint() { Index = (UInt32Value)1U }; C.NumericValue numericValue33 = new C.NumericValue(); numericValue33.Text = maxX.ToString(); numericPoint26.Append(numericValue33); numberLiteral1.Append(formatCode13); numberLiteral1.Append(pointCount13); numberLiteral1.Append(numericPoint25); numberLiteral1.Append(numericPoint26); xValues.Append(numberLiteral1); C.YValues yValues = new C.YValues(); C.NumberLiteral numberLiteral2 = new C.NumberLiteral(); C.FormatCode formatCode14 = new C.FormatCode(); formatCode14.Text = "General"; C.PointCount pointCount14 = new C.PointCount() { Val = (UInt32Value)2U }; C.NumericPoint numericPoint27 = new C.NumericPoint() { Index = (UInt32Value)0U }; C.NumericValue numericValue34 = new C.NumericValue(); numericValue34.Text = lines[i].ToString(); numericPoint27.Append(numericValue34); C.NumericPoint numericPoint28 = new C.NumericPoint() { Index = (UInt32Value)1U }; C.NumericValue numericValue35 = new C.NumericValue(); numericValue35.Text = lines[i].ToString(); numericPoint28.Append(numericValue35); numberLiteral2.Append(formatCode14); numberLiteral2.Append(pointCount14); numberLiteral2.Append(numericPoint27); numberLiteral2.Append(numericPoint28); yValues.Append(numberLiteral2); C.Smooth smooth = new C.Smooth() { Val = false }; scatterChartSeries.Append(index); scatterChartSeries.Append(order); scatterChartSeries.Append(seriesText); scatterChartSeries.Append(chartShapeProperties); scatterChartSeries.Append(marker); scatterChartSeries.Append(xValues); scatterChartSeries.Append(yValues); scatterChartSeries.Append(smooth); scatterChart1.Append(scatterChartSeries); } scatterChart1.Append(axisId1); scatterChart1.Append(axisId2); C.ValueAxis valueAxis1 = new C.ValueAxis(); C.AxisId axisId3 = new C.AxisId() { Val = (UInt32Value)131050496U }; C.Scaling scaling1 = new C.Scaling(); C.Orientation orientation1 = new C.Orientation() { Val = C.OrientationValues.MinMax }; scaling1.Append(orientation1); C.AxisPosition axisPosition1 = new C.AxisPosition() { Val = C.AxisPositionValues.Bottom }; C.MajorGridlines majorGridlines1 = new C.MajorGridlines(); C.ChartShapeProperties chartShapeProperties3 = new C.ChartShapeProperties(); A.Outline outline3 = new A.Outline() { Width = 12700 }; chartShapeProperties3.Append(outline3); majorGridlines1.Append(chartShapeProperties3); C.MinorGridlines minorGridlines1 = new C.MinorGridlines(); C.NumberingFormat numberingFormat1 = new C.NumberingFormat() { FormatCode = "General", SourceLinked = true }; C.TickLabelPosition tickLabelPosition1 = new C.TickLabelPosition() { Val = C.TickLabelPositionValues.Low }; C.ChartShapeProperties chartShapeProperties4 = new C.ChartShapeProperties(); A.Outline outline4 = new A.Outline() { Width = 38100 }; chartShapeProperties4.Append(outline4); C.CrossingAxis crossingAxis1 = new C.CrossingAxis() { Val = (UInt32Value)131056384U }; C.Crosses crosses1 = new C.Crosses() { Val = C.CrossesValues.AutoZero }; C.CrossBetween crossBetween1 = new C.CrossBetween() { Val = C.CrossBetweenValues.MidpointCategory }; valueAxis1.Append(axisId3); valueAxis1.Append(scaling1); valueAxis1.Append(axisPosition1); valueAxis1.Append(majorGridlines1); valueAxis1.Append(minorGridlines1); valueAxis1.Append(numberingFormat1); valueAxis1.Append(tickLabelPosition1); valueAxis1.Append(chartShapeProperties4); valueAxis1.Append(crossingAxis1); valueAxis1.Append(crosses1); valueAxis1.Append(crossBetween1); C.ValueAxis valueAxis2 = new C.ValueAxis(); C.AxisId axisId4 = new C.AxisId() { Val = (UInt32Value)131056384U }; C.Scaling scaling2 = new C.Scaling(); C.Orientation orientation2 = new C.Orientation() { Val = C.OrientationValues.MinMax }; if (null != aclPCLMax) { C.MaxAxisValue maxAxisValue1 = new C.MaxAxisValue() { Val = aclPCLMax }; scaling2.Append(maxAxisValue1); } if (null != aclPCLMin) { C.MinAxisValue minAxisValue1 = new C.MinAxisValue() { Val = aclPCLMin }; scaling2.Append(minAxisValue1); } scaling2.Append(orientation2); C.AxisPosition axisPosition2 = new C.AxisPosition() { Val = C.AxisPositionValues.Left }; C.MajorGridlines majorGridlines2 = new C.MajorGridlines(); C.ChartShapeProperties chartShapeProperties5 = new C.ChartShapeProperties(); A.Outline outline5 = new A.Outline() { Width = 12700 }; chartShapeProperties5.Append(outline5); majorGridlines2.Append(chartShapeProperties5); C.NumberingFormat numberingFormat2 = new C.NumberingFormat() { FormatCode = "General", SourceLinked = true }; C.TickLabelPosition tickLabelPosition2 = new C.TickLabelPosition() { Val = C.TickLabelPositionValues.Low }; C.ChartShapeProperties chartShapeProperties6 = new C.ChartShapeProperties(); A.Outline outline6 = new A.Outline() { Width = 38100 }; chartShapeProperties6.Append(outline6); C.CrossingAxis crossingAxis2 = new C.CrossingAxis() { Val = (UInt32Value)131050496U }; C.Crosses crosses2 = new C.Crosses() { Val = C.CrossesValues.AutoZero }; C.CrossBetween crossBetween2 = new C.CrossBetween() { Val = C.CrossBetweenValues.MidpointCategory }; valueAxis2.Append(axisId4); valueAxis2.Append(scaling2); valueAxis2.Append(axisPosition2); valueAxis2.Append(majorGridlines2); valueAxis2.Append(numberingFormat2); valueAxis2.Append(tickLabelPosition2); valueAxis2.Append(chartShapeProperties6); valueAxis2.Append(crossingAxis2); valueAxis2.Append(crosses2); valueAxis2.Append(crossBetween2); plotArea1.Append(layout1); plotArea1.Append(scatterChart1); plotArea1.Append(valueAxis1); plotArea1.Append(valueAxis2); C.PlotVisibleOnly plotVisibleOnly1 = new C.PlotVisibleOnly() { Val = true }; chart1.Append(plotArea1); chart1.Append(plotVisibleOnly1); C.PrintSettings printSettings1 = new C.PrintSettings(); C.HeaderFooter headerFooter1 = new C.HeaderFooter(); C.PageMargins pageMargins3 = new C.PageMargins() { Left = 0.70000000000000007D, Right = 0.70000000000000007D, Top = 0.75000000000000011D, Bottom = 0.75000000000000011D, Header = 0.30000000000000004D, Footer = 0.30000000000000004D }; C.PageSetup pageSetup2 = new C.PageSetup(); printSettings1.Append(headerFooter1); printSettings1.Append(pageMargins3); printSettings1.Append(pageSetup2); chartSpace1.Append(editingLanguage1); chartSpace1.Append(chart1); chartSpace1.Append(printSettings1); chartPart1.ChartSpace = chartSpace1; } // Generates content of chartPart2. private void GenerateMCLChartPart2Content(ChartPart chartPart2, double [] mclX, double [] mclY, double? mclMin, double? mclMax, string thresholds) { System.Collections.Generic.List lines = new System.Collections.Generic.List(); foreach (string t in thresholds.Split(',')) { double d; if (double.TryParse(t.Trim(), out d)) { lines.Add(d); } } C.ChartSpace chartSpace2 = new C.ChartSpace(); chartSpace2.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart"); chartSpace2.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main"); chartSpace2.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships"); C.EditingLanguage editingLanguage2 = new C.EditingLanguage() { Val = "en-US" }; C.Chart chart2 = new C.Chart(); C.PlotArea plotArea2 = new C.PlotArea(); C.Layout layout2 = new C.Layout(); C.ScatterChart scatterChart2 = new C.ScatterChart(); C.ScatterStyle scatterStyle2 = new C.ScatterStyle() { Val = C.ScatterStyleValues.Line }; C.ScatterChartSeries scatterChartSeries3 = new C.ScatterChartSeries(); C.Index index3 = new C.Index() { Val = (UInt32Value)0U }; C.Order order3 = new C.Order() { Val = (UInt32Value)0U }; C.ChartShapeProperties chartShapeProperties7 = new C.ChartShapeProperties(); A.Outline outline7 = new A.Outline(){ Width = 12700 }; A.SolidFill solidFill3 = new A.SolidFill(); A.RgbColorModelHex rgbColorModelHex3 = new A.RgbColorModelHex() { Val = "0070C0" }; solidFill3.Append(rgbColorModelHex3); outline7.Append(solidFill3); chartShapeProperties7.Append(outline7); C.Marker marker3 = new C.Marker(); C.Symbol symbol3 = new C.Symbol() { Val = C.MarkerStyleValues.None }; marker3.Append(symbol3); C.XValues xValues3 = new C.XValues(); C.NumberReference numberReference5 = new C.NumberReference(); C.Formula formula5 = new C.Formula(); formula5.Text = string.Format("Data!$I$2:$I${0}",2+mclX.Length); C.NumberingCache numberingCache5 = new C.NumberingCache(); C.FormatCode formatCode5 = new C.FormatCode(); formatCode5.Text = "General"; C.PointCount pointCount5 = new C.PointCount() { Val = (UInt32Value)3U }; numberingCache5.Append(formatCode5); numberingCache5.Append(pointCount5); for( int i = 0; i < mclX.Length; i ++) { C.NumericPoint p = new C.NumericPoint(){ Index = (UInt32Value)System.Convert.ToUInt32(i)}; C.NumericValue v = new C.NumericValue(){ Text = mclX[i].ToString()}; p.Append(v); numberingCache5.Append(p); } numberReference5.Append(formula5); numberReference5.Append(numberingCache5); xValues3.Append(numberReference5); C.YValues yValues3 = new C.YValues(); C.NumberReference numberReference6 = new C.NumberReference(); C.Formula formula6 = new C.Formula(); formula6.Text = string.Format("Data!$J$2:$J${0}", 2+mclY.Length); C.NumberingCache numberingCache6 = new C.NumberingCache(); C.FormatCode formatCode6 = new C.FormatCode(); formatCode6.Text = "General"; C.PointCount pointCount6 = new C.PointCount() { Val = (UInt32Value)System.Convert.ToUInt32(mclY.Length) }; numberingCache6.Append(formatCode6); numberingCache6.Append(pointCount6); for( int i = 0; i < mclY.Length; i ++ ) { C.NumericPoint p = new C.NumericPoint(){ Index = (UInt32Value)System.Convert.ToUInt32(i)}; C.NumericValue v = new C.NumericValue(){ Text = mclY[i].ToString()}; p.Append(v); numberingCache6.Append(p); } numberReference6.Append(formula6); numberReference6.Append(numberingCache6); yValues3.Append(numberReference6); C.Smooth smooth3 = new C.Smooth() { Val = false }; scatterChartSeries3.Append(index3); scatterChartSeries3.Append(order3); scatterChartSeries3.Append(chartShapeProperties7); scatterChartSeries3.Append(marker3); scatterChartSeries3.Append(xValues3); scatterChartSeries3.Append(yValues3); scatterChartSeries3.Append(smooth3); C.AxisId axisId5 = new C.AxisId() { Val = (UInt32Value)131037056U }; C.AxisId axisId6 = new C.AxisId() { Val = (UInt32Value)131038592U }; scatterChart2.Append(scatterStyle2); scatterChart2.Append(scatterChartSeries3); for (int i = 0; i < lines.Count; i++) { C.ScatterChartSeries scatterChartSeries = new C.ScatterChartSeries(); C.Index index = new C.Index() { Val = (UInt32Value)System.Convert.ToUInt32(2 + i) }; C.Order order = new C.Order() { Val = (UInt32Value)System.Convert.ToUInt32(2 + i) }; C.SeriesText seriesText = new C.SeriesText(); C.NumericValue numericValue31 = new C.NumericValue(); numericValue31.Text = string.Format("Threshold{0}", 1 + i); seriesText.Append(numericValue31); C.ChartShapeProperties chartShapeProperties = new C.ChartShapeProperties(); A.Outline outline = new A.Outline(){ Width = 12700 }; A.SolidFill solidFill = new A.SolidFill(); A.RgbColorModelHex rgbColorModelHex = new A.RgbColorModelHex() { Val = "A52A2A" }; solidFill.Append(rgbColorModelHex); outline.Append(solidFill); chartShapeProperties.Append(outline); C.Marker marker = new C.Marker(); C.Symbol symbol = new C.Symbol() { Val = C.MarkerStyleValues.None }; marker.Append(symbol); C.XValues xValues = new C.XValues(); C.NumberLiteral numberLiteral1 = new C.NumberLiteral(); C.FormatCode formatCode13 = new C.FormatCode(); formatCode13.Text = "General"; C.PointCount pointCount13 = new C.PointCount() { Val = (UInt32Value)2U }; C.NumericPoint numericPoint25 = new C.NumericPoint() { Index = (UInt32Value)0U }; C.NumericValue numericValue32 = new C.NumericValue(); numericValue32.Text = mclX.Min().ToString(); numericPoint25.Append(numericValue32); C.NumericPoint numericPoint26 = new C.NumericPoint() { Index = (UInt32Value)1U }; C.NumericValue numericValue33 = new C.NumericValue(); numericValue33.Text = mclX.Max().ToString(); numericPoint26.Append(numericValue33); numberLiteral1.Append(formatCode13); numberLiteral1.Append(pointCount13); numberLiteral1.Append(numericPoint25); numberLiteral1.Append(numericPoint26); xValues.Append(numberLiteral1); C.YValues yValues = new C.YValues(); C.NumberLiteral numberLiteral2 = new C.NumberLiteral(); C.FormatCode formatCode14 = new C.FormatCode(); formatCode14.Text = "General"; C.PointCount pointCount14 = new C.PointCount() { Val = (UInt32Value)2U }; C.NumericPoint numericPoint27 = new C.NumericPoint() { Index = (UInt32Value)0U }; C.NumericValue numericValue34 = new C.NumericValue(); numericValue34.Text = lines[i].ToString(); numericPoint27.Append(numericValue34); C.NumericPoint numericPoint28 = new C.NumericPoint() { Index = (UInt32Value)1U }; C.NumericValue numericValue35 = new C.NumericValue(); numericValue35.Text = lines[i].ToString(); numericPoint28.Append(numericValue35); numberLiteral2.Append(formatCode14); numberLiteral2.Append(pointCount14); numberLiteral2.Append(numericPoint27); numberLiteral2.Append(numericPoint28); yValues.Append(numberLiteral2); C.Smooth smooth = new C.Smooth() { Val = false }; scatterChartSeries.Append(index); scatterChartSeries.Append(order); scatterChartSeries.Append(seriesText); scatterChartSeries.Append(chartShapeProperties); scatterChartSeries.Append(marker); scatterChartSeries.Append(xValues); scatterChartSeries.Append(yValues); scatterChartSeries.Append(smooth); scatterChart2.Append(scatterChartSeries); } scatterChart2.Append(axisId5); scatterChart2.Append(axisId6); C.ValueAxis valueAxis3 = new C.ValueAxis(); C.AxisId axisId7 = new C.AxisId() { Val = (UInt32Value)131037056U }; C.Scaling scaling3 = new C.Scaling(); C.Orientation orientation3 = new C.Orientation() { Val = C.OrientationValues.MinMax }; scaling3.Append(orientation3); C.AxisPosition axisPosition3 = new C.AxisPosition() { Val = C.AxisPositionValues.Bottom }; C.MajorGridlines majorGridlines3 = new C.MajorGridlines(); C.MinorGridlines minorGridlines2 = new C.MinorGridlines(); C.ChartShapeProperties chartShapeProperties8 = new C.ChartShapeProperties(); A.Outline outline8 = new A.Outline() { Width = 12700 }; chartShapeProperties8.Append(outline8); minorGridlines2.Append(chartShapeProperties8); C.NumberingFormat numberingFormat3 = new C.NumberingFormat() { FormatCode = "General", SourceLinked = true }; C.TickLabelPosition tickLabelPosition3 = new C.TickLabelPosition() { Val = C.TickLabelPositionValues.NextTo }; C.ChartShapeProperties chartShapeProperties9 = new C.ChartShapeProperties(); A.Outline outline9 = new A.Outline() { Width = 38100 }; chartShapeProperties9.Append(outline9); C.CrossingAxis crossingAxis3 = new C.CrossingAxis() { Val = (UInt32Value)131038592U }; C.Crosses crosses3 = new C.Crosses() { Val = C.CrossesValues.AutoZero }; C.CrossBetween crossBetween3 = new C.CrossBetween() { Val = C.CrossBetweenValues.MidpointCategory }; valueAxis3.Append(axisId7); valueAxis3.Append(scaling3); valueAxis3.Append(axisPosition3); valueAxis3.Append(majorGridlines3); valueAxis3.Append(minorGridlines2); valueAxis3.Append(numberingFormat3); valueAxis3.Append(tickLabelPosition3); valueAxis3.Append(chartShapeProperties9); valueAxis3.Append(crossingAxis3); valueAxis3.Append(crosses3); valueAxis3.Append(crossBetween3); C.ValueAxis valueAxis4 = new C.ValueAxis(); C.AxisId axisId8 = new C.AxisId() { Val = (UInt32Value)131038592U }; C.Scaling scaling4 = new C.Scaling(); C.Orientation orientation4 = new C.Orientation() { Val = C.OrientationValues.MinMax }; if (null != mclMax) { C.MaxAxisValue maxAxisValue1 = new C.MaxAxisValue() { Val = mclMax }; scaling4.Append(maxAxisValue1); } if (null != mclMin) { C.MinAxisValue minAxisValue1 = new C.MinAxisValue() { Val = mclMin }; scaling4.Append(minAxisValue1); } scaling4.Append(orientation4); C.AxisPosition axisPosition4 = new C.AxisPosition() { Val = C.AxisPositionValues.Left }; C.MajorGridlines majorGridlines4 = new C.MajorGridlines(); C.ChartShapeProperties chartShapeProperties10 = new C.ChartShapeProperties(); A.Outline outline10 = new A.Outline() { Width = 12700 }; chartShapeProperties10.Append(outline10); majorGridlines4.Append(chartShapeProperties10); C.NumberingFormat numberingFormat4 = new C.NumberingFormat() { FormatCode = "General", SourceLinked = true }; C.TickLabelPosition tickLabelPosition4 = new C.TickLabelPosition() { Val = C.TickLabelPositionValues.Low }; C.ChartShapeProperties chartShapeProperties11 = new C.ChartShapeProperties(); A.Outline outline11 = new A.Outline() { Width = 38100 }; chartShapeProperties11.Append(outline11); C.CrossingAxis crossingAxis4 = new C.CrossingAxis() { Val = (UInt32Value)131037056U }; C.Crosses crosses4 = new C.Crosses() { Val = C.CrossesValues.AutoZero }; C.CrossBetween crossBetween4 = new C.CrossBetween() { Val = C.CrossBetweenValues.MidpointCategory }; valueAxis4.Append(axisId8); valueAxis4.Append(scaling4); valueAxis4.Append(axisPosition4); valueAxis4.Append(majorGridlines4); valueAxis4.Append(numberingFormat4); valueAxis4.Append(tickLabelPosition4); valueAxis4.Append(chartShapeProperties11); valueAxis4.Append(crossingAxis4); valueAxis4.Append(crosses4); valueAxis4.Append(crossBetween4); plotArea2.Append(layout2); plotArea2.Append(scatterChart2); plotArea2.Append(valueAxis3); plotArea2.Append(valueAxis4); C.PlotVisibleOnly plotVisibleOnly2 = new C.PlotVisibleOnly() { Val = true }; chart2.Append(plotArea2); chart2.Append(plotVisibleOnly2); C.PrintSettings printSettings2 = new C.PrintSettings(); C.HeaderFooter headerFooter2 = new C.HeaderFooter(); C.PageMargins pageMargins4 = new C.PageMargins() { Left = 0.70000000000000007D, Right = 0.70000000000000007D, Top = 0.75000000000000011D, Bottom = 0.75000000000000011D, Header = 0.30000000000000004D, Footer = 0.30000000000000004D }; C.PageSetup pageSetup3 = new C.PageSetup(); printSettings2.Append(headerFooter2); printSettings2.Append(pageMargins4); printSettings2.Append(pageSetup3); chartSpace2.Append(editingLanguage2); chartSpace2.Append(chart2); chartSpace2.Append(printSettings2); chartPart2.ChartSpace = chartSpace2; } // Generates content of chartPart3. private void GenerateTibiaChartPart3Content(ChartPart chartPart3, double [] tibia1X, double [] tibia1Y, double [] tibia2X, double [] tibia2Y, double [] tibia3X, double [] tibia3Y, double [] tibia4X, double [] tibia4Y, string timeUnits, double? tibiaMin, double? tibiaMax, string thresholds) { System.Collections.Generic.List lines = new System.Collections.Generic.List(); foreach (string t in thresholds.Split(',')) { double d; if (double.TryParse(t.Trim(), out d)) { lines.Add(d); } } C.ChartSpace chartSpace3 = new C.ChartSpace(); chartSpace3.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart"); chartSpace3.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main"); chartSpace3.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships"); C.EditingLanguage editingLanguage3 = new C.EditingLanguage() { Val = "en-US" }; C.Chart chart3 = new C.Chart(); C.PlotArea plotArea3 = new C.PlotArea(); C.Layout layout3 = new C.Layout(); C.ScatterChart scatterChart3 = new C.ScatterChart(); C.ScatterStyle scatterStyle3 = new C.ScatterStyle() { Val = C.ScatterStyleValues.Line }; C.ScatterChartSeries scatterChartSeries4 = new C.ScatterChartSeries(); C.Index index4 = new C.Index() { Val = (UInt32Value)0U }; C.Order order4 = new C.Order() { Val = (UInt32Value)0U }; C.SeriesText seriesText1 = new C.SeriesText(); C.NumericValue numericValue19 = new C.NumericValue(); numericValue19.Text = "Tibia"; seriesText1.Append(numericValue19); C.ChartShapeProperties chartShapeProperties12 = new C.ChartShapeProperties(); A.Outline outline12 = new A.Outline(){ Width = 12700 }; A.SolidFill solidFill4 = new A.SolidFill(); A.RgbColorModelHex rgbColorModelHex4 = new A.RgbColorModelHex() { Val = "0070C0" }; solidFill4.Append(rgbColorModelHex4); outline12.Append(solidFill4); chartShapeProperties12.Append(outline12); C.Marker marker4 = new C.Marker(); C.Symbol symbol4 = new C.Symbol() { Val = C.MarkerStyleValues.None }; marker4.Append(symbol4); C.XValues xValues4 = new C.XValues(); C.NumberReference numberReference7 = new C.NumberReference(); C.Formula formula7 = new C.Formula(); formula7.Text = string.Format("Data!$A$2:$A${0}", 2+tibia1X.Length); C.NumberingCache numberingCache7 = new C.NumberingCache(); C.FormatCode formatCode7 = new C.FormatCode(); formatCode7.Text = "General"; C.PointCount pointCount7 = new C.PointCount() { Val = (UInt32Value)System.Convert.ToUInt32(tibia1X.Length) }; numberingCache7.Append(formatCode7); numberingCache7.Append(pointCount7); for( int i = 0; i < tibia1X.Length; i ++ ) { C.NumericPoint p = new C.NumericPoint(){ Index = (UInt32Value)System.Convert.ToUInt32(i)}; C.NumericValue v = new C.NumericValue(){ Text = tibia1X[i].ToString()}; p.Append(v); numberingCache7.Append(p); } numberReference7.Append(formula7); numberReference7.Append(numberingCache7); xValues4.Append(numberReference7); C.YValues yValues4 = new C.YValues(); C.NumberReference numberReference8 = new C.NumberReference(); C.Formula formula8 = new C.Formula(); formula8.Text = string.Format("Data!$B$2:$B${0}", 2 + tibia1Y.Length); C.NumberingCache numberingCache8 = new C.NumberingCache(); C.FormatCode formatCode8 = new C.FormatCode(); formatCode8.Text = "General"; C.PointCount pointCount8 = new C.PointCount() { Val = (UInt32Value)3U }; numberingCache8.Append(formatCode8); numberingCache8.Append(pointCount8); for( int i = 0; i < tibia1Y.Length; i ++ ) { C.NumericPoint p = new C.NumericPoint(){ Index = (UInt32Value)System.Convert.ToUInt32(i)}; C.NumericValue v = new C.NumericValue(){ Text = tibia1Y[i].ToString()}; p.Append(v); numberingCache8.Append(p); } numberReference8.Append(formula8); numberReference8.Append(numberingCache8); yValues4.Append(numberReference8); C.Smooth smooth4 = new C.Smooth() { Val = false }; scatterChartSeries4.Append(index4); scatterChartSeries4.Append(order4); scatterChartSeries4.Append(seriesText1); scatterChartSeries4.Append(chartShapeProperties12); scatterChartSeries4.Append(marker4); scatterChartSeries4.Append(xValues4); scatterChartSeries4.Append(yValues4); scatterChartSeries4.Append(smooth4); C.ScatterChartSeries scatterChartSeries5 = new C.ScatterChartSeries(); C.Index index5 = new C.Index() { Val = (UInt32Value)1U }; C.Order order5 = new C.Order() { Val = (UInt32Value)1U }; C.ChartShapeProperties chartShapeProperties13 = new C.ChartShapeProperties(); A.Outline outline13 = new A.Outline(){ Width = 12700 }; A.SolidFill solidFill5 = new A.SolidFill(); A.RgbColorModelHex rgbColorModelHex5 = new A.RgbColorModelHex() { Val = "FF0000" }; solidFill5.Append(rgbColorModelHex5); outline13.Append(solidFill5); chartShapeProperties13.Append(outline13); C.Marker marker5 = new C.Marker(); C.Symbol symbol5 = new C.Symbol() { Val = C.MarkerStyleValues.None }; marker5.Append(symbol5); C.XValues xValues5 = new C.XValues(); C.NumberReference numberReference9 = new C.NumberReference(); C.Formula formula9 = new C.Formula(); formula9.Text = string.Format("Data!$C$2:$C${0}", 2 + tibia2X.Length); C.NumberingCache numberingCache9 = new C.NumberingCache(); C.FormatCode formatCode9 = new C.FormatCode(); formatCode9.Text = "General"; C.PointCount pointCount9 = new C.PointCount() { Val = (UInt32Value)System.Convert.ToUInt32(tibia2X.Length) }; numberingCache9.Append(formatCode9); numberingCache9.Append(pointCount9); for( int i = 0; i < tibia2X.Length; i ++ ) { C.NumericPoint p = new C.NumericPoint(){ Index = (UInt32Value)System.Convert.ToUInt32(i)}; C.NumericValue v = new C.NumericValue(){ Text = tibia2X[i].ToString()}; p.Append(v); numberingCache9.Append(p); } numberReference9.Append(formula9); numberReference9.Append(numberingCache9); xValues5.Append(numberReference9); C.YValues yValues5 = new C.YValues(); C.NumberReference numberReference10 = new C.NumberReference(); C.Formula formula10 = new C.Formula(); formula10.Text = string.Format("Data!$D$2:$D${0}",2+tibia2Y.Length); C.NumberingCache numberingCache10 = new C.NumberingCache(); C.FormatCode formatCode10 = new C.FormatCode(); formatCode10.Text = "General"; C.PointCount pointCount10 = new C.PointCount() { Val = (UInt32Value)System.Convert.ToUInt32(tibia2Y.Length) }; numberingCache10.Append(formatCode10); numberingCache10.Append(pointCount10); for( int i = 0; i < tibia2Y.Length; i ++ ) { C.NumericPoint p = new C.NumericPoint(){ Index = (UInt32Value)System.Convert.ToUInt32(i)}; C.NumericValue v = new C.NumericValue(){ Text = tibia2Y[i].ToString()}; p.Append(v); numberingCache10.Append(p); } numberReference10.Append(formula10); numberReference10.Append(numberingCache10); yValues5.Append(numberReference10); C.Smooth smooth5 = new C.Smooth() { Val = false }; scatterChartSeries5.Append(index5); scatterChartSeries5.Append(order5); scatterChartSeries5.Append(chartShapeProperties13); scatterChartSeries5.Append(marker5); scatterChartSeries5.Append(xValues5); scatterChartSeries5.Append(yValues5); scatterChartSeries5.Append(smooth5); C.ScatterChartSeries scatterChartSeries6 = new C.ScatterChartSeries(); C.Index index6 = new C.Index() { Val = (UInt32Value)2U }; C.Order order6 = new C.Order() { Val = (UInt32Value)2U }; C.ChartShapeProperties chartShapeProperties14 = new C.ChartShapeProperties(); A.Outline outline14 = new A.Outline(){ Width = 12700 }; A.SolidFill solidFill6 = new A.SolidFill(); A.RgbColorModelHex rgbColorModelHex6 = new A.RgbColorModelHex() { Val = "00B050" }; solidFill6.Append(rgbColorModelHex6); outline14.Append(solidFill6); chartShapeProperties14.Append(outline14); C.Marker marker6 = new C.Marker(); C.Symbol symbol6 = new C.Symbol() { Val = C.MarkerStyleValues.None }; marker6.Append(symbol6); C.XValues xValues6 = new C.XValues(); C.NumberReference numberReference11 = new C.NumberReference(); C.Formula formula11 = new C.Formula(); formula11.Text = string.Format("Data!$E$2:$E${0}", 2 + tibia3X.Length); C.NumberingCache numberingCache11 = new C.NumberingCache(); C.FormatCode formatCode11 = new C.FormatCode(); formatCode11.Text = "General"; C.PointCount pointCount11 = new C.PointCount() { Val = (UInt32Value)System.Convert.ToUInt32(tibia3X.Length) }; numberingCache11.Append(formatCode11); numberingCache11.Append(pointCount11); for( int i = 0; i < tibia3X.Length; i ++ ) { C.NumericPoint p = new C.NumericPoint(){ Index = (UInt32Value)System.Convert.ToUInt32(i)}; C.NumericValue v = new C.NumericValue(){ Text = tibia3X[i].ToString()}; p.Append(v); numberingCache11.Append(p); } numberReference11.Append(formula11); numberReference11.Append(numberingCache11); xValues6.Append(numberReference11); C.YValues yValues6 = new C.YValues(); C.NumberReference numberReference12 = new C.NumberReference(); C.Formula formula12 = new C.Formula(); formula12.Text = string.Format("Data!$F$2:$F${0}", 2+tibia3Y.Length); C.NumberingCache numberingCache12 = new C.NumberingCache(); C.FormatCode formatCode12 = new C.FormatCode(); formatCode12.Text = "General"; C.PointCount pointCount12 = new C.PointCount() { Val = (UInt32Value)System.Convert.ToUInt32(tibia3Y.Length) }; numberingCache12.Append(formatCode12); numberingCache12.Append(pointCount12); for( int i = 0; i < tibia3Y.Length; i ++ ) { C.NumericPoint p = new C.NumericPoint(){ Index = (UInt32Value)System.Convert.ToUInt32(i)}; C.NumericValue v = new C.NumericValue(){ Text = tibia3Y[i].ToString()}; p.Append(v); numberingCache12.Append(p); } numberReference12.Append(formula12); numberReference12.Append(numberingCache12); yValues6.Append(numberReference12); C.Smooth smooth6 = new C.Smooth() { Val = false }; scatterChartSeries6.Append(index6); scatterChartSeries6.Append(order6); scatterChartSeries6.Append(chartShapeProperties14); scatterChartSeries6.Append(marker6); scatterChartSeries6.Append(xValues6); scatterChartSeries6.Append(yValues6); scatterChartSeries6.Append(smooth6); C.ScatterChartSeries scatterChartSeries7 = new C.ScatterChartSeries(); C.Index index7 = new C.Index() { Val = (UInt32Value)3U }; C.Order order7 = new C.Order() { Val = (UInt32Value)3U }; C.ChartShapeProperties chartShapeProperties15 = new C.ChartShapeProperties(); A.Outline outline15 = new A.Outline(){ Width = 12700 }; A.SolidFill solidFill7 = new A.SolidFill(); A.RgbColorModelHex rgbColorModelHex7 = new A.RgbColorModelHex() { Val = "FFC000" }; solidFill7.Append(rgbColorModelHex7); outline15.Append(solidFill7); chartShapeProperties15.Append(outline15); C.Marker marker7 = new C.Marker(); C.Symbol symbol7 = new C.Symbol() { Val = C.MarkerStyleValues.None }; marker7.Append(symbol7); C.XValues xValues7 = new C.XValues(); C.NumberReference numberReference13 = new C.NumberReference(); C.Formula formula13 = new C.Formula(); formula13.Text = string.Format("Data!$G$2:$G${0}", 2 + tibia4X.Length); C.NumberingCache numberingCache13 = new C.NumberingCache(); C.FormatCode formatCode13 = new C.FormatCode(); formatCode13.Text = "General"; C.PointCount pointCount13 = new C.PointCount() { Val = (UInt32Value)System.Convert.ToUInt32(tibia4X.Length) }; numberingCache13.Append(formatCode13); numberingCache13.Append(pointCount13); for( int i = 0; i < tibia4X.Length; i ++ ) { C.NumericPoint p = new C.NumericPoint(){ Index = System.Convert.ToUInt32(i)}; C.NumericValue v = new C.NumericValue(){ Text = tibia4X[i].ToString()}; p.Append(v); numberingCache13.Append(p); } numberReference13.Append(formula13); numberReference13.Append(numberingCache13); xValues7.Append(numberReference13); C.YValues yValues7 = new C.YValues(); C.NumberReference numberReference14 = new C.NumberReference(); C.Formula formula14 = new C.Formula(); formula14.Text = string.Format("Data!$H$2:$H${0}", 2 + tibia4Y.Length); C.NumberingCache numberingCache14 = new C.NumberingCache(); C.FormatCode formatCode14 = new C.FormatCode(); formatCode14.Text = "General"; C.PointCount pointCount14 = new C.PointCount() { Val = (UInt32Value)3U }; numberingCache14.Append(formatCode14); numberingCache14.Append(pointCount14); for( int i = 0; i < tibia4Y.Length; i ++) { C.NumericPoint p = new C.NumericPoint(){ Index = System.Convert.ToUInt32(i)}; C.NumericValue v = new C.NumericValue(){ Text = tibia4Y[i].ToString()}; p.Append(v); numberingCache14.Append(p); } numberReference14.Append(formula14); numberReference14.Append(numberingCache14); yValues7.Append(numberReference14); C.Smooth smooth7 = new C.Smooth() { Val = false }; scatterChartSeries7.Append(index7); scatterChartSeries7.Append(order7); scatterChartSeries7.Append(chartShapeProperties15); scatterChartSeries7.Append(marker7); scatterChartSeries7.Append(xValues7); scatterChartSeries7.Append(yValues7); scatterChartSeries7.Append(smooth7); C.AxisId axisId9 = new C.AxisId() { Val = (UInt32Value)115836416U }; C.AxisId axisId10 = new C.AxisId() { Val = (UInt32Value)115838336U }; scatterChart3.Append(scatterStyle3); scatterChart3.Append(scatterChartSeries4); scatterChart3.Append(scatterChartSeries5); scatterChart3.Append(scatterChartSeries6); scatterChart3.Append(scatterChartSeries7); double minX = 0D; double maxX = 0D; if (tibia1X.Count() > 0 && tibia2X.Count() > 0) { minX = System.Math.Min(tibia1X.Min(), tibia2X.Min()); maxX = System.Math.Max(tibia1X.Max(), tibia2X.Max()); } if (tibia3X.Count() > 0) { minX = System.Math.Min(minX, tibia3X.Min()); maxX = System.Math.Max(maxX, tibia3X.Max()); } if (tibia4X.Count() > 0) { minX = System.Math.Min(minX, tibia4X.Min()); maxX = System.Math.Max(maxX, tibia4X.Max()); } for (int i = 0; i < lines.Count; i++) { C.ScatterChartSeries scatterChartSeries = new C.ScatterChartSeries(); C.Index index = new C.Index() { Val = (UInt32Value)System.Convert.ToUInt32(5 + i) }; C.Order order = new C.Order() { Val = (UInt32Value)System.Convert.ToUInt32(5 + i) }; C.SeriesText seriesText = new C.SeriesText(); C.NumericValue numericValue31 = new C.NumericValue(); numericValue31.Text = string.Format("Threshold{0}", 1 + i); seriesText.Append(numericValue31); C.ChartShapeProperties chartShapeProperties = new C.ChartShapeProperties(); A.Outline outline = new A.Outline(){ Width = 12700 }; A.SolidFill solidFill = new A.SolidFill(); A.RgbColorModelHex rgbColorModelHex = new A.RgbColorModelHex() { Val = "A52A2A" }; solidFill.Append(rgbColorModelHex); outline.Append(solidFill); chartShapeProperties.Append(outline); C.Marker marker = new C.Marker(); C.Symbol symbol = new C.Symbol() { Val = C.MarkerStyleValues.None }; marker.Append(symbol); C.XValues xValues = new C.XValues(); C.NumberLiteral numberLiteral1 = new C.NumberLiteral(); C.FormatCode formatCode = new C.FormatCode(); formatCode.Text = "General"; C.PointCount pointCount = new C.PointCount() { Val = (UInt32Value)2U }; C.NumericPoint numericPoint25 = new C.NumericPoint() { Index = (UInt32Value)0U }; C.NumericValue numericValue32 = new C.NumericValue(); numericValue32.Text = minX.ToString(); numericPoint25.Append(numericValue32); C.NumericPoint numericPoint26 = new C.NumericPoint() { Index = (UInt32Value)1U }; C.NumericValue numericValue33 = new C.NumericValue(); numericValue33.Text = maxX.ToString(); numericPoint26.Append(numericValue33); numberLiteral1.Append(formatCode); numberLiteral1.Append(pointCount); numberLiteral1.Append(numericPoint25); numberLiteral1.Append(numericPoint26); xValues.Append(numberLiteral1); C.YValues yValues = new C.YValues(); C.NumberLiteral numberLiteral2 = new C.NumberLiteral(); C.FormatCode formatCode30 = new C.FormatCode(); formatCode30.Text = "General"; C.PointCount pointCount30 = new C.PointCount() { Val = (UInt32Value)2U }; C.NumericPoint numericPoint27 = new C.NumericPoint() { Index = (UInt32Value)0U }; C.NumericValue numericValue34 = new C.NumericValue(); numericValue34.Text = lines[i].ToString(); numericPoint27.Append(numericValue34); C.NumericPoint numericPoint28 = new C.NumericPoint() { Index = (UInt32Value)1U }; C.NumericValue numericValue35 = new C.NumericValue(); numericValue35.Text = lines[i].ToString(); numericPoint28.Append(numericValue35); numberLiteral2.Append(formatCode30); numberLiteral2.Append(pointCount30); numberLiteral2.Append(numericPoint27); numberLiteral2.Append(numericPoint28); yValues.Append(numberLiteral2); C.Smooth smooth = new C.Smooth() { Val = false }; scatterChartSeries.Append(index); scatterChartSeries.Append(order); scatterChartSeries.Append(seriesText); scatterChartSeries.Append(chartShapeProperties); scatterChartSeries.Append(marker); scatterChartSeries.Append(xValues); scatterChartSeries.Append(yValues); scatterChartSeries.Append(smooth); scatterChart3.Append(scatterChartSeries); } scatterChart3.Append(axisId9); scatterChart3.Append(axisId10); C.ValueAxis valueAxis5 = new C.ValueAxis(); C.AxisId axisId11 = new C.AxisId() { Val = (UInt32Value)115836416U }; C.Scaling scaling5 = new C.Scaling(); C.Orientation orientation5 = new C.Orientation() { Val = C.OrientationValues.MinMax }; scaling5.Append(orientation5); C.AxisPosition axisPosition5 = new C.AxisPosition() { Val = C.AxisPositionValues.Bottom }; C.MajorGridlines majorGridlines5 = new C.MajorGridlines(); C.ChartShapeProperties chartShapeProperties16 = new C.ChartShapeProperties(); A.Outline outline16 = new A.Outline() { Width = 12700 }; chartShapeProperties16.Append(outline16); majorGridlines5.Append(chartShapeProperties16); C.MinorGridlines minorGridlines3 = new C.MinorGridlines(); C.Title title1 = new C.Title(); C.ChartText chartText1 = new C.ChartText(); C.RichText richText1 = new C.RichText(); A.BodyProperties bodyProperties1 = new A.BodyProperties(); A.ListStyle listStyle1 = new A.ListStyle(); A.Paragraph paragraph1 = new A.Paragraph(); A.ParagraphProperties paragraphProperties1 = new A.ParagraphProperties(); A.DefaultRunProperties defaultRunProperties1 = new A.DefaultRunProperties(); paragraphProperties1.Append(defaultRunProperties1); A.Run run1 = new A.Run(); A.RunProperties runProperties1 = new A.RunProperties() { Language = "en-US" }; A.Text text1 = new A.Text(); text1.Text = timeUnits; run1.Append(runProperties1); run1.Append(text1); paragraph1.Append(paragraphProperties1); paragraph1.Append(run1); richText1.Append(bodyProperties1); richText1.Append(listStyle1); richText1.Append(paragraph1); chartText1.Append(richText1); C.Layout layout4 = new C.Layout(); title1.Append(chartText1); title1.Append(layout4); C.NumberingFormat numberingFormat5 = new C.NumberingFormat() { FormatCode = "General", SourceLinked = true }; C.TickLabelPosition tickLabelPosition5 = new C.TickLabelPosition() { Val = C.TickLabelPositionValues.Low }; C.ChartShapeProperties chartShapeProperties17 = new C.ChartShapeProperties(); A.Outline outline17 = new A.Outline() { Width = 38100 }; chartShapeProperties17.Append(outline17); C.CrossingAxis crossingAxis5 = new C.CrossingAxis() { Val = (UInt32Value)115838336U }; C.Crosses crosses5 = new C.Crosses() { Val = C.CrossesValues.AutoZero }; C.CrossBetween crossBetween5 = new C.CrossBetween() { Val = C.CrossBetweenValues.MidpointCategory }; valueAxis5.Append(axisId11); valueAxis5.Append(scaling5); valueAxis5.Append(axisPosition5); valueAxis5.Append(majorGridlines5); valueAxis5.Append(minorGridlines3); valueAxis5.Append(title1); valueAxis5.Append(numberingFormat5); valueAxis5.Append(tickLabelPosition5); valueAxis5.Append(chartShapeProperties17); valueAxis5.Append(crossingAxis5); valueAxis5.Append(crosses5); valueAxis5.Append(crossBetween5); C.ValueAxis valueAxis6 = new C.ValueAxis(); C.AxisId axisId12 = new C.AxisId() { Val = (UInt32Value)115838336U }; C.Scaling scaling6 = new C.Scaling(); C.Orientation orientation6 = new C.Orientation() { Val = C.OrientationValues.MinMax }; scaling6.Append(orientation6); if (null != tibiaMax) { C.MaxAxisValue maxAxisValue1 = new C.MaxAxisValue() { Val = tibiaMax }; scaling6.Append(maxAxisValue1); } if (null != tibiaMin) { C.MinAxisValue minAxisValue1 = new C.MinAxisValue() { Val = tibiaMin }; scaling6.Append(minAxisValue1); } C.AxisPosition axisPosition6 = new C.AxisPosition() { Val = C.AxisPositionValues.Left }; C.MajorGridlines majorGridlines6 = new C.MajorGridlines(); C.ChartShapeProperties chartShapeProperties18 = new C.ChartShapeProperties(); A.Outline outline18 = new A.Outline() { Width = 12700 }; chartShapeProperties18.Append(outline18); majorGridlines6.Append(chartShapeProperties18); C.NumberingFormat numberingFormat6 = new C.NumberingFormat() { FormatCode = "General", SourceLinked = true }; C.TickLabelPosition tickLabelPosition6 = new C.TickLabelPosition() { Val = C.TickLabelPositionValues.Low }; C.ChartShapeProperties chartShapeProperties19 = new C.ChartShapeProperties(); A.Outline outline19 = new A.Outline() { Width = 38100 }; chartShapeProperties19.Append(outline19); C.CrossingAxis crossingAxis6 = new C.CrossingAxis() { Val = (UInt32Value)115836416U }; C.Crosses crosses6 = new C.Crosses() { Val = C.CrossesValues.AutoZero }; C.CrossBetween crossBetween6 = new C.CrossBetween() { Val = C.CrossBetweenValues.MidpointCategory }; valueAxis6.Append(axisId12); valueAxis6.Append(scaling6); valueAxis6.Append(axisPosition6); valueAxis6.Append(majorGridlines6); valueAxis6.Append(numberingFormat6); valueAxis6.Append(tickLabelPosition6); valueAxis6.Append(chartShapeProperties19); valueAxis6.Append(crossingAxis6); valueAxis6.Append(crosses6); valueAxis6.Append(crossBetween6); plotArea3.Append(layout3); plotArea3.Append(scatterChart3); plotArea3.Append(valueAxis5); plotArea3.Append(valueAxis6); C.PlotVisibleOnly plotVisibleOnly3 = new C.PlotVisibleOnly() { Val = true }; chart3.Append(plotArea3); chart3.Append(plotVisibleOnly3); C.PrintSettings printSettings3 = new C.PrintSettings(); C.HeaderFooter headerFooter3 = new C.HeaderFooter(); C.PageMargins pageMargins5 = new C.PageMargins() { Left = 0.70000000000000007D, Right = 0.70000000000000007D, Top = 0.75000000000000011D, Bottom = 0.75000000000000011D, Header = 0.30000000000000004D, Footer = 0.30000000000000004D }; C.PageSetup pageSetup4 = new C.PageSetup() { Orientation = C.PageSetupOrientationValues.Landscape }; printSettings3.Append(headerFooter3); printSettings3.Append(pageMargins5); printSettings3.Append(pageSetup4); chartSpace3.Append(editingLanguage3); chartSpace3.Append(chart3); chartSpace3.Append(printSettings3); chartPart3.ChartSpace = chartSpace3; } // Generates content of chartPart4. private void GenerateLCLChartPart4Content(ChartPart chartPart4, double [] lclX, double [] lclY, string timeUnits, double? lclMin, double? lclMax, string thresholds) { System.Collections.Generic.List lines = new System.Collections.Generic.List(); foreach (string t in thresholds.Split(',')) { double d; if (double.TryParse(t.Trim(), out d)) { lines.Add(d); } } C.ChartSpace chartSpace4 = new C.ChartSpace(); chartSpace4.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart"); chartSpace4.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main"); chartSpace4.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships"); C.EditingLanguage editingLanguage4 = new C.EditingLanguage() { Val = "en-US" }; C.Chart chart4 = new C.Chart(); C.PlotArea plotArea4 = new C.PlotArea(); C.Layout layout5 = new C.Layout(); C.ScatterChart scatterChart4 = new C.ScatterChart(); C.ScatterStyle scatterStyle4 = new C.ScatterStyle() { Val = C.ScatterStyleValues.Line }; C.ScatterChartSeries scatterChartSeries8 = new C.ScatterChartSeries(); C.Index index8 = new C.Index() { Val = (UInt32Value)0U }; C.Order order8 = new C.Order() { Val = (UInt32Value)0U }; C.ChartShapeProperties chartShapeProperties20 = new C.ChartShapeProperties(); A.Outline outline20 = new A.Outline(){ Width = 12700 }; A.SolidFill solidFill8 = new A.SolidFill(); A.RgbColorModelHex rgbColorModelHex8 = new A.RgbColorModelHex() { Val = "0070C0" }; solidFill8.Append(rgbColorModelHex8); outline20.Append(solidFill8); chartShapeProperties20.Append(outline20); C.Marker marker8 = new C.Marker(); C.Symbol symbol8 = new C.Symbol() { Val = C.MarkerStyleValues.None }; marker8.Append(symbol8); C.XValues xValues8 = new C.XValues(); C.NumberReference numberReference15 = new C.NumberReference(); C.Formula formula15 = new C.Formula(); formula15.Text = string.Format("Data!$U$2:$U${0}", 2 + lclX.Length); C.NumberingCache numberingCache15 = new C.NumberingCache(); C.FormatCode formatCode15 = new C.FormatCode(); formatCode15.Text = "General"; C.PointCount pointCount15 = new C.PointCount() { Val = (UInt32Value)System.Convert.ToUInt32(lclX.Length) }; numberingCache15.Append(formatCode15); numberingCache15.Append(pointCount15); for( int i = 0; i < lclX.Length; i ++ ) { C.NumericPoint p = new C.NumericPoint(){ Index = (UInt32Value)System.Convert.ToUInt32(i)}; C.NumericValue v = new C.NumericValue(){ Text = lclX[i].ToString()}; p.Append(v); numberingCache15.Append(p); } numberReference15.Append(formula15); numberReference15.Append(numberingCache15); xValues8.Append(numberReference15); C.YValues yValues8 = new C.YValues(); C.NumberReference numberReference16 = new C.NumberReference(); C.Formula formula16 = new C.Formula(); formula16.Text = string.Format("Data!$V$2:$V${0}", 2 + lclY.Length); C.NumberingCache numberingCache16 = new C.NumberingCache(); C.FormatCode formatCode16 = new C.FormatCode(); formatCode16.Text = "General"; C.PointCount pointCount16 = new C.PointCount() { Val = (UInt32Value)3U }; numberingCache16.Append(formatCode16); numberingCache16.Append(pointCount16); for( int i = 0; i < lclY.Length; i ++ ) { C.NumericPoint p = new C.NumericPoint(){ Index = (UInt32Value)System.Convert.ToUInt32(i)}; C.NumericValue v = new C.NumericValue(){ Text = lclY[i].ToString()}; p.Append(v); numberingCache16.Append(p); } numberReference16.Append(formula16); numberReference16.Append(numberingCache16); yValues8.Append(numberReference16); C.Smooth smooth8 = new C.Smooth() { Val = false }; scatterChartSeries8.Append(index8); scatterChartSeries8.Append(order8); scatterChartSeries8.Append(chartShapeProperties20); scatterChartSeries8.Append(marker8); scatterChartSeries8.Append(xValues8); scatterChartSeries8.Append(yValues8); scatterChartSeries8.Append(smooth8); C.AxisId axisId13 = new C.AxisId() { Val = (UInt32Value)136656768U }; C.AxisId axisId14 = new C.AxisId() { Val = (UInt32Value)136658304U }; scatterChart4.Append(scatterStyle4); scatterChart4.Append(scatterChartSeries8); for (int i = 0; i < lines.Count; i++) { C.ScatterChartSeries scatterChartSeries = new C.ScatterChartSeries(); C.Index index = new C.Index() { Val = (UInt32Value)System.Convert.ToUInt32(2 + i) }; C.Order order = new C.Order() { Val = (UInt32Value)System.Convert.ToUInt32(2 + i) }; C.SeriesText seriesText = new C.SeriesText(); C.NumericValue numericValue31 = new C.NumericValue(); numericValue31.Text = string.Format("Threshold{0}", 1 + i); seriesText.Append(numericValue31); C.ChartShapeProperties chartShapeProperties = new C.ChartShapeProperties(); A.Outline outline = new A.Outline(){ Width = 12700 }; A.SolidFill solidFill = new A.SolidFill(); A.RgbColorModelHex rgbColorModelHex = new A.RgbColorModelHex() { Val = "A52A2A" }; solidFill.Append(rgbColorModelHex); outline.Append(solidFill); chartShapeProperties.Append(outline); C.Marker marker = new C.Marker(); C.Symbol symbol = new C.Symbol() { Val = C.MarkerStyleValues.None }; marker.Append(symbol); C.XValues xValues = new C.XValues(); C.NumberLiteral numberLiteral1 = new C.NumberLiteral(); C.FormatCode formatCode13 = new C.FormatCode(); formatCode13.Text = "General"; C.PointCount pointCount13 = new C.PointCount() { Val = (UInt32Value)2U }; C.NumericPoint numericPoint25 = new C.NumericPoint() { Index = (UInt32Value)0U }; C.NumericValue numericValue32 = new C.NumericValue(); numericValue32.Text = lclX.Min().ToString(); numericPoint25.Append(numericValue32); C.NumericPoint numericPoint26 = new C.NumericPoint() { Index = (UInt32Value)1U }; C.NumericValue numericValue33 = new C.NumericValue(); numericValue33.Text = lclX.Max().ToString(); numericPoint26.Append(numericValue33); numberLiteral1.Append(formatCode13); numberLiteral1.Append(pointCount13); numberLiteral1.Append(numericPoint25); numberLiteral1.Append(numericPoint26); xValues.Append(numberLiteral1); C.YValues yValues = new C.YValues(); C.NumberLiteral numberLiteral2 = new C.NumberLiteral(); C.FormatCode formatCode14 = new C.FormatCode(); formatCode14.Text = "General"; C.PointCount pointCount14 = new C.PointCount() { Val = (UInt32Value)2U }; C.NumericPoint numericPoint27 = new C.NumericPoint() { Index = (UInt32Value)0U }; C.NumericValue numericValue34 = new C.NumericValue(); numericValue34.Text = lines[i].ToString(); numericPoint27.Append(numericValue34); C.NumericPoint numericPoint28 = new C.NumericPoint() { Index = (UInt32Value)1U }; C.NumericValue numericValue35 = new C.NumericValue(); numericValue35.Text = lines[i].ToString(); numericPoint28.Append(numericValue35); numberLiteral2.Append(formatCode14); numberLiteral2.Append(pointCount14); numberLiteral2.Append(numericPoint27); numberLiteral2.Append(numericPoint28); yValues.Append(numberLiteral2); C.Smooth smooth = new C.Smooth() { Val = false }; scatterChartSeries.Append(index); scatterChartSeries.Append(order); scatterChartSeries.Append(seriesText); scatterChartSeries.Append(chartShapeProperties); scatterChartSeries.Append(marker); scatterChartSeries.Append(xValues); scatterChartSeries.Append(yValues); scatterChartSeries.Append(smooth); scatterChart4.Append(scatterChartSeries); } scatterChart4.Append(axisId13); scatterChart4.Append(axisId14); C.ValueAxis valueAxis7 = new C.ValueAxis(); C.AxisId axisId15 = new C.AxisId() { Val = (UInt32Value)136656768U }; C.Scaling scaling7 = new C.Scaling(); C.Orientation orientation7 = new C.Orientation() { Val = C.OrientationValues.MinMax }; scaling7.Append(orientation7); C.AxisPosition axisPosition7 = new C.AxisPosition() { Val = C.AxisPositionValues.Bottom }; C.MajorGridlines majorGridlines7 = new C.MajorGridlines(); C.MinorGridlines minorGridlines4 = new C.MinorGridlines(); C.ChartShapeProperties chartShapeProperties21 = new C.ChartShapeProperties(); A.Outline outline21 = new A.Outline() { Width = 12700 }; chartShapeProperties21.Append(outline21); minorGridlines4.Append(chartShapeProperties21); C.NumberingFormat numberingFormat7 = new C.NumberingFormat() { FormatCode = "General", SourceLinked = true }; C.TickLabelPosition tickLabelPosition7 = new C.TickLabelPosition() { Val = C.TickLabelPositionValues.NextTo }; C.ChartShapeProperties chartShapeProperties22 = new C.ChartShapeProperties(); A.Outline outline22 = new A.Outline() { Width = 38100 }; chartShapeProperties22.Append(outline22); C.CrossingAxis crossingAxis7 = new C.CrossingAxis() { Val = (UInt32Value)136658304U }; C.Crosses crosses7 = new C.Crosses() { Val = C.CrossesValues.AutoZero }; C.CrossBetween crossBetween7 = new C.CrossBetween() { Val = C.CrossBetweenValues.MidpointCategory }; valueAxis7.Append(axisId15); valueAxis7.Append(scaling7); valueAxis7.Append(axisPosition7); valueAxis7.Append(majorGridlines7); valueAxis7.Append(minorGridlines4); valueAxis7.Append(numberingFormat7); valueAxis7.Append(tickLabelPosition7); valueAxis7.Append(chartShapeProperties22); valueAxis7.Append(crossingAxis7); valueAxis7.Append(crosses7); valueAxis7.Append(crossBetween7); C.ValueAxis valueAxis8 = new C.ValueAxis(); C.AxisId axisId16 = new C.AxisId() { Val = (UInt32Value)136658304U }; C.Scaling scaling8 = new C.Scaling(); C.Orientation orientation8 = new C.Orientation() { Val = C.OrientationValues.MinMax }; scaling8.Append(orientation8); if (null != lclMax) { C.MaxAxisValue maxAxisValue1 = new C.MaxAxisValue() { Val = lclMax }; scaling8.Append(maxAxisValue1); } if (null != lclMin) { C.MinAxisValue minAxisValue1 = new C.MinAxisValue() { Val = lclMin }; scaling8.Append(minAxisValue1); } C.AxisPosition axisPosition8 = new C.AxisPosition() { Val = C.AxisPositionValues.Left }; C.MajorGridlines majorGridlines8 = new C.MajorGridlines(); C.ChartShapeProperties chartShapeProperties23 = new C.ChartShapeProperties(); A.Outline outline23 = new A.Outline() { Width = 12700 }; chartShapeProperties23.Append(outline23); majorGridlines8.Append(chartShapeProperties23); C.NumberingFormat numberingFormat8 = new C.NumberingFormat() { FormatCode = "General", SourceLinked = true }; C.TickLabelPosition tickLabelPosition8 = new C.TickLabelPosition() { Val = C.TickLabelPositionValues.Low }; C.ChartShapeProperties chartShapeProperties24 = new C.ChartShapeProperties(); A.Outline outline24 = new A.Outline() { Width = 38100 }; chartShapeProperties24.Append(outline24); C.CrossingAxis crossingAxis8 = new C.CrossingAxis() { Val = (UInt32Value)136656768U }; C.Crosses crosses8 = new C.Crosses() { Val = C.CrossesValues.AutoZero }; C.CrossBetween crossBetween8 = new C.CrossBetween() { Val = C.CrossBetweenValues.MidpointCategory }; valueAxis8.Append(axisId16); valueAxis8.Append(scaling8); valueAxis8.Append(axisPosition8); valueAxis8.Append(majorGridlines8); valueAxis8.Append(numberingFormat8); valueAxis8.Append(tickLabelPosition8); valueAxis8.Append(chartShapeProperties24); valueAxis8.Append(crossingAxis8); valueAxis8.Append(crosses8); valueAxis8.Append(crossBetween8); plotArea4.Append(layout5); plotArea4.Append(scatterChart4); plotArea4.Append(valueAxis7); plotArea4.Append(valueAxis8); C.PlotVisibleOnly plotVisibleOnly4 = new C.PlotVisibleOnly() { Val = true }; chart4.Append(plotArea4); chart4.Append(plotVisibleOnly4); C.PrintSettings printSettings4 = new C.PrintSettings(); C.HeaderFooter headerFooter4 = new C.HeaderFooter(); C.PageMargins pageMargins6 = new C.PageMargins() { Left = 0.70000000000000029D, Right = 0.70000000000000029D, Top = 0.75000000000000033D, Bottom = 0.75000000000000033D, Header = 0.30000000000000016D, Footer = 0.30000000000000016D }; C.PageSetup pageSetup5 = new C.PageSetup(); printSettings4.Append(headerFooter4); printSettings4.Append(pageMargins6); printSettings4.Append(pageSetup5); chartSpace4.Append(editingLanguage4); chartSpace4.Append(chart4); chartSpace4.Append(printSettings4); chartPart4.ChartSpace = chartSpace4; } // Generates content of chartPart5. private void GenerateFemurChartPart5Content(ChartPart chartPart5, double [] femur1X, double [] femur1Y, double [] femur2X, double [] femur2Y, double [] femur3X, double [] femur3Y, double? femurMin, double? femurMax, string thresholds) { System.Collections.Generic.List lines = new System.Collections.Generic.List(); foreach (string t in thresholds.Split(',')) { double d; if (double.TryParse(t.Trim(), out d)) { lines.Add(d); } } C.ChartSpace chartSpace5 = new C.ChartSpace(); chartSpace5.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart"); chartSpace5.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main"); chartSpace5.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships"); C.EditingLanguage editingLanguage5 = new C.EditingLanguage() { Val = "en-US" }; C.Chart chart5 = new C.Chart(); C.PlotArea plotArea5 = new C.PlotArea(); C.Layout layout6 = new C.Layout(); C.ScatterChart scatterChart5 = new C.ScatterChart(); C.ScatterStyle scatterStyle5 = new C.ScatterStyle() { Val = C.ScatterStyleValues.Line }; C.ScatterChartSeries scatterChartSeries9 = new C.ScatterChartSeries(); C.Index index9 = new C.Index() { Val = (UInt32Value)0U }; C.Order order9 = new C.Order() { Val = (UInt32Value)0U }; C.ChartShapeProperties chartShapeProperties25 = new C.ChartShapeProperties(); A.Outline outline25 = new A.Outline(){ Width = 12700 }; A.SolidFill solidFill9 = new A.SolidFill(); A.RgbColorModelHex rgbColorModelHex9 = new A.RgbColorModelHex() { Val = "0070C0" }; solidFill9.Append(rgbColorModelHex9); outline25.Append(solidFill9); chartShapeProperties25.Append(outline25); C.Marker marker9 = new C.Marker(); C.Symbol symbol9 = new C.Symbol() { Val = C.MarkerStyleValues.None }; marker9.Append(symbol9); C.XValues xValues9 = new C.XValues(); C.NumberReference numberReference17 = new C.NumberReference(); C.Formula formula17 = new C.Formula(); formula17.Text = string.Format("Data!$O$2:$O${0}", 2 +femur1X.Length); C.NumberingCache numberingCache17 = new C.NumberingCache(); C.FormatCode formatCode17 = new C.FormatCode(); formatCode17.Text = "General"; C.PointCount pointCount17 = new C.PointCount() { Val = (UInt32Value)System.Convert.ToUInt32(femur1X.Length) }; numberingCache17.Append(formatCode17); numberingCache17.Append(pointCount17); for( int i = 0; i < femur1X.Length; i ++ ) { C.NumericPoint p = new C.NumericPoint(){ Index = (UInt32Value)System.Convert.ToUInt32(i)}; C.NumericValue v = new C.NumericValue(){ Text = femur1X[i].ToString()}; p.Append(v); numberingCache17.Append(p); } numberReference17.Append(formula17); numberReference17.Append(numberingCache17); xValues9.Append(numberReference17); C.YValues yValues9 = new C.YValues(); C.NumberReference numberReference18 = new C.NumberReference(); C.Formula formula18 = new C.Formula(); formula18.Text = string.Format("Data!$P$2:$P${0}", 2+femur1Y.Length); C.NumberingCache numberingCache18 = new C.NumberingCache(); C.FormatCode formatCode18 = new C.FormatCode(); formatCode18.Text = "General"; C.PointCount pointCount18 = new C.PointCount() { Val = (UInt32Value)System.Convert.ToUInt32(femur1Y.Length) }; numberingCache18.Append(formatCode18); numberingCache18.Append(pointCount18); for( int i = 0; i < femur1Y.Length; i ++ ) { C.NumericPoint p = new C.NumericPoint(){ Index = (UInt32Value)System.Convert.ToUInt32(i)}; C.NumericValue v = new C.NumericValue(){ Text = femur1Y[i].ToString()}; p.Append(v); numberingCache18.Append(p); } numberReference18.Append(formula18); numberReference18.Append(numberingCache18); yValues9.Append(numberReference18); C.Smooth smooth9 = new C.Smooth() { Val = false }; scatterChartSeries9.Append(index9); scatterChartSeries9.Append(order9); scatterChartSeries9.Append(chartShapeProperties25); scatterChartSeries9.Append(marker9); scatterChartSeries9.Append(xValues9); scatterChartSeries9.Append(yValues9); scatterChartSeries9.Append(smooth9); C.ScatterChartSeries scatterChartSeries10 = new C.ScatterChartSeries(); C.Index index10 = new C.Index() { Val = (UInt32Value)1U }; C.Order order10 = new C.Order() { Val = (UInt32Value)1U }; C.ChartShapeProperties chartShapeProperties26 = new C.ChartShapeProperties(); A.Outline outline26 = new A.Outline(){ Width = 12700 }; A.SolidFill solidFill10 = new A.SolidFill(); A.RgbColorModelHex rgbColorModelHex10 = new A.RgbColorModelHex() { Val = "FF0000" }; solidFill10.Append(rgbColorModelHex10); outline26.Append(solidFill10); chartShapeProperties26.Append(outline26); C.Marker marker10 = new C.Marker(); C.Symbol symbol10 = new C.Symbol() { Val = C.MarkerStyleValues.None }; marker10.Append(symbol10); C.XValues xValues10 = new C.XValues(); C.NumberReference numberReference19 = new C.NumberReference(); C.Formula formula19 = new C.Formula(); formula19.Text = string.Format("Data!$Q$2:$Q${0}", 2+ femur2X.Length); C.NumberingCache numberingCache19 = new C.NumberingCache(); C.FormatCode formatCode19 = new C.FormatCode(); formatCode19.Text = "General"; C.PointCount pointCount19 = new C.PointCount() { Val = (UInt32Value)System.Convert.ToUInt32(femur2X.Length) }; numberingCache19.Append(formatCode19); numberingCache19.Append(pointCount19); for( int i = 0; i < femur2X.Length; i ++ ) { C.NumericPoint p = new C.NumericPoint(){ Index = (UInt32Value)System.Convert.ToUInt32(i)}; C.NumericValue v = new C.NumericValue(){ Text = femur2X[i].ToString()}; p.Append(v); numberingCache19.Append(p); } numberReference19.Append(formula19); numberReference19.Append(numberingCache19); xValues10.Append(numberReference19); C.YValues yValues10 = new C.YValues(); C.NumberReference numberReference20 = new C.NumberReference(); C.Formula formula20 = new C.Formula(); formula20.Text = string.Format("Data!$R$2:$R${0}", 2 + femur2Y.Length); C.NumberingCache numberingCache20 = new C.NumberingCache(); C.FormatCode formatCode20 = new C.FormatCode(); formatCode20.Text = "General"; C.PointCount pointCount20 = new C.PointCount() { Val = (UInt32Value)System.Convert.ToUInt32(femur2Y.Length) }; numberingCache20.Append(formatCode20); numberingCache20.Append(pointCount20); for( int i = 0; i < femur2Y.Length; i ++ ) { C.NumericPoint p = new C.NumericPoint(){ Index = (UInt32Value)System.Convert.ToUInt32(i)}; C.NumericValue v = new C.NumericValue(){ Text = femur2Y[i].ToString()}; p.Append(v); numberingCache20.Append(p); } numberReference20.Append(formula20); numberReference20.Append(numberingCache20); yValues10.Append(numberReference20); C.Smooth smooth10 = new C.Smooth() { Val = false }; scatterChartSeries10.Append(index10); scatterChartSeries10.Append(order10); scatterChartSeries10.Append(chartShapeProperties26); scatterChartSeries10.Append(marker10); scatterChartSeries10.Append(xValues10); scatterChartSeries10.Append(yValues10); scatterChartSeries10.Append(smooth10); C.ScatterChartSeries scatterChartSeries11 = new C.ScatterChartSeries(); C.Index index11 = new C.Index() { Val = (UInt32Value)2U }; C.Order order11 = new C.Order() { Val = (UInt32Value)2U }; C.ChartShapeProperties chartShapeProperties27 = new C.ChartShapeProperties(); A.Outline outline27 = new A.Outline(){ Width = 12700 }; A.SolidFill solidFill11 = new A.SolidFill(); A.RgbColorModelHex rgbColorModelHex11 = new A.RgbColorModelHex() { Val = "00B050" }; solidFill11.Append(rgbColorModelHex11); outline27.Append(solidFill11); chartShapeProperties27.Append(outline27); C.Marker marker11 = new C.Marker(); C.Symbol symbol11 = new C.Symbol() { Val = C.MarkerStyleValues.None }; marker11.Append(symbol11); C.XValues xValues11 = new C.XValues(); C.NumberReference numberReference21 = new C.NumberReference(); C.Formula formula21 = new C.Formula(); formula21.Text = string.Format("Data!$S$2:$S${0}", 2 + femur3X.Length); C.NumberingCache numberingCache21 = new C.NumberingCache(); C.FormatCode formatCode21 = new C.FormatCode(); formatCode21.Text = "General"; C.PointCount pointCount21 = new C.PointCount() { Val = (UInt32Value)System.Convert.ToUInt32(femur3X.Length) }; numberingCache21.Append(formatCode21); numberingCache21.Append(pointCount21); for( int i = 0; i < femur3X.Length; i ++ ) { C.NumericPoint p = new C.NumericPoint(){ Index = (UInt32Value)System.Convert.ToUInt32(i)}; C.NumericValue v = new C.NumericValue(){ Text = femur3X[i].ToString()}; p.Append(v); numberingCache21.Append(p); } numberReference21.Append(formula21); numberReference21.Append(numberingCache21); xValues11.Append(numberReference21); C.YValues yValues11 = new C.YValues(); C.NumberReference numberReference22 = new C.NumberReference(); C.Formula formula22 = new C.Formula(); formula22.Text = string.Format("Data!$T$2:$T${0}", 2 + femur3Y.Length); C.NumberingCache numberingCache22 = new C.NumberingCache(); C.FormatCode formatCode22 = new C.FormatCode(); formatCode22.Text = "General"; C.PointCount pointCount22 = new C.PointCount() { Val = (UInt32Value)System.Convert.ToUInt32(femur3Y.Length) }; numberingCache22.Append(formatCode22); numberingCache22.Append(pointCount22); for( int i = 0;i < femur3Y.Length; i ++ ) { C.NumericPoint p = new C.NumericPoint(){ Index = (UInt32Value)System.Convert.ToUInt32(i)}; C.NumericValue v = new C.NumericValue(){ Text = femur3Y[i].ToString()}; p.Append(v); numberingCache22.Append(p); } numberReference22.Append(formula22); numberReference22.Append(numberingCache22); yValues11.Append(numberReference22); C.Smooth smooth11 = new C.Smooth() { Val = false }; scatterChartSeries11.Append(index11); scatterChartSeries11.Append(order11); scatterChartSeries11.Append(chartShapeProperties27); scatterChartSeries11.Append(marker11); scatterChartSeries11.Append(xValues11); scatterChartSeries11.Append(yValues11); scatterChartSeries11.Append(smooth11); C.AxisId axisId17 = new C.AxisId() { Val = (UInt32Value)131069056U }; C.AxisId axisId18 = new C.AxisId() { Val = (UInt32Value)131070976U }; scatterChart5.Append(scatterStyle5); scatterChart5.Append(scatterChartSeries9); scatterChart5.Append(scatterChartSeries10); scatterChart5.Append(scatterChartSeries11); double minX = 0D; double maxX = 0D; if (femur1X.Count() > 0 && femur2X.Count() > 0) { System.Math.Max(femur1X.Max(), femur2X.Max()); System.Math.Min(femur1X.Min(), femur2X.Min()); } if (femur3X.Count() > 0) { minX = System.Math.Min(minX, femur3X.Min()); maxX = System.Math.Max(maxX, femur3X.Max()); } for (int i = 0; i < lines.Count; i++) { C.ScatterChartSeries scatterChartSeries = new C.ScatterChartSeries(); C.Index index = new C.Index() { Val = (UInt32Value)System.Convert.ToUInt32(4 + i) }; C.Order order = new C.Order() { Val = (UInt32Value)System.Convert.ToUInt32(4 + i) }; C.SeriesText seriesText = new C.SeriesText(); C.NumericValue numericValue31 = new C.NumericValue(); numericValue31.Text = string.Format("Threshold{0}", 1 + i); seriesText.Append(numericValue31); C.ChartShapeProperties chartShapeProperties = new C.ChartShapeProperties(); A.Outline outline = new A.Outline(){ Width = 12700 }; A.SolidFill solidFill = new A.SolidFill(); A.RgbColorModelHex rgbColorModelHex = new A.RgbColorModelHex() { Val = "A52A2A" }; solidFill.Append(rgbColorModelHex); outline.Append(solidFill); chartShapeProperties.Append(outline); C.Marker marker = new C.Marker(); C.Symbol symbol = new C.Symbol() { Val = C.MarkerStyleValues.None }; marker.Append(symbol); C.XValues xValues = new C.XValues(); C.NumberLiteral numberLiteral1 = new C.NumberLiteral(); C.FormatCode formatCode13 = new C.FormatCode(); formatCode13.Text = "General"; C.PointCount pointCount13 = new C.PointCount() { Val = (UInt32Value)2U }; C.NumericPoint numericPoint25 = new C.NumericPoint() { Index = (UInt32Value)0U }; C.NumericValue numericValue32 = new C.NumericValue(); numericValue32.Text = minX.ToString(); numericPoint25.Append(numericValue32); C.NumericPoint numericPoint26 = new C.NumericPoint() { Index = (UInt32Value)1U }; C.NumericValue numericValue33 = new C.NumericValue(); numericValue33.Text = maxX.ToString(); numericPoint26.Append(numericValue33); numberLiteral1.Append(formatCode13); numberLiteral1.Append(pointCount13); numberLiteral1.Append(numericPoint25); numberLiteral1.Append(numericPoint26); xValues.Append(numberLiteral1); C.YValues yValues = new C.YValues(); C.NumberLiteral numberLiteral2 = new C.NumberLiteral(); C.FormatCode formatCode14 = new C.FormatCode(); formatCode14.Text = "General"; C.PointCount pointCount14 = new C.PointCount() { Val = (UInt32Value)2U }; C.NumericPoint numericPoint27 = new C.NumericPoint() { Index = (UInt32Value)0U }; C.NumericValue numericValue34 = new C.NumericValue(); numericValue34.Text = lines[i].ToString(); numericPoint27.Append(numericValue34); C.NumericPoint numericPoint28 = new C.NumericPoint() { Index = (UInt32Value)1U }; C.NumericValue numericValue35 = new C.NumericValue(); numericValue35.Text = lines[i].ToString(); numericPoint28.Append(numericValue35); numberLiteral2.Append(formatCode14); numberLiteral2.Append(pointCount14); numberLiteral2.Append(numericPoint27); numberLiteral2.Append(numericPoint28); yValues.Append(numberLiteral2); C.Smooth smooth = new C.Smooth() { Val = false }; scatterChartSeries.Append(index); scatterChartSeries.Append(order); scatterChartSeries.Append(seriesText); scatterChartSeries.Append(chartShapeProperties); scatterChartSeries.Append(marker); scatterChartSeries.Append(xValues); scatterChartSeries.Append(yValues); scatterChartSeries.Append(smooth); scatterChart5.Append(scatterChartSeries); } scatterChart5.Append(axisId17); scatterChart5.Append(axisId18); C.ValueAxis valueAxis9 = new C.ValueAxis(); C.AxisId axisId19 = new C.AxisId() { Val = (UInt32Value)131069056U }; C.Scaling scaling9 = new C.Scaling(); C.Orientation orientation9 = new C.Orientation() { Val = C.OrientationValues.MinMax }; scaling9.Append(orientation9); C.AxisPosition axisPosition9 = new C.AxisPosition() { Val = C.AxisPositionValues.Bottom }; C.MajorGridlines majorGridlines9 = new C.MajorGridlines(); C.ChartShapeProperties chartShapeProperties28 = new C.ChartShapeProperties(); A.Outline outline28 = new A.Outline() { Width = 12700 }; chartShapeProperties28.Append(outline28); majorGridlines9.Append(chartShapeProperties28); C.MinorGridlines minorGridlines5 = new C.MinorGridlines(); C.Title title2 = new C.Title(); C.ChartText chartText2 = new C.ChartText(); C.RichText richText2 = new C.RichText(); A.BodyProperties bodyProperties2 = new A.BodyProperties(); A.ListStyle listStyle2 = new A.ListStyle(); A.Paragraph paragraph2 = new A.Paragraph(); A.ParagraphProperties paragraphProperties2 = new A.ParagraphProperties(); A.DefaultRunProperties defaultRunProperties2 = new A.DefaultRunProperties(); paragraphProperties2.Append(defaultRunProperties2); A.Run run2 = new A.Run(); A.RunProperties runProperties2 = new A.RunProperties() { Language = "en-US" }; A.Text text2 = new A.Text(); text2.Text = "Time (ms)"; run2.Append(runProperties2); run2.Append(text2); paragraph2.Append(paragraphProperties2); paragraph2.Append(run2); richText2.Append(bodyProperties2); richText2.Append(listStyle2); richText2.Append(paragraph2); chartText2.Append(richText2); C.Layout layout7 = new C.Layout(); title2.Append(chartText2); title2.Append(layout7); C.NumberingFormat numberingFormat9 = new C.NumberingFormat() { FormatCode = "General", SourceLinked = true }; C.TickLabelPosition tickLabelPosition9 = new C.TickLabelPosition() { Val = C.TickLabelPositionValues.Low }; C.ChartShapeProperties chartShapeProperties29 = new C.ChartShapeProperties(); A.Outline outline29 = new A.Outline() { Width = 38100 }; chartShapeProperties29.Append(outline29); C.CrossingAxis crossingAxis9 = new C.CrossingAxis() { Val = (UInt32Value)131070976U }; C.Crosses crosses9 = new C.Crosses() { Val = C.CrossesValues.AutoZero }; C.CrossBetween crossBetween9 = new C.CrossBetween() { Val = C.CrossBetweenValues.MidpointCategory }; valueAxis9.Append(axisId19); valueAxis9.Append(scaling9); valueAxis9.Append(axisPosition9); valueAxis9.Append(majorGridlines9); valueAxis9.Append(minorGridlines5); valueAxis9.Append(title2); valueAxis9.Append(numberingFormat9); valueAxis9.Append(tickLabelPosition9); valueAxis9.Append(chartShapeProperties29); valueAxis9.Append(crossingAxis9); valueAxis9.Append(crosses9); valueAxis9.Append(crossBetween9); C.ValueAxis valueAxis10 = new C.ValueAxis(); C.AxisId axisId20 = new C.AxisId() { Val = (UInt32Value)131070976U }; C.Scaling scaling10 = new C.Scaling(); C.Orientation orientation10 = new C.Orientation() { Val = C.OrientationValues.MinMax }; if (null != femurMax) { C.MaxAxisValue maxAxisValue1 = new C.MaxAxisValue() { Val = femurMax }; scaling10.Append(maxAxisValue1); } if (null != femurMin) { C.MinAxisValue minAxisValue1 = new C.MinAxisValue() { Val = femurMin }; scaling10.Append(minAxisValue1); } scaling10.Append(orientation10); C.AxisPosition axisPosition10 = new C.AxisPosition() { Val = C.AxisPositionValues.Left }; C.MajorGridlines majorGridlines10 = new C.MajorGridlines(); C.ChartShapeProperties chartShapeProperties30 = new C.ChartShapeProperties(); A.Outline outline30 = new A.Outline() { Width = 12700 }; chartShapeProperties30.Append(outline30); majorGridlines10.Append(chartShapeProperties30); C.NumberingFormat numberingFormat10 = new C.NumberingFormat() { FormatCode = "General", SourceLinked = true }; C.TickLabelPosition tickLabelPosition10 = new C.TickLabelPosition() { Val = C.TickLabelPositionValues.Low }; C.ChartShapeProperties chartShapeProperties31 = new C.ChartShapeProperties(); A.Outline outline31 = new A.Outline() { Width = 38100 }; chartShapeProperties31.Append(outline31); C.CrossingAxis crossingAxis10 = new C.CrossingAxis() { Val = (UInt32Value)131069056U }; C.Crosses crosses10 = new C.Crosses() { Val = C.CrossesValues.AutoZero }; C.CrossBetween crossBetween10 = new C.CrossBetween() { Val = C.CrossBetweenValues.MidpointCategory }; valueAxis10.Append(axisId20); valueAxis10.Append(scaling10); valueAxis10.Append(axisPosition10); valueAxis10.Append(majorGridlines10); valueAxis10.Append(numberingFormat10); valueAxis10.Append(tickLabelPosition10); valueAxis10.Append(chartShapeProperties31); valueAxis10.Append(crossingAxis10); valueAxis10.Append(crosses10); valueAxis10.Append(crossBetween10); plotArea5.Append(layout6); plotArea5.Append(scatterChart5); plotArea5.Append(valueAxis9); plotArea5.Append(valueAxis10); C.PlotVisibleOnly plotVisibleOnly5 = new C.PlotVisibleOnly() { Val = true }; chart5.Append(plotArea5); chart5.Append(plotVisibleOnly5); C.PrintSettings printSettings5 = new C.PrintSettings(); C.HeaderFooter headerFooter5 = new C.HeaderFooter(); C.PageMargins pageMargins7 = new C.PageMargins() { Left = 0.70000000000000029D, Right = 0.70000000000000029D, Top = 0.75000000000000033D, Bottom = 0.75000000000000033D, Header = 0.30000000000000016D, Footer = 0.30000000000000016D }; C.PageSetup pageSetup6 = new C.PageSetup() { Orientation = C.PageSetupOrientationValues.Landscape }; printSettings5.Append(headerFooter5); printSettings5.Append(pageMargins7); printSettings5.Append(pageSetup6); chartSpace5.Append(editingLanguage5); chartSpace5.Append(chart5); chartSpace5.Append(printSettings5); chartPart5.ChartSpace = chartSpace5; } // Generates content of spreadsheetPrinterSettingsPart1. private void GenerateSpreadsheetPrinterSettingsPart1Content(SpreadsheetPrinterSettingsPart spreadsheetPrinterSettingsPart1) { System.IO.Stream data = GetBinaryDataStream(spreadsheetPrinterSettingsPart1Data); spreadsheetPrinterSettingsPart1.FeedData(data); data.Close(); } private Row CreateBlankRow(uint idx ) { Row r = new Row() { RowIndex = (UInt32Value)idx, Spans = new ListValue() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true }; r.Append(new Cell() { CellReference = string.Format("A{0}",idx), StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = string.Format("B{0}",idx), StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = string.Format("C{0}",idx), StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = string.Format("D{0}",idx), StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = string.Format("E{0}",idx), StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = string.Format("F{0}",idx), StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = string.Format("G{0}",idx), StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = string.Format("H{0}",idx), StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = string.Format("I{0}",idx), StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = string.Format("J{0}",idx), StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = string.Format("K{0}",idx), StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = string.Format("L{0}",idx), StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = string.Format("M{0}",idx), StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = string.Format("N{0}",idx), StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = string.Format("O{0}",idx), StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = string.Format("P{0}",idx), StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = string.Format("Q{0}",idx), StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = string.Format("R{0}",idx), StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = string.Format("S{0}",idx), StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = string.Format("T{0}",idx), StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = string.Format("U{0}",idx), StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = string.Format("V{0}",idx), StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = string.Format("W{0}",idx), StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = string.Format("X{0}",idx), StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = string.Format("Y{0}",idx), StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = string.Format("Z{0}",idx), StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = string.Format("AA{0}",idx), StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = string.Format("AB{0}",idx), StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = string.Format("AC{0}",idx), StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = string.Format("AD{0}",idx), StyleIndex = (UInt32Value)1U }); return r; } // Generates content of worksheetPart3. private void GenerateTopSheetWorksheetPart3Content(WorksheetPart worksheetPart3, string testRefNo, string testDate, string carMaker, string carModel, string testTemperature, string measurementPoint, string collisionSpeed, string impactorId, string impactorType, string testAdministrator, string And1, string And2, string testCFC, string tibiaUnits, string aclUnits, string femurUnits, string timeUnits, string impactorWeight ) { Worksheet worksheet3 = new Worksheet(); worksheet3.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships"); SheetDimension sheetDimension3 = new SheetDimension() { Reference = "A1:AD53" }; SheetViews sheetViews3 = new SheetViews(); SheetView sheetView3 = new SheetView() { TabSelected = true, WorkbookViewId = (UInt32Value)0U }; Selection selection3 = new Selection() { ActiveCell = "K21", SequenceOfReferences = new ListValue() { InnerText = "K21" } }; sheetView3.Append(selection3); sheetViews3.Append(sheetView3); SheetFormatProperties sheetFormatProperties3 = new SheetFormatProperties() { DefaultColumnWidth = 5.5703125D, DefaultRowHeight = 14.25D, CustomHeight = true }; SheetData sheetData3 = new SheetData(); Row r = new Row() { RowIndex = (UInt32Value)1U, Spans = new ListValue() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true }; r.Append(new Cell() { CellReference = "A1", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "B1", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "C1", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "D1", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "E1", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "F1", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "G1", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "H1", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "I1", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "J1", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "K1", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "L1", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "M1", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "N1", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "O1", StyleIndex = (UInt32Value)1U }); Cell c = new Cell() { CellReference = "P1", StyleIndex = (UInt32Value)35U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("LWR LEG(Flex)").ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "Q1", StyleIndex = (UInt32Value)36U }); r.Append(new Cell() { CellReference = "R1", StyleIndex = (UInt32Value)37U }); r.Append(new Cell() { CellReference = "S1", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "T1", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "U1", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "V1", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "W1", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "X1", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "Y1", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "Z1", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "AA1", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "AB1", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "AC1", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "AD1", StyleIndex = (UInt32Value)1U }); sheetData3.Append(r); r = new Row() { RowIndex = (UInt32Value)2U, Spans = new ListValue() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true }; r.Append(new Cell() { CellReference = "A2", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "B2", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "C2", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "D2", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "E2", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "F2", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "G2", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "H2", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "I2", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "J2", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "K2", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "L2", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "M2", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "N2", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "O2", StyleIndex = (UInt32Value)1U }); c = new Cell() { CellReference = "P2", StyleIndex = (UInt32Value)38U, DataType = CellValues.SharedString }; c.Append(new CellValue(){Text = InsertSharedStringItem("TEST").ToString()}); r.Append(c); r.Append(new Cell() { CellReference = "Q2", StyleIndex = (UInt32Value)39U }); r.Append(new Cell() { CellReference = "R2", StyleIndex = (UInt32Value)40U }); r.Append(new Cell() { CellReference = "S2", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "T2", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "U2", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "V2", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "W2", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "X2", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "Y2", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "Z2", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "AA2", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "AB2", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "AC2", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "AD2", StyleIndex = (UInt32Value)1U }); sheetData3.Append(r); sheetData3.Append(CreateBlankRow(3U)); r = new Row() { RowIndex = (UInt32Value)4U, Spans = new ListValue() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true }; r.Append(new Cell() { CellReference = "A4", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "B4", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "C4", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "D4", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "E4", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "F4", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "G4", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "H4", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "I4", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "J4", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "K4", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "L4", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "M4", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "N4", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "O4", StyleIndex = (UInt32Value)1U }); c = new Cell() { CellReference = "P4", StyleIndex = (UInt32Value)20U, DataType = CellValues.SharedString }; c.Append(new CellValue(){ Text = InsertSharedStringItem("試験NO").ToString()}); AddCollectionReference("試験NO", "U4"); r.Append(c); r.Append(new Cell() { CellReference = "Q4", StyleIndex = (UInt32Value)28U }); r.Append(new Cell() { CellReference = "R4", StyleIndex = (UInt32Value)20U }); r.Append(new Cell() { CellReference = "S4", StyleIndex = (UInt32Value)20U }); r.Append(new Cell() { CellReference = "T4", StyleIndex = (UInt32Value)1U }); c = new Cell() { CellReference = "U4", StyleIndex = (UInt32Value)21U, DataType = CellValues.SharedString }; c.Append(new CellValue(){Text = InsertSharedStringItem(testRefNo).ToString()}); r.Append(c); r.Append(new Cell() { CellReference = "V4", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "W4", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "X4", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "Y4", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "Z4", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "AA4", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "AB4", StyleIndex = (UInt32Value)23U }); r.Append(new Cell() { CellReference = "AC4", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "AD4", StyleIndex = (UInt32Value)1U }); sheetData3.Append(r); sheetData3.Append(CreateBlankRow(5U)); r = new Row() { RowIndex = (UInt32Value)6U, Spans = new ListValue() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true }; r.Append(new Cell() { CellReference = "A6", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "B6", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "C6", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "D6", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "E6", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "F6", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "G6", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "H6", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "I6", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "J6", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "K6", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "L6", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "M6", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "N6", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "O6", StyleIndex = (UInt32Value)1U }); c = new Cell() { CellReference = "P6", StyleIndex = (UInt32Value)27U, DataType = CellValues.SharedString }; c.Append(new CellValue(){Text = InsertSharedStringItem("試験実施日").ToString()}); AddCollectionReference("試験実施日", "U6"); r.Append(c); r.Append(new Cell() { CellReference = "Q6", StyleIndex = (UInt32Value)28U }); r.Append(new Cell() { CellReference = "R6", StyleIndex = (UInt32Value)28U }); r.Append(new Cell() { CellReference = "S6", StyleIndex = (UInt32Value)28U }); r.Append(new Cell() { CellReference = "T6", StyleIndex = (UInt32Value)1U }); c = new Cell() { CellReference = "U6", StyleIndex = (UInt32Value)21U, DataType = CellValues.SharedString }; c.Append(new CellValue(){Text = InsertSharedStringItem(testDate).ToString()}); r.Append(c); r.Append(new Cell() { CellReference = "V6", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "W6", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "X6", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "Y6", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "Z6", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "AA6", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "AB6", StyleIndex = (UInt32Value)23U }); r.Append(new Cell() { CellReference = "AC6", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "AD6", StyleIndex = (UInt32Value)1U }); sheetData3.Append(r); sheetData3.Append(CreateBlankRow(7U)); r = new Row() { RowIndex = (UInt32Value)8U, Spans = new ListValue() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true }; r.Append(new Cell() { CellReference = "A8", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "B8", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "C8", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "D8", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "E8", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "F8", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "G8", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "H8", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "I8", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "J8", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "K8", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "L8", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "M8", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "N8", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "O8", StyleIndex = (UInt32Value)1U }); c = new Cell() { CellReference = "P8", StyleIndex = (UInt32Value)27U, DataType = CellValues.SharedString }; c.Append(new CellValue(){Text = InsertSharedStringItem("車名").ToString()}); AddCollectionReference("車名", "U8"); r.Append(c); r.Append(new Cell() { CellReference = "Q8", StyleIndex = (UInt32Value)28U }); r.Append(new Cell() { CellReference = "R8", StyleIndex = (UInt32Value)28U }); r.Append(new Cell() { CellReference = "S8", StyleIndex = (UInt32Value)28U }); r.Append(new Cell() { CellReference = "T8", StyleIndex = (UInt32Value)1U }); c = new Cell() { CellReference = "U8", StyleIndex = (UInt32Value)21U, DataType = CellValues.SharedString }; c.Append(new CellValue(){Text = InsertSharedStringItem(carMaker).ToString()}); r.Append(c); r.Append(new Cell() { CellReference = "V8", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "W8", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "X8", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "Y8", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "Z8", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "AA8", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "AB8", StyleIndex = (UInt32Value)23U }); r.Append(new Cell() { CellReference = "AC8", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "AD8", StyleIndex = (UInt32Value)1U }); sheetData3.Append(r); sheetData3.Append(CreateBlankRow(9U)); r = new Row() { RowIndex = (UInt32Value)10U, Spans = new ListValue() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true }; r.Append(new Cell() { CellReference = "A10", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "B10", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "C10", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "D10", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "E10", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "F10", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "G10", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "H10", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "I10", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "J10", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "K10", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "L10", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "M10", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "N10", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "O10", StyleIndex = (UInt32Value)1U }); c = new Cell() { CellReference = "P10", StyleIndex = (UInt32Value)27U, DataType = CellValues.SharedString }; c.Append(new CellValue(){Text = InsertSharedStringItem("型式").ToString()}); AddCollectionReference("型式", "U10"); r.Append(c); c.Append(new Cell() { CellReference = "Q10", StyleIndex = (UInt32Value)28U }); c.Append(new Cell() { CellReference = "R10", StyleIndex = (UInt32Value)28U }); c.Append(new Cell() { CellReference = "S10", StyleIndex = (UInt32Value)28U }); c.Append(new Cell() { CellReference = "T10", StyleIndex = (UInt32Value)1U }); c = new Cell() { CellReference = "U10", StyleIndex = (UInt32Value)21U, DataType = CellValues.SharedString }; c.Append(new CellValue(){Text = InsertSharedStringItem(carModel).ToString()}); r.Append(c); r.Append(new Cell() { CellReference = "V10", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "W10", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "X10", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "Y10", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "Z10", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "AA10", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "AB10", StyleIndex = (UInt32Value)23U }); r.Append(new Cell() { CellReference = "AC10", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "AD10", StyleIndex = (UInt32Value)1U }); sheetData3.Append(r); sheetData3.Append(CreateBlankRow(11U)); r = new Row() { RowIndex = (UInt32Value)12U, Spans = new ListValue() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true }; r.Append(new Cell() { CellReference = "A12", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "B12", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "C12", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "D12", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "E12", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "F12", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "G12", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "H12", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "I12", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "J12", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "K12", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "L12", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "M12", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "N12", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "O12", StyleIndex = (UInt32Value)1U }); c = new Cell() { CellReference = "P12", StyleIndex = (UInt32Value)27U, DataType = CellValues.SharedString }; c.Append(new CellValue(){Text = InsertSharedStringItem("試験温度").ToString()}); AddCollectionReference("試験温度", "U12"); r.Append(c); r.Append(new Cell() { CellReference = "Q12", StyleIndex = (UInt32Value)28U }); r.Append(new Cell() { CellReference = "R12", StyleIndex = (UInt32Value)28U }); r.Append(new Cell() { CellReference = "S12", StyleIndex = (UInt32Value)28U }); r.Append(new Cell() { CellReference = "T12", StyleIndex = (UInt32Value)1U }); c = new Cell() { CellReference = "U12", StyleIndex = (UInt32Value)21U, DataType = CellValues.SharedString }; c.Append(new CellValue(){Text = InsertSharedStringItem(testTemperature).ToString()}); r.Append(c); r.Append(new Cell() { CellReference = "V12", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "W12", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "X12", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "Y12", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "Z12", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "AA12", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "AB12", StyleIndex = (UInt32Value)23U }); r.Append(new Cell() { CellReference = "AC12", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "AD12", StyleIndex = (UInt32Value)1U }); sheetData3.Append(r); sheetData3.Append(CreateBlankRow(13U)); r = new Row() { RowIndex = (UInt32Value)14U, Spans = new ListValue() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true }; r.Append(new Cell() { CellReference = "A14", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "B14", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "C14", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "D14", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "E14", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "F14", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "G14", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "H14", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "I14", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "J14", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "K14", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "L14", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "M14", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "N14", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "O14", StyleIndex = (UInt32Value)1U }); c = new Cell() { CellReference = "P14", StyleIndex = (UInt32Value)27U, DataType = CellValues.SharedString }; c.Append(new CellValue(){Text = InsertSharedStringItem("測定点").ToString()}); AddCollectionReference("測定点", "U14"); r.Append(c); r.Append(new Cell() { CellReference = "Q14", StyleIndex = (UInt32Value)28U }); r.Append(new Cell() { CellReference = "R14", StyleIndex = (UInt32Value)28U }); r.Append(new Cell() { CellReference = "S14", StyleIndex = (UInt32Value)28U }); r.Append(new Cell() { CellReference = "T14", StyleIndex = (UInt32Value)1U }); c = new Cell() { CellReference = "U14", StyleIndex = (UInt32Value)21U, DataType = CellValues.SharedString }; c.Append(new CellValue(){Text = InsertSharedStringItem(measurementPoint).ToString()}); r.Append(c); r.Append(new Cell() { CellReference = "V14", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "W14", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "X14", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "Y14", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "Z14", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "AA14", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "AB14", StyleIndex = (UInt32Value)23U }); r.Append(new Cell() { CellReference = "AC14", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "AD14", StyleIndex = (UInt32Value)1U }); sheetData3.Append(r); sheetData3.Append(CreateBlankRow(15U)); r = new Row() { RowIndex = (UInt32Value)16U, Spans = new ListValue() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true }; r.Append(new Cell() { CellReference = "A16", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "B16", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "C16", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "D16", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "E16", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "F16", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "G16", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "H16", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "I16", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "J16", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "K16", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "L16", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "M16", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "N16", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "O16", StyleIndex = (UInt32Value)1U }); c = new Cell() { CellReference = "P16", StyleIndex = (UInt32Value)27U, DataType = CellValues.SharedString }; c.Append(new CellValue(){Text = InsertSharedStringItem("衝突速度").ToString()}); AddCollectionReference("衝突速度", "U16"); r.Append(c); r.Append(new Cell() { CellReference = "Q16", StyleIndex = (UInt32Value)28U }); r.Append(new Cell() { CellReference = "R16", StyleIndex = (UInt32Value)28U }); r.Append(new Cell() { CellReference = "S16", StyleIndex = (UInt32Value)28U }); r.Append(new Cell() { CellReference = "T16", StyleIndex = (UInt32Value)1U }); c = new Cell() { CellReference = "U16", StyleIndex = (UInt32Value)21U, DataType = CellValues.SharedString }; c.Append(new CellValue(){Text = InsertSharedStringItem(collisionSpeed).ToString()}); r.Append(c); r.Append(new Cell() { CellReference = "V16", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "W16", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "X16", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "Y16", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "Z16", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "AA16", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "AB16", StyleIndex = (UInt32Value)23U }); r.Append(new Cell() { CellReference = "AC16", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "AD16", StyleIndex = (UInt32Value)1U }); sheetData3.Append(r); sheetData3.Append(CreateBlankRow(17U)); r = new Row() { RowIndex = (UInt32Value)18U, Spans = new ListValue() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true }; r.Append(new Cell() { CellReference = "A18", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "B18", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "C18", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "D18", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "E18", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "F18", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "G18", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "H18", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "I18", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "J18", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "K18", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "L18", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "M18", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "N18", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "O18", StyleIndex = (UInt32Value)1U }); c = new Cell() { CellReference = "P18", StyleIndex = (UInt32Value)27U, DataType = CellValues.SharedString }; c.Append(new CellValue(){Text = InsertSharedStringItem("インパクタID").ToString()}); AddCollectionReference("インパクタID", "U18"); r.Append(c); r.Append(new Cell() { CellReference = "Q18", StyleIndex = (UInt32Value)28U }); r.Append(new Cell() { CellReference = "R18", StyleIndex = (UInt32Value)28U }); r.Append(new Cell() { CellReference = "S18", StyleIndex = (UInt32Value)28U }); r.Append(new Cell() { CellReference = "T18", StyleIndex = (UInt32Value)1U }); c = new Cell() { CellReference = "U18", StyleIndex = (UInt32Value)21U, DataType = CellValues.SharedString }; c.Append(new CellValue(){Text = InsertSharedStringItem(impactorId.ToString()).ToString()}); r.Append(c); r.Append(new Cell() { CellReference = "V18", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "W18", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "X18", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "Y18", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "Z18", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "AA18", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "AB18", StyleIndex = (UInt32Value)23U }); r.Append(new Cell() { CellReference = "AC18", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "AD18", StyleIndex = (UInt32Value)1U }); sheetData3.Append(r); sheetData3.Append(CreateBlankRow(19U)); r = new Row() { RowIndex = (UInt32Value)20U, Spans = new ListValue() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true }; r.Append(new Cell() { CellReference = "A20", StyleIndex = (UInt32Value)1U }); c = new Cell() { CellReference = "C20", StyleIndex = (UInt32Value)2U, DataType = CellValues.SharedString }; c.Append(new CellValue(){Text = InsertSharedStringItem("評価部位").ToString()}); r.Append(c); r.Append(new Cell() { CellReference = "D20", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "E20", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "F20", StyleIndex = (UInt32Value)1U }); c = new Cell() { CellReference = "G20", StyleIndex = (UInt32Value)29U, DataType = CellValues.SharedString }; c.Append(new CellValue(){Text = InsertSharedStringItem("LWR LEG(Flex)").ToString()}); r.Append(c); r.Append(new Cell() { CellReference = "H20", StyleIndex = (UInt32Value)30U }); r.Append(new Cell() { CellReference = "I20", StyleIndex = (UInt32Value)31U }); r.Append(new Cell() { CellReference = "J20", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "K20", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "L20", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "M20", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "N20", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "O20", StyleIndex = (UInt32Value)1U }); c = new Cell() { CellReference = "P20", StyleIndex = (UInt32Value)20U, DataType = CellValues.SharedString }; c.Append(new CellValue(){Text = InsertSharedStringItem("インパクタ種類").ToString()}); AddCollectionReference("インパクタ種類", "U20"); r.Append(c); r.Append(new Cell() { CellReference = "Q20", StyleIndex = (UInt32Value)28U }); r.Append(new Cell() { CellReference = "R20", StyleIndex = (UInt32Value)20U }); r.Append(new Cell() { CellReference = "S20", StyleIndex = (UInt32Value)20U }); r.Append(new Cell() { CellReference = "T20", StyleIndex = (UInt32Value)1U }); c = new Cell() { CellReference = "U20", StyleIndex = (UInt32Value)21U, DataType = CellValues.SharedString }; c.Append(new CellValue(){Text = InsertSharedStringItem(impactorType).ToString()}); r.Append(c); r.Append(new Cell() { CellReference = "V20", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "W20", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "X20", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "Y20", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "Z20", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "AA20", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "AB20", StyleIndex = (UInt32Value)23U }); r.Append(new Cell() { CellReference = "AC20", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "AD20", StyleIndex = (UInt32Value)1U }); sheetData3.Append(r); sheetData3.Append(CreateBlankRow(21U)); r = new Row() { RowIndex = (UInt32Value)22U, Spans = new ListValue() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true }; r.Append(new Cell() { CellReference = "A22", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "B22", StyleIndex = (UInt32Value)1U }); c = new Cell() { CellReference = "C22", StyleIndex = (UInt32Value)4U, DataType = CellValues.SharedString }; c.Append(new CellValue(){Text = InsertSharedStringItem("種類").ToString()}); r.Append(c); r.Append(new Cell() { CellReference = "D22", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "E22", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "F22", StyleIndex = (UInt32Value)1U }); c = new Cell() { CellReference = "G22", StyleIndex = (UInt32Value)32U, DataType = CellValues.SharedString }; c.Append(new CellValue(){Text = InsertSharedStringItem("TEST").ToString()}); r.Append(c); r.Append(new Cell() { CellReference = "H22", StyleIndex = (UInt32Value)33U }); r.Append(new Cell() { CellReference = "I22", StyleIndex = (UInt32Value)34U }); r.Append(new Cell() { CellReference = "J22", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "K22", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "L22", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "M22", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "N22", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "O22", StyleIndex = (UInt32Value)1U }); c = new Cell() { CellReference = "P22", StyleIndex = (UInt32Value)27U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("インパクタ重量").ToString() }); AddCollectionReference("インパクタ重量", "U22"); r.Append(c); r.Append(new Cell() { CellReference = "Q22", StyleIndex = (UInt32Value)28U }); r.Append(new Cell() { CellReference = "R22", StyleIndex = (UInt32Value)28U }); r.Append(new Cell() { CellReference = "S22", StyleIndex = (UInt32Value)28U }); r.Append(new Cell() { CellReference = "T22", StyleIndex = (UInt32Value)1U }); c = new Cell() { CellReference = "U22", StyleIndex = (UInt32Value)21U, DataType = CellValues.SharedString }; c.Append(new CellValue(){Text = InsertSharedStringItem(impactorWeight).ToString()}); r.Append(c); r.Append(new Cell() { CellReference = "V22", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "W22", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "X22", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "Y22", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "Z22", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "AA22", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "AB22", StyleIndex = (UInt32Value)23U }); r.Append(new Cell() { CellReference = "AC22", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "AD22", StyleIndex = (UInt32Value)1U }); sheetData3.Append(r); sheetData3.Append(CreateBlankRow(23U)); r = new Row() { RowIndex = (UInt32Value)24U, Spans = new ListValue() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true }; r.Append(new Cell() { CellReference = "A24", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "B24", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "C24", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "D24", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "E24", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "F24", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "G24", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "H24", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "I24", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "J24", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "K24", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "L24", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "M24", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "N24", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "O24", StyleIndex = (UInt32Value)1U }); c = new Cell() { CellReference = "P24", StyleIndex = (UInt32Value)27U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem("試験担当者").ToString() }); AddCollectionReference("試験担当者", "U24"); r.Append(c); r.Append(new Cell() { CellReference = "Q24", StyleIndex = (UInt32Value)28U }); r.Append(new Cell() { CellReference = "R24", StyleIndex = (UInt32Value)28U }); r.Append(new Cell() { CellReference = "S24", StyleIndex = (UInt32Value)28U }); r.Append(new Cell() { CellReference = "T24", StyleIndex = (UInt32Value)1U }); c = new Cell() { CellReference = "U24", StyleIndex = (UInt32Value)21U, DataType = CellValues.SharedString }; c.Append(new CellValue() { Text = InsertSharedStringItem(testAdministrator).ToString() }); r.Append(c); r.Append(new Cell() { CellReference = "V24", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "W24", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "X24", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "Y24", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "Z24", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "AA24", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "AB24", StyleIndex = (UInt32Value)23U }); r.Append(new Cell() { CellReference = "AC24", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "AD24", StyleIndex = (UInt32Value)1U }); sheetData3.Append(r); sheetData3.Append(CreateBlankRow(25U)); r = new Row() { RowIndex = (UInt32Value)26U, Spans = new ListValue() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true }; r.Append(new Cell() { CellReference = "A26", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "B26", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "C26", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "D26", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "E26", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "F26", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "G26", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "H26", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "I26", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "J26", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "K26", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "L26", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "M26", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "N26", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "O26", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "P26", StyleIndex = (UInt32Value)1U }); c = new Cell() { CellReference = "Q26", StyleIndex = (UInt32Value)27U, DataType = CellValues.SharedString }; c.Append(new CellValue(){Text = InsertSharedStringItem("予備1").ToString()}); AddCollectionReference("予備1", "U26"); r.Append(c); r.Append(new Cell() { CellReference = "R26", StyleIndex = (UInt32Value)28U }); r.Append(new Cell() { CellReference = "S26", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "T26", StyleIndex = (UInt32Value)1U }); c = new Cell() { CellReference = "U26", StyleIndex = (UInt32Value)21U, DataType = CellValues.SharedString }; c.Append(new CellValue(){Text = InsertSharedStringItem(And1).ToString()}); r.Append(c); r.Append(new Cell() { CellReference = "V26", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "W26", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "X26", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "Y26", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "Z26", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "AA26", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "AB26", StyleIndex = (UInt32Value)23U }); r.Append(new Cell() { CellReference = "AC26", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "AD26", StyleIndex = (UInt32Value)1U }); sheetData3.Append(r); sheetData3.Append(CreateBlankRow(27U)); r = new Row() { RowIndex = (UInt32Value)28U, Spans = new ListValue() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true }; r.Append(new Cell() { CellReference = "A28", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "B28", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "C28", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "D28", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "E28", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "F28", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "G28", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "H28", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "I28", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "J28", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "K28", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "L28", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "M28", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "N28", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "O28", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "P28", StyleIndex = (UInt32Value)1U }); c = new Cell() { CellReference = "Q28", StyleIndex = (UInt32Value)27U, DataType = CellValues.SharedString }; c.Append(new CellValue(){Text = InsertSharedStringItem("予備2").ToString()}); AddCollectionReference("予備2", "U28"); r.Append(c); r.Append(new Cell() { CellReference = "R28", StyleIndex = (UInt32Value)28U }); r.Append(new Cell() { CellReference = "S28", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "T28", StyleIndex = (UInt32Value)1U }); c = new Cell() { CellReference = "U28", StyleIndex = (UInt32Value)21U, DataType = CellValues.SharedString }; c.Append(new CellValue(){Text = InsertSharedStringItem(And2).ToString()}); r.Append(c); r.Append(new Cell() { CellReference = "V28", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "W28", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "X28", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "Y28", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "Z28", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "AA28", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "AB28", StyleIndex = (UInt32Value)23U }); r.Append(new Cell() { CellReference = "AC28", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "AD28", StyleIndex = (UInt32Value)1U }); sheetData3.Append(r); sheetData3.Append(CreateBlankRow(29U)); r = new Row() { RowIndex = (UInt32Value)30U, Spans = new ListValue() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true }; r.Append(new Cell() { CellReference = "A30", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "B30", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "C30", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "D30", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "E30", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "F30", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "G30", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "H30", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "I30", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "J30", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "K30", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "L30", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "M30", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "N30", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "O30", StyleIndex = (UInt32Value)1U }); c = new Cell() { CellReference = "P30", StyleIndex = (UInt32Value)27U, DataType = CellValues.SharedString }; c.Append(new CellValue(){Text = InsertSharedStringItem("選択自動表示項目").ToString()}); r.Append(c); r.Append(new Cell() { CellReference = "Q30", StyleIndex = (UInt32Value)28U }); r.Append(new Cell() { CellReference = "R30", StyleIndex = (UInt32Value)28U }); r.Append(new Cell() { CellReference = "S30", StyleIndex = (UInt32Value)28U }); r.Append(new Cell() { CellReference = "T30", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "U30", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "V30", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "W30", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "X30", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "Y30", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "Z30", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "AA30", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "AB30", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "AC30", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "AD30", StyleIndex = (UInt32Value)1U }); sheetData3.Append(r); r = new Row() { RowIndex = (UInt32Value)31U, Spans = new ListValue() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true }; r.Append(new Cell() { CellReference = "A31", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "B31", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "C31", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "D31", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "E31", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "F31", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "G31", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "H31", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "I31", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "J31", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "K31", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "L31", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "M31", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "N31", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "O31", StyleIndex = (UInt32Value)1U }); c = new Cell() { CellReference = "P31", StyleIndex = (UInt32Value)27U, DataType = CellValues.SharedString }; c.Append(new CellValue(){Text = InsertSharedStringItem("周波数クラス").ToString()}); AddCollectionReference("周波数クラス", "U31"); r.Append(c); r.Append(new Cell() { CellReference = "Q31", StyleIndex = (UInt32Value)28U }); r.Append(new Cell() { CellReference = "R31", StyleIndex = (UInt32Value)28U }); r.Append(new Cell() { CellReference = "S31", StyleIndex = (UInt32Value)28U }); r.Append(new Cell() { CellReference = "T31", StyleIndex = (UInt32Value)1U }); c = new Cell() { CellReference = "U31", StyleIndex = (UInt32Value)21U, DataType = CellValues.SharedString }; c.Append(new CellValue(){Text = InsertSharedStringItem(testCFC).ToString()}); r.Append(c); r.Append(new Cell() { CellReference = "V31", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "W31", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "X31", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "Y31", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "Z31", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "AA31", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "AB31", StyleIndex = (UInt32Value)23U }); r.Append(new Cell() { CellReference = "AC31", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "AD31", StyleIndex = (UInt32Value)1U }); sheetData3.Append(r); sheetData3.Append(CreateBlankRow(32U)); r = new Row() { RowIndex = (UInt32Value)33U, Spans = new ListValue() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true }; r.Append(new Cell() { CellReference = "A33", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "B33", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "C33", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "D33", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "E33", StyleIndex = (UInt32Value)1U }); r.Append( new Cell() { CellReference = "F33", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "G33", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "H33", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "I33", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "J33", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "K33", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "L33", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "M33", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "N33", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "O33", StyleIndex = (UInt32Value)1U }); c = new Cell() { CellReference = "P33", StyleIndex = (UInt32Value)24U, DataType = CellValues.SharedString }; c.Append(new CellValue(){Text = InsertSharedStringItem("UNIT").ToString()}); r.Append(c); r.Append(new Cell() { CellReference = "Q33", StyleIndex = (UInt32Value)24U }); r.Append(new Cell() { CellReference = "R33", StyleIndex = (UInt32Value)24U }); r.Append(new Cell() { CellReference = "S33", StyleIndex = (UInt32Value)24U }); r.Append(new Cell() { CellReference = "T33", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "U33", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "V33", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "W33", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "X33", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "Y33", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "Z33", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "AA33", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "AB33", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "AC33", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "AD33", StyleIndex = (UInt32Value)1U }); sheetData3.Append(r); r = new Row() { RowIndex = (UInt32Value)34U, Spans = new ListValue() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true }; r.Append(new Cell() { CellReference = "A34", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "B34", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "C34", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "D34", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "E34", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "F34", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "G34", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "H34", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "I34", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "J34", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "K34", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "L34", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "M34", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "N34", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "O34", StyleIndex = (UInt32Value)1U }); c = new Cell() { CellReference = "P34", StyleIndex = (UInt32Value)20U, DataType = CellValues.SharedString }; c.Append(new CellValue(){Text = InsertSharedStringItem("Tibia").ToString()}); r.Append(c); r.Append(new Cell() { CellReference = "Q34", StyleIndex = (UInt32Value)20U }); r.Append(new Cell() { CellReference = "R34", StyleIndex = (UInt32Value)20U }); r.Append(new Cell() { CellReference = "S34", StyleIndex = (UInt32Value)20U }); r.Append(new Cell() { CellReference = "T34", StyleIndex = (UInt32Value)1U }); c = new Cell() { CellReference = "U34", StyleIndex = (UInt32Value)21U, DataType = CellValues.SharedString }; c.Append(new CellValue(){Text = InsertSharedStringItem(tibiaUnits).ToString()}); r.Append(c); r.Append(new Cell() { CellReference = "V34", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "W34", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "X34", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "Y34", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "Z34", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "AA34", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "AB34", StyleIndex = (UInt32Value)23U }); r.Append(new Cell() { CellReference = "AC34", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "AD34", StyleIndex = (UInt32Value)1U }); sheetData3.Append(r); sheetData3.Append(CreateBlankRow(35U)); r = new Row() { RowIndex = (UInt32Value)36U, Spans = new ListValue() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true }; r.Append(new Cell() { CellReference = "A36", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "B36", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "C36", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "D36", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "E36", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "F36", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "G36", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "H36", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "I36", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "J36", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "K36", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "L36", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "M36", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "N36", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "O36", StyleIndex = (UInt32Value)1U }); c = new Cell() { CellReference = "P36", StyleIndex = (UInt32Value)20U, DataType = CellValues.SharedString }; c.Append(new CellValue(){Text = InsertSharedStringItem("ACL/MCL/PCL/LCL").ToString()}); r.Append(c); r.Append(new Cell() { CellReference = "Q36", StyleIndex = (UInt32Value)20U }); r.Append(new Cell() { CellReference = "R36", StyleIndex = (UInt32Value)20U }); r.Append(new Cell() { CellReference = "S36", StyleIndex = (UInt32Value)20U }); r.Append(new Cell() { CellReference = "T36", StyleIndex = (UInt32Value)1U }); c = new Cell() { CellReference = "U36", StyleIndex = (UInt32Value)21U, DataType = CellValues.SharedString }; c.Append(new CellValue(){Text = InsertSharedStringItem(aclUnits).ToString()}); r.Append(c); r.Append(new Cell() { CellReference = "V36", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "W36", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "X36", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "Y36", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "Z36", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "AA36", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "AB36", StyleIndex = (UInt32Value)23U }); r.Append(new Cell() { CellReference = "AC36", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "AD36", StyleIndex = (UInt32Value)1U }); sheetData3.Append(r); sheetData3.Append(CreateBlankRow(37U)); r = new Row() { RowIndex = (UInt32Value)38U, Spans = new ListValue() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true }; r.Append(new Cell() { CellReference = "A38", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "B38", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "C38", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "D38", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "E38", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "F38", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "G38", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "H38", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "I38", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "J38", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "K38", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "L38", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "M38", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "N38", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "O38", StyleIndex = (UInt32Value)1U }); c = new Cell() { CellReference = "P38", StyleIndex = (UInt32Value)20U, DataType = CellValues.SharedString }; c.Append(new CellValue(){Text = InsertSharedStringItem("Femur").ToString()}); r.Append(c); r.Append(new Cell() { CellReference = "Q38", StyleIndex = (UInt32Value)20U }); r.Append(new Cell() { CellReference = "R38", StyleIndex = (UInt32Value)20U }); r.Append(new Cell() { CellReference = "S38", StyleIndex = (UInt32Value)20U }); r.Append(new Cell() { CellReference = "T38", StyleIndex = (UInt32Value)1U }); c = new Cell() { CellReference = "U38", StyleIndex = (UInt32Value)21U, DataType = CellValues.SharedString }; c.Append(new CellValue(){Text = InsertSharedStringItem(femurUnits).ToString()}); r.Append(c); r.Append(new Cell() { CellReference = "V38", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "W38", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "X38", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "Y38", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "Z38", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "AA38", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "AB38", StyleIndex = (UInt32Value)23U }); r.Append(new Cell() { CellReference = "AC38", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "AD38", StyleIndex = (UInt32Value)1U }); sheetData3.Append(r); sheetData3.Append(CreateBlankRow(39U)); r = new Row() { RowIndex = (UInt32Value)40U, Spans = new ListValue() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true }; r.Append(new Cell() { CellReference = "A40", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "B40", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "C40", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "D40", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "E40", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "F40", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "G40", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "H40", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "I40", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "J40", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "K40", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "L40", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "M40", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "N40", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "O40", StyleIndex = (UInt32Value)1U }); c = new Cell() { CellReference = "P40", StyleIndex = (UInt32Value)20U, DataType = CellValues.SharedString }; c.Append(new CellValue(){Text = InsertSharedStringItem("Time").ToString()}); r.Append(c); r.Append(new Cell() { CellReference = "Q40", StyleIndex = (UInt32Value)20U }); r.Append(new Cell() { CellReference = "R40", StyleIndex = (UInt32Value)20U }); r.Append(new Cell() { CellReference = "S40", StyleIndex = (UInt32Value)20U }); r.Append(new Cell() { CellReference = "T40", StyleIndex = (UInt32Value)1U }); c = new Cell() { CellReference = "U40", StyleIndex = (UInt32Value)21U, DataType = CellValues.SharedString }; c.Append(new CellValue(){Text = InsertSharedStringItem(timeUnits).ToString()}); r.Append(c); r.Append(new Cell() { CellReference = "V40", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "W40", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "X40", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "Y40", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "Z40", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "AA40", StyleIndex = (UInt32Value)22U }); r.Append(new Cell() { CellReference = "AB40", StyleIndex = (UInt32Value)23U }); r.Append(new Cell() { CellReference = "AC40", StyleIndex = (UInt32Value)1U }); r.Append(new Cell() { CellReference = "AD40", StyleIndex = (UInt32Value)1U }); sheetData3.Append(r); Row row110 = new Row() { RowIndex = (UInt32Value)41U, Spans = new ListValue() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true }; Cell cell4443 = new Cell() { CellReference = "A41", StyleIndex = (UInt32Value)1U }; Cell cell4444 = new Cell() { CellReference = "B41", StyleIndex = (UInt32Value)1U }; Cell cell4445 = new Cell() { CellReference = "C41", StyleIndex = (UInt32Value)1U }; Cell cell4446 = new Cell() { CellReference = "D41", StyleIndex = (UInt32Value)1U }; Cell cell4447 = new Cell() { CellReference = "E41", StyleIndex = (UInt32Value)1U }; Cell cell4448 = new Cell() { CellReference = "F41", StyleIndex = (UInt32Value)1U }; Cell cell4449 = new Cell() { CellReference = "G41", StyleIndex = (UInt32Value)1U }; Cell cell4450 = new Cell() { CellReference = "H41", StyleIndex = (UInt32Value)1U }; Cell cell4451 = new Cell() { CellReference = "I41", StyleIndex = (UInt32Value)1U }; Cell cell4452 = new Cell() { CellReference = "J41", StyleIndex = (UInt32Value)1U }; Cell cell4453 = new Cell() { CellReference = "K41", StyleIndex = (UInt32Value)1U }; Cell cell4454 = new Cell() { CellReference = "L41", StyleIndex = (UInt32Value)1U }; Cell cell4455 = new Cell() { CellReference = "M41", StyleIndex = (UInt32Value)1U }; Cell cell4456 = new Cell() { CellReference = "N41", StyleIndex = (UInt32Value)1U }; Cell cell4457 = new Cell() { CellReference = "O41", StyleIndex = (UInt32Value)1U }; Cell cell4458 = new Cell() { CellReference = "P41", StyleIndex = (UInt32Value)1U }; Cell cell4459 = new Cell() { CellReference = "Q41", StyleIndex = (UInt32Value)1U }; Cell cell4460 = new Cell() { CellReference = "R41", StyleIndex = (UInt32Value)1U }; Cell cell4461 = new Cell() { CellReference = "S41", StyleIndex = (UInt32Value)1U }; Cell cell4462 = new Cell() { CellReference = "T41", StyleIndex = (UInt32Value)1U }; Cell cell4463 = new Cell() { CellReference = "U41", StyleIndex = (UInt32Value)1U }; Cell cell4464 = new Cell() { CellReference = "V41", StyleIndex = (UInt32Value)1U }; Cell cell4465 = new Cell() { CellReference = "W41", StyleIndex = (UInt32Value)1U }; Cell cell4466 = new Cell() { CellReference = "X41", StyleIndex = (UInt32Value)1U }; Cell cell4467 = new Cell() { CellReference = "Y41", StyleIndex = (UInt32Value)1U }; Cell cell4468 = new Cell() { CellReference = "Z41", StyleIndex = (UInt32Value)1U }; Cell cell4469 = new Cell() { CellReference = "AA41", StyleIndex = (UInt32Value)1U }; Cell cell4470 = new Cell() { CellReference = "AB41", StyleIndex = (UInt32Value)1U }; Cell cell4471 = new Cell() { CellReference = "AC41", StyleIndex = (UInt32Value)1U }; Cell cell4472 = new Cell() { CellReference = "AD41", StyleIndex = (UInt32Value)1U }; row110.Append(cell4443); row110.Append(cell4444); row110.Append(cell4445); row110.Append(cell4446); row110.Append(cell4447); row110.Append(cell4448); row110.Append(cell4449); row110.Append(cell4450); row110.Append(cell4451); row110.Append(cell4452); row110.Append(cell4453); row110.Append(cell4454); row110.Append(cell4455); row110.Append(cell4456); row110.Append(cell4457); row110.Append(cell4458); row110.Append(cell4459); row110.Append(cell4460); row110.Append(cell4461); row110.Append(cell4462); row110.Append(cell4463); row110.Append(cell4464); row110.Append(cell4465); row110.Append(cell4466); row110.Append(cell4467); row110.Append(cell4468); row110.Append(cell4469); row110.Append(cell4470); row110.Append(cell4471); row110.Append(cell4472); Row row113 = new Row() { RowIndex = (UInt32Value)42U, Spans = new ListValue() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true }; Cell cell4533 = new Cell() { CellReference = "A42", StyleIndex = (UInt32Value)1U }; Cell cell4534 = new Cell() { CellReference = "B42", StyleIndex = (UInt32Value)1U }; Cell cell4535 = new Cell() { CellReference = "C42", StyleIndex = (UInt32Value)1U }; Cell cell4536 = new Cell() { CellReference = "D42", StyleIndex = (UInt32Value)1U }; Cell cell4537 = new Cell() { CellReference = "E42", StyleIndex = (UInt32Value)1U }; Cell cell4538 = new Cell() { CellReference = "F42", StyleIndex = (UInt32Value)1U }; Cell cell4539 = new Cell() { CellReference = "G42", StyleIndex = (UInt32Value)1U }; Cell cell4540 = new Cell() { CellReference = "H42", StyleIndex = (UInt32Value)1U }; Cell cell4541 = new Cell() { CellReference = "I42", StyleIndex = (UInt32Value)1U }; Cell cell4542 = new Cell() { CellReference = "J42", StyleIndex = (UInt32Value)1U }; Cell cell4543 = new Cell() { CellReference = "K42", StyleIndex = (UInt32Value)1U }; Cell cell4544 = new Cell() { CellReference = "L42", StyleIndex = (UInt32Value)1U }; Cell cell4545 = new Cell() { CellReference = "M42", StyleIndex = (UInt32Value)1U }; Cell cell4546 = new Cell() { CellReference = "N42", StyleIndex = (UInt32Value)1U }; Cell cell4547 = new Cell() { CellReference = "O42", StyleIndex = (UInt32Value)1U }; Cell cell4548 = new Cell() { CellReference = "P42", StyleIndex = (UInt32Value)1U }; Cell cell4549 = new Cell() { CellReference = "Q42", StyleIndex = (UInt32Value)1U }; Cell cell4550 = new Cell() { CellReference = "R42", StyleIndex = (UInt32Value)1U }; Cell cell4551 = new Cell() { CellReference = "S42", StyleIndex = (UInt32Value)1U }; Cell cell4552 = new Cell() { CellReference = "T42", StyleIndex = (UInt32Value)1U }; Cell cell4553 = new Cell() { CellReference = "U42", StyleIndex = (UInt32Value)1U }; Cell cell4554 = new Cell() { CellReference = "V42", StyleIndex = (UInt32Value)1U }; Cell cell4555 = new Cell() { CellReference = "W42", StyleIndex = (UInt32Value)1U }; Cell cell4556 = new Cell() { CellReference = "X42", StyleIndex = (UInt32Value)1U }; Cell cell4557 = new Cell() { CellReference = "Y42", StyleIndex = (UInt32Value)1U }; Cell cell4558 = new Cell() { CellReference = "Z42", StyleIndex = (UInt32Value)1U }; Cell cell4559 = new Cell() { CellReference = "AA42", StyleIndex = (UInt32Value)1U }; Cell cell4560 = new Cell() { CellReference = "AB42", StyleIndex = (UInt32Value)1U }; Cell cell4561 = new Cell() { CellReference = "AC42", StyleIndex = (UInt32Value)1U }; Cell cell4562 = new Cell() { CellReference = "AD42", StyleIndex = (UInt32Value)1U }; row113.Append(cell4533); row113.Append(cell4534); row113.Append(cell4535); row113.Append(cell4536); row113.Append(cell4537); row113.Append(cell4538); row113.Append(cell4539); row113.Append(cell4540); row113.Append(cell4541); row113.Append(cell4542); row113.Append(cell4543); row113.Append(cell4544); row113.Append(cell4545); row113.Append(cell4546); row113.Append(cell4547); row113.Append(cell4548); row113.Append(cell4549); row113.Append(cell4550); row113.Append(cell4551); row113.Append(cell4552); row113.Append(cell4553); row113.Append(cell4554); row113.Append(cell4555); row113.Append(cell4556); row113.Append(cell4557); row113.Append(cell4558); row113.Append(cell4559); row113.Append(cell4560); row113.Append(cell4561); row113.Append(cell4562); Row row114 = new Row() { RowIndex = (UInt32Value)43U, Spans = new ListValue() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true }; Cell cell4563 = new Cell() { CellReference = "A43", StyleIndex = (UInt32Value)1U }; Cell cell4564 = new Cell() { CellReference = "B43", StyleIndex = (UInt32Value)1U }; Cell cell4565 = new Cell() { CellReference = "C43", StyleIndex = (UInt32Value)1U }; Cell cell4566 = new Cell() { CellReference = "D43", StyleIndex = (UInt32Value)1U }; Cell cell4567 = new Cell() { CellReference = "E43", StyleIndex = (UInt32Value)1U }; Cell cell4568 = new Cell() { CellReference = "F43", StyleIndex = (UInt32Value)1U }; Cell cell4569 = new Cell() { CellReference = "G43", StyleIndex = (UInt32Value)1U }; Cell cell4570 = new Cell() { CellReference = "H43", StyleIndex = (UInt32Value)1U }; Cell cell4571 = new Cell() { CellReference = "I43", StyleIndex = (UInt32Value)1U }; Cell cell4572 = new Cell() { CellReference = "J43", StyleIndex = (UInt32Value)1U }; Cell cell4573 = new Cell() { CellReference = "K43", StyleIndex = (UInt32Value)1U }; Cell cell4574 = new Cell() { CellReference = "L43", StyleIndex = (UInt32Value)1U }; Cell cell4575 = new Cell() { CellReference = "M43", StyleIndex = (UInt32Value)1U }; Cell cell4576 = new Cell() { CellReference = "N43", StyleIndex = (UInt32Value)1U }; Cell cell4577 = new Cell() { CellReference = "O43", StyleIndex = (UInt32Value)1U }; Cell cell4578 = new Cell() { CellReference = "P43", StyleIndex = (UInt32Value)1U }; Cell cell4579 = new Cell() { CellReference = "Q43", StyleIndex = (UInt32Value)1U }; Cell cell4580 = new Cell() { CellReference = "R43", StyleIndex = (UInt32Value)1U }; Cell cell4581 = new Cell() { CellReference = "S43", StyleIndex = (UInt32Value)1U }; Cell cell4582 = new Cell() { CellReference = "T43", StyleIndex = (UInt32Value)1U }; Cell cell4583 = new Cell() { CellReference = "U43", StyleIndex = (UInt32Value)1U }; Cell cell4584 = new Cell() { CellReference = "V43", StyleIndex = (UInt32Value)1U }; Cell cell4585 = new Cell() { CellReference = "W43", StyleIndex = (UInt32Value)1U }; Cell cell4586 = new Cell() { CellReference = "X43", StyleIndex = (UInt32Value)1U }; Cell cell4587 = new Cell() { CellReference = "Y43", StyleIndex = (UInt32Value)1U }; Cell cell4588 = new Cell() { CellReference = "Z43", StyleIndex = (UInt32Value)1U }; Cell cell4589 = new Cell() { CellReference = "AA43", StyleIndex = (UInt32Value)1U }; Cell cell4590 = new Cell() { CellReference = "AB43", StyleIndex = (UInt32Value)1U }; Cell cell4591 = new Cell() { CellReference = "AC43", StyleIndex = (UInt32Value)1U }; Cell cell4592 = new Cell() { CellReference = "AD43", StyleIndex = (UInt32Value)1U }; row114.Append(cell4563); row114.Append(cell4564); row114.Append(cell4565); row114.Append(cell4566); row114.Append(cell4567); row114.Append(cell4568); row114.Append(cell4569); row114.Append(cell4570); row114.Append(cell4571); row114.Append(cell4572); row114.Append(cell4573); row114.Append(cell4574); row114.Append(cell4575); row114.Append(cell4576); row114.Append(cell4577); row114.Append(cell4578); row114.Append(cell4579); row114.Append(cell4580); row114.Append(cell4581); row114.Append(cell4582); row114.Append(cell4583); row114.Append(cell4584); row114.Append(cell4585); row114.Append(cell4586); row114.Append(cell4587); row114.Append(cell4588); row114.Append(cell4589); row114.Append(cell4590); row114.Append(cell4591); row114.Append(cell4592); Row row115 = new Row() { RowIndex = (UInt32Value)44U, Spans = new ListValue() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true }; Cell cell4593 = new Cell() { CellReference = "A44", StyleIndex = (UInt32Value)1U }; Cell cell4594 = new Cell() { CellReference = "B44", StyleIndex = (UInt32Value)1U }; Cell cell4595 = new Cell() { CellReference = "C44", StyleIndex = (UInt32Value)1U }; Cell cell4596 = new Cell() { CellReference = "D44", StyleIndex = (UInt32Value)1U }; Cell cell4597 = new Cell() { CellReference = "E44", StyleIndex = (UInt32Value)1U }; Cell cell4598 = new Cell() { CellReference = "F44", StyleIndex = (UInt32Value)1U }; Cell cell4599 = new Cell() { CellReference = "G44", StyleIndex = (UInt32Value)1U }; Cell cell4600 = new Cell() { CellReference = "H44", StyleIndex = (UInt32Value)1U }; Cell cell4601 = new Cell() { CellReference = "I44", StyleIndex = (UInt32Value)1U }; Cell cell4602 = new Cell() { CellReference = "J44", StyleIndex = (UInt32Value)1U }; Cell cell4603 = new Cell() { CellReference = "K44", StyleIndex = (UInt32Value)1U }; Cell cell4604 = new Cell() { CellReference = "L44", StyleIndex = (UInt32Value)1U }; Cell cell4605 = new Cell() { CellReference = "M44", StyleIndex = (UInt32Value)1U }; Cell cell4606 = new Cell() { CellReference = "N44", StyleIndex = (UInt32Value)1U }; Cell cell4607 = new Cell() { CellReference = "O44", StyleIndex = (UInt32Value)1U }; Cell cell4608 = new Cell() { CellReference = "P44", StyleIndex = (UInt32Value)1U }; Cell cell4609 = new Cell() { CellReference = "Q44", StyleIndex = (UInt32Value)1U }; Cell cell4610 = new Cell() { CellReference = "R44", StyleIndex = (UInt32Value)1U }; Cell cell4611 = new Cell() { CellReference = "S44", StyleIndex = (UInt32Value)1U }; Cell cell4612 = new Cell() { CellReference = "T44", StyleIndex = (UInt32Value)1U }; Cell cell4613 = new Cell() { CellReference = "U44", StyleIndex = (UInt32Value)1U }; Cell cell4614 = new Cell() { CellReference = "V44", StyleIndex = (UInt32Value)1U }; Cell cell4615 = new Cell() { CellReference = "W44", StyleIndex = (UInt32Value)1U }; Cell cell4616 = new Cell() { CellReference = "X44", StyleIndex = (UInt32Value)1U }; Cell cell4617 = new Cell() { CellReference = "Y44", StyleIndex = (UInt32Value)1U }; Cell cell4618 = new Cell() { CellReference = "Z44", StyleIndex = (UInt32Value)1U }; Cell cell4619 = new Cell() { CellReference = "AA44", StyleIndex = (UInt32Value)1U }; Cell cell4620 = new Cell() { CellReference = "AB44", StyleIndex = (UInt32Value)1U }; Cell cell4621 = new Cell() { CellReference = "AC44", StyleIndex = (UInt32Value)1U }; Cell cell4622 = new Cell() { CellReference = "AD44", StyleIndex = (UInt32Value)1U }; row115.Append(cell4593); row115.Append(cell4594); row115.Append(cell4595); row115.Append(cell4596); row115.Append(cell4597); row115.Append(cell4598); row115.Append(cell4599); row115.Append(cell4600); row115.Append(cell4601); row115.Append(cell4602); row115.Append(cell4603); row115.Append(cell4604); row115.Append(cell4605); row115.Append(cell4606); row115.Append(cell4607); row115.Append(cell4608); row115.Append(cell4609); row115.Append(cell4610); row115.Append(cell4611); row115.Append(cell4612); row115.Append(cell4613); row115.Append(cell4614); row115.Append(cell4615); row115.Append(cell4616); row115.Append(cell4617); row115.Append(cell4618); row115.Append(cell4619); row115.Append(cell4620); row115.Append(cell4621); row115.Append(cell4622); Row row116 = new Row() { RowIndex = (UInt32Value)45U, Spans = new ListValue() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true }; Cell cell4623 = new Cell() { CellReference = "A45", StyleIndex = (UInt32Value)1U }; Cell cell4624 = new Cell() { CellReference = "B45", StyleIndex = (UInt32Value)1U }; Cell cell4625 = new Cell() { CellReference = "C45", StyleIndex = (UInt32Value)1U }; Cell cell4626 = new Cell() { CellReference = "D45", StyleIndex = (UInt32Value)1U }; Cell cell4627 = new Cell() { CellReference = "E45", StyleIndex = (UInt32Value)1U }; Cell cell4628 = new Cell() { CellReference = "F45", StyleIndex = (UInt32Value)1U }; Cell cell4629 = new Cell() { CellReference = "G45", StyleIndex = (UInt32Value)1U }; Cell cell4630 = new Cell() { CellReference = "H45", StyleIndex = (UInt32Value)1U }; Cell cell4631 = new Cell() { CellReference = "I45", StyleIndex = (UInt32Value)1U }; Cell cell4632 = new Cell() { CellReference = "J45", StyleIndex = (UInt32Value)1U }; Cell cell4633 = new Cell() { CellReference = "K45", StyleIndex = (UInt32Value)1U }; Cell cell4634 = new Cell() { CellReference = "L45", StyleIndex = (UInt32Value)1U }; Cell cell4635 = new Cell() { CellReference = "M45", StyleIndex = (UInt32Value)1U }; Cell cell4636 = new Cell() { CellReference = "N45", StyleIndex = (UInt32Value)1U }; Cell cell4637 = new Cell() { CellReference = "O45", StyleIndex = (UInt32Value)1U }; Cell cell4638 = new Cell() { CellReference = "P45", StyleIndex = (UInt32Value)1U }; Cell cell4639 = new Cell() { CellReference = "Q45", StyleIndex = (UInt32Value)1U }; Cell cell4640 = new Cell() { CellReference = "R45", StyleIndex = (UInt32Value)1U }; Cell cell4641 = new Cell() { CellReference = "S45", StyleIndex = (UInt32Value)1U }; Cell cell4642 = new Cell() { CellReference = "T45", StyleIndex = (UInt32Value)1U }; Cell cell4643 = new Cell() { CellReference = "U45", StyleIndex = (UInt32Value)1U }; Cell cell4644 = new Cell() { CellReference = "V45", StyleIndex = (UInt32Value)1U }; Cell cell4645 = new Cell() { CellReference = "W45", StyleIndex = (UInt32Value)1U }; Cell cell4646 = new Cell() { CellReference = "X45", StyleIndex = (UInt32Value)1U }; Cell cell4647 = new Cell() { CellReference = "Y45", StyleIndex = (UInt32Value)1U }; Cell cell4648 = new Cell() { CellReference = "Z45", StyleIndex = (UInt32Value)1U }; Cell cell4649 = new Cell() { CellReference = "AA45", StyleIndex = (UInt32Value)1U }; Cell cell4650 = new Cell() { CellReference = "AB45", StyleIndex = (UInt32Value)1U }; Cell cell4651 = new Cell() { CellReference = "AC45", StyleIndex = (UInt32Value)1U }; Cell cell4652 = new Cell() { CellReference = "AD45", StyleIndex = (UInt32Value)1U }; row116.Append(cell4623); row116.Append(cell4624); row116.Append(cell4625); row116.Append(cell4626); row116.Append(cell4627); row116.Append(cell4628); row116.Append(cell4629); row116.Append(cell4630); row116.Append(cell4631); row116.Append(cell4632); row116.Append(cell4633); row116.Append(cell4634); row116.Append(cell4635); row116.Append(cell4636); row116.Append(cell4637); row116.Append(cell4638); row116.Append(cell4639); row116.Append(cell4640); row116.Append(cell4641); row116.Append(cell4642); row116.Append(cell4643); row116.Append(cell4644); row116.Append(cell4645); row116.Append(cell4646); row116.Append(cell4647); row116.Append(cell4648); row116.Append(cell4649); row116.Append(cell4650); row116.Append(cell4651); row116.Append(cell4652); Row row117 = new Row() { RowIndex = (UInt32Value)46U, Spans = new ListValue() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true }; Cell cell4653 = new Cell() { CellReference = "A46", StyleIndex = (UInt32Value)1U }; Cell cell4654 = new Cell() { CellReference = "B46", StyleIndex = (UInt32Value)1U }; Cell cell4655 = new Cell() { CellReference = "C46", StyleIndex = (UInt32Value)1U }; Cell cell4656 = new Cell() { CellReference = "D46", StyleIndex = (UInt32Value)1U }; Cell cell4657 = new Cell() { CellReference = "E46", StyleIndex = (UInt32Value)1U }; Cell cell4658 = new Cell() { CellReference = "F46", StyleIndex = (UInt32Value)1U }; Cell cell4659 = new Cell() { CellReference = "G46", StyleIndex = (UInt32Value)1U }; Cell cell4660 = new Cell() { CellReference = "H46", StyleIndex = (UInt32Value)1U }; Cell cell4661 = new Cell() { CellReference = "I46", StyleIndex = (UInt32Value)1U }; Cell cell4662 = new Cell() { CellReference = "J46", StyleIndex = (UInt32Value)1U }; Cell cell4663 = new Cell() { CellReference = "K46", StyleIndex = (UInt32Value)1U }; Cell cell4664 = new Cell() { CellReference = "L46", StyleIndex = (UInt32Value)1U }; Cell cell4665 = new Cell() { CellReference = "M46", StyleIndex = (UInt32Value)1U }; Cell cell4666 = new Cell() { CellReference = "N46", StyleIndex = (UInt32Value)1U }; Cell cell4667 = new Cell() { CellReference = "O46", StyleIndex = (UInt32Value)1U }; Cell cell4668 = new Cell() { CellReference = "P46", StyleIndex = (UInt32Value)1U }; Cell cell4669 = new Cell() { CellReference = "Q46", StyleIndex = (UInt32Value)1U }; Cell cell4670 = new Cell() { CellReference = "R46", StyleIndex = (UInt32Value)1U }; Cell cell4671 = new Cell() { CellReference = "S46", StyleIndex = (UInt32Value)1U }; Cell cell4672 = new Cell() { CellReference = "T46", StyleIndex = (UInt32Value)1U }; Cell cell4673 = new Cell() { CellReference = "U46", StyleIndex = (UInt32Value)1U }; Cell cell4674 = new Cell() { CellReference = "V46", StyleIndex = (UInt32Value)1U }; Cell cell4675 = new Cell() { CellReference = "W46", StyleIndex = (UInt32Value)1U }; Cell cell4676 = new Cell() { CellReference = "X46", StyleIndex = (UInt32Value)1U }; Cell cell4677 = new Cell() { CellReference = "Y46", StyleIndex = (UInt32Value)1U }; Cell cell4678 = new Cell() { CellReference = "Z46", StyleIndex = (UInt32Value)1U }; Cell cell4679 = new Cell() { CellReference = "AA46", StyleIndex = (UInt32Value)1U }; Cell cell4680 = new Cell() { CellReference = "AB46", StyleIndex = (UInt32Value)1U }; Cell cell4681 = new Cell() { CellReference = "AC46", StyleIndex = (UInt32Value)1U }; Cell cell4682 = new Cell() { CellReference = "AD46", StyleIndex = (UInt32Value)1U }; row117.Append(cell4653); row117.Append(cell4654); row117.Append(cell4655); row117.Append(cell4656); row117.Append(cell4657); row117.Append(cell4658); row117.Append(cell4659); row117.Append(cell4660); row117.Append(cell4661); row117.Append(cell4662); row117.Append(cell4663); row117.Append(cell4664); row117.Append(cell4665); row117.Append(cell4666); row117.Append(cell4667); row117.Append(cell4668); row117.Append(cell4669); row117.Append(cell4670); row117.Append(cell4671); row117.Append(cell4672); row117.Append(cell4673); row117.Append(cell4674); row117.Append(cell4675); row117.Append(cell4676); row117.Append(cell4677); row117.Append(cell4678); row117.Append(cell4679); row117.Append(cell4680); row117.Append(cell4681); row117.Append(cell4682); Row row118 = new Row() { RowIndex = (UInt32Value)47U, Spans = new ListValue() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true }; Cell cell4683 = new Cell() { CellReference = "A47", StyleIndex = (UInt32Value)1U }; Cell cell4684 = new Cell() { CellReference = "B47", StyleIndex = (UInt32Value)1U }; Cell cell4685 = new Cell() { CellReference = "C47", StyleIndex = (UInt32Value)1U }; Cell cell4686 = new Cell() { CellReference = "D47", StyleIndex = (UInt32Value)1U }; Cell cell4687 = new Cell() { CellReference = "E47", StyleIndex = (UInt32Value)1U }; Cell cell4688 = new Cell() { CellReference = "F47", StyleIndex = (UInt32Value)1U }; Cell cell4689 = new Cell() { CellReference = "G47", StyleIndex = (UInt32Value)1U }; Cell cell4690 = new Cell() { CellReference = "H47", StyleIndex = (UInt32Value)1U }; Cell cell4691 = new Cell() { CellReference = "I47", StyleIndex = (UInt32Value)1U }; Cell cell4692 = new Cell() { CellReference = "J47", StyleIndex = (UInt32Value)1U }; Cell cell4693 = new Cell() { CellReference = "K47", StyleIndex = (UInt32Value)1U }; Cell cell4694 = new Cell() { CellReference = "L47", StyleIndex = (UInt32Value)1U }; Cell cell4695 = new Cell() { CellReference = "M47", StyleIndex = (UInt32Value)1U }; Cell cell4696 = new Cell() { CellReference = "N47", StyleIndex = (UInt32Value)1U }; Cell cell4697 = new Cell() { CellReference = "O47", StyleIndex = (UInt32Value)1U }; Cell cell4698 = new Cell() { CellReference = "P47", StyleIndex = (UInt32Value)1U }; Cell cell4699 = new Cell() { CellReference = "Q47", StyleIndex = (UInt32Value)1U }; Cell cell4700 = new Cell() { CellReference = "R47", StyleIndex = (UInt32Value)1U }; Cell cell4701 = new Cell() { CellReference = "S47", StyleIndex = (UInt32Value)1U }; Cell cell4702 = new Cell() { CellReference = "T47", StyleIndex = (UInt32Value)1U }; Cell cell4703 = new Cell() { CellReference = "U47", StyleIndex = (UInt32Value)1U }; Cell cell4704 = new Cell() { CellReference = "V47", StyleIndex = (UInt32Value)1U }; Cell cell4705 = new Cell() { CellReference = "W47", StyleIndex = (UInt32Value)1U }; Cell cell4706 = new Cell() { CellReference = "X47", StyleIndex = (UInt32Value)1U }; Cell cell4707 = new Cell() { CellReference = "Y47", StyleIndex = (UInt32Value)1U }; Cell cell4708 = new Cell() { CellReference = "Z47", StyleIndex = (UInt32Value)1U }; Cell cell4709 = new Cell() { CellReference = "AA47", StyleIndex = (UInt32Value)1U }; Cell cell4710 = new Cell() { CellReference = "AB47", StyleIndex = (UInt32Value)1U }; Cell cell4711 = new Cell() { CellReference = "AC47", StyleIndex = (UInt32Value)1U }; Cell cell4712 = new Cell() { CellReference = "AD47", StyleIndex = (UInt32Value)1U }; row118.Append(cell4683); row118.Append(cell4684); row118.Append(cell4685); row118.Append(cell4686); row118.Append(cell4687); row118.Append(cell4688); row118.Append(cell4689); row118.Append(cell4690); row118.Append(cell4691); row118.Append(cell4692); row118.Append(cell4693); row118.Append(cell4694); row118.Append(cell4695); row118.Append(cell4696); row118.Append(cell4697); row118.Append(cell4698); row118.Append(cell4699); row118.Append(cell4700); row118.Append(cell4701); row118.Append(cell4702); row118.Append(cell4703); row118.Append(cell4704); row118.Append(cell4705); row118.Append(cell4706); row118.Append(cell4707); row118.Append(cell4708); row118.Append(cell4709); row118.Append(cell4710); row118.Append(cell4711); row118.Append(cell4712); Row row119 = new Row() { RowIndex = (UInt32Value)48U, Spans = new ListValue() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true }; Cell cell4713 = new Cell() { CellReference = "A48", StyleIndex = (UInt32Value)1U }; Cell cell4714 = new Cell() { CellReference = "B48", StyleIndex = (UInt32Value)1U }; Cell cell4715 = new Cell() { CellReference = "C48", StyleIndex = (UInt32Value)1U }; Cell cell4716 = new Cell() { CellReference = "D48", StyleIndex = (UInt32Value)1U }; Cell cell4717 = new Cell() { CellReference = "E48", StyleIndex = (UInt32Value)1U }; Cell cell4718 = new Cell() { CellReference = "F48", StyleIndex = (UInt32Value)1U }; Cell cell4719 = new Cell() { CellReference = "G48", StyleIndex = (UInt32Value)1U }; Cell cell4720 = new Cell() { CellReference = "H48", StyleIndex = (UInt32Value)1U }; Cell cell4721 = new Cell() { CellReference = "I48", StyleIndex = (UInt32Value)1U }; Cell cell4722 = new Cell() { CellReference = "J48", StyleIndex = (UInt32Value)1U }; Cell cell4723 = new Cell() { CellReference = "K48", StyleIndex = (UInt32Value)1U }; Cell cell4724 = new Cell() { CellReference = "L48", StyleIndex = (UInt32Value)1U }; Cell cell4725 = new Cell() { CellReference = "M48", StyleIndex = (UInt32Value)1U }; Cell cell4726 = new Cell() { CellReference = "N48", StyleIndex = (UInt32Value)1U }; Cell cell4727 = new Cell() { CellReference = "O48", StyleIndex = (UInt32Value)1U }; Cell cell4728 = new Cell() { CellReference = "P48", StyleIndex = (UInt32Value)1U }; Cell cell4729 = new Cell() { CellReference = "Q48", StyleIndex = (UInt32Value)1U }; Cell cell4730 = new Cell() { CellReference = "R48", StyleIndex = (UInt32Value)1U }; Cell cell4731 = new Cell() { CellReference = "S48", StyleIndex = (UInt32Value)1U }; Cell cell4732 = new Cell() { CellReference = "T48", StyleIndex = (UInt32Value)1U }; Cell cell4733 = new Cell() { CellReference = "U48", StyleIndex = (UInt32Value)1U }; Cell cell4734 = new Cell() { CellReference = "V48", StyleIndex = (UInt32Value)1U }; Cell cell4735 = new Cell() { CellReference = "W48", StyleIndex = (UInt32Value)1U }; Cell cell4736 = new Cell() { CellReference = "X48", StyleIndex = (UInt32Value)1U }; Cell cell4737 = new Cell() { CellReference = "Y48", StyleIndex = (UInt32Value)1U }; Cell cell4738 = new Cell() { CellReference = "Z48", StyleIndex = (UInt32Value)1U }; Cell cell4739 = new Cell() { CellReference = "AA48", StyleIndex = (UInt32Value)1U }; Cell cell4740 = new Cell() { CellReference = "AB48", StyleIndex = (UInt32Value)1U }; Cell cell4741 = new Cell() { CellReference = "AC48", StyleIndex = (UInt32Value)1U }; Cell cell4742 = new Cell() { CellReference = "AD48", StyleIndex = (UInt32Value)1U }; row119.Append(cell4713); row119.Append(cell4714); row119.Append(cell4715); row119.Append(cell4716); row119.Append(cell4717); row119.Append(cell4718); row119.Append(cell4719); row119.Append(cell4720); row119.Append(cell4721); row119.Append(cell4722); row119.Append(cell4723); row119.Append(cell4724); row119.Append(cell4725); row119.Append(cell4726); row119.Append(cell4727); row119.Append(cell4728); row119.Append(cell4729); row119.Append(cell4730); row119.Append(cell4731); row119.Append(cell4732); row119.Append(cell4733); row119.Append(cell4734); row119.Append(cell4735); row119.Append(cell4736); row119.Append(cell4737); row119.Append(cell4738); row119.Append(cell4739); row119.Append(cell4740); row119.Append(cell4741); row119.Append(cell4742); Row row120 = new Row() { RowIndex = (UInt32Value)49U, Spans = new ListValue() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true }; Cell cell4743 = new Cell() { CellReference = "A49", StyleIndex = (UInt32Value)1U }; Cell cell4744 = new Cell() { CellReference = "B49", StyleIndex = (UInt32Value)1U }; Cell cell4745 = new Cell() { CellReference = "C49", StyleIndex = (UInt32Value)1U }; Cell cell4746 = new Cell() { CellReference = "D49", StyleIndex = (UInt32Value)1U }; Cell cell4747 = new Cell() { CellReference = "E49", StyleIndex = (UInt32Value)1U }; Cell cell4748 = new Cell() { CellReference = "F49", StyleIndex = (UInt32Value)1U }; Cell cell4749 = new Cell() { CellReference = "G49", StyleIndex = (UInt32Value)1U }; Cell cell4750 = new Cell() { CellReference = "H49", StyleIndex = (UInt32Value)1U }; Cell cell4751 = new Cell() { CellReference = "I49", StyleIndex = (UInt32Value)1U }; Cell cell4752 = new Cell() { CellReference = "J49", StyleIndex = (UInt32Value)1U }; Cell cell4753 = new Cell() { CellReference = "K49", StyleIndex = (UInt32Value)1U }; Cell cell4754 = new Cell() { CellReference = "L49", StyleIndex = (UInt32Value)1U }; Cell cell4755 = new Cell() { CellReference = "M49", StyleIndex = (UInt32Value)1U }; Cell cell4756 = new Cell() { CellReference = "N49", StyleIndex = (UInt32Value)1U }; Cell cell4757 = new Cell() { CellReference = "O49", StyleIndex = (UInt32Value)1U }; Cell cell4758 = new Cell() { CellReference = "P49", StyleIndex = (UInt32Value)1U }; Cell cell4759 = new Cell() { CellReference = "Q49", StyleIndex = (UInt32Value)1U }; Cell cell4760 = new Cell() { CellReference = "R49", StyleIndex = (UInt32Value)1U }; Cell cell4761 = new Cell() { CellReference = "S49", StyleIndex = (UInt32Value)1U }; Cell cell4762 = new Cell() { CellReference = "T49", StyleIndex = (UInt32Value)1U }; Cell cell4763 = new Cell() { CellReference = "U49", StyleIndex = (UInt32Value)1U }; Cell cell4764 = new Cell() { CellReference = "V49", StyleIndex = (UInt32Value)1U }; Cell cell4765 = new Cell() { CellReference = "W49", StyleIndex = (UInt32Value)1U }; Cell cell4766 = new Cell() { CellReference = "X49", StyleIndex = (UInt32Value)1U }; Cell cell4767 = new Cell() { CellReference = "Y49", StyleIndex = (UInt32Value)1U }; Cell cell4768 = new Cell() { CellReference = "Z49", StyleIndex = (UInt32Value)1U }; Cell cell4769 = new Cell() { CellReference = "AA49", StyleIndex = (UInt32Value)1U }; Cell cell4770 = new Cell() { CellReference = "AB49", StyleIndex = (UInt32Value)1U }; Cell cell4771 = new Cell() { CellReference = "AC49", StyleIndex = (UInt32Value)1U }; Cell cell4772 = new Cell() { CellReference = "AD49", StyleIndex = (UInt32Value)1U }; row120.Append(cell4743); row120.Append(cell4744); row120.Append(cell4745); row120.Append(cell4746); row120.Append(cell4747); row120.Append(cell4748); row120.Append(cell4749); row120.Append(cell4750); row120.Append(cell4751); row120.Append(cell4752); row120.Append(cell4753); row120.Append(cell4754); row120.Append(cell4755); row120.Append(cell4756); row120.Append(cell4757); row120.Append(cell4758); row120.Append(cell4759); row120.Append(cell4760); row120.Append(cell4761); row120.Append(cell4762); row120.Append(cell4763); row120.Append(cell4764); row120.Append(cell4765); row120.Append(cell4766); row120.Append(cell4767); row120.Append(cell4768); row120.Append(cell4769); row120.Append(cell4770); row120.Append(cell4771); row120.Append(cell4772); Row row121 = new Row() { RowIndex = (UInt32Value)50U, Spans = new ListValue() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true }; Cell cell4773 = new Cell() { CellReference = "A50", StyleIndex = (UInt32Value)1U }; Cell cell4774 = new Cell() { CellReference = "B50", StyleIndex = (UInt32Value)1U }; Cell cell4775 = new Cell() { CellReference = "C50", StyleIndex = (UInt32Value)1U }; Cell cell4776 = new Cell() { CellReference = "D50", StyleIndex = (UInt32Value)1U }; Cell cell4777 = new Cell() { CellReference = "E50", StyleIndex = (UInt32Value)1U }; Cell cell4778 = new Cell() { CellReference = "F50", StyleIndex = (UInt32Value)1U }; Cell cell4779 = new Cell() { CellReference = "G50", StyleIndex = (UInt32Value)1U }; Cell cell4780 = new Cell() { CellReference = "H50", StyleIndex = (UInt32Value)1U }; Cell cell4781 = new Cell() { CellReference = "I50", StyleIndex = (UInt32Value)1U }; Cell cell4782 = new Cell() { CellReference = "J50", StyleIndex = (UInt32Value)1U }; Cell cell4783 = new Cell() { CellReference = "K50", StyleIndex = (UInt32Value)1U }; Cell cell4784 = new Cell() { CellReference = "L50", StyleIndex = (UInt32Value)1U }; Cell cell4785 = new Cell() { CellReference = "M50", StyleIndex = (UInt32Value)1U }; Cell cell4786 = new Cell() { CellReference = "N50", StyleIndex = (UInt32Value)1U }; Cell cell4787 = new Cell() { CellReference = "O50", StyleIndex = (UInt32Value)1U }; Cell cell4788 = new Cell() { CellReference = "P50", StyleIndex = (UInt32Value)1U }; Cell cell4789 = new Cell() { CellReference = "Q50", StyleIndex = (UInt32Value)1U }; Cell cell4790 = new Cell() { CellReference = "R50", StyleIndex = (UInt32Value)1U }; Cell cell4791 = new Cell() { CellReference = "S50", StyleIndex = (UInt32Value)1U }; Cell cell4792 = new Cell() { CellReference = "T50", StyleIndex = (UInt32Value)1U }; Cell cell4793 = new Cell() { CellReference = "U50", StyleIndex = (UInt32Value)1U }; Cell cell4794 = new Cell() { CellReference = "V50", StyleIndex = (UInt32Value)1U }; Cell cell4795 = new Cell() { CellReference = "W50", StyleIndex = (UInt32Value)1U }; Cell cell4796 = new Cell() { CellReference = "X50", StyleIndex = (UInt32Value)1U }; Cell cell4797 = new Cell() { CellReference = "Y50", StyleIndex = (UInt32Value)1U }; Cell cell4798 = new Cell() { CellReference = "Z50", StyleIndex = (UInt32Value)1U }; Cell cell4799 = new Cell() { CellReference = "AA50", StyleIndex = (UInt32Value)1U }; Cell cell4800 = new Cell() { CellReference = "AB50", StyleIndex = (UInt32Value)1U }; Cell cell4801 = new Cell() { CellReference = "AC50", StyleIndex = (UInt32Value)1U }; Cell cell4802 = new Cell() { CellReference = "AD50", StyleIndex = (UInt32Value)1U }; row121.Append(cell4773); row121.Append(cell4774); row121.Append(cell4775); row121.Append(cell4776); row121.Append(cell4777); row121.Append(cell4778); row121.Append(cell4779); row121.Append(cell4780); row121.Append(cell4781); row121.Append(cell4782); row121.Append(cell4783); row121.Append(cell4784); row121.Append(cell4785); row121.Append(cell4786); row121.Append(cell4787); row121.Append(cell4788); row121.Append(cell4789); row121.Append(cell4790); row121.Append(cell4791); row121.Append(cell4792); row121.Append(cell4793); row121.Append(cell4794); row121.Append(cell4795); row121.Append(cell4796); row121.Append(cell4797); row121.Append(cell4798); row121.Append(cell4799); row121.Append(cell4800); row121.Append(cell4801); row121.Append(cell4802); Row row122 = new Row() { RowIndex = (UInt32Value)51U, Spans = new ListValue() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true }; Cell cell4803 = new Cell() { CellReference = "A51", StyleIndex = (UInt32Value)1U }; Cell cell4804 = new Cell() { CellReference = "B51", StyleIndex = (UInt32Value)1U }; Cell cell4805 = new Cell() { CellReference = "C51", StyleIndex = (UInt32Value)1U }; Cell cell4806 = new Cell() { CellReference = "D51", StyleIndex = (UInt32Value)1U }; Cell cell4807 = new Cell() { CellReference = "E51", StyleIndex = (UInt32Value)1U }; Cell cell4808 = new Cell() { CellReference = "F51", StyleIndex = (UInt32Value)1U }; Cell cell4809 = new Cell() { CellReference = "G51", StyleIndex = (UInt32Value)1U }; Cell cell4810 = new Cell() { CellReference = "H51", StyleIndex = (UInt32Value)1U }; Cell cell4811 = new Cell() { CellReference = "I51", StyleIndex = (UInt32Value)1U }; Cell cell4812 = new Cell() { CellReference = "J51", StyleIndex = (UInt32Value)1U }; Cell cell4813 = new Cell() { CellReference = "K51", StyleIndex = (UInt32Value)1U }; Cell cell4814 = new Cell() { CellReference = "L51", StyleIndex = (UInt32Value)1U }; Cell cell4815 = new Cell() { CellReference = "M51", StyleIndex = (UInt32Value)1U }; Cell cell4816 = new Cell() { CellReference = "N51", StyleIndex = (UInt32Value)1U }; Cell cell4817 = new Cell() { CellReference = "O51", StyleIndex = (UInt32Value)1U }; Cell cell4818 = new Cell() { CellReference = "P51", StyleIndex = (UInt32Value)1U }; Cell cell4819 = new Cell() { CellReference = "Q51", StyleIndex = (UInt32Value)1U }; Cell cell4820 = new Cell() { CellReference = "R51", StyleIndex = (UInt32Value)1U }; Cell cell4821 = new Cell() { CellReference = "S51", StyleIndex = (UInt32Value)1U }; Cell cell4822 = new Cell() { CellReference = "T51", StyleIndex = (UInt32Value)1U }; Cell cell4823 = new Cell() { CellReference = "U51", StyleIndex = (UInt32Value)1U }; Cell cell4824 = new Cell() { CellReference = "V51", StyleIndex = (UInt32Value)1U }; Cell cell4825 = new Cell() { CellReference = "W51", StyleIndex = (UInt32Value)1U }; Cell cell4826 = new Cell() { CellReference = "X51", StyleIndex = (UInt32Value)1U }; Cell cell4827 = new Cell() { CellReference = "Y51", StyleIndex = (UInt32Value)1U }; Cell cell4828 = new Cell() { CellReference = "Z51", StyleIndex = (UInt32Value)1U }; Cell cell4829 = new Cell() { CellReference = "AA51", StyleIndex = (UInt32Value)1U }; Cell cell4830 = new Cell() { CellReference = "AB51", StyleIndex = (UInt32Value)1U }; Cell cell4831 = new Cell() { CellReference = "AC51", StyleIndex = (UInt32Value)1U }; Cell cell4832 = new Cell() { CellReference = "AD51", StyleIndex = (UInt32Value)1U }; row122.Append(cell4803); row122.Append(cell4804); row122.Append(cell4805); row122.Append(cell4806); row122.Append(cell4807); row122.Append(cell4808); row122.Append(cell4809); row122.Append(cell4810); row122.Append(cell4811); row122.Append(cell4812); row122.Append(cell4813); row122.Append(cell4814); row122.Append(cell4815); row122.Append(cell4816); row122.Append(cell4817); row122.Append(cell4818); row122.Append(cell4819); row122.Append(cell4820); row122.Append(cell4821); row122.Append(cell4822); row122.Append(cell4823); row122.Append(cell4824); row122.Append(cell4825); row122.Append(cell4826); row122.Append(cell4827); row122.Append(cell4828); row122.Append(cell4829); row122.Append(cell4830); row122.Append(cell4831); row122.Append(cell4832); Row row123 = new Row() { RowIndex = (UInt32Value)52U, Spans = new ListValue() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true }; Cell cell4833 = new Cell() { CellReference = "A52", StyleIndex = (UInt32Value)1U }; Cell cell4834 = new Cell() { CellReference = "B52", StyleIndex = (UInt32Value)1U }; Cell cell4835 = new Cell() { CellReference = "C52", StyleIndex = (UInt32Value)1U }; Cell cell4836 = new Cell() { CellReference = "D52", StyleIndex = (UInt32Value)1U }; Cell cell4837 = new Cell() { CellReference = "E52", StyleIndex = (UInt32Value)1U }; Cell cell4838 = new Cell() { CellReference = "F52", StyleIndex = (UInt32Value)1U }; Cell cell4839 = new Cell() { CellReference = "G52", StyleIndex = (UInt32Value)1U }; Cell cell4840 = new Cell() { CellReference = "H52", StyleIndex = (UInt32Value)1U }; Cell cell4841 = new Cell() { CellReference = "I52", StyleIndex = (UInt32Value)1U }; Cell cell4842 = new Cell() { CellReference = "J52", StyleIndex = (UInt32Value)1U }; Cell cell4843 = new Cell() { CellReference = "K52", StyleIndex = (UInt32Value)1U }; Cell cell4844 = new Cell() { CellReference = "L52", StyleIndex = (UInt32Value)1U }; Cell cell4845 = new Cell() { CellReference = "M52", StyleIndex = (UInt32Value)1U }; Cell cell4846 = new Cell() { CellReference = "N52", StyleIndex = (UInt32Value)1U }; Cell cell4847 = new Cell() { CellReference = "O52", StyleIndex = (UInt32Value)1U }; Cell cell4848 = new Cell() { CellReference = "P52", StyleIndex = (UInt32Value)1U }; Cell cell4849 = new Cell() { CellReference = "Q52", StyleIndex = (UInt32Value)1U }; Cell cell4850 = new Cell() { CellReference = "R52", StyleIndex = (UInt32Value)1U }; Cell cell4851 = new Cell() { CellReference = "S52", StyleIndex = (UInt32Value)1U }; Cell cell4852 = new Cell() { CellReference = "T52", StyleIndex = (UInt32Value)1U }; Cell cell4853 = new Cell() { CellReference = "U52", StyleIndex = (UInt32Value)1U }; Cell cell4854 = new Cell() { CellReference = "V52", StyleIndex = (UInt32Value)1U }; Cell cell4855 = new Cell() { CellReference = "W52", StyleIndex = (UInt32Value)1U }; Cell cell4856 = new Cell() { CellReference = "X52", StyleIndex = (UInt32Value)1U }; Cell cell4857 = new Cell() { CellReference = "Y52", StyleIndex = (UInt32Value)1U }; Cell cell4858 = new Cell() { CellReference = "Z52", StyleIndex = (UInt32Value)1U }; Cell cell4859 = new Cell() { CellReference = "AA52", StyleIndex = (UInt32Value)1U }; Cell cell4860 = new Cell() { CellReference = "AB52", StyleIndex = (UInt32Value)1U }; Cell cell4861 = new Cell() { CellReference = "AC52", StyleIndex = (UInt32Value)1U }; Cell cell4862 = new Cell() { CellReference = "AD52", StyleIndex = (UInt32Value)1U }; row123.Append(cell4833); row123.Append(cell4834); row123.Append(cell4835); row123.Append(cell4836); row123.Append(cell4837); row123.Append(cell4838); row123.Append(cell4839); row123.Append(cell4840); row123.Append(cell4841); row123.Append(cell4842); row123.Append(cell4843); row123.Append(cell4844); row123.Append(cell4845); row123.Append(cell4846); row123.Append(cell4847); row123.Append(cell4848); row123.Append(cell4849); row123.Append(cell4850); row123.Append(cell4851); row123.Append(cell4852); row123.Append(cell4853); row123.Append(cell4854); row123.Append(cell4855); row123.Append(cell4856); row123.Append(cell4857); row123.Append(cell4858); row123.Append(cell4859); row123.Append(cell4860); row123.Append(cell4861); row123.Append(cell4862); Row row124 = new Row() { RowIndex = (UInt32Value)53U, Spans = new ListValue() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true }; Cell cell4863 = new Cell() { CellReference = "A53", StyleIndex = (UInt32Value)1U }; Cell cell4864 = new Cell() { CellReference = "B53", StyleIndex = (UInt32Value)1U }; Cell cell4865 = new Cell() { CellReference = "C53", StyleIndex = (UInt32Value)1U }; Cell cell4866 = new Cell() { CellReference = "D53", StyleIndex = (UInt32Value)1U }; Cell cell4867 = new Cell() { CellReference = "E53", StyleIndex = (UInt32Value)1U }; Cell cell4868 = new Cell() { CellReference = "F53", StyleIndex = (UInt32Value)1U }; Cell cell4869 = new Cell() { CellReference = "G53", StyleIndex = (UInt32Value)1U }; Cell cell4870 = new Cell() { CellReference = "H53", StyleIndex = (UInt32Value)1U }; Cell cell4871 = new Cell() { CellReference = "I53", StyleIndex = (UInt32Value)1U }; Cell cell4872 = new Cell() { CellReference = "J53", StyleIndex = (UInt32Value)1U }; Cell cell4873 = new Cell() { CellReference = "K53", StyleIndex = (UInt32Value)1U }; Cell cell4874 = new Cell() { CellReference = "L53", StyleIndex = (UInt32Value)1U }; Cell cell4875 = new Cell() { CellReference = "M53", StyleIndex = (UInt32Value)1U }; Cell cell4876 = new Cell() { CellReference = "N53", StyleIndex = (UInt32Value)1U }; Cell cell4877 = new Cell() { CellReference = "O53", StyleIndex = (UInt32Value)1U }; Cell cell4878 = new Cell() { CellReference = "P53", StyleIndex = (UInt32Value)1U }; Cell cell4879 = new Cell() { CellReference = "Q53", StyleIndex = (UInt32Value)1U }; Cell cell4880 = new Cell() { CellReference = "R53", StyleIndex = (UInt32Value)1U }; Cell cell4881 = new Cell() { CellReference = "S53", StyleIndex = (UInt32Value)1U }; Cell cell4882 = new Cell() { CellReference = "T53", StyleIndex = (UInt32Value)1U }; Cell cell4883 = new Cell() { CellReference = "U53", StyleIndex = (UInt32Value)1U }; Cell cell4884 = new Cell() { CellReference = "V53", StyleIndex = (UInt32Value)1U }; Cell cell4885 = new Cell() { CellReference = "W53", StyleIndex = (UInt32Value)1U }; Cell cell4886 = new Cell() { CellReference = "X53", StyleIndex = (UInt32Value)1U }; Cell cell4887 = new Cell() { CellReference = "Y53", StyleIndex = (UInt32Value)1U }; Cell cell4888 = new Cell() { CellReference = "Z53", StyleIndex = (UInt32Value)1U }; Cell cell4889 = new Cell() { CellReference = "AA53", StyleIndex = (UInt32Value)1U }; Cell cell4890 = new Cell() { CellReference = "AB53", StyleIndex = (UInt32Value)1U }; Cell cell4891 = new Cell() { CellReference = "AC53", StyleIndex = (UInt32Value)1U }; Cell cell4892 = new Cell() { CellReference = "AD53", StyleIndex = (UInt32Value)1U }; row124.Append(cell4863); row124.Append(cell4864); row124.Append(cell4865); row124.Append(cell4866); row124.Append(cell4867); row124.Append(cell4868); row124.Append(cell4869); row124.Append(cell4870); row124.Append(cell4871); row124.Append(cell4872); row124.Append(cell4873); row124.Append(cell4874); row124.Append(cell4875); row124.Append(cell4876); row124.Append(cell4877); row124.Append(cell4878); row124.Append(cell4879); row124.Append(cell4880); row124.Append(cell4881); row124.Append(cell4882); row124.Append(cell4883); row124.Append(cell4884); row124.Append(cell4885); row124.Append(cell4886); row124.Append(cell4887); row124.Append(cell4888); row124.Append(cell4889); row124.Append(cell4890); row124.Append(cell4891); row124.Append(cell4892); sheetData3.Append(row110); //sheetData3.Append(row111); //sheetData3.Append(row112); sheetData3.Append(row113); sheetData3.Append(row114); sheetData3.Append(row115); sheetData3.Append(row116); sheetData3.Append(row117); sheetData3.Append(row118); sheetData3.Append(row119); sheetData3.Append(row120); sheetData3.Append(row121); sheetData3.Append(row122); sheetData3.Append(row123); sheetData3.Append(row124); MergeCells mergeCells2 = new MergeCells() { Count = (UInt32Value)42U }; MergeCell mergeCell103 = new MergeCell() { Reference = "G20:I20" }; MergeCell mergeCell104 = new MergeCell() { Reference = "G22:I22" }; MergeCell mergeCell105 = new MergeCell() { Reference = "P1:R1" }; MergeCell mergeCell106 = new MergeCell() { Reference = "P2:R2" }; MergeCell mergeCell107 = new MergeCell() { Reference = "P20:S20" }; MergeCell mergeCell108 = new MergeCell() { Reference = "P18:S18" }; MergeCell mergeCell109 = new MergeCell() { Reference = "P16:S16" }; MergeCell mergeCell110 = new MergeCell() { Reference = "P14:S14" }; MergeCell mergeCell111 = new MergeCell() { Reference = "P12:S12" }; MergeCell mergeCell112 = new MergeCell() { Reference = "P10:S10" }; MergeCell mergeCell113 = new MergeCell() { Reference = "P8:S8" }; MergeCell mergeCell114 = new MergeCell() { Reference = "P6:S6" }; MergeCell mergeCell115 = new MergeCell() { Reference = "P4:S4" }; MergeCell mergeCell116 = new MergeCell() { Reference = "P22:S22" }; MergeCell mergeCell144 = new MergeCell() { Reference = "P24:S24" }; MergeCell mergeCell117 = new MergeCell() { Reference = "Q26:R26" }; MergeCell mergeCell118 = new MergeCell() { Reference = "Q28:R28" }; MergeCell mergeCell119 = new MergeCell() { Reference = "P30:S30" }; MergeCell mergeCell120 = new MergeCell() { Reference = "P31:S31" }; MergeCell mergeCell121 = new MergeCell() { Reference = "U4:AB4" }; MergeCell mergeCell122 = new MergeCell() { Reference = "U6:AB6" }; MergeCell mergeCell123 = new MergeCell() { Reference = "U8:AB8" }; MergeCell mergeCell124 = new MergeCell() { Reference = "U10:AB10" }; MergeCell mergeCell125 = new MergeCell() { Reference = "U12:AB12" }; MergeCell mergeCell126 = new MergeCell() { Reference = "U14:AB14" }; MergeCell mergeCell127 = new MergeCell() { Reference = "U16:AB16" }; MergeCell mergeCell128 = new MergeCell() { Reference = "U18:AB18" }; MergeCell mergeCell129 = new MergeCell() { Reference = "U20:AB20" }; MergeCell mergeCell130 = new MergeCell() { Reference = "U22:AB22" }; MergeCell mergeCell143 = new MergeCell() { Reference = "U24:AB24" }; MergeCell mergeCell131 = new MergeCell() { Reference = "U26:AB26" }; MergeCell mergeCell132 = new MergeCell() { Reference = "U28:AB28" }; MergeCell mergeCell133 = new MergeCell() { Reference = "U31:AB31" }; MergeCell mergeCell134 = new MergeCell() { Reference = "P33:S33" }; MergeCell mergeCell135 = new MergeCell() { Reference = "P34:S34" }; MergeCell mergeCell136 = new MergeCell() { Reference = "P36:S36" }; MergeCell mergeCell137 = new MergeCell() { Reference = "P38:S38" }; MergeCell mergeCell138 = new MergeCell() { Reference = "P40:S40" }; MergeCell mergeCell139 = new MergeCell() { Reference = "U34:AB34" }; MergeCell mergeCell140 = new MergeCell() { Reference = "U36:AB36" }; MergeCell mergeCell141 = new MergeCell() { Reference = "U38:AB38" }; MergeCell mergeCell142 = new MergeCell() { Reference = "U40:AB40" }; mergeCells2.Append(mergeCell103); mergeCells2.Append(mergeCell104); mergeCells2.Append(mergeCell105); mergeCells2.Append(mergeCell106); mergeCells2.Append(mergeCell107); mergeCells2.Append(mergeCell108); mergeCells2.Append(mergeCell109); mergeCells2.Append(mergeCell110); mergeCells2.Append(mergeCell111); mergeCells2.Append(mergeCell112); mergeCells2.Append(mergeCell113); mergeCells2.Append(mergeCell114); mergeCells2.Append(mergeCell115); mergeCells2.Append(mergeCell116); mergeCells2.Append(mergeCell144); mergeCells2.Append(mergeCell117); mergeCells2.Append(mergeCell118); mergeCells2.Append(mergeCell119); mergeCells2.Append(mergeCell120); mergeCells2.Append(mergeCell121); mergeCells2.Append(mergeCell122); mergeCells2.Append(mergeCell123); mergeCells2.Append(mergeCell124); mergeCells2.Append(mergeCell125); mergeCells2.Append(mergeCell126); mergeCells2.Append(mergeCell127); mergeCells2.Append(mergeCell128); mergeCells2.Append(mergeCell129); mergeCells2.Append(mergeCell130); mergeCells2.Append(mergeCell143); mergeCells2.Append(mergeCell131); mergeCells2.Append(mergeCell132); mergeCells2.Append(mergeCell133); mergeCells2.Append(mergeCell134); mergeCells2.Append(mergeCell135); mergeCells2.Append(mergeCell136); mergeCells2.Append(mergeCell137); mergeCells2.Append(mergeCell138); mergeCells2.Append(mergeCell139); mergeCells2.Append(mergeCell140); mergeCells2.Append(mergeCell141); mergeCells2.Append(mergeCell142); PageMargins pageMargins8 = new PageMargins() { Left = 0.7D, Right = 0.7D, Top = 0.75D, Bottom = 0.75D, Header = 0.3D, Footer = 0.3D }; PageSetup pageSetup7 = new PageSetup() { PaperSize = (UInt32Value)9U, Orientation = OrientationValues.Portrait, Id = "rId1" }; Drawing drawing2 = new Drawing() { Id = "rId2" }; worksheet3.Append(sheetDimension3); worksheet3.Append(sheetViews3); worksheet3.Append(sheetFormatProperties3); worksheet3.Append(sheetData3); worksheet3.Append(mergeCells2); worksheet3.Append(pageMargins8); worksheet3.Append(pageSetup7); worksheet3.Append(drawing2); worksheetPart3.Worksheet = worksheet3; } // Generates content of drawingsPart2. private void GenerateDrawingsPart2Content(DrawingsPart drawingsPart2) { Xdr.WorksheetDrawing worksheetDrawing2 = new Xdr.WorksheetDrawing(); worksheetDrawing2.AddNamespaceDeclaration("xdr", "http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing"); worksheetDrawing2.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main"); Xdr.TwoCellAnchor twoCellAnchor6 = new Xdr.TwoCellAnchor(); Xdr.FromMarker fromMarker6 = new Xdr.FromMarker(); Xdr.ColumnId columnId11 = new Xdr.ColumnId(); columnId11.Text = "1"; Xdr.ColumnOffset columnOffset11 = new Xdr.ColumnOffset(); columnOffset11.Text = "95249"; Xdr.RowId rowId11 = new Xdr.RowId(); rowId11.Text = "7"; Xdr.RowOffset rowOffset11 = new Xdr.RowOffset(); rowOffset11.Text = "180974"; fromMarker6.Append(columnId11); fromMarker6.Append(columnOffset11); fromMarker6.Append(rowId11); fromMarker6.Append(rowOffset11); Xdr.ToMarker toMarker6 = new Xdr.ToMarker(); Xdr.ColumnId columnId12 = new Xdr.ColumnId(); columnId12.Text = "13"; Xdr.ColumnOffset columnOffset12 = new Xdr.ColumnOffset(); columnOffset12.Text = "314324"; Xdr.RowId rowId12 = new Xdr.RowId(); rowId12.Text = "15"; Xdr.RowOffset rowOffset12 = new Xdr.RowOffset(); rowOffset12.Text = "171449"; toMarker6.Append(columnId12); toMarker6.Append(columnOffset12); toMarker6.Append(rowId12); toMarker6.Append(rowOffset12); Xdr.Shape shape1 = new Xdr.Shape() { Macro = "", TextLink = "" }; Xdr.NonVisualShapeProperties nonVisualShapeProperties1 = new Xdr.NonVisualShapeProperties(); Xdr.NonVisualDrawingProperties nonVisualDrawingProperties6 = new Xdr.NonVisualDrawingProperties() { Id = (UInt32Value)2U, Name = "Text Box 2" }; Xdr.NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties1 = new Xdr.NonVisualShapeDrawingProperties() { TextBox = true }; A.ShapeLocks shapeLocks1 = new A.ShapeLocks() { NoChangeArrowheads = true }; nonVisualShapeDrawingProperties1.Append(shapeLocks1); nonVisualShapeProperties1.Append(nonVisualDrawingProperties6); nonVisualShapeProperties1.Append(nonVisualShapeDrawingProperties1); Xdr.ShapeProperties shapeProperties1 = new Xdr.ShapeProperties() { BlackWhiteMode = A.BlackWhiteModeValues.Auto }; A.Transform2D transform2D1 = new A.Transform2D(); A.Offset offset6 = new A.Offset() { X = 466724L, Y = 1447799L }; A.Extents extents6 = new A.Extents() { Cx = 4676775L, Cy = 1438275L }; transform2D1.Append(offset6); transform2D1.Append(extents6); A.PresetGeometry presetGeometry1 = new A.PresetGeometry() { Preset = A.ShapeTypeValues.Rectangle }; A.AdjustValueList adjustValueList1 = new A.AdjustValueList(); presetGeometry1.Append(adjustValueList1); A.SolidFill solidFill12 = new A.SolidFill(); A.RgbColorModelHex rgbColorModelHex12 = new A.RgbColorModelHex() { Val = "FFFFFF" }; solidFill12.Append(rgbColorModelHex12); A.Outline outline32 = new A.Outline() { Width = 9525 }; A.SolidFill solidFill13 = new A.SolidFill(); A.RgbColorModelHex rgbColorModelHex13 = new A.RgbColorModelHex() { Val = "000000" }; solidFill13.Append(rgbColorModelHex13); A.Miter miter1 = new A.Miter() { Limit = 800000 }; A.HeadEnd headEnd1 = new A.HeadEnd(); A.TailEnd tailEnd1 = new A.TailEnd(); outline32.Append(solidFill13); outline32.Append(miter1); outline32.Append(headEnd1); outline32.Append(tailEnd1); shapeProperties1.Append(transform2D1); shapeProperties1.Append(presetGeometry1); shapeProperties1.Append(solidFill12); shapeProperties1.Append(outline32); Xdr.TextBody textBody1 = new Xdr.TextBody(); A.BodyProperties bodyProperties3 = new A.BodyProperties() { VerticalOverflow = A.TextVerticalOverflowValues.Clip, Wrap = A.TextWrappingValues.Square, LeftInset = 45720, TopInset = 32004, RightInset = 45720, BottomInset = 0, Anchor = A.TextAnchoringTypeValues.Top, UpRight = true }; A.ListStyle listStyle3 = new A.ListStyle(); A.Paragraph paragraph3 = new A.Paragraph(); A.ParagraphProperties paragraphProperties3 = new A.ParagraphProperties() { Alignment = A.TextAlignmentTypeValues.Center, RightToLeft = false }; A.DefaultRunProperties defaultRunProperties3 = new A.DefaultRunProperties() { FontSize = 1000 }; paragraphProperties3.Append(defaultRunProperties3); A.Run run3 = new A.Run(); A.RunProperties runProperties3 = new A.RunProperties() { Language = "en-US", AlternativeLanguage = "ja-JP", FontSize = 2400, Bold = false, Italic = false, Underline = A.TextUnderlineValues.None, Strike = A.TextStrikeValues.NoStrike, Baseline = 0 }; A.SolidFill solidFill14 = new A.SolidFill(); A.RgbColorModelHex rgbColorModelHex14 = new A.RgbColorModelHex() { Val = "000000" }; solidFill14.Append(rgbColorModelHex14); A.LatinFont latinFont1 = new A.LatinFont() { Typeface = "MS Pゴシック" }; A.EastAsianFont eastAsianFont1 = new A.EastAsianFont() { Typeface = "MS Pゴシック" }; runProperties3.Append(solidFill14); runProperties3.Append(latinFont1); runProperties3.Append(eastAsianFont1); A.Text text3 = new A.Text(); text3.Text = "Head and Leg"; run3.Append(runProperties3); run3.Append(text3); paragraph3.Append(paragraphProperties3); paragraph3.Append(run3); A.Paragraph paragraph4 = new A.Paragraph(); A.ParagraphProperties paragraphProperties4 = new A.ParagraphProperties() { Alignment = A.TextAlignmentTypeValues.Center, RightToLeft = false }; A.DefaultRunProperties defaultRunProperties4 = new A.DefaultRunProperties() { FontSize = 1000 }; paragraphProperties4.Append(defaultRunProperties4); A.Run run4 = new A.Run(); A.RunProperties runProperties4 = new A.RunProperties() { Language = "en-US", AlternativeLanguage = "ja-JP", FontSize = 2400, Bold = false, Italic = false, Underline = A.TextUnderlineValues.None, Strike = A.TextStrikeValues.NoStrike, Baseline = 0 }; A.SolidFill solidFill15 = new A.SolidFill(); A.RgbColorModelHex rgbColorModelHex15 = new A.RgbColorModelHex() { Val = "000000" }; solidFill15.Append(rgbColorModelHex15); A.LatinFont latinFont2 = new A.LatinFont() { Typeface = "MS Pゴシック" }; A.EastAsianFont eastAsianFont2 = new A.EastAsianFont() { Typeface = "MS Pゴシック" }; runProperties4.Append(solidFill15); runProperties4.Append(latinFont2); runProperties4.Append(eastAsianFont2); A.Text text4 = new A.Text(); text4.Text = "Protection of Pedestrians "; run4.Append(runProperties4); run4.Append(text4); paragraph4.Append(paragraphProperties4); paragraph4.Append(run4); A.Paragraph paragraph5 = new A.Paragraph(); A.ParagraphProperties paragraphProperties5 = new A.ParagraphProperties() { Alignment = A.TextAlignmentTypeValues.Center, RightToLeft = false }; A.DefaultRunProperties defaultRunProperties5 = new A.DefaultRunProperties() { FontSize = 1000 }; paragraphProperties5.Append(defaultRunProperties5); A.Run run5 = new A.Run(); A.RunProperties runProperties5 = new A.RunProperties() { Language = "en-US", AlternativeLanguage = "ja-JP", FontSize = 2400, Bold = false, Italic = false, Underline = A.TextUnderlineValues.None, Strike = A.TextStrikeValues.NoStrike, Baseline = 0 }; A.SolidFill solidFill16 = new A.SolidFill(); A.RgbColorModelHex rgbColorModelHex16 = new A.RgbColorModelHex() { Val = "000000" }; solidFill16.Append(rgbColorModelHex16); A.LatinFont latinFont3 = new A.LatinFont() { Typeface = "MS Pゴシック" }; A.EastAsianFont eastAsianFont3 = new A.EastAsianFont() { Typeface = "MS Pゴシック" }; runProperties5.Append(solidFill16); runProperties5.Append(latinFont3); runProperties5.Append(eastAsianFont3); A.Text text5 = new A.Text(); text5.Text = "Test"; run5.Append(runProperties5); run5.Append(text5); paragraph5.Append(paragraphProperties5); paragraph5.Append(run5); textBody1.Append(bodyProperties3); textBody1.Append(listStyle3); textBody1.Append(paragraph3); textBody1.Append(paragraph4); textBody1.Append(paragraph5); shape1.Append(nonVisualShapeProperties1); shape1.Append(shapeProperties1); shape1.Append(textBody1); Xdr.ClientData clientData6 = new Xdr.ClientData(); twoCellAnchor6.Append(fromMarker6); twoCellAnchor6.Append(toMarker6); twoCellAnchor6.Append(shape1); twoCellAnchor6.Append(clientData6); worksheetDrawing2.Append(twoCellAnchor6); drawingsPart2.WorksheetDrawing = worksheetDrawing2; } // Generates content of spreadsheetPrinterSettingsPart2. private void GenerateSpreadsheetPrinterSettingsPart2Content(SpreadsheetPrinterSettingsPart spreadsheetPrinterSettingsPart2) { System.IO.Stream data = GetBinaryDataStream(spreadsheetPrinterSettingsPart2Data); spreadsheetPrinterSettingsPart2.FeedData(data); data.Close(); } //private int LCLUnits_Position = 102; // Generates content of workbookStylesPart1. private void GenerateWorkbookStylesPart1Content(WorkbookStylesPart workbookStylesPart1) { Stylesheet stylesheet1 = new Stylesheet(); Fonts fonts1 = new Fonts() { Count = (UInt32Value)32U }; Font font1 = new Font(); FontSize fontSize1 = new FontSize() { Val = 11D }; Color color1 = new Color() { Theme = (UInt32Value)1U }; FontName fontName1 = new FontName() { Val = "Calibri" }; FontFamilyNumbering fontFamilyNumbering1 = new FontFamilyNumbering() { Val = 2 }; FontScheme fontScheme1 = new FontScheme() { Val = FontSchemeValues.Minor }; font1.Append(fontSize1); font1.Append(color1); font1.Append(fontName1); font1.Append(fontFamilyNumbering1); font1.Append(fontScheme1); Font font2 = new Font(); Bold bold1 = new Bold(); FontSize fontSize2 = new FontSize() { Val = 11D }; Color color2 = new Color() { Theme = (UInt32Value)1U }; FontName fontName2 = new FontName() { Val = "Calibri" }; FontFamilyNumbering fontFamilyNumbering2 = new FontFamilyNumbering() { Val = 2 }; FontScheme fontScheme2 = new FontScheme() { Val = FontSchemeValues.Minor }; font2.Append(bold1); font2.Append(fontSize2); font2.Append(color2); font2.Append(fontName2); font2.Append(fontFamilyNumbering2); font2.Append(fontScheme2); Font font3 = new Font(); FontSize fontSize3 = new FontSize() { Val = 10D }; Color color3 = new Color() { Theme = (UInt32Value)1U }; FontName fontName3 = new FontName() { Val = "Segoe UI" }; FontFamilyNumbering fontFamilyNumbering3 = new FontFamilyNumbering() { Val = 2 }; font3.Append(fontSize3); font3.Append(color3); font3.Append(fontName3); font3.Append(fontFamilyNumbering3); Font font4 = new Font(); FontSize fontSize4 = new FontSize() { Val = 11D }; Color color4 = new Color() { Theme = (UInt32Value)1U }; FontName fontName4 = new FontName() { Val = "Calibri" }; FontFamilyNumbering fontFamilyNumbering4 = new FontFamilyNumbering() { Val = 2 }; FontCharSet fontCharSet1 = new FontCharSet() { Val = 128 }; FontScheme fontScheme3 = new FontScheme() { Val = FontSchemeValues.Minor }; font4.Append(fontSize4); font4.Append(color4); font4.Append(fontName4); font4.Append(fontFamilyNumbering4); font4.Append(fontCharSet1); font4.Append(fontScheme3); Font font5 = new Font(); Bold bold2 = new Bold(); FontSize fontSize5 = new FontSize() { Val = 18D }; Color color5 = new Color() { Theme = (UInt32Value)3U }; FontName fontName5 = new FontName() { Val = "Cambria" }; FontFamilyNumbering fontFamilyNumbering5 = new FontFamilyNumbering() { Val = 2 }; FontCharSet fontCharSet2 = new FontCharSet() { Val = 128 }; FontScheme fontScheme4 = new FontScheme() { Val = FontSchemeValues.Major }; font5.Append(bold2); font5.Append(fontSize5); font5.Append(color5); font5.Append(fontName5); font5.Append(fontFamilyNumbering5); font5.Append(fontCharSet2); font5.Append(fontScheme4); Font font6 = new Font(); Bold bold3 = new Bold(); FontSize fontSize6 = new FontSize() { Val = 15D }; Color color6 = new Color() { Theme = (UInt32Value)3U }; FontName fontName6 = new FontName() { Val = "Calibri" }; FontFamilyNumbering fontFamilyNumbering6 = new FontFamilyNumbering() { Val = 2 }; FontCharSet fontCharSet3 = new FontCharSet() { Val = 128 }; FontScheme fontScheme5 = new FontScheme() { Val = FontSchemeValues.Minor }; font6.Append(bold3); font6.Append(fontSize6); font6.Append(color6); font6.Append(fontName6); font6.Append(fontFamilyNumbering6); font6.Append(fontCharSet3); font6.Append(fontScheme5); Font font7 = new Font(); Bold bold4 = new Bold(); FontSize fontSize7 = new FontSize() { Val = 13D }; Color color7 = new Color() { Theme = (UInt32Value)3U }; FontName fontName7 = new FontName() { Val = "Calibri" }; FontFamilyNumbering fontFamilyNumbering7 = new FontFamilyNumbering() { Val = 2 }; FontCharSet fontCharSet4 = new FontCharSet() { Val = 128 }; FontScheme fontScheme6 = new FontScheme() { Val = FontSchemeValues.Minor }; font7.Append(bold4); font7.Append(fontSize7); font7.Append(color7); font7.Append(fontName7); font7.Append(fontFamilyNumbering7); font7.Append(fontCharSet4); font7.Append(fontScheme6); Font font8 = new Font(); Bold bold5 = new Bold(); FontSize fontSize8 = new FontSize() { Val = 11D }; Color color8 = new Color() { Theme = (UInt32Value)3U }; FontName fontName8 = new FontName() { Val = "Calibri" }; FontFamilyNumbering fontFamilyNumbering8 = new FontFamilyNumbering() { Val = 2 }; FontCharSet fontCharSet5 = new FontCharSet() { Val = 128 }; FontScheme fontScheme7 = new FontScheme() { Val = FontSchemeValues.Minor }; font8.Append(bold5); font8.Append(fontSize8); font8.Append(color8); font8.Append(fontName8); font8.Append(fontFamilyNumbering8); font8.Append(fontCharSet5); font8.Append(fontScheme7); Font font9 = new Font(); FontSize fontSize9 = new FontSize() { Val = 11D }; Color color9 = new Color() { Rgb = "FF006100" }; FontName fontName9 = new FontName() { Val = "Calibri" }; FontFamilyNumbering fontFamilyNumbering9 = new FontFamilyNumbering() { Val = 2 }; FontCharSet fontCharSet6 = new FontCharSet() { Val = 128 }; FontScheme fontScheme8 = new FontScheme() { Val = FontSchemeValues.Minor }; font9.Append(fontSize9); font9.Append(color9); font9.Append(fontName9); font9.Append(fontFamilyNumbering9); font9.Append(fontCharSet6); font9.Append(fontScheme8); Font font10 = new Font(); FontSize fontSize10 = new FontSize() { Val = 11D }; Color color10 = new Color() { Rgb = "FF9C0006" }; FontName fontName10 = new FontName() { Val = "Calibri" }; FontFamilyNumbering fontFamilyNumbering10 = new FontFamilyNumbering() { Val = 2 }; FontCharSet fontCharSet7 = new FontCharSet() { Val = 128 }; FontScheme fontScheme9 = new FontScheme() { Val = FontSchemeValues.Minor }; font10.Append(fontSize10); font10.Append(color10); font10.Append(fontName10); font10.Append(fontFamilyNumbering10); font10.Append(fontCharSet7); font10.Append(fontScheme9); Font font11 = new Font(); FontSize fontSize11 = new FontSize() { Val = 11D }; Color color11 = new Color() { Rgb = "FF9C6500" }; FontName fontName11 = new FontName() { Val = "Calibri" }; FontFamilyNumbering fontFamilyNumbering11 = new FontFamilyNumbering() { Val = 2 }; FontCharSet fontCharSet8 = new FontCharSet() { Val = 128 }; FontScheme fontScheme10 = new FontScheme() { Val = FontSchemeValues.Minor }; font11.Append(fontSize11); font11.Append(color11); font11.Append(fontName11); font11.Append(fontFamilyNumbering11); font11.Append(fontCharSet8); font11.Append(fontScheme10); Font font12 = new Font(); FontSize fontSize12 = new FontSize() { Val = 11D }; Color color12 = new Color() { Rgb = "FF3F3F76" }; FontName fontName12 = new FontName() { Val = "Calibri" }; FontFamilyNumbering fontFamilyNumbering12 = new FontFamilyNumbering() { Val = 2 }; FontCharSet fontCharSet9 = new FontCharSet() { Val = 128 }; FontScheme fontScheme11 = new FontScheme() { Val = FontSchemeValues.Minor }; font12.Append(fontSize12); font12.Append(color12); font12.Append(fontName12); font12.Append(fontFamilyNumbering12); font12.Append(fontCharSet9); font12.Append(fontScheme11); Font font13 = new Font(); Bold bold6 = new Bold(); FontSize fontSize13 = new FontSize() { Val = 11D }; Color color13 = new Color() { Rgb = "FF3F3F3F" }; FontName fontName13 = new FontName() { Val = "Calibri" }; FontFamilyNumbering fontFamilyNumbering13 = new FontFamilyNumbering() { Val = 2 }; FontCharSet fontCharSet10 = new FontCharSet() { Val = 128 }; FontScheme fontScheme12 = new FontScheme() { Val = FontSchemeValues.Minor }; font13.Append(bold6); font13.Append(fontSize13); font13.Append(color13); font13.Append(fontName13); font13.Append(fontFamilyNumbering13); font13.Append(fontCharSet10); font13.Append(fontScheme12); Font font14 = new Font(); Bold bold7 = new Bold(); FontSize fontSize14 = new FontSize() { Val = 11D }; Color color14 = new Color() { Rgb = "FFFA7D00" }; FontName fontName14 = new FontName() { Val = "Calibri" }; FontFamilyNumbering fontFamilyNumbering14 = new FontFamilyNumbering() { Val = 2 }; FontCharSet fontCharSet11 = new FontCharSet() { Val = 128 }; FontScheme fontScheme13 = new FontScheme() { Val = FontSchemeValues.Minor }; font14.Append(bold7); font14.Append(fontSize14); font14.Append(color14); font14.Append(fontName14); font14.Append(fontFamilyNumbering14); font14.Append(fontCharSet11); font14.Append(fontScheme13); Font font15 = new Font(); FontSize fontSize15 = new FontSize() { Val = 11D }; Color color15 = new Color() { Rgb = "FFFA7D00" }; FontName fontName15 = new FontName() { Val = "Calibri" }; FontFamilyNumbering fontFamilyNumbering15 = new FontFamilyNumbering() { Val = 2 }; FontCharSet fontCharSet12 = new FontCharSet() { Val = 128 }; FontScheme fontScheme14 = new FontScheme() { Val = FontSchemeValues.Minor }; font15.Append(fontSize15); font15.Append(color15); font15.Append(fontName15); font15.Append(fontFamilyNumbering15); font15.Append(fontCharSet12); font15.Append(fontScheme14); Font font16 = new Font(); Bold bold8 = new Bold(); FontSize fontSize16 = new FontSize() { Val = 11D }; Color color16 = new Color() { Theme = (UInt32Value)0U }; FontName fontName16 = new FontName() { Val = "Calibri" }; FontFamilyNumbering fontFamilyNumbering16 = new FontFamilyNumbering() { Val = 2 }; FontCharSet fontCharSet13 = new FontCharSet() { Val = 128 }; FontScheme fontScheme15 = new FontScheme() { Val = FontSchemeValues.Minor }; font16.Append(bold8); font16.Append(fontSize16); font16.Append(color16); font16.Append(fontName16); font16.Append(fontFamilyNumbering16); font16.Append(fontCharSet13); font16.Append(fontScheme15); Font font17 = new Font(); FontSize fontSize17 = new FontSize() { Val = 11D }; Color color17 = new Color() { Rgb = "FFFF0000" }; FontName fontName17 = new FontName() { Val = "Calibri" }; FontFamilyNumbering fontFamilyNumbering17 = new FontFamilyNumbering() { Val = 2 }; FontCharSet fontCharSet14 = new FontCharSet() { Val = 128 }; FontScheme fontScheme16 = new FontScheme() { Val = FontSchemeValues.Minor }; font17.Append(fontSize17); font17.Append(color17); font17.Append(fontName17); font17.Append(fontFamilyNumbering17); font17.Append(fontCharSet14); font17.Append(fontScheme16); Font font18 = new Font(); Italic italic1 = new Italic(); FontSize fontSize18 = new FontSize() { Val = 11D }; Color color18 = new Color() { Rgb = "FF7F7F7F" }; FontName fontName18 = new FontName() { Val = "Calibri" }; FontFamilyNumbering fontFamilyNumbering18 = new FontFamilyNumbering() { Val = 2 }; FontCharSet fontCharSet15 = new FontCharSet() { Val = 128 }; FontScheme fontScheme17 = new FontScheme() { Val = FontSchemeValues.Minor }; font18.Append(italic1); font18.Append(fontSize18); font18.Append(color18); font18.Append(fontName18); font18.Append(fontFamilyNumbering18); font18.Append(fontCharSet15); font18.Append(fontScheme17); Font font19 = new Font(); Bold bold9 = new Bold(); FontSize fontSize19 = new FontSize() { Val = 11D }; Color color19 = new Color() { Theme = (UInt32Value)1U }; FontName fontName19 = new FontName() { Val = "Calibri" }; FontFamilyNumbering fontFamilyNumbering19 = new FontFamilyNumbering() { Val = 2 }; FontCharSet fontCharSet16 = new FontCharSet() { Val = 128 }; FontScheme fontScheme18 = new FontScheme() { Val = FontSchemeValues.Minor }; font19.Append(bold9); font19.Append(fontSize19); font19.Append(color19); font19.Append(fontName19); font19.Append(fontFamilyNumbering19); font19.Append(fontCharSet16); font19.Append(fontScheme18); Font font20 = new Font(); FontSize fontSize20 = new FontSize() { Val = 11D }; Color color20 = new Color() { Theme = (UInt32Value)0U }; FontName fontName20 = new FontName() { Val = "Calibri" }; FontFamilyNumbering fontFamilyNumbering20 = new FontFamilyNumbering() { Val = 2 }; FontCharSet fontCharSet17 = new FontCharSet() { Val = 128 }; FontScheme fontScheme19 = new FontScheme() { Val = FontSchemeValues.Minor }; font20.Append(fontSize20); font20.Append(color20); font20.Append(fontName20); font20.Append(fontFamilyNumbering20); font20.Append(fontCharSet17); font20.Append(fontScheme19); Font font21 = new Font(); FontSize fontSize21 = new FontSize() { Val = 11D }; FontName fontName21 = new FontName() { Val = "MS Pゴシック" }; FontFamilyNumbering fontFamilyNumbering21 = new FontFamilyNumbering() { Val = 3 }; FontCharSet fontCharSet18 = new FontCharSet() { Val = 128 }; font21.Append(fontSize21); font21.Append(fontName21); font21.Append(fontFamilyNumbering21); font21.Append(fontCharSet18); Font font22 = new Font(); FontSize fontSize22 = new FontSize() { Val = 9D }; Color color21 = new Color() { Theme = (UInt32Value)1U }; FontName fontName22 = new FontName() { Val = "Segoe UI" }; FontFamilyNumbering fontFamilyNumbering22 = new FontFamilyNumbering() { Val = 2 }; font22.Append(fontSize22); font22.Append(color21); font22.Append(fontName22); font22.Append(fontFamilyNumbering22); Font font23 = new Font(); FontSize fontSize23 = new FontSize() { Val = 11D }; Color color22 = new Color() { Theme = (UInt32Value)1U }; FontName fontName23 = new FontName() { Val = "Segoe UI" }; FontFamilyNumbering fontFamilyNumbering23 = new FontFamilyNumbering() { Val = 2 }; font23.Append(fontSize23); font23.Append(color22); font23.Append(fontName23); font23.Append(fontFamilyNumbering23); Font font24 = new Font(); Bold bold10 = new Bold(); FontSize fontSize24 = new FontSize() { Val = 11D }; FontName fontName24 = new FontName() { Val = "Segoe UI" }; FontFamilyNumbering fontFamilyNumbering24 = new FontFamilyNumbering() { Val = 2 }; font24.Append(bold10); font24.Append(fontSize24); font24.Append(fontName24); font24.Append(fontFamilyNumbering24); Font font25 = new Font(); FontSize fontSize25 = new FontSize() { Val = 11D }; FontName fontName25 = new FontName() { Val = "Segoe UI" }; FontFamilyNumbering fontFamilyNumbering25 = new FontFamilyNumbering() { Val = 2 }; font25.Append(fontSize25); font25.Append(fontName25); font25.Append(fontFamilyNumbering25); Font font26 = new Font(); Bold bold11 = new Bold(); FontSize fontSize26 = new FontSize() { Val = 11D }; Color color23 = new Color() { Theme = (UInt32Value)1U }; FontName fontName26 = new FontName() { Val = "Segoe UI" }; FontFamilyNumbering fontFamilyNumbering26 = new FontFamilyNumbering() { Val = 2 }; font26.Append(bold11); font26.Append(fontSize26); font26.Append(color23); font26.Append(fontName26); font26.Append(fontFamilyNumbering26); Font font27 = new Font(); Bold bold12 = new Bold(); FontSize fontSize27 = new FontSize() { Val = 10D }; Color color24 = new Color() { Theme = (UInt32Value)1U }; FontName fontName27 = new FontName() { Val = "Segoe UI" }; FontFamilyNumbering fontFamilyNumbering27 = new FontFamilyNumbering() { Val = 2 }; font27.Append(bold12); font27.Append(fontSize27); font27.Append(color24); font27.Append(fontName27); font27.Append(fontFamilyNumbering27); Font font28 = new Font(); FontSize fontSize28 = new FontSize() { Val = 10D }; Color color25 = new Color() { Theme = (UInt32Value)4U }; FontName fontName28 = new FontName() { Val = "Segoe UI" }; FontFamilyNumbering fontFamilyNumbering28 = new FontFamilyNumbering() { Val = 2 }; font28.Append(fontSize28); font28.Append(color25); font28.Append(fontName28); font28.Append(fontFamilyNumbering28); Font font29 = new Font(); FontSize fontSize29 = new FontSize() { Val = 10D }; Color color26 = new Color() { Rgb = "FFFF0000" }; FontName fontName29 = new FontName() { Val = "Segoe UI" }; FontFamilyNumbering fontFamilyNumbering29 = new FontFamilyNumbering() { Val = 2 }; font29.Append(fontSize29); font29.Append(color26); font29.Append(fontName29); font29.Append(fontFamilyNumbering29); Font font30 = new Font(); FontSize fontSize30 = new FontSize() { Val = 11D }; Color color27 = new Color() { Rgb = "FF00B050" }; FontName fontName30 = new FontName() { Val = "Segoe UI" }; FontFamilyNumbering fontFamilyNumbering30 = new FontFamilyNumbering() { Val = 2 }; font30.Append(fontSize30); font30.Append(color27); font30.Append(fontName30); font30.Append(fontFamilyNumbering30); Font font31 = new Font(); FontSize fontSize31 = new FontSize() { Val = 11D }; Color color28 = new Color() { Rgb = "FFFFC000" }; FontName fontName31 = new FontName() { Val = "Segoe UI" }; FontFamilyNumbering fontFamilyNumbering31 = new FontFamilyNumbering() { Val = 2 }; font31.Append(fontSize31); font31.Append(color28); font31.Append(fontName31); font31.Append(fontFamilyNumbering31); Font font32 = new Font(); FontSize fontSize32 = new FontSize() { Val = 11D }; Color color29 = new Color() { Rgb = "FF0070C0" }; FontName fontName32 = new FontName() { Val = "Segoe UI" }; FontFamilyNumbering fontFamilyNumbering32 = new FontFamilyNumbering() { Val = 2 }; font32.Append(fontSize32); font32.Append(color29); font32.Append(fontName32); font32.Append(fontFamilyNumbering32); fonts1.Append(font1); fonts1.Append(font2); fonts1.Append(font3); fonts1.Append(font4); fonts1.Append(font5); fonts1.Append(font6); fonts1.Append(font7); fonts1.Append(font8); fonts1.Append(font9); fonts1.Append(font10); fonts1.Append(font11); fonts1.Append(font12); fonts1.Append(font13); fonts1.Append(font14); fonts1.Append(font15); fonts1.Append(font16); fonts1.Append(font17); fonts1.Append(font18); fonts1.Append(font19); fonts1.Append(font20); fonts1.Append(font21); fonts1.Append(font22); fonts1.Append(font23); fonts1.Append(font24); fonts1.Append(font25); fonts1.Append(font26); fonts1.Append(font27); fonts1.Append(font28); fonts1.Append(font29); fonts1.Append(font30); fonts1.Append(font31); fonts1.Append(font32); Fills fills1 = new Fills() { Count = (UInt32Value)36U }; Fill fill1 = new Fill(); PatternFill patternFill1 = new PatternFill() { PatternType = PatternValues.None }; fill1.Append(patternFill1); Fill fill2 = new Fill(); PatternFill patternFill2 = new PatternFill() { PatternType = PatternValues.Gray125 }; fill2.Append(patternFill2); Fill fill3 = new Fill(); PatternFill patternFill3 = new PatternFill() { PatternType = PatternValues.Solid }; ForegroundColor foregroundColor1 = new ForegroundColor() { Rgb = "FFC6EFCE" }; patternFill3.Append(foregroundColor1); fill3.Append(patternFill3); Fill fill4 = new Fill(); PatternFill patternFill4 = new PatternFill() { PatternType = PatternValues.Solid }; ForegroundColor foregroundColor2 = new ForegroundColor() { Rgb = "FFFFC7CE" }; patternFill4.Append(foregroundColor2); fill4.Append(patternFill4); Fill fill5 = new Fill(); PatternFill patternFill5 = new PatternFill() { PatternType = PatternValues.Solid }; ForegroundColor foregroundColor3 = new ForegroundColor() { Rgb = "FFFFEB9C" }; patternFill5.Append(foregroundColor3); fill5.Append(patternFill5); Fill fill6 = new Fill(); PatternFill patternFill6 = new PatternFill() { PatternType = PatternValues.Solid }; ForegroundColor foregroundColor4 = new ForegroundColor() { Rgb = "FFFFCC99" }; patternFill6.Append(foregroundColor4); fill6.Append(patternFill6); Fill fill7 = new Fill(); PatternFill patternFill7 = new PatternFill() { PatternType = PatternValues.Solid }; ForegroundColor foregroundColor5 = new ForegroundColor() { Rgb = "FFF2F2F2" }; patternFill7.Append(foregroundColor5); fill7.Append(patternFill7); Fill fill8 = new Fill(); PatternFill patternFill8 = new PatternFill() { PatternType = PatternValues.Solid }; ForegroundColor foregroundColor6 = new ForegroundColor() { Rgb = "FFA5A5A5" }; patternFill8.Append(foregroundColor6); fill8.Append(patternFill8); Fill fill9 = new Fill(); PatternFill patternFill9 = new PatternFill() { PatternType = PatternValues.Solid }; ForegroundColor foregroundColor7 = new ForegroundColor() { Rgb = "FFFFFFCC" }; patternFill9.Append(foregroundColor7); fill9.Append(patternFill9); Fill fill10 = new Fill(); PatternFill patternFill10 = new PatternFill() { PatternType = PatternValues.Solid }; ForegroundColor foregroundColor8 = new ForegroundColor() { Theme = (UInt32Value)4U }; patternFill10.Append(foregroundColor8); fill10.Append(patternFill10); Fill fill11 = new Fill(); PatternFill patternFill11 = new PatternFill() { PatternType = PatternValues.Solid }; ForegroundColor foregroundColor9 = new ForegroundColor() { Theme = (UInt32Value)4U, Tint = 0.79998168889431442D }; BackgroundColor backgroundColor1 = new BackgroundColor() { Indexed = (UInt32Value)65U }; patternFill11.Append(foregroundColor9); patternFill11.Append(backgroundColor1); fill11.Append(patternFill11); Fill fill12 = new Fill(); PatternFill patternFill12 = new PatternFill() { PatternType = PatternValues.Solid }; ForegroundColor foregroundColor10 = new ForegroundColor() { Theme = (UInt32Value)4U, Tint = 0.59999389629810485D }; BackgroundColor backgroundColor2 = new BackgroundColor() { Indexed = (UInt32Value)65U }; patternFill12.Append(foregroundColor10); patternFill12.Append(backgroundColor2); fill12.Append(patternFill12); Fill fill13 = new Fill(); PatternFill patternFill13 = new PatternFill() { PatternType = PatternValues.Solid }; ForegroundColor foregroundColor11 = new ForegroundColor() { Theme = (UInt32Value)4U, Tint = 0.39997558519241921D }; BackgroundColor backgroundColor3 = new BackgroundColor() { Indexed = (UInt32Value)65U }; patternFill13.Append(foregroundColor11); patternFill13.Append(backgroundColor3); fill13.Append(patternFill13); Fill fill14 = new Fill(); PatternFill patternFill14 = new PatternFill() { PatternType = PatternValues.Solid }; ForegroundColor foregroundColor12 = new ForegroundColor() { Theme = (UInt32Value)5U }; patternFill14.Append(foregroundColor12); fill14.Append(patternFill14); Fill fill15 = new Fill(); PatternFill patternFill15 = new PatternFill() { PatternType = PatternValues.Solid }; ForegroundColor foregroundColor13 = new ForegroundColor() { Theme = (UInt32Value)5U, Tint = 0.79998168889431442D }; BackgroundColor backgroundColor4 = new BackgroundColor() { Indexed = (UInt32Value)65U }; patternFill15.Append(foregroundColor13); patternFill15.Append(backgroundColor4); fill15.Append(patternFill15); Fill fill16 = new Fill(); PatternFill patternFill16 = new PatternFill() { PatternType = PatternValues.Solid }; ForegroundColor foregroundColor14 = new ForegroundColor() { Theme = (UInt32Value)5U, Tint = 0.59999389629810485D }; BackgroundColor backgroundColor5 = new BackgroundColor() { Indexed = (UInt32Value)65U }; patternFill16.Append(foregroundColor14); patternFill16.Append(backgroundColor5); fill16.Append(patternFill16); Fill fill17 = new Fill(); PatternFill patternFill17 = new PatternFill() { PatternType = PatternValues.Solid }; ForegroundColor foregroundColor15 = new ForegroundColor() { Theme = (UInt32Value)5U, Tint = 0.39997558519241921D }; BackgroundColor backgroundColor6 = new BackgroundColor() { Indexed = (UInt32Value)65U }; patternFill17.Append(foregroundColor15); patternFill17.Append(backgroundColor6); fill17.Append(patternFill17); Fill fill18 = new Fill(); PatternFill patternFill18 = new PatternFill() { PatternType = PatternValues.Solid }; ForegroundColor foregroundColor16 = new ForegroundColor() { Theme = (UInt32Value)6U }; patternFill18.Append(foregroundColor16); fill18.Append(patternFill18); Fill fill19 = new Fill(); PatternFill patternFill19 = new PatternFill() { PatternType = PatternValues.Solid }; ForegroundColor foregroundColor17 = new ForegroundColor() { Theme = (UInt32Value)6U, Tint = 0.79998168889431442D }; BackgroundColor backgroundColor7 = new BackgroundColor() { Indexed = (UInt32Value)65U }; patternFill19.Append(foregroundColor17); patternFill19.Append(backgroundColor7); fill19.Append(patternFill19); Fill fill20 = new Fill(); PatternFill patternFill20 = new PatternFill() { PatternType = PatternValues.Solid }; ForegroundColor foregroundColor18 = new ForegroundColor() { Theme = (UInt32Value)6U, Tint = 0.59999389629810485D }; BackgroundColor backgroundColor8 = new BackgroundColor() { Indexed = (UInt32Value)65U }; patternFill20.Append(foregroundColor18); patternFill20.Append(backgroundColor8); fill20.Append(patternFill20); Fill fill21 = new Fill(); PatternFill patternFill21 = new PatternFill() { PatternType = PatternValues.Solid }; ForegroundColor foregroundColor19 = new ForegroundColor() { Theme = (UInt32Value)6U, Tint = 0.39997558519241921D }; BackgroundColor backgroundColor9 = new BackgroundColor() { Indexed = (UInt32Value)65U }; patternFill21.Append(foregroundColor19); patternFill21.Append(backgroundColor9); fill21.Append(patternFill21); Fill fill22 = new Fill(); PatternFill patternFill22 = new PatternFill() { PatternType = PatternValues.Solid }; ForegroundColor foregroundColor20 = new ForegroundColor() { Theme = (UInt32Value)7U }; patternFill22.Append(foregroundColor20); fill22.Append(patternFill22); Fill fill23 = new Fill(); PatternFill patternFill23 = new PatternFill() { PatternType = PatternValues.Solid }; ForegroundColor foregroundColor21 = new ForegroundColor() { Theme = (UInt32Value)7U, Tint = 0.79998168889431442D }; BackgroundColor backgroundColor10 = new BackgroundColor() { Indexed = (UInt32Value)65U }; patternFill23.Append(foregroundColor21); patternFill23.Append(backgroundColor10); fill23.Append(patternFill23); Fill fill24 = new Fill(); PatternFill patternFill24 = new PatternFill() { PatternType = PatternValues.Solid }; ForegroundColor foregroundColor22 = new ForegroundColor() { Theme = (UInt32Value)7U, Tint = 0.59999389629810485D }; BackgroundColor backgroundColor11 = new BackgroundColor() { Indexed = (UInt32Value)65U }; patternFill24.Append(foregroundColor22); patternFill24.Append(backgroundColor11); fill24.Append(patternFill24); Fill fill25 = new Fill(); PatternFill patternFill25 = new PatternFill() { PatternType = PatternValues.Solid }; ForegroundColor foregroundColor23 = new ForegroundColor() { Theme = (UInt32Value)7U, Tint = 0.39997558519241921D }; BackgroundColor backgroundColor12 = new BackgroundColor() { Indexed = (UInt32Value)65U }; patternFill25.Append(foregroundColor23); patternFill25.Append(backgroundColor12); fill25.Append(patternFill25); Fill fill26 = new Fill(); PatternFill patternFill26 = new PatternFill() { PatternType = PatternValues.Solid }; ForegroundColor foregroundColor24 = new ForegroundColor() { Theme = (UInt32Value)8U }; patternFill26.Append(foregroundColor24); fill26.Append(patternFill26); Fill fill27 = new Fill(); PatternFill patternFill27 = new PatternFill() { PatternType = PatternValues.Solid }; ForegroundColor foregroundColor25 = new ForegroundColor() { Theme = (UInt32Value)8U, Tint = 0.79998168889431442D }; BackgroundColor backgroundColor13 = new BackgroundColor() { Indexed = (UInt32Value)65U }; patternFill27.Append(foregroundColor25); patternFill27.Append(backgroundColor13); fill27.Append(patternFill27); Fill fill28 = new Fill(); PatternFill patternFill28 = new PatternFill() { PatternType = PatternValues.Solid }; ForegroundColor foregroundColor26 = new ForegroundColor() { Theme = (UInt32Value)8U, Tint = 0.59999389629810485D }; BackgroundColor backgroundColor14 = new BackgroundColor() { Indexed = (UInt32Value)65U }; patternFill28.Append(foregroundColor26); patternFill28.Append(backgroundColor14); fill28.Append(patternFill28); Fill fill29 = new Fill(); PatternFill patternFill29 = new PatternFill() { PatternType = PatternValues.Solid }; ForegroundColor foregroundColor27 = new ForegroundColor() { Theme = (UInt32Value)8U, Tint = 0.39997558519241921D }; BackgroundColor backgroundColor15 = new BackgroundColor() { Indexed = (UInt32Value)65U }; patternFill29.Append(foregroundColor27); patternFill29.Append(backgroundColor15); fill29.Append(patternFill29); Fill fill30 = new Fill(); PatternFill patternFill30 = new PatternFill() { PatternType = PatternValues.Solid }; ForegroundColor foregroundColor28 = new ForegroundColor() { Theme = (UInt32Value)9U }; patternFill30.Append(foregroundColor28); fill30.Append(patternFill30); Fill fill31 = new Fill(); PatternFill patternFill31 = new PatternFill() { PatternType = PatternValues.Solid }; ForegroundColor foregroundColor29 = new ForegroundColor() { Theme = (UInt32Value)9U, Tint = 0.79998168889431442D }; BackgroundColor backgroundColor16 = new BackgroundColor() { Indexed = (UInt32Value)65U }; patternFill31.Append(foregroundColor29); patternFill31.Append(backgroundColor16); fill31.Append(patternFill31); Fill fill32 = new Fill(); PatternFill patternFill32 = new PatternFill() { PatternType = PatternValues.Solid }; ForegroundColor foregroundColor30 = new ForegroundColor() { Theme = (UInt32Value)9U, Tint = 0.59999389629810485D }; BackgroundColor backgroundColor17 = new BackgroundColor() { Indexed = (UInt32Value)65U }; patternFill32.Append(foregroundColor30); patternFill32.Append(backgroundColor17); fill32.Append(patternFill32); Fill fill33 = new Fill(); PatternFill patternFill33 = new PatternFill() { PatternType = PatternValues.Solid }; ForegroundColor foregroundColor31 = new ForegroundColor() { Theme = (UInt32Value)9U, Tint = 0.39997558519241921D }; BackgroundColor backgroundColor18 = new BackgroundColor() { Indexed = (UInt32Value)65U }; patternFill33.Append(foregroundColor31); patternFill33.Append(backgroundColor18); fill33.Append(patternFill33); Fill fill34 = new Fill(); PatternFill patternFill34 = new PatternFill() { PatternType = PatternValues.Solid }; ForegroundColor foregroundColor32 = new ForegroundColor() { Theme = (UInt32Value)0U }; BackgroundColor backgroundColor19 = new BackgroundColor() { Indexed = (UInt32Value)64U }; patternFill34.Append(foregroundColor32); patternFill34.Append(backgroundColor19); fill34.Append(patternFill34); Fill fill35 = new Fill(); PatternFill patternFill35 = new PatternFill() { PatternType = PatternValues.Solid }; ForegroundColor foregroundColor33 = new ForegroundColor() { Rgb = "FFC0C0C0" }; BackgroundColor backgroundColor20 = new BackgroundColor() { Indexed = (UInt32Value)64U }; patternFill35.Append(foregroundColor33); patternFill35.Append(backgroundColor20); fill35.Append(patternFill35); Fill fill36 = new Fill(); PatternFill patternFill36 = new PatternFill() { PatternType = PatternValues.Solid }; ForegroundColor foregroundColor34 = new ForegroundColor() { Rgb = "FFCC99FF" }; BackgroundColor backgroundColor21 = new BackgroundColor() { Indexed = (UInt32Value)64U }; patternFill36.Append(foregroundColor34); patternFill36.Append(backgroundColor21); fill36.Append(patternFill36); fills1.Append(fill1); fills1.Append(fill2); fills1.Append(fill3); fills1.Append(fill4); fills1.Append(fill5); fills1.Append(fill6); fills1.Append(fill7); fills1.Append(fill8); fills1.Append(fill9); fills1.Append(fill10); fills1.Append(fill11); fills1.Append(fill12); fills1.Append(fill13); fills1.Append(fill14); fills1.Append(fill15); fills1.Append(fill16); fills1.Append(fill17); fills1.Append(fill18); fills1.Append(fill19); fills1.Append(fill20); fills1.Append(fill21); fills1.Append(fill22); fills1.Append(fill23); fills1.Append(fill24); fills1.Append(fill25); fills1.Append(fill26); fills1.Append(fill27); fills1.Append(fill28); fills1.Append(fill29); fills1.Append(fill30); fills1.Append(fill31); fills1.Append(fill32); fills1.Append(fill33); fills1.Append(fill34); fills1.Append(fill35); fills1.Append(fill36); Borders borders1 = new Borders() { Count = (UInt32Value)19U }; Border border1 = new Border(); LeftBorder leftBorder1 = new LeftBorder(); RightBorder rightBorder1 = new RightBorder(); TopBorder topBorder1 = new TopBorder(); BottomBorder bottomBorder1 = new BottomBorder(); DiagonalBorder diagonalBorder1 = new DiagonalBorder(); border1.Append(leftBorder1); border1.Append(rightBorder1); border1.Append(topBorder1); border1.Append(bottomBorder1); border1.Append(diagonalBorder1); Border border2 = new Border(); LeftBorder leftBorder2 = new LeftBorder(); RightBorder rightBorder2 = new RightBorder(); TopBorder topBorder2 = new TopBorder(); BottomBorder bottomBorder2 = new BottomBorder() { Style = BorderStyleValues.Thick }; Color color30 = new Color() { Theme = (UInt32Value)4U }; bottomBorder2.Append(color30); DiagonalBorder diagonalBorder2 = new DiagonalBorder(); border2.Append(leftBorder2); border2.Append(rightBorder2); border2.Append(topBorder2); border2.Append(bottomBorder2); border2.Append(diagonalBorder2); Border border3 = new Border(); LeftBorder leftBorder3 = new LeftBorder(); RightBorder rightBorder3 = new RightBorder(); TopBorder topBorder3 = new TopBorder(); BottomBorder bottomBorder3 = new BottomBorder() { Style = BorderStyleValues.Thick }; Color color31 = new Color() { Theme = (UInt32Value)4U, Tint = 0.499984740745262D }; bottomBorder3.Append(color31); DiagonalBorder diagonalBorder3 = new DiagonalBorder(); border3.Append(leftBorder3); border3.Append(rightBorder3); border3.Append(topBorder3); border3.Append(bottomBorder3); border3.Append(diagonalBorder3); Border border4 = new Border(); LeftBorder leftBorder4 = new LeftBorder(); RightBorder rightBorder4 = new RightBorder(); TopBorder topBorder4 = new TopBorder(); BottomBorder bottomBorder4 = new BottomBorder() { Style = BorderStyleValues.Medium }; Color color32 = new Color() { Theme = (UInt32Value)4U, Tint = 0.39997558519241921D }; bottomBorder4.Append(color32); DiagonalBorder diagonalBorder4 = new DiagonalBorder(); border4.Append(leftBorder4); border4.Append(rightBorder4); border4.Append(topBorder4); border4.Append(bottomBorder4); border4.Append(diagonalBorder4); Border border5 = new Border(); LeftBorder leftBorder5 = new LeftBorder() { Style = BorderStyleValues.Thin }; Color color33 = new Color() { Rgb = "FF7F7F7F" }; leftBorder5.Append(color33); RightBorder rightBorder5 = new RightBorder() { Style = BorderStyleValues.Thin }; Color color34 = new Color() { Rgb = "FF7F7F7F" }; rightBorder5.Append(color34); TopBorder topBorder5 = new TopBorder() { Style = BorderStyleValues.Thin }; Color color35 = new Color() { Rgb = "FF7F7F7F" }; topBorder5.Append(color35); BottomBorder bottomBorder5 = new BottomBorder() { Style = BorderStyleValues.Thin }; Color color36 = new Color() { Rgb = "FF7F7F7F" }; bottomBorder5.Append(color36); DiagonalBorder diagonalBorder5 = new DiagonalBorder(); border5.Append(leftBorder5); border5.Append(rightBorder5); border5.Append(topBorder5); border5.Append(bottomBorder5); border5.Append(diagonalBorder5); Border border6 = new Border(); LeftBorder leftBorder6 = new LeftBorder() { Style = BorderStyleValues.Thin }; Color color37 = new Color() { Rgb = "FF3F3F3F" }; leftBorder6.Append(color37); RightBorder rightBorder6 = new RightBorder() { Style = BorderStyleValues.Thin }; Color color38 = new Color() { Rgb = "FF3F3F3F" }; rightBorder6.Append(color38); TopBorder topBorder6 = new TopBorder() { Style = BorderStyleValues.Thin }; Color color39 = new Color() { Rgb = "FF3F3F3F" }; topBorder6.Append(color39); BottomBorder bottomBorder6 = new BottomBorder() { Style = BorderStyleValues.Thin }; Color color40 = new Color() { Rgb = "FF3F3F3F" }; bottomBorder6.Append(color40); DiagonalBorder diagonalBorder6 = new DiagonalBorder(); border6.Append(leftBorder6); border6.Append(rightBorder6); border6.Append(topBorder6); border6.Append(bottomBorder6); border6.Append(diagonalBorder6); Border border7 = new Border(); LeftBorder leftBorder7 = new LeftBorder(); RightBorder rightBorder7 = new RightBorder(); TopBorder topBorder7 = new TopBorder(); BottomBorder bottomBorder7 = new BottomBorder() { Style = BorderStyleValues.Double }; Color color41 = new Color() { Rgb = "FFFF8001" }; bottomBorder7.Append(color41); DiagonalBorder diagonalBorder7 = new DiagonalBorder(); border7.Append(leftBorder7); border7.Append(rightBorder7); border7.Append(topBorder7); border7.Append(bottomBorder7); border7.Append(diagonalBorder7); Border border8 = new Border(); LeftBorder leftBorder8 = new LeftBorder() { Style = BorderStyleValues.Double }; Color color42 = new Color() { Rgb = "FF3F3F3F" }; leftBorder8.Append(color42); RightBorder rightBorder8 = new RightBorder() { Style = BorderStyleValues.Double }; Color color43 = new Color() { Rgb = "FF3F3F3F" }; rightBorder8.Append(color43); TopBorder topBorder8 = new TopBorder() { Style = BorderStyleValues.Double }; Color color44 = new Color() { Rgb = "FF3F3F3F" }; topBorder8.Append(color44); BottomBorder bottomBorder8 = new BottomBorder() { Style = BorderStyleValues.Double }; Color color45 = new Color() { Rgb = "FF3F3F3F" }; bottomBorder8.Append(color45); DiagonalBorder diagonalBorder8 = new DiagonalBorder(); border8.Append(leftBorder8); border8.Append(rightBorder8); border8.Append(topBorder8); border8.Append(bottomBorder8); border8.Append(diagonalBorder8); Border border9 = new Border(); LeftBorder leftBorder9 = new LeftBorder() { Style = BorderStyleValues.Thin }; Color color46 = new Color() { Rgb = "FFB2B2B2" }; leftBorder9.Append(color46); RightBorder rightBorder9 = new RightBorder() { Style = BorderStyleValues.Thin }; Color color47 = new Color() { Rgb = "FFB2B2B2" }; rightBorder9.Append(color47); TopBorder topBorder9 = new TopBorder() { Style = BorderStyleValues.Thin }; Color color48 = new Color() { Rgb = "FFB2B2B2" }; topBorder9.Append(color48); BottomBorder bottomBorder9 = new BottomBorder() { Style = BorderStyleValues.Thin }; Color color49 = new Color() { Rgb = "FFB2B2B2" }; bottomBorder9.Append(color49); DiagonalBorder diagonalBorder9 = new DiagonalBorder(); border9.Append(leftBorder9); border9.Append(rightBorder9); border9.Append(topBorder9); border9.Append(bottomBorder9); border9.Append(diagonalBorder9); Border border10 = new Border(); LeftBorder leftBorder10 = new LeftBorder(); RightBorder rightBorder10 = new RightBorder(); TopBorder topBorder10 = new TopBorder() { Style = BorderStyleValues.Thin }; Color color50 = new Color() { Theme = (UInt32Value)4U }; topBorder10.Append(color50); BottomBorder bottomBorder10 = new BottomBorder() { Style = BorderStyleValues.Double }; Color color51 = new Color() { Theme = (UInt32Value)4U }; bottomBorder10.Append(color51); DiagonalBorder diagonalBorder10 = new DiagonalBorder(); border10.Append(leftBorder10); border10.Append(rightBorder10); border10.Append(topBorder10); border10.Append(bottomBorder10); border10.Append(diagonalBorder10); Border border11 = new Border(); LeftBorder leftBorder11 = new LeftBorder(); RightBorder rightBorder11 = new RightBorder(); TopBorder topBorder11 = new TopBorder() { Style = BorderStyleValues.Thin }; Color color52 = new Color() { Indexed = (UInt32Value)64U }; topBorder11.Append(color52); BottomBorder bottomBorder11 = new BottomBorder() { Style = BorderStyleValues.Thin }; Color color53 = new Color() { Indexed = (UInt32Value)64U }; bottomBorder11.Append(color53); DiagonalBorder diagonalBorder11 = new DiagonalBorder(); border11.Append(leftBorder11); border11.Append(rightBorder11); border11.Append(topBorder11); border11.Append(bottomBorder11); border11.Append(diagonalBorder11); Border border12 = new Border(); LeftBorder leftBorder12 = new LeftBorder() { Style = BorderStyleValues.Medium }; Color color54 = new Color() { Indexed = (UInt32Value)64U }; leftBorder12.Append(color54); RightBorder rightBorder12 = new RightBorder(); TopBorder topBorder12 = new TopBorder() { Style = BorderStyleValues.Medium }; Color color55 = new Color() { Indexed = (UInt32Value)64U }; topBorder12.Append(color55); BottomBorder bottomBorder12 = new BottomBorder() { Style = BorderStyleValues.Medium }; Color color56 = new Color() { Indexed = (UInt32Value)64U }; bottomBorder12.Append(color56); DiagonalBorder diagonalBorder12 = new DiagonalBorder(); border12.Append(leftBorder12); border12.Append(rightBorder12); border12.Append(topBorder12); border12.Append(bottomBorder12); border12.Append(diagonalBorder12); Border border13 = new Border(); LeftBorder leftBorder13 = new LeftBorder(); RightBorder rightBorder13 = new RightBorder(); TopBorder topBorder13 = new TopBorder() { Style = BorderStyleValues.Medium }; Color color57 = new Color() { Indexed = (UInt32Value)64U }; topBorder13.Append(color57); BottomBorder bottomBorder13 = new BottomBorder() { Style = BorderStyleValues.Medium }; Color color58 = new Color() { Indexed = (UInt32Value)64U }; bottomBorder13.Append(color58); DiagonalBorder diagonalBorder13 = new DiagonalBorder(); border13.Append(leftBorder13); border13.Append(rightBorder13); border13.Append(topBorder13); border13.Append(bottomBorder13); border13.Append(diagonalBorder13); Border border14 = new Border(); LeftBorder leftBorder14 = new LeftBorder(); RightBorder rightBorder14 = new RightBorder() { Style = BorderStyleValues.Medium }; Color color59 = new Color() { Indexed = (UInt32Value)64U }; rightBorder14.Append(color59); TopBorder topBorder14 = new TopBorder() { Style = BorderStyleValues.Medium }; Color color60 = new Color() { Indexed = (UInt32Value)64U }; topBorder14.Append(color60); BottomBorder bottomBorder14 = new BottomBorder() { Style = BorderStyleValues.Medium }; Color color61 = new Color() { Indexed = (UInt32Value)64U }; bottomBorder14.Append(color61); DiagonalBorder diagonalBorder14 = new DiagonalBorder(); border14.Append(leftBorder14); border14.Append(rightBorder14); border14.Append(topBorder14); border14.Append(bottomBorder14); border14.Append(diagonalBorder14); Border border15 = new Border(); LeftBorder leftBorder15 = new LeftBorder() { Style = BorderStyleValues.Thin }; Color color62 = new Color() { Auto = true }; leftBorder15.Append(color62); RightBorder rightBorder15 = new RightBorder(); TopBorder topBorder15 = new TopBorder() { Style = BorderStyleValues.Thin }; Color color63 = new Color() { Auto = true }; topBorder15.Append(color63); BottomBorder bottomBorder15 = new BottomBorder() { Style = BorderStyleValues.Thin }; Color color64 = new Color() { Auto = true }; bottomBorder15.Append(color64); DiagonalBorder diagonalBorder15 = new DiagonalBorder(); border15.Append(leftBorder15); border15.Append(rightBorder15); border15.Append(topBorder15); border15.Append(bottomBorder15); border15.Append(diagonalBorder15); Border border16 = new Border(); LeftBorder leftBorder16 = new LeftBorder(); RightBorder rightBorder16 = new RightBorder() { Style = BorderStyleValues.Thin }; Color color65 = new Color() { Auto = true }; rightBorder16.Append(color65); TopBorder topBorder16 = new TopBorder() { Style = BorderStyleValues.Thin }; Color color66 = new Color() { Auto = true }; topBorder16.Append(color66); BottomBorder bottomBorder16 = new BottomBorder() { Style = BorderStyleValues.Thin }; Color color67 = new Color() { Auto = true }; bottomBorder16.Append(color67); DiagonalBorder diagonalBorder16 = new DiagonalBorder(); border16.Append(leftBorder16); border16.Append(rightBorder16); border16.Append(topBorder16); border16.Append(bottomBorder16); border16.Append(diagonalBorder16); Border border17 = new Border(); LeftBorder leftBorder17 = new LeftBorder(); RightBorder rightBorder17 = new RightBorder(); TopBorder topBorder17 = new TopBorder(); BottomBorder bottomBorder17 = new BottomBorder() { Style = BorderStyleValues.Medium }; Color color68 = new Color() { Indexed = (UInt32Value)64U }; bottomBorder17.Append(color68); DiagonalBorder diagonalBorder17 = new DiagonalBorder(); border17.Append(leftBorder17); border17.Append(rightBorder17); border17.Append(topBorder17); border17.Append(bottomBorder17); border17.Append(diagonalBorder17); Border border18 = new Border(); LeftBorder leftBorder18 = new LeftBorder(); RightBorder rightBorder18 = new RightBorder(); TopBorder topBorder18 = new TopBorder(); BottomBorder bottomBorder18 = new BottomBorder() { Style = BorderStyleValues.Thick }; Color color69 = new Color() { Auto = true }; bottomBorder18.Append(color69); DiagonalBorder diagonalBorder18 = new DiagonalBorder(); border18.Append(leftBorder18); border18.Append(rightBorder18); border18.Append(topBorder18); border18.Append(bottomBorder18); border18.Append(diagonalBorder18); Border border19 = new Border(); LeftBorder leftBorder19 = new LeftBorder(); RightBorder rightBorder19 = new RightBorder(); TopBorder topBorder19 = new TopBorder() { Style = BorderStyleValues.Thick }; Color color70 = new Color() { Auto = true }; topBorder19.Append(color70); BottomBorder bottomBorder19 = new BottomBorder() { Style = BorderStyleValues.Thick }; Color color71 = new Color() { Auto = true }; bottomBorder19.Append(color71); DiagonalBorder diagonalBorder19 = new DiagonalBorder(); border19.Append(leftBorder19); border19.Append(rightBorder19); border19.Append(topBorder19); border19.Append(bottomBorder19); border19.Append(diagonalBorder19); borders1.Append(border1); borders1.Append(border2); borders1.Append(border3); borders1.Append(border4); borders1.Append(border5); borders1.Append(border6); borders1.Append(border7); borders1.Append(border8); borders1.Append(border9); borders1.Append(border10); borders1.Append(border11); borders1.Append(border12); borders1.Append(border13); borders1.Append(border14); borders1.Append(border15); borders1.Append(border16); borders1.Append(border17); borders1.Append(border18); borders1.Append(border19); CellStyleFormats cellStyleFormats1 = new CellStyleFormats() { Count = (UInt32Value)45U }; CellFormat cellFormat1 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)0U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U }; CellFormat cellFormat2 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)3U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U }; CellFormat cellFormat3 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)4U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyFill = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false }; CellFormat cellFormat4 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)5U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)1U, ApplyNumberFormat = false, ApplyFill = false, ApplyAlignment = false, ApplyProtection = false }; CellFormat cellFormat5 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)6U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)2U, ApplyNumberFormat = false, ApplyFill = false, ApplyAlignment = false, ApplyProtection = false }; CellFormat cellFormat6 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)7U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)3U, ApplyNumberFormat = false, ApplyFill = false, ApplyAlignment = false, ApplyProtection = false }; CellFormat cellFormat7 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)7U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyFill = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false }; CellFormat cellFormat8 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)8U, FillId = (UInt32Value)2U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false }; CellFormat cellFormat9 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)9U, FillId = (UInt32Value)3U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false }; CellFormat cellFormat10 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)10U, FillId = (UInt32Value)4U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false }; CellFormat cellFormat11 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)11U, FillId = (UInt32Value)5U, BorderId = (UInt32Value)4U, ApplyNumberFormat = false, ApplyAlignment = false, ApplyProtection = false }; CellFormat cellFormat12 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)12U, FillId = (UInt32Value)6U, BorderId = (UInt32Value)5U, ApplyNumberFormat = false, ApplyAlignment = false, ApplyProtection = false }; CellFormat cellFormat13 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)13U, FillId = (UInt32Value)6U, BorderId = (UInt32Value)4U, ApplyNumberFormat = false, ApplyAlignment = false, ApplyProtection = false }; CellFormat cellFormat14 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)14U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)6U, ApplyNumberFormat = false, ApplyFill = false, ApplyAlignment = false, ApplyProtection = false }; CellFormat cellFormat15 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)15U, FillId = (UInt32Value)7U, BorderId = (UInt32Value)7U, ApplyNumberFormat = false, ApplyAlignment = false, ApplyProtection = false }; CellFormat cellFormat16 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)16U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyFill = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false }; CellFormat cellFormat17 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)17U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyFill = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false }; CellFormat cellFormat18 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)18U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)9U, ApplyNumberFormat = false, ApplyFill = false, ApplyAlignment = false, ApplyProtection = false }; CellFormat cellFormat19 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)19U, FillId = (UInt32Value)9U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false }; CellFormat cellFormat20 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)3U, FillId = (UInt32Value)10U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false }; CellFormat cellFormat21 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)3U, FillId = (UInt32Value)11U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false }; CellFormat cellFormat22 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)19U, FillId = (UInt32Value)12U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false }; CellFormat cellFormat23 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)19U, FillId = (UInt32Value)13U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false }; CellFormat cellFormat24 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)3U, FillId = (UInt32Value)14U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false }; CellFormat cellFormat25 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)3U, FillId = (UInt32Value)15U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false }; CellFormat cellFormat26 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)19U, FillId = (UInt32Value)16U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false }; CellFormat cellFormat27 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)19U, FillId = (UInt32Value)17U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false }; CellFormat cellFormat28 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)3U, FillId = (UInt32Value)18U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false }; CellFormat cellFormat29 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)3U, FillId = (UInt32Value)19U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false }; CellFormat cellFormat30 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)19U, FillId = (UInt32Value)20U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false }; CellFormat cellFormat31 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)19U, FillId = (UInt32Value)21U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false }; CellFormat cellFormat32 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)3U, FillId = (UInt32Value)22U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false }; CellFormat cellFormat33 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)3U, FillId = (UInt32Value)23U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false }; CellFormat cellFormat34 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)19U, FillId = (UInt32Value)24U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false }; CellFormat cellFormat35 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)19U, FillId = (UInt32Value)25U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false }; CellFormat cellFormat36 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)3U, FillId = (UInt32Value)26U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false }; CellFormat cellFormat37 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)3U, FillId = (UInt32Value)27U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false }; CellFormat cellFormat38 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)19U, FillId = (UInt32Value)28U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false }; CellFormat cellFormat39 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)19U, FillId = (UInt32Value)29U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false }; CellFormat cellFormat40 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)3U, FillId = (UInt32Value)30U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false }; CellFormat cellFormat41 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)3U, FillId = (UInt32Value)31U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false }; CellFormat cellFormat42 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)19U, FillId = (UInt32Value)32U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false }; CellFormat cellFormat43 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)20U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U }; Alignment alignment1 = new Alignment() { Vertical = VerticalAlignmentValues.Center }; cellFormat43.Append(alignment1); CellFormat cellFormat44 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)3U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U }; CellFormat cellFormat45 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)3U, FillId = (UInt32Value)8U, BorderId = (UInt32Value)8U, ApplyNumberFormat = false, ApplyFont = false, ApplyAlignment = false, ApplyProtection = false }; cellStyleFormats1.Append(cellFormat1); cellStyleFormats1.Append(cellFormat2); cellStyleFormats1.Append(cellFormat3); cellStyleFormats1.Append(cellFormat4); cellStyleFormats1.Append(cellFormat5); cellStyleFormats1.Append(cellFormat6); cellStyleFormats1.Append(cellFormat7); cellStyleFormats1.Append(cellFormat8); cellStyleFormats1.Append(cellFormat9); cellStyleFormats1.Append(cellFormat10); cellStyleFormats1.Append(cellFormat11); cellStyleFormats1.Append(cellFormat12); cellStyleFormats1.Append(cellFormat13); cellStyleFormats1.Append(cellFormat14); cellStyleFormats1.Append(cellFormat15); cellStyleFormats1.Append(cellFormat16); cellStyleFormats1.Append(cellFormat17); cellStyleFormats1.Append(cellFormat18); cellStyleFormats1.Append(cellFormat19); cellStyleFormats1.Append(cellFormat20); cellStyleFormats1.Append(cellFormat21); cellStyleFormats1.Append(cellFormat22); cellStyleFormats1.Append(cellFormat23); cellStyleFormats1.Append(cellFormat24); cellStyleFormats1.Append(cellFormat25); cellStyleFormats1.Append(cellFormat26); cellStyleFormats1.Append(cellFormat27); cellStyleFormats1.Append(cellFormat28); cellStyleFormats1.Append(cellFormat29); cellStyleFormats1.Append(cellFormat30); cellStyleFormats1.Append(cellFormat31); cellStyleFormats1.Append(cellFormat32); cellStyleFormats1.Append(cellFormat33); cellStyleFormats1.Append(cellFormat34); cellStyleFormats1.Append(cellFormat35); cellStyleFormats1.Append(cellFormat36); cellStyleFormats1.Append(cellFormat37); cellStyleFormats1.Append(cellFormat38); cellStyleFormats1.Append(cellFormat39); cellStyleFormats1.Append(cellFormat40); cellStyleFormats1.Append(cellFormat41); cellStyleFormats1.Append(cellFormat42); cellStyleFormats1.Append(cellFormat43); cellStyleFormats1.Append(cellFormat44); cellStyleFormats1.Append(cellFormat45); CellFormats cellFormats1 = new CellFormats() { Count = (UInt32Value)66U }; CellFormat cellFormat46 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)0U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U }; CellFormat cellFormat47 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)2U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true }; CellFormat cellFormat48 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)24U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)42U, ApplyFont = true, ApplyFill = true, ApplyBorder = true }; Alignment alignment2 = new Alignment() { Vertical = VerticalAlignmentValues.Center }; cellFormat48.Append(alignment2); CellFormat cellFormat49 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)22U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true }; CellFormat cellFormat50 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)24U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)42U, ApplyFont = true, ApplyFill = true, ApplyBorder = true }; Alignment alignment3 = new Alignment() { Vertical = VerticalAlignmentValues.Center }; cellFormat50.Append(alignment3); CellFormat cellFormat51 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)22U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true }; CellFormat cellFormat52 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)22U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true }; CellFormat cellFormat53 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)21U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyAlignment = true }; Alignment alignment4 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center }; cellFormat53.Append(alignment4); CellFormat cellFormat54 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)30U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyAlignment = true }; Alignment alignment5 = new Alignment() { Horizontal = HorizontalAlignmentValues.Left, Vertical = VerticalAlignmentValues.Center }; cellFormat54.Append(alignment5); CellFormat cellFormat55 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)21U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyAlignment = true }; Alignment alignment6 = new Alignment() { Horizontal = HorizontalAlignmentValues.Left, Vertical = VerticalAlignmentValues.Center }; cellFormat55.Append(alignment6); CellFormat cellFormat56 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)21U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)42U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true }; Alignment alignment7 = new Alignment() { Horizontal = HorizontalAlignmentValues.Left, Vertical = VerticalAlignmentValues.Center }; cellFormat56.Append(alignment7); CellFormat cellFormat57 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)21U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)42U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true }; Alignment alignment8 = new Alignment() { Horizontal = HorizontalAlignmentValues.Left, Vertical = VerticalAlignmentValues.Center }; cellFormat57.Append(alignment8); CellFormat cellFormat58 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)21U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)42U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true }; Alignment alignment9 = new Alignment() { Horizontal = HorizontalAlignmentValues.Left, Vertical = VerticalAlignmentValues.Center }; cellFormat58.Append(alignment9); CellFormat cellFormat59 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)21U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)42U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true }; Alignment alignment10 = new Alignment() { Horizontal = HorizontalAlignmentValues.Left, Vertical = VerticalAlignmentValues.Center }; cellFormat59.Append(alignment10); CellFormat cellFormat60 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)21U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)42U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true }; Alignment alignment11 = new Alignment() { Horizontal = HorizontalAlignmentValues.Left, Vertical = VerticalAlignmentValues.Center }; cellFormat60.Append(alignment11); CellFormat cellFormat61 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)21U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)42U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true }; Alignment alignment12 = new Alignment() { Horizontal = HorizontalAlignmentValues.Left, Vertical = VerticalAlignmentValues.Center }; cellFormat61.Append(alignment12); CellFormat cellFormat62 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)21U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)42U, ApplyFont = true, ApplyFill = true, ApplyBorder = true }; Alignment alignment13 = new Alignment() { Vertical = VerticalAlignmentValues.Center }; cellFormat62.Append(alignment13); CellFormat cellFormat63 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)21U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)42U, ApplyFont = true, ApplyFill = true, ApplyBorder = true }; Alignment alignment14 = new Alignment() { Vertical = VerticalAlignmentValues.Center }; cellFormat63.Append(alignment14); CellFormat cellFormat64 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)21U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)42U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true }; Alignment alignment15 = new Alignment() { Horizontal = HorizontalAlignmentValues.Left, Vertical = VerticalAlignmentValues.Center }; cellFormat64.Append(alignment15); CellFormat cellFormat65 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)21U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)42U, ApplyFont = true, ApplyFill = true, ApplyBorder = true }; Alignment alignment16 = new Alignment() { Vertical = VerticalAlignmentValues.Center }; cellFormat65.Append(alignment16); CellFormat cellFormat66 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)2U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyAlignment = true }; Alignment alignment17 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center }; cellFormat66.Append(alignment17); CellFormat cellFormat67 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)2U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)11U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true }; Alignment alignment18 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true }; cellFormat67.Append(alignment18); CellFormat cellFormat68 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)2U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)12U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true }; Alignment alignment19 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true }; cellFormat68.Append(alignment19); CellFormat cellFormat69 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)2U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)13U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true }; Alignment alignment20 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true }; cellFormat69.Append(alignment20); CellFormat cellFormat70 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)26U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyAlignment = true }; Alignment alignment21 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center }; cellFormat70.Append(alignment21); CellFormat cellFormat71 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)24U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)11U, FormatId = (UInt32Value)42U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true }; Alignment alignment22 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center }; cellFormat71.Append(alignment22); CellFormat cellFormat72 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)0U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)13U, FormatId = (UInt32Value)0U, ApplyBorder = true, ApplyAlignment = true }; Alignment alignment23 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center }; cellFormat72.Append(alignment23); CellFormat cellFormat73 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)24U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)42U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true }; Alignment alignment24 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center }; cellFormat73.Append(alignment24); CellFormat cellFormat74 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)0U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyAlignment = true }; Alignment alignment25 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center }; cellFormat74.Append(alignment25); CellFormat cellFormat75 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)24U, FillId = (UInt32Value)35U, BorderId = (UInt32Value)14U, FormatId = (UInt32Value)42U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true }; Alignment alignment26 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center }; cellFormat75.Append(alignment26); CellFormat cellFormat76 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)22U, FillId = (UInt32Value)35U, BorderId = (UInt32Value)10U, FormatId = (UInt32Value)43U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true }; Alignment alignment27 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center }; cellFormat76.Append(alignment27); CellFormat cellFormat77 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)0U, FillId = (UInt32Value)35U, BorderId = (UInt32Value)15U, FormatId = (UInt32Value)0U, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true }; CellFormat cellFormat78 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)24U, FillId = (UInt32Value)34U, BorderId = (UInt32Value)14U, FormatId = (UInt32Value)42U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true }; Alignment alignment28 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center }; cellFormat78.Append(alignment28); CellFormat cellFormat79 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)22U, FillId = (UInt32Value)34U, BorderId = (UInt32Value)10U, FormatId = (UInt32Value)43U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true }; Alignment alignment29 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center }; cellFormat79.Append(alignment29); CellFormat cellFormat80 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)0U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)15U, FormatId = (UInt32Value)0U, ApplyBorder = true, ApplyAlignment = true }; CellFormat cellFormat81 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)23U, FillId = (UInt32Value)35U, BorderId = (UInt32Value)14U, FormatId = (UInt32Value)42U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true }; Alignment alignment30 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center }; cellFormat81.Append(alignment30); CellFormat cellFormat82 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)25U, FillId = (UInt32Value)35U, BorderId = (UInt32Value)10U, FormatId = (UInt32Value)43U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true }; Alignment alignment31 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center }; cellFormat82.Append(alignment31); CellFormat cellFormat83 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)1U, FillId = (UInt32Value)35U, BorderId = (UInt32Value)15U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true }; CellFormat cellFormat84 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)23U, FillId = (UInt32Value)34U, BorderId = (UInt32Value)14U, FormatId = (UInt32Value)42U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true }; Alignment alignment32 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center }; cellFormat84.Append(alignment32); CellFormat cellFormat85 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)25U, FillId = (UInt32Value)34U, BorderId = (UInt32Value)10U, FormatId = (UInt32Value)43U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true }; Alignment alignment33 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center }; cellFormat85.Append(alignment33); CellFormat cellFormat86 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)1U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)15U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyBorder = true, ApplyAlignment = true }; CellFormat cellFormat87 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)21U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyAlignment = true }; Alignment alignment34 = new Alignment() { Horizontal = HorizontalAlignmentValues.Left, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true }; cellFormat87.Append(alignment34); CellFormat cellFormat88 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)21U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyAlignment = true }; Alignment alignment35 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true }; cellFormat88.Append(alignment35); CellFormat cellFormat89 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)22U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyAlignment = true }; Alignment alignment36 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true }; cellFormat89.Append(alignment36); CellFormat cellFormat90 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)31U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyAlignment = true }; Alignment alignment37 = new Alignment() { Horizontal = HorizontalAlignmentValues.Left, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true }; cellFormat90.Append(alignment37); CellFormat cellFormat91 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)27U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyAlignment = true }; Alignment alignment38 = new Alignment() { Horizontal = HorizontalAlignmentValues.Left, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true }; cellFormat91.Append(alignment38); CellFormat cellFormat92 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)28U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyAlignment = true }; Alignment alignment39 = new Alignment() { Horizontal = HorizontalAlignmentValues.Left, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true }; cellFormat92.Append(alignment39); CellFormat cellFormat93 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)29U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyAlignment = true }; Alignment alignment40 = new Alignment() { Horizontal = HorizontalAlignmentValues.Left, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true }; cellFormat93.Append(alignment40); CellFormat cellFormat94 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)30U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyAlignment = true }; Alignment alignment41 = new Alignment() { Horizontal = HorizontalAlignmentValues.Left, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true }; cellFormat94.Append(alignment41); CellFormat cellFormat95 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)22U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)17U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true }; Alignment alignment42 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true }; cellFormat95.Append(alignment42); CellFormat cellFormat96 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)21U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)12U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true }; Alignment alignment43 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true }; cellFormat96.Append(alignment43); CellFormat cellFormat97 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)22U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)12U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true }; Alignment alignment44 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true }; cellFormat97.Append(alignment44); CellFormat cellFormat98 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)21U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)42U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true }; Alignment alignment45 = new Alignment() { Horizontal = HorizontalAlignmentValues.Left, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true }; cellFormat98.Append(alignment45); CellFormat cellFormat99 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)0U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyAlignment = true }; Alignment alignment46 = new Alignment() { Horizontal = HorizontalAlignmentValues.Left, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true }; cellFormat99.Append(alignment46); CellFormat cellFormat100 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)22U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)18U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true }; Alignment alignment47 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true }; cellFormat100.Append(alignment47); CellFormat cellFormat101 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)21U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)16U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true }; Alignment alignment48 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true }; cellFormat101.Append(alignment48); CellFormat cellFormat102 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)21U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)17U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true }; Alignment alignment49 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true }; cellFormat102.Append(alignment49); CellFormat cellFormat103 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)22U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)16U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true }; Alignment alignment50 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true }; cellFormat103.Append(alignment50); CellFormat cellFormat104 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)23U, FillId = (UInt32Value)35U, BorderId = (UInt32Value)11U, FormatId = (UInt32Value)42U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true }; Alignment alignment51 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center }; cellFormat104.Append(alignment51); CellFormat cellFormat105 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)25U, FillId = (UInt32Value)35U, BorderId = (UInt32Value)12U, FormatId = (UInt32Value)43U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true }; Alignment alignment52 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center }; cellFormat105.Append(alignment52); CellFormat cellFormat106 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)1U, FillId = (UInt32Value)35U, BorderId = (UInt32Value)12U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true }; CellFormat cellFormat107 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)0U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)12U, FormatId = (UInt32Value)0U, ApplyBorder = true, ApplyAlignment = true }; CellFormat cellFormat108 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)0U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)13U, FormatId = (UInt32Value)0U, ApplyBorder = true, ApplyAlignment = true }; CellFormat cellFormat109 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)23U, FillId = (UInt32Value)34U, BorderId = (UInt32Value)11U, FormatId = (UInt32Value)42U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true }; Alignment alignment53 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center }; cellFormat109.Append(alignment53); CellFormat cellFormat110 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)25U, FillId = (UInt32Value)34U, BorderId = (UInt32Value)12U, FormatId = (UInt32Value)43U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true }; Alignment alignment54 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center }; cellFormat110.Append(alignment54); CellFormat cellFormat111 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)1U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)12U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyBorder = true, ApplyAlignment = true }; cellFormats1.Append(cellFormat46); cellFormats1.Append(cellFormat47); cellFormats1.Append(cellFormat48); cellFormats1.Append(cellFormat49); cellFormats1.Append(cellFormat50); cellFormats1.Append(cellFormat51); cellFormats1.Append(cellFormat52); cellFormats1.Append(cellFormat53); cellFormats1.Append(cellFormat54); cellFormats1.Append(cellFormat55); cellFormats1.Append(cellFormat56); cellFormats1.Append(cellFormat57); cellFormats1.Append(cellFormat58); cellFormats1.Append(cellFormat59); cellFormats1.Append(cellFormat60); cellFormats1.Append(cellFormat61); cellFormats1.Append(cellFormat62); cellFormats1.Append(cellFormat63); cellFormats1.Append(cellFormat64); cellFormats1.Append(cellFormat65); cellFormats1.Append(cellFormat66); cellFormats1.Append(cellFormat67); cellFormats1.Append(cellFormat68); cellFormats1.Append(cellFormat69); cellFormats1.Append(cellFormat70); cellFormats1.Append(cellFormat71); cellFormats1.Append(cellFormat72); cellFormats1.Append(cellFormat73); cellFormats1.Append(cellFormat74); cellFormats1.Append(cellFormat75); cellFormats1.Append(cellFormat76); cellFormats1.Append(cellFormat77); cellFormats1.Append(cellFormat78); cellFormats1.Append(cellFormat79); cellFormats1.Append(cellFormat80); cellFormats1.Append(cellFormat81); cellFormats1.Append(cellFormat82); cellFormats1.Append(cellFormat83); cellFormats1.Append(cellFormat84); cellFormats1.Append(cellFormat85); cellFormats1.Append(cellFormat86); cellFormats1.Append(cellFormat87); cellFormats1.Append(cellFormat88); cellFormats1.Append(cellFormat89); cellFormats1.Append(cellFormat90); cellFormats1.Append(cellFormat91); cellFormats1.Append(cellFormat92); cellFormats1.Append(cellFormat93); cellFormats1.Append(cellFormat94); cellFormats1.Append(cellFormat95); cellFormats1.Append(cellFormat96); cellFormats1.Append(cellFormat97); cellFormats1.Append(cellFormat98); cellFormats1.Append(cellFormat99); cellFormats1.Append(cellFormat100); cellFormats1.Append(cellFormat101); cellFormats1.Append(cellFormat102); cellFormats1.Append(cellFormat103); cellFormats1.Append(cellFormat104); cellFormats1.Append(cellFormat105); cellFormats1.Append(cellFormat106); cellFormats1.Append(cellFormat107); cellFormats1.Append(cellFormat108); cellFormats1.Append(cellFormat109); cellFormats1.Append(cellFormat110); cellFormats1.Append(cellFormat111); CellStyles cellStyles1 = new CellStyles() { Count = (UInt32Value)45U }; CellStyle cellStyle1 = new CellStyle() { Name = "20% - Accent1 2", FormatId = (UInt32Value)19U }; CellStyle cellStyle2 = new CellStyle() { Name = "20% - Accent2 2", FormatId = (UInt32Value)23U }; CellStyle cellStyle3 = new CellStyle() { Name = "20% - Accent3 2", FormatId = (UInt32Value)27U }; CellStyle cellStyle4 = new CellStyle() { Name = "20% - Accent4 2", FormatId = (UInt32Value)31U }; CellStyle cellStyle5 = new CellStyle() { Name = "20% - Accent5 2", FormatId = (UInt32Value)35U }; CellStyle cellStyle6 = new CellStyle() { Name = "20% - Accent6 2", FormatId = (UInt32Value)39U }; CellStyle cellStyle7 = new CellStyle() { Name = "40% - Accent1 2", FormatId = (UInt32Value)20U }; CellStyle cellStyle8 = new CellStyle() { Name = "40% - Accent2 2", FormatId = (UInt32Value)24U }; CellStyle cellStyle9 = new CellStyle() { Name = "40% - Accent3 2", FormatId = (UInt32Value)28U }; CellStyle cellStyle10 = new CellStyle() { Name = "40% - Accent4 2", FormatId = (UInt32Value)32U }; CellStyle cellStyle11 = new CellStyle() { Name = "40% - Accent5 2", FormatId = (UInt32Value)36U }; CellStyle cellStyle12 = new CellStyle() { Name = "40% - Accent6 2", FormatId = (UInt32Value)40U }; CellStyle cellStyle13 = new CellStyle() { Name = "60% - Accent1 2", FormatId = (UInt32Value)21U }; CellStyle cellStyle14 = new CellStyle() { Name = "60% - Accent2 2", FormatId = (UInt32Value)25U }; CellStyle cellStyle15 = new CellStyle() { Name = "60% - Accent3 2", FormatId = (UInt32Value)29U }; CellStyle cellStyle16 = new CellStyle() { Name = "60% - Accent4 2", FormatId = (UInt32Value)33U }; CellStyle cellStyle17 = new CellStyle() { Name = "60% - Accent5 2", FormatId = (UInt32Value)37U }; CellStyle cellStyle18 = new CellStyle() { Name = "60% - Accent6 2", FormatId = (UInt32Value)41U }; CellStyle cellStyle19 = new CellStyle() { Name = "Accent1 2", FormatId = (UInt32Value)18U }; CellStyle cellStyle20 = new CellStyle() { Name = "Accent2 2", FormatId = (UInt32Value)22U }; CellStyle cellStyle21 = new CellStyle() { Name = "Accent3 2", FormatId = (UInt32Value)26U }; CellStyle cellStyle22 = new CellStyle() { Name = "Accent4 2", FormatId = (UInt32Value)30U }; CellStyle cellStyle23 = new CellStyle() { Name = "Accent5 2", FormatId = (UInt32Value)34U }; CellStyle cellStyle24 = new CellStyle() { Name = "Accent6 2", FormatId = (UInt32Value)38U }; CellStyle cellStyle25 = new CellStyle() { Name = "Bad 2", FormatId = (UInt32Value)8U }; CellStyle cellStyle26 = new CellStyle() { Name = "Calculation 2", FormatId = (UInt32Value)12U }; CellStyle cellStyle27 = new CellStyle() { Name = "Check Cell 2", FormatId = (UInt32Value)14U }; CellStyle cellStyle28 = new CellStyle() { Name = "Explanatory Text 2", FormatId = (UInt32Value)16U }; CellStyle cellStyle29 = new CellStyle() { Name = "Good 2", FormatId = (UInt32Value)7U }; CellStyle cellStyle30 = new CellStyle() { Name = "Heading 1 2", FormatId = (UInt32Value)3U }; CellStyle cellStyle31 = new CellStyle() { Name = "Heading 2 2", FormatId = (UInt32Value)4U }; CellStyle cellStyle32 = new CellStyle() { Name = "Heading 3 2", FormatId = (UInt32Value)5U }; CellStyle cellStyle33 = new CellStyle() { Name = "Heading 4 2", FormatId = (UInt32Value)6U }; CellStyle cellStyle34 = new CellStyle() { Name = "Input 2", FormatId = (UInt32Value)10U }; CellStyle cellStyle35 = new CellStyle() { Name = "Linked Cell 2", FormatId = (UInt32Value)13U }; CellStyle cellStyle36 = new CellStyle() { Name = "Neutral 2", FormatId = (UInt32Value)9U }; CellStyle cellStyle37 = new CellStyle() { Name = "Normal", FormatId = (UInt32Value)0U, BuiltinId = (UInt32Value)0U }; CellStyle cellStyle38 = new CellStyle() { Name = "Normal 2", FormatId = (UInt32Value)43U }; CellStyle cellStyle39 = new CellStyle() { Name = "Normal 3", FormatId = (UInt32Value)42U }; CellStyle cellStyle40 = new CellStyle() { Name = "Normal 4", FormatId = (UInt32Value)1U }; CellStyle cellStyle41 = new CellStyle() { Name = "Note 2", FormatId = (UInt32Value)44U }; CellStyle cellStyle42 = new CellStyle() { Name = "Output 2", FormatId = (UInt32Value)11U }; CellStyle cellStyle43 = new CellStyle() { Name = "Title 2", FormatId = (UInt32Value)2U }; CellStyle cellStyle44 = new CellStyle() { Name = "Total 2", FormatId = (UInt32Value)17U }; CellStyle cellStyle45 = new CellStyle() { Name = "Warning Text 2", FormatId = (UInt32Value)15U }; cellStyles1.Append(cellStyle1); cellStyles1.Append(cellStyle2); cellStyles1.Append(cellStyle3); cellStyles1.Append(cellStyle4); cellStyles1.Append(cellStyle5); cellStyles1.Append(cellStyle6); cellStyles1.Append(cellStyle7); cellStyles1.Append(cellStyle8); cellStyles1.Append(cellStyle9); cellStyles1.Append(cellStyle10); cellStyles1.Append(cellStyle11); cellStyles1.Append(cellStyle12); cellStyles1.Append(cellStyle13); cellStyles1.Append(cellStyle14); cellStyles1.Append(cellStyle15); cellStyles1.Append(cellStyle16); cellStyles1.Append(cellStyle17); cellStyles1.Append(cellStyle18); cellStyles1.Append(cellStyle19); cellStyles1.Append(cellStyle20); cellStyles1.Append(cellStyle21); cellStyles1.Append(cellStyle22); cellStyles1.Append(cellStyle23); cellStyles1.Append(cellStyle24); cellStyles1.Append(cellStyle25); cellStyles1.Append(cellStyle26); cellStyles1.Append(cellStyle27); cellStyles1.Append(cellStyle28); cellStyles1.Append(cellStyle29); cellStyles1.Append(cellStyle30); cellStyles1.Append(cellStyle31); cellStyles1.Append(cellStyle32); cellStyles1.Append(cellStyle33); cellStyles1.Append(cellStyle34); cellStyles1.Append(cellStyle35); cellStyles1.Append(cellStyle36); cellStyles1.Append(cellStyle37); cellStyles1.Append(cellStyle38); cellStyles1.Append(cellStyle39); cellStyles1.Append(cellStyle40); cellStyles1.Append(cellStyle41); cellStyles1.Append(cellStyle42); cellStyles1.Append(cellStyle43); cellStyles1.Append(cellStyle44); cellStyles1.Append(cellStyle45); DifferentialFormats differentialFormats1 = new DifferentialFormats() { Count = (UInt32Value)0U }; TableStyles tableStyles1 = new TableStyles() { Count = (UInt32Value)0U, DefaultTableStyle = "TableStyleMedium9", DefaultPivotStyle = "PivotStyleLight16" }; Colors colors1 = new Colors(); MruColors mruColors1 = new MruColors(); Color color72 = new Color() { Rgb = "FFCC99FF" }; mruColors1.Append(color72); colors1.Append(mruColors1); stylesheet1.Append(fonts1); stylesheet1.Append(fills1); stylesheet1.Append(borders1); stylesheet1.Append(cellStyleFormats1); stylesheet1.Append(cellFormats1); stylesheet1.Append(cellStyles1); stylesheet1.Append(differentialFormats1); stylesheet1.Append(tableStyles1); stylesheet1.Append(colors1); workbookStylesPart1.Stylesheet = stylesheet1; } // Generates content of themePart1. private void GenerateThemePart1Content(ThemePart themePart1) { A.Theme theme1 = new A.Theme() { Name = "Office Theme" }; theme1.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main"); A.ThemeElements themeElements1 = new A.ThemeElements(); A.ColorScheme colorScheme1 = new A.ColorScheme() { Name = "Office" }; A.Dark1Color dark1Color1 = new A.Dark1Color(); A.SystemColor systemColor1 = new A.SystemColor() { Val = A.SystemColorValues.WindowText, LastColor = "000000" }; dark1Color1.Append(systemColor1); A.Light1Color light1Color1 = new A.Light1Color(); A.SystemColor systemColor2 = new A.SystemColor() { Val = A.SystemColorValues.Window, LastColor = "FFFFFF" }; light1Color1.Append(systemColor2); A.Dark2Color dark2Color1 = new A.Dark2Color(); A.RgbColorModelHex rgbColorModelHex17 = new A.RgbColorModelHex() { Val = "1F497D" }; dark2Color1.Append(rgbColorModelHex17); A.Light2Color light2Color1 = new A.Light2Color(); A.RgbColorModelHex rgbColorModelHex18 = new A.RgbColorModelHex() { Val = "EEECE1" }; light2Color1.Append(rgbColorModelHex18); A.Accent1Color accent1Color1 = new A.Accent1Color(); A.RgbColorModelHex rgbColorModelHex19 = new A.RgbColorModelHex() { Val = "4F81BD" }; accent1Color1.Append(rgbColorModelHex19); A.Accent2Color accent2Color1 = new A.Accent2Color(); A.RgbColorModelHex rgbColorModelHex20 = new A.RgbColorModelHex() { Val = "C0504D" }; accent2Color1.Append(rgbColorModelHex20); A.Accent3Color accent3Color1 = new A.Accent3Color(); A.RgbColorModelHex rgbColorModelHex21 = new A.RgbColorModelHex() { Val = "9BBB59" }; accent3Color1.Append(rgbColorModelHex21); A.Accent4Color accent4Color1 = new A.Accent4Color(); A.RgbColorModelHex rgbColorModelHex22 = new A.RgbColorModelHex() { Val = "8064A2" }; accent4Color1.Append(rgbColorModelHex22); A.Accent5Color accent5Color1 = new A.Accent5Color(); A.RgbColorModelHex rgbColorModelHex23 = new A.RgbColorModelHex() { Val = "4BACC6" }; accent5Color1.Append(rgbColorModelHex23); A.Accent6Color accent6Color1 = new A.Accent6Color(); A.RgbColorModelHex rgbColorModelHex24 = new A.RgbColorModelHex() { Val = "F79646" }; accent6Color1.Append(rgbColorModelHex24); A.Hyperlink hyperlink1 = new A.Hyperlink(); A.RgbColorModelHex rgbColorModelHex25 = new A.RgbColorModelHex() { Val = "0000FF" }; hyperlink1.Append(rgbColorModelHex25); A.FollowedHyperlinkColor followedHyperlinkColor1 = new A.FollowedHyperlinkColor(); A.RgbColorModelHex rgbColorModelHex26 = new A.RgbColorModelHex() { Val = "800080" }; followedHyperlinkColor1.Append(rgbColorModelHex26); colorScheme1.Append(dark1Color1); colorScheme1.Append(light1Color1); colorScheme1.Append(dark2Color1); colorScheme1.Append(light2Color1); colorScheme1.Append(accent1Color1); colorScheme1.Append(accent2Color1); colorScheme1.Append(accent3Color1); colorScheme1.Append(accent4Color1); colorScheme1.Append(accent5Color1); colorScheme1.Append(accent6Color1); colorScheme1.Append(hyperlink1); colorScheme1.Append(followedHyperlinkColor1); A.FontScheme fontScheme20 = new A.FontScheme() { Name = "Office" }; A.MajorFont majorFont1 = new A.MajorFont(); A.LatinFont latinFont4 = new A.LatinFont() { Typeface = "Cambria" }; A.EastAsianFont eastAsianFont4 = new A.EastAsianFont() { Typeface = "" }; A.ComplexScriptFont complexScriptFont1 = new A.ComplexScriptFont() { Typeface = "" }; A.SupplementalFont supplementalFont1 = new A.SupplementalFont() { Script = "Jpan", Typeface = "MS Pゴシック" }; A.SupplementalFont supplementalFont2 = new A.SupplementalFont() { Script = "Hang", Typeface = "맑은 고딕" }; A.SupplementalFont supplementalFont3 = new A.SupplementalFont() { Script = "Hans", Typeface = "宋体" }; A.SupplementalFont supplementalFont4 = new A.SupplementalFont() { Script = "Hant", Typeface = "新細明體" }; A.SupplementalFont supplementalFont5 = new A.SupplementalFont() { Script = "Arab", Typeface = "Times New Roman" }; A.SupplementalFont supplementalFont6 = new A.SupplementalFont() { Script = "Hebr", Typeface = "Times New Roman" }; A.SupplementalFont supplementalFont7 = new A.SupplementalFont() { Script = "Thai", Typeface = "Tahoma" }; A.SupplementalFont supplementalFont8 = new A.SupplementalFont() { Script = "Ethi", Typeface = "Nyala" }; A.SupplementalFont supplementalFont9 = new A.SupplementalFont() { Script = "Beng", Typeface = "Vrinda" }; A.SupplementalFont supplementalFont10 = new A.SupplementalFont() { Script = "Gujr", Typeface = "Shruti" }; A.SupplementalFont supplementalFont11 = new A.SupplementalFont() { Script = "Khmr", Typeface = "MoolBoran" }; A.SupplementalFont supplementalFont12 = new A.SupplementalFont() { Script = "Knda", Typeface = "Tunga" }; A.SupplementalFont supplementalFont13 = new A.SupplementalFont() { Script = "Guru", Typeface = "Raavi" }; A.SupplementalFont supplementalFont14 = new A.SupplementalFont() { Script = "Cans", Typeface = "Euphemia" }; A.SupplementalFont supplementalFont15 = new A.SupplementalFont() { Script = "Cher", Typeface = "Plantagenet Cherokee" }; A.SupplementalFont supplementalFont16 = new A.SupplementalFont() { Script = "Yiii", Typeface = "Microsoft Yi Baiti" }; A.SupplementalFont supplementalFont17 = new A.SupplementalFont() { Script = "Tibt", Typeface = "Microsoft Himalaya" }; A.SupplementalFont supplementalFont18 = new A.SupplementalFont() { Script = "Thaa", Typeface = "MV Boli" }; A.SupplementalFont supplementalFont19 = new A.SupplementalFont() { Script = "Deva", Typeface = "Mangal" }; A.SupplementalFont supplementalFont20 = new A.SupplementalFont() { Script = "Telu", Typeface = "Gautami" }; A.SupplementalFont supplementalFont21 = new A.SupplementalFont() { Script = "Taml", Typeface = "Latha" }; A.SupplementalFont supplementalFont22 = new A.SupplementalFont() { Script = "Syrc", Typeface = "Estrangelo Edessa" }; A.SupplementalFont supplementalFont23 = new A.SupplementalFont() { Script = "Orya", Typeface = "Kalinga" }; A.SupplementalFont supplementalFont24 = new A.SupplementalFont() { Script = "Mlym", Typeface = "Kartika" }; A.SupplementalFont supplementalFont25 = new A.SupplementalFont() { Script = "Laoo", Typeface = "DokChampa" }; A.SupplementalFont supplementalFont26 = new A.SupplementalFont() { Script = "Sinh", Typeface = "Iskoola Pota" }; A.SupplementalFont supplementalFont27 = new A.SupplementalFont() { Script = "Mong", Typeface = "Mongolian Baiti" }; A.SupplementalFont supplementalFont28 = new A.SupplementalFont() { Script = "Viet", Typeface = "Times New Roman" }; A.SupplementalFont supplementalFont29 = new A.SupplementalFont() { Script = "Uigh", Typeface = "Microsoft Uighur" }; majorFont1.Append(latinFont4); majorFont1.Append(eastAsianFont4); majorFont1.Append(complexScriptFont1); majorFont1.Append(supplementalFont1); majorFont1.Append(supplementalFont2); majorFont1.Append(supplementalFont3); majorFont1.Append(supplementalFont4); majorFont1.Append(supplementalFont5); majorFont1.Append(supplementalFont6); majorFont1.Append(supplementalFont7); majorFont1.Append(supplementalFont8); majorFont1.Append(supplementalFont9); majorFont1.Append(supplementalFont10); majorFont1.Append(supplementalFont11); majorFont1.Append(supplementalFont12); majorFont1.Append(supplementalFont13); majorFont1.Append(supplementalFont14); majorFont1.Append(supplementalFont15); majorFont1.Append(supplementalFont16); majorFont1.Append(supplementalFont17); majorFont1.Append(supplementalFont18); majorFont1.Append(supplementalFont19); majorFont1.Append(supplementalFont20); majorFont1.Append(supplementalFont21); majorFont1.Append(supplementalFont22); majorFont1.Append(supplementalFont23); majorFont1.Append(supplementalFont24); majorFont1.Append(supplementalFont25); majorFont1.Append(supplementalFont26); majorFont1.Append(supplementalFont27); majorFont1.Append(supplementalFont28); majorFont1.Append(supplementalFont29); A.MinorFont minorFont1 = new A.MinorFont(); A.LatinFont latinFont5 = new A.LatinFont() { Typeface = "Calibri" }; A.EastAsianFont eastAsianFont5 = new A.EastAsianFont() { Typeface = "" }; A.ComplexScriptFont complexScriptFont2 = new A.ComplexScriptFont() { Typeface = "" }; A.SupplementalFont supplementalFont30 = new A.SupplementalFont() { Script = "Jpan", Typeface = "MS Pゴシック" }; A.SupplementalFont supplementalFont31 = new A.SupplementalFont() { Script = "Hang", Typeface = "맑은 고딕" }; A.SupplementalFont supplementalFont32 = new A.SupplementalFont() { Script = "Hans", Typeface = "宋体" }; A.SupplementalFont supplementalFont33 = new A.SupplementalFont() { Script = "Hant", Typeface = "新細明體" }; A.SupplementalFont supplementalFont34 = new A.SupplementalFont() { Script = "Arab", Typeface = "Arial" }; A.SupplementalFont supplementalFont35 = new A.SupplementalFont() { Script = "Hebr", Typeface = "Arial" }; A.SupplementalFont supplementalFont36 = new A.SupplementalFont() { Script = "Thai", Typeface = "Tahoma" }; A.SupplementalFont supplementalFont37 = new A.SupplementalFont() { Script = "Ethi", Typeface = "Nyala" }; A.SupplementalFont supplementalFont38 = new A.SupplementalFont() { Script = "Beng", Typeface = "Vrinda" }; A.SupplementalFont supplementalFont39 = new A.SupplementalFont() { Script = "Gujr", Typeface = "Shruti" }; A.SupplementalFont supplementalFont40 = new A.SupplementalFont() { Script = "Khmr", Typeface = "DaunPenh" }; A.SupplementalFont supplementalFont41 = new A.SupplementalFont() { Script = "Knda", Typeface = "Tunga" }; A.SupplementalFont supplementalFont42 = new A.SupplementalFont() { Script = "Guru", Typeface = "Raavi" }; A.SupplementalFont supplementalFont43 = new A.SupplementalFont() { Script = "Cans", Typeface = "Euphemia" }; A.SupplementalFont supplementalFont44 = new A.SupplementalFont() { Script = "Cher", Typeface = "Plantagenet Cherokee" }; A.SupplementalFont supplementalFont45 = new A.SupplementalFont() { Script = "Yiii", Typeface = "Microsoft Yi Baiti" }; A.SupplementalFont supplementalFont46 = new A.SupplementalFont() { Script = "Tibt", Typeface = "Microsoft Himalaya" }; A.SupplementalFont supplementalFont47 = new A.SupplementalFont() { Script = "Thaa", Typeface = "MV Boli" }; A.SupplementalFont supplementalFont48 = new A.SupplementalFont() { Script = "Deva", Typeface = "Mangal" }; A.SupplementalFont supplementalFont49 = new A.SupplementalFont() { Script = "Telu", Typeface = "Gautami" }; A.SupplementalFont supplementalFont50 = new A.SupplementalFont() { Script = "Taml", Typeface = "Latha" }; A.SupplementalFont supplementalFont51 = new A.SupplementalFont() { Script = "Syrc", Typeface = "Estrangelo Edessa" }; A.SupplementalFont supplementalFont52 = new A.SupplementalFont() { Script = "Orya", Typeface = "Kalinga" }; A.SupplementalFont supplementalFont53 = new A.SupplementalFont() { Script = "Mlym", Typeface = "Kartika" }; A.SupplementalFont supplementalFont54 = new A.SupplementalFont() { Script = "Laoo", Typeface = "DokChampa" }; A.SupplementalFont supplementalFont55 = new A.SupplementalFont() { Script = "Sinh", Typeface = "Iskoola Pota" }; A.SupplementalFont supplementalFont56 = new A.SupplementalFont() { Script = "Mong", Typeface = "Mongolian Baiti" }; A.SupplementalFont supplementalFont57 = new A.SupplementalFont() { Script = "Viet", Typeface = "Arial" }; A.SupplementalFont supplementalFont58 = new A.SupplementalFont() { Script = "Uigh", Typeface = "Microsoft Uighur" }; minorFont1.Append(latinFont5); minorFont1.Append(eastAsianFont5); minorFont1.Append(complexScriptFont2); minorFont1.Append(supplementalFont30); minorFont1.Append(supplementalFont31); minorFont1.Append(supplementalFont32); minorFont1.Append(supplementalFont33); minorFont1.Append(supplementalFont34); minorFont1.Append(supplementalFont35); minorFont1.Append(supplementalFont36); minorFont1.Append(supplementalFont37); minorFont1.Append(supplementalFont38); minorFont1.Append(supplementalFont39); minorFont1.Append(supplementalFont40); minorFont1.Append(supplementalFont41); minorFont1.Append(supplementalFont42); minorFont1.Append(supplementalFont43); minorFont1.Append(supplementalFont44); minorFont1.Append(supplementalFont45); minorFont1.Append(supplementalFont46); minorFont1.Append(supplementalFont47); minorFont1.Append(supplementalFont48); minorFont1.Append(supplementalFont49); minorFont1.Append(supplementalFont50); minorFont1.Append(supplementalFont51); minorFont1.Append(supplementalFont52); minorFont1.Append(supplementalFont53); minorFont1.Append(supplementalFont54); minorFont1.Append(supplementalFont55); minorFont1.Append(supplementalFont56); minorFont1.Append(supplementalFont57); minorFont1.Append(supplementalFont58); fontScheme20.Append(majorFont1); fontScheme20.Append(minorFont1); A.FormatScheme formatScheme1 = new A.FormatScheme() { Name = "Office" }; A.FillStyleList fillStyleList1 = new A.FillStyleList(); A.SolidFill solidFill17 = new A.SolidFill(); A.SchemeColor schemeColor1 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor }; solidFill17.Append(schemeColor1); A.GradientFill gradientFill1 = new A.GradientFill() { RotateWithShape = true }; A.GradientStopList gradientStopList1 = new A.GradientStopList(); A.GradientStop gradientStop1 = new A.GradientStop() { Position = 0 }; A.SchemeColor schemeColor2 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor }; A.Tint tint1 = new A.Tint() { Val = 50000 }; A.SaturationModulation saturationModulation1 = new A.SaturationModulation() { Val = 300000 }; schemeColor2.Append(tint1); schemeColor2.Append(saturationModulation1); gradientStop1.Append(schemeColor2); A.GradientStop gradientStop2 = new A.GradientStop() { Position = 35000 }; A.SchemeColor schemeColor3 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor }; A.Tint tint2 = new A.Tint() { Val = 37000 }; A.SaturationModulation saturationModulation2 = new A.SaturationModulation() { Val = 300000 }; schemeColor3.Append(tint2); schemeColor3.Append(saturationModulation2); gradientStop2.Append(schemeColor3); A.GradientStop gradientStop3 = new A.GradientStop() { Position = 100000 }; A.SchemeColor schemeColor4 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor }; A.Tint tint3 = new A.Tint() { Val = 15000 }; A.SaturationModulation saturationModulation3 = new A.SaturationModulation() { Val = 350000 }; schemeColor4.Append(tint3); schemeColor4.Append(saturationModulation3); gradientStop3.Append(schemeColor4); gradientStopList1.Append(gradientStop1); gradientStopList1.Append(gradientStop2); gradientStopList1.Append(gradientStop3); A.LinearGradientFill linearGradientFill1 = new A.LinearGradientFill() { Angle = 16200000, Scaled = true }; gradientFill1.Append(gradientStopList1); gradientFill1.Append(linearGradientFill1); A.GradientFill gradientFill2 = new A.GradientFill() { RotateWithShape = true }; A.GradientStopList gradientStopList2 = new A.GradientStopList(); A.GradientStop gradientStop4 = new A.GradientStop() { Position = 0 }; A.SchemeColor schemeColor5 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor }; A.Shade shade1 = new A.Shade() { Val = 51000 }; A.SaturationModulation saturationModulation4 = new A.SaturationModulation() { Val = 130000 }; schemeColor5.Append(shade1); schemeColor5.Append(saturationModulation4); gradientStop4.Append(schemeColor5); A.GradientStop gradientStop5 = new A.GradientStop() { Position = 80000 }; A.SchemeColor schemeColor6 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor }; A.Shade shade2 = new A.Shade() { Val = 93000 }; A.SaturationModulation saturationModulation5 = new A.SaturationModulation() { Val = 130000 }; schemeColor6.Append(shade2); schemeColor6.Append(saturationModulation5); gradientStop5.Append(schemeColor6); A.GradientStop gradientStop6 = new A.GradientStop() { Position = 100000 }; A.SchemeColor schemeColor7 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor }; A.Shade shade3 = new A.Shade() { Val = 94000 }; A.SaturationModulation saturationModulation6 = new A.SaturationModulation() { Val = 135000 }; schemeColor7.Append(shade3); schemeColor7.Append(saturationModulation6); gradientStop6.Append(schemeColor7); gradientStopList2.Append(gradientStop4); gradientStopList2.Append(gradientStop5); gradientStopList2.Append(gradientStop6); A.LinearGradientFill linearGradientFill2 = new A.LinearGradientFill() { Angle = 16200000, Scaled = false }; gradientFill2.Append(gradientStopList2); gradientFill2.Append(linearGradientFill2); fillStyleList1.Append(solidFill17); fillStyleList1.Append(gradientFill1); fillStyleList1.Append(gradientFill2); A.LineStyleList lineStyleList1 = new A.LineStyleList(); A.Outline outline33 = new A.Outline() { Width = 9525, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center }; A.SolidFill solidFill18 = new A.SolidFill(); A.SchemeColor schemeColor8 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor }; A.Shade shade4 = new A.Shade() { Val = 95000 }; A.SaturationModulation saturationModulation7 = new A.SaturationModulation() { Val = 105000 }; schemeColor8.Append(shade4); schemeColor8.Append(saturationModulation7); solidFill18.Append(schemeColor8); A.PresetDash presetDash1 = new A.PresetDash() { Val = A.PresetLineDashValues.Solid }; outline33.Append(solidFill18); outline33.Append(presetDash1); A.Outline outline34 = new A.Outline() { Width = 25400, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center }; A.SolidFill solidFill19 = new A.SolidFill(); A.SchemeColor schemeColor9 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor }; solidFill19.Append(schemeColor9); A.PresetDash presetDash2 = new A.PresetDash() { Val = A.PresetLineDashValues.Solid }; outline34.Append(solidFill19); outline34.Append(presetDash2); A.Outline outline35 = new A.Outline() { Width = 38100, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center }; A.SolidFill solidFill20 = new A.SolidFill(); A.SchemeColor schemeColor10 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor }; solidFill20.Append(schemeColor10); A.PresetDash presetDash3 = new A.PresetDash() { Val = A.PresetLineDashValues.Solid }; outline35.Append(solidFill20); outline35.Append(presetDash3); lineStyleList1.Append(outline33); lineStyleList1.Append(outline34); lineStyleList1.Append(outline35); A.EffectStyleList effectStyleList1 = new A.EffectStyleList(); A.EffectStyle effectStyle1 = new A.EffectStyle(); A.EffectList effectList1 = new A.EffectList(); A.OuterShadow outerShadow1 = new A.OuterShadow() { BlurRadius = 40000L, Distance = 20000L, Direction = 5400000, RotateWithShape = false }; A.RgbColorModelHex rgbColorModelHex27 = new A.RgbColorModelHex() { Val = "000000" }; A.Alpha alpha1 = new A.Alpha() { Val = 38000 }; rgbColorModelHex27.Append(alpha1); outerShadow1.Append(rgbColorModelHex27); effectList1.Append(outerShadow1); effectStyle1.Append(effectList1); A.EffectStyle effectStyle2 = new A.EffectStyle(); A.EffectList effectList2 = new A.EffectList(); A.OuterShadow outerShadow2 = new A.OuterShadow() { BlurRadius = 40000L, Distance = 23000L, Direction = 5400000, RotateWithShape = false }; A.RgbColorModelHex rgbColorModelHex28 = new A.RgbColorModelHex() { Val = "000000" }; A.Alpha alpha2 = new A.Alpha() { Val = 35000 }; rgbColorModelHex28.Append(alpha2); outerShadow2.Append(rgbColorModelHex28); effectList2.Append(outerShadow2); effectStyle2.Append(effectList2); A.EffectStyle effectStyle3 = new A.EffectStyle(); A.EffectList effectList3 = new A.EffectList(); A.OuterShadow outerShadow3 = new A.OuterShadow() { BlurRadius = 40000L, Distance = 23000L, Direction = 5400000, RotateWithShape = false }; A.RgbColorModelHex rgbColorModelHex29 = new A.RgbColorModelHex() { Val = "000000" }; A.Alpha alpha3 = new A.Alpha() { Val = 35000 }; rgbColorModelHex29.Append(alpha3); outerShadow3.Append(rgbColorModelHex29); effectList3.Append(outerShadow3); A.Scene3DType scene3DType1 = new A.Scene3DType(); A.Camera camera1 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront }; A.Rotation rotation1 = new A.Rotation() { Latitude = 0, Longitude = 0, Revolution = 0 }; camera1.Append(rotation1); A.LightRig lightRig1 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top }; A.Rotation rotation2 = new A.Rotation() { Latitude = 0, Longitude = 0, Revolution = 1200000 }; lightRig1.Append(rotation2); scene3DType1.Append(camera1); scene3DType1.Append(lightRig1); A.Shape3DType shape3DType1 = new A.Shape3DType(); A.BevelTop bevelTop1 = new A.BevelTop() { Width = 63500L, Height = 25400L }; shape3DType1.Append(bevelTop1); effectStyle3.Append(effectList3); effectStyle3.Append(scene3DType1); effectStyle3.Append(shape3DType1); effectStyleList1.Append(effectStyle1); effectStyleList1.Append(effectStyle2); effectStyleList1.Append(effectStyle3); A.BackgroundFillStyleList backgroundFillStyleList1 = new A.BackgroundFillStyleList(); A.SolidFill solidFill21 = new A.SolidFill(); A.SchemeColor schemeColor11 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor }; solidFill21.Append(schemeColor11); A.GradientFill gradientFill3 = new A.GradientFill() { RotateWithShape = true }; A.GradientStopList gradientStopList3 = new A.GradientStopList(); A.GradientStop gradientStop7 = new A.GradientStop() { Position = 0 }; A.SchemeColor schemeColor12 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor }; A.Tint tint4 = new A.Tint() { Val = 40000 }; A.SaturationModulation saturationModulation8 = new A.SaturationModulation() { Val = 350000 }; schemeColor12.Append(tint4); schemeColor12.Append(saturationModulation8); gradientStop7.Append(schemeColor12); A.GradientStop gradientStop8 = new A.GradientStop() { Position = 40000 }; A.SchemeColor schemeColor13 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor }; A.Tint tint5 = new A.Tint() { Val = 45000 }; A.Shade shade5 = new A.Shade() { Val = 99000 }; A.SaturationModulation saturationModulation9 = new A.SaturationModulation() { Val = 350000 }; schemeColor13.Append(tint5); schemeColor13.Append(shade5); schemeColor13.Append(saturationModulation9); gradientStop8.Append(schemeColor13); A.GradientStop gradientStop9 = new A.GradientStop() { Position = 100000 }; A.SchemeColor schemeColor14 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor }; A.Shade shade6 = new A.Shade() { Val = 20000 }; A.SaturationModulation saturationModulation10 = new A.SaturationModulation() { Val = 255000 }; schemeColor14.Append(shade6); schemeColor14.Append(saturationModulation10); gradientStop9.Append(schemeColor14); gradientStopList3.Append(gradientStop7); gradientStopList3.Append(gradientStop8); gradientStopList3.Append(gradientStop9); A.PathGradientFill pathGradientFill1 = new A.PathGradientFill() { Path = A.PathShadeValues.Circle }; A.FillToRectangle fillToRectangle1 = new A.FillToRectangle() { Left = 50000, Top = -80000, Right = 50000, Bottom = 180000 }; pathGradientFill1.Append(fillToRectangle1); gradientFill3.Append(gradientStopList3); gradientFill3.Append(pathGradientFill1); A.GradientFill gradientFill4 = new A.GradientFill() { RotateWithShape = true }; A.GradientStopList gradientStopList4 = new A.GradientStopList(); A.GradientStop gradientStop10 = new A.GradientStop() { Position = 0 }; A.SchemeColor schemeColor15 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor }; A.Tint tint6 = new A.Tint() { Val = 80000 }; A.SaturationModulation saturationModulation11 = new A.SaturationModulation() { Val = 300000 }; schemeColor15.Append(tint6); schemeColor15.Append(saturationModulation11); gradientStop10.Append(schemeColor15); A.GradientStop gradientStop11 = new A.GradientStop() { Position = 100000 }; A.SchemeColor schemeColor16 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor }; A.Shade shade7 = new A.Shade() { Val = 30000 }; A.SaturationModulation saturationModulation12 = new A.SaturationModulation() { Val = 200000 }; schemeColor16.Append(shade7); schemeColor16.Append(saturationModulation12); gradientStop11.Append(schemeColor16); gradientStopList4.Append(gradientStop10); gradientStopList4.Append(gradientStop11); A.PathGradientFill pathGradientFill2 = new A.PathGradientFill() { Path = A.PathShadeValues.Circle }; A.FillToRectangle fillToRectangle2 = new A.FillToRectangle() { Left = 50000, Top = 50000, Right = 50000, Bottom = 50000 }; pathGradientFill2.Append(fillToRectangle2); gradientFill4.Append(gradientStopList4); gradientFill4.Append(pathGradientFill2); backgroundFillStyleList1.Append(solidFill21); backgroundFillStyleList1.Append(gradientFill3); backgroundFillStyleList1.Append(gradientFill4); formatScheme1.Append(fillStyleList1); formatScheme1.Append(lineStyleList1); formatScheme1.Append(effectStyleList1); formatScheme1.Append(backgroundFillStyleList1); themeElements1.Append(colorScheme1); themeElements1.Append(fontScheme20); themeElements1.Append(formatScheme1); A.ObjectDefaults objectDefaults1 = new A.ObjectDefaults(); A.ExtraColorSchemeList extraColorSchemeList1 = new A.ExtraColorSchemeList(); theme1.Append(themeElements1); theme1.Append(objectDefaults1); theme1.Append(extraColorSchemeList1); themePart1.Theme = theme1; } private void SetPackageProperties(OpenXmlPackage document) { document.PackageProperties.Creator = "Dan McFadden"; document.PackageProperties.Created = System.Xml.XmlConvert.ToDateTime("2013-02-28T19:06:49Z", System.Xml.XmlDateTimeSerializationMode.RoundtripKind); document.PackageProperties.Modified = System.Xml.XmlConvert.ToDateTime("2013-03-01T18:18:26Z", System.Xml.XmlDateTimeSerializationMode.RoundtripKind); document.PackageProperties.LastModifiedBy = "Dan McFadden"; document.PackageProperties.LastPrinted = System.Xml.XmlConvert.ToDateTime("2013-02-28T22:32:27Z", System.Xml.XmlDateTimeSerializationMode.RoundtripKind); } #region Binary Data private string spreadsheetPrinterSettingsPart1Data = "XABcAFMARQBBAEwAQgBFAEEAQwBIAEQAQwBcAE0AYQBuAHUAZgBhAGMAdAB1AHIAaQBuAGcAAAAAAAAAAAAAAAEEAAbcABAcQ/+ABwEACQCaCzQIZAABAA8AWAICAAEAWAIDAAEAQQA0ACAAKAAyADEAMAAgAHgAIAAyADkANwAgAG0AbQApAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAEAAAAAgAAAAEAAAD/////AAAAAAAAAAAAAAAAAAAAAERJTlUiAJACzAREF/xqUnAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAkAIAAFNNVEoAAAAAEACAAlgAZQByAG8AeAAgAEMAbwBsAG8AcgBRAHUAYgBlACAAOAA1ADcAMABEAE4AAABSRVNETEwAVW5pcmVzRExMAEdyYXBoaWNzTW9kZQBIUEdMMk1PREUAWHJ4VHJ1ZVR5cGVGb250RGxPcHRpb24AVFRGX0RPV05MT0FEX0FTX1RSVUVUWVBFAFhyeEVkZ2VUb0VkZ2UARURHRV9UT19FREdFX09GRgBDb2xvck1vZGUAMjRicHAAWHJ4SGFsZnRvbmUAWFJYX05PUk1BTF9IVABYRVJPWF9KT0JfU0VUVVBfQkVHSU4AQ0IAWEVST1hfSk9CX1NFVFVQX0VORABDQgBYRVJPWF9ET0NfQkVHSU4AQ0IAWEVST1hfRE9DX1NFVFVQX0VORABDQgBYRVJPWF9QQUdFX1NFVFVQX0JFR0lOAENCAFhFUk9YX1BBR0VfU0VUVVBfRU5EAENCAFhFUk9YX1BBR0VfRklOSVNIX0JFR0lOAENCAFhFUk9YX1BBR0VfRklOSVNIX0VORABDQgBYRVJPWF9ET0NfRklOSVNIX0JFR0lOAENCAFhFUk9YX0RPQ19GSU5JU0hfRU5EAENCAFhFUk9YX0pPQl9GSU5JU0hfQkVHSU4AQ0IAWEVST1hfSk9CX0ZJTklTSF9FTkQAQ0IAUGFwZXJTaXplAEE0AE9yaWVudGF0aW9uAFBPUlRSQUlUAFJlc29sdXRpb24AUmVzNjAweDYwMABDb2xsYXRlAE9OAER1cGxleABOT05FAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEFwAAMU5SWAEAAAAMFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG70gEsHAAEAbggQAAAAAQAHIGAUbAcAAAAATVNDRgAAAABRCAAAAAAAACwAAAAAAAAAAwEBAAEAAAA5MAAAUgAAAAEAAQBKKQAAAAAAAAAAAAAAAAAALy9VbmNvbXByZXNzZWQtRGF0YS8vANJG2jf3B0opQ0vFWmtsVFUQnr0tlIeACCpsa1nZBYq1pdtut60aTR9CwUIqbZQfoCzQANKWR1tFQcVHjIiJmPjEB5KgUbICyhskiooixGgk8RmNGtREDQZjMCGifjNzd3t3927pkrvbc3J65p7HPd+ZmTNnZm+ra2Y0zR3ZmkNI1TVTG6prZjYMdOFhMNHCftw2s8Hw4dmg7M/yURWCziIeYRRps/diVMVKX8l0QOlbmb4F9ECaZZCULDI6tHPmpajuV3ob0+uU/n0UqseUfoDbnxO6n4tKyHhe27PzUL2gdNVlqF5U2sPtLwm+BdyySZsLechh3pLLdSWZW9qvfdfyEp/Jdl0XRvoOad+pXFQfnOe8o9o3JdJ3nfZtYJ4ck3dSodnXn3RsbmTsKkNZNBbVGtCDeEB0uRmRYZv12R15DoMYQI0BMPl1IQsezibjVV3YNxqVCfAsA/xQF3loHKovtL2e+fclaMjd+ErbDjDzvrbQ3yg9h8f+ovQhps8I30dyy1ltzuXhF7qEbmTVuUzpkx5U+S5exmVsdskmovw1N5lnx1Mr5N3m/D1mvdesP9c1No5A9a2+e3Lcu4Pnz8DvHH9jPvaUTZfQLGqhFbSUVpKHalG3oqygG6mL5qHHQ5VUThU4A3U0g4wxMimbplMzVdNUMjxG9FDOFLI1Z+5Io0lI0Z1mc8ZKKqV6zDJuVV5ezDq2VOlVTC+TgUVYrRhD/RRE7acq/C3Byh60leDZL8+VMiZAV6O9Dqgb6SpQEVAFNu/w00QyHtHlDsKqGBuVLmKRvqR0BdObjG4L8J4Re8ze1b7lPO5wXN/75la476jS65j+ROmNTP9mdLP/D6U/5/YBWar5+VnSFhiPaozSdUwXKT1tDKp6pZdz+w6lV/L7dip9dgKqXUr/y/RupV0FvB+lhzJ9OIvZDROZpSZ3j9fcCHDh3F+D/dcXzmr4cdtNP9GW1b/tm3JD0wSxqGsoMIBoA6bwPmpx1F4LYSqk4QHnmesloFaKxKqgOR5qQ55I6U2D6T46Ah4ytnExuMoFlx/4KqO4FGMmcA2hBygPd9wgmNIJFlzToKdNwFATxVcJXBF85Wnn22RaS27IX3gWw6+giadEkDGeCO8ywa/j9Ch9j3vp/YFEFRZc3XyqEIQRPmVKji7aR0uhW79CjvnAVWfiaoCN7ERmG8r42DJ1881PY9OMrB+tFlwnhhB54nAtpBCseSKqQNpREfWnu6kLusXYLrfgagKvQsKvNpR2UB7TXkfwKdZ0Icyhe6gU53EJ5DjWgut6rN1C83HrddJiul1uvgLoWrFoWYRzJWnDNpQeFF79fAFRgQVXrOTKsHZm0xPIZ3AlnIatuNaCq8zEVJ5xRJpyaT81ANMz4NkVpp3YAlx10HwPpNkuMmRfZpkpS3/MzVSaJsuRRweoGfbrT+AqtOCqFSna4wpaLD/fmenANZWO0nbwqxh2tTUG1yJg6aIlQLMYK5eZmEotvCoT7OmxsifpGD3Ibgn41dYDLvUuqiyoStKIihBOfEyjwK828GuiqfeMawZQFZu2wF6eAfE2FWWV4/ZiHL1NX4Jfy2HDJllwTQeCdljWFbBhi5IgKwOaKhNZhcPIxtNH9CxwdUD3l9jwKyi6NUnkmAxb5F4POojtHeQg7iG2+ZUWXNXiYdkhKY+x+ZEbwGmbfwj5L+A6Cb2fa8FlhygY1ab039tHkG+G3u8Cttts5Fguuj9JLJZiLY5qfSB6JxSDb87ybCByfNwRNuMO6tO4Y3BC3BE24w7q07hjSELcEbb40Rp/MIrMxh25yPH3dthW7/kmpwze23kJ97Y9rtqoZDNxb09Gjo/TwmacRn0Yp01FjvcnwhLXhsCnELjWQh3CLzsO6t3uIS/svtPx4/GE+NFejjUix0ydx5PI8X7O+fAr4Hhc60qIa8NxcS31SVzbLyGuDcfEtdRHcW3/hLg2bBvXUobj2pyEuDZsG9dShuPaoQlxLeOaLL80L8Zf6pO4diRyvH9vbye8wh/KmH8/LsG/t8cV6/FT2v378Qn+PePqya+nDPj3bMDi/cLtEj92wZ52AkEbVmyCpt0liDKVjP7yM3orVOyCExM333G84Ah/oRqGwh/BquVAMriQHMz5YtJa6U4ByyzkQ9sZfV22C64J5jVD3CEZVdo7M4p5p2Lm+UUc06kRbckFsNWrRee1g5XLRNXYtM3He5KlHV4tDRg9T/bR0Sucu7xaYsXWjJVUgfxJ5u32akk2LxmX+GvHnh7mJXNL9nq1JJuX7Hre59WSbF55knlvebU0gpMh6El7L9XvoFdL4pHsOQ33aZkiMzqQWWcaxUlRV8A+XeTTUitassDc43xaco71LvVp6f7w2ILZ515xlE9LA3iyEOavU+ZEeJR8/miflkZZqUjqxXJdt8iX+2TJ7dNSLzhbZIUuOQuLepyZ59NSirELTEO0oBdyKPZpsbphvFKoR5QwO14xO3W4Pf5Zfdf6nMGfXjEULWtHpG5ynE6vuFNXD6fTZnfqqu10esqd+rF0Oj3pTt1EO53Wu1M3a06nre7UTY/T6WV36sfc6bTdnbopdTq96U7dLDud3nCnbuKdTrvdqV8XTqfH3am7fk6nve7U3UHHvXiPXKfs1e2cU9B6y/BBrj9cJP/uxGXYBK01oDRLPv84cGLIGeN0tvH3fzx9NpqLrnv63tlrRv/gsrw98r+JQcSXJYiMtPZA4ssg996n/wEC/////wAAKUpDT001AgASAGUAeABjAGUAbAAuAGUAeABlAAQAGABkAGEAbgAuAG0AYwBmAGEAZABkAGUAbgAMAAQAAAAAABQAHAAxADIALgAwAC4ANgA2ADYANQAuADUAMAAwADMAFgAaADEAOQAyAC4AMQA2ADgALgAxAC4AMQA2ADEAFwAEAIxyHk8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"; private string spreadsheetPrinterSettingsPart2Data = "XABcAFMARQBBAEwAQgBFAEEAQwBIAEQAQwBcAE0AYQBuAHUAZgBhAGMAdAB1AHIAaQBuAGcAAAAAAAAAAAAAAAEEAAbcABAcQ/+ABwEACQCaCzQIZAABAA8AWAICAAEAWAIDAAEAQQA0ACAAKAAyADEAMAAgAHgAIAAyADkANwAgAG0AbQApAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAEAAAAAgAAAAEAAAD/////AAAAAAAAAAAAAAAAAAAAAERJTlUiAJACzAREF/xqUnAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAkAIAAFNNVEoAAAAAEACAAlgAZQByAG8AeAAgAEMAbwBsAG8AcgBRAHUAYgBlACAAOAA1ADcAMABEAE4AAABSRVNETEwAVW5pcmVzRExMAEdyYXBoaWNzTW9kZQBIUEdMMk1PREUAWHJ4VHJ1ZVR5cGVGb250RGxPcHRpb24AVFRGX0RPV05MT0FEX0FTX1RSVUVUWVBFAFhyeEVkZ2VUb0VkZ2UARURHRV9UT19FREdFX09GRgBDb2xvck1vZGUAMjRicHAAWHJ4SGFsZnRvbmUAWFJYX05PUk1BTF9IVABYRVJPWF9KT0JfU0VUVVBfQkVHSU4AQ0IAWEVST1hfSk9CX1NFVFVQX0VORABDQgBYRVJPWF9ET0NfQkVHSU4AQ0IAWEVST1hfRE9DX1NFVFVQX0VORABDQgBYRVJPWF9QQUdFX1NFVFVQX0JFR0lOAENCAFhFUk9YX1BBR0VfU0VUVVBfRU5EAENCAFhFUk9YX1BBR0VfRklOSVNIX0JFR0lOAENCAFhFUk9YX1BBR0VfRklOSVNIX0VORABDQgBYRVJPWF9ET0NfRklOSVNIX0JFR0lOAENCAFhFUk9YX0RPQ19GSU5JU0hfRU5EAENCAFhFUk9YX0pPQl9GSU5JU0hfQkVHSU4AQ0IAWEVST1hfSk9CX0ZJTklTSF9FTkQAQ0IAUGFwZXJTaXplAEE0AE9yaWVudGF0aW9uAFBPUlRSQUlUAFJlc29sdXRpb24AUmVzNjAweDYwMABDb2xsYXRlAE9OAER1cGxleABOT05FAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEFwAAMU5SWAEAAAAMFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG70gEsHAAEAbggQAAAAAQAHIGAUbAcAAAAATVNDRgAAAABRCAAAAAAAACwAAAAAAAAAAwEBAAEAAAA5MAAAUgAAAAEAAQBKKQAAAAAAAAAAAAAAAAAALy9VbmNvbXByZXNzZWQtRGF0YS8vANJG2jf3B0opQ0vFWmtsVFUQnr0tlIeACCpsa1nZBYq1pdtut60aTR9CwUIqbZQfoCzQANKWR1tFQcVHjIiJmPjEB5KgUbICyhskiooixGgk8RmNGtREDQZjMCGifjNzd3t3927pkrvbc3J65p7HPd+ZmTNnZm+ra2Y0zR3ZmkNI1TVTG6prZjYMdOFhMNHCftw2s8Hw4dmg7M/yURWCziIeYRRps/diVMVKX8l0QOlbmb4F9ECaZZCULDI6tHPmpajuV3ob0+uU/n0UqseUfoDbnxO6n4tKyHhe27PzUL2gdNVlqF5U2sPtLwm+BdyySZsLechh3pLLdSWZW9qvfdfyEp/Jdl0XRvoOad+pXFQfnOe8o9o3JdJ3nfZtYJ4ck3dSodnXn3RsbmTsKkNZNBbVGtCDeEB0uRmRYZv12R15DoMYQI0BMPl1IQsezibjVV3YNxqVCfAsA/xQF3loHKovtL2e+fclaMjd+ErbDjDzvrbQ3yg9h8f+ovQhps8I30dyy1ltzuXhF7qEbmTVuUzpkx5U+S5exmVsdskmovw1N5lnx1Mr5N3m/D1mvdesP9c1No5A9a2+e3Lcu4Pnz8DvHH9jPvaUTZfQLGqhFbSUVpKHalG3oqygG6mL5qHHQ5VUThU4A3U0g4wxMimbplMzVdNUMjxG9FDOFLI1Z+5Io0lI0Z1mc8ZKKqV6zDJuVV5ezDq2VOlVTC+TgUVYrRhD/RRE7acq/C3Byh60leDZL8+VMiZAV6O9Dqgb6SpQEVAFNu/w00QyHtHlDsKqGBuVLmKRvqR0BdObjG4L8J4Re8ze1b7lPO5wXN/75la476jS65j+ROmNTP9mdLP/D6U/5/YBWar5+VnSFhiPaozSdUwXKT1tDKp6pZdz+w6lV/L7dip9dgKqXUr/y/RupV0FvB+lhzJ9OIvZDROZpSZ3j9fcCHDh3F+D/dcXzmr4cdtNP9GW1b/tm3JD0wSxqGsoMIBoA6bwPmpx1F4LYSqk4QHnmesloFaKxKqgOR5qQ55I6U2D6T46Ah4ytnExuMoFlx/4KqO4FGMmcA2hBygPd9wgmNIJFlzToKdNwFATxVcJXBF85Wnn22RaS27IX3gWw6+giadEkDGeCO8ywa/j9Ch9j3vp/YFEFRZc3XyqEIQRPmVKji7aR0uhW79CjvnAVWfiaoCN7ERmG8r42DJ1881PY9OMrB+tFlwnhhB54nAtpBCseSKqQNpREfWnu6kLusXYLrfgagKvQsKvNpR2UB7TXkfwKdZ0Icyhe6gU53EJ5DjWgut6rN1C83HrddJiul1uvgLoWrFoWYRzJWnDNpQeFF79fAFRgQVXrOTKsHZm0xPIZ3AlnIatuNaCq8zEVJ5xRJpyaT81ANMz4NkVpp3YAlx10HwPpNkuMmRfZpkpS3/MzVSaJsuRRweoGfbrT+AqtOCqFSna4wpaLD/fmenANZWO0nbwqxh2tTUG1yJg6aIlQLMYK5eZmEotvCoT7OmxsifpGD3Ibgn41dYDLvUuqiyoStKIihBOfEyjwK828GuiqfeMawZQFZu2wF6eAfE2FWWV4/ZiHL1NX4Jfy2HDJllwTQeCdljWFbBhi5IgKwOaKhNZhcPIxtNH9CxwdUD3l9jwKyi6NUnkmAxb5F4POojtHeQg7iG2+ZUWXNXiYdkhKY+x+ZEbwGmbfwj5L+A6Cb2fa8FlhygY1ab039tHkG+G3u8Cttts5Fguuj9JLJZiLY5qfSB6JxSDb87ybCByfNwRNuMO6tO4Y3BC3BE24w7q07hjSELcEbb40Rp/MIrMxh25yPH3dthW7/kmpwze23kJ97Y9rtqoZDNxb09Gjo/TwmacRn0Yp01FjvcnwhLXhsCnELjWQh3CLzsO6t3uIS/svtPx4/GE+NFejjUix0ydx5PI8X7O+fAr4Hhc60qIa8NxcS31SVzbLyGuDcfEtdRHcW3/hLg2bBvXUobj2pyEuDZsG9dShuPaoQlxLeOaLL80L8Zf6pO4diRyvH9vbye8wh/KmH8/LsG/t8cV6/FT2v378Qn+PePqya+nDPj3bMDi/cLtEj92wZ52AkEbVmyCpt0liDKVjP7yM3orVOyCExM333G84Ah/oRqGwh/BquVAMriQHMz5YtJa6U4ByyzkQ9sZfV22C64J5jVD3CEZVdo7M4p5p2Lm+UUc06kRbckFsNWrRee1g5XLRNXYtM3He5KlHV4tDRg9T/bR0Sucu7xaYsXWjJVUgfxJ5u32akk2LxmX+GvHnh7mJXNL9nq1JJuX7Hre59WSbF55knlvebU0gpMh6El7L9XvoFdL4pHsOQ33aZkiMzqQWWcaxUlRV8A+XeTTUitassDc43xaco71LvVp6f7w2ILZ515xlE9LA3iyEOavU+ZEeJR8/miflkZZqUjqxXJdt8iX+2TJ7dNSLzhbZIUuOQuLepyZ59NSirELTEO0oBdyKPZpsbphvFKoR5QwO14xO3W4Pf5Zfdf6nMGfXjEULWtHpG5ynE6vuFNXD6fTZnfqqu10esqd+rF0Oj3pTt1EO53Wu1M3a06nre7UTY/T6WV36sfc6bTdnbopdTq96U7dLDud3nCnbuKdTrvdqV8XTqfH3am7fk6nve7U3UHHvXiPXKfs1e2cU9B6y/BBrj9cJP/uxGXYBK01oDRLPv84cGLIGeN0tvH3fzx9NpqLrnv63tlrRv/gsrw98r+JQcSXJYiMtPZA4ssg996n/wEC/////wAAKUpDT001AgASAGUAeABjAGUAbAAuAGUAeABlAAQAGABkAGEAbgAuAG0AYwBmAGEAZABkAGUAbgAMAAQAAAAAABQAHAAxADIALgAwAC4ANgA2ADYANQAuADUAMAAwADMAFgAaADEAOQAyAC4AMQA2ADgALgAxAC4AMQA2ADEAFwAEAIxyHk8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"; private System.IO.Stream GetBinaryDataStream(string base64String) { return new System.IO.MemoryStream(System.Convert.FromBase64String(base64String)); } #endregion } }