Ejemplo n.º 1
0
        public static a.Outline SetSolidFill(this a.Outline outline, sysDr.Color?fillColor = null, float alpha = 1f)
        {
            var solidFill = outline.GetFirstChild <a.SolidFill>();

            if (!fillColor.HasValue && solidFill != null)
            {
                return(outline);
            }
            if (solidFill == null)
            {
                solidFill = new a.SolidFill();
                outline.Append(solidFill);
            }
            solidFill.RemoveAllChildren();
            var _c            = fillColor ?? sysDr.Color.Black;
            var fillColorElem = new a.RgbColorModelHex()
            {
                Val = _c.ToHex()
            };

            solidFill.Append(fillColorElem);
            var alphaElem = new a.Alpha()
            {
                Val = (int)(alpha * 100000)
            };

            fillColorElem.Append(alphaElem);

            return(outline);
        }
Ejemplo n.º 2
0
        public static xdr.ShapeProperties SetSolidFill(this xdr.ShapeProperties shapeProperties, sysDr.Color fillColor, float alpha = 1f)
        {
            if (shapeProperties == null)
            {
                return(null);
            }
            shapeProperties.RemoveAllChildren <a.NoFill>();
            shapeProperties.RemoveAllChildren <a.GradientFill>();
            shapeProperties.RemoveAllChildren <a.BlipFill>();
            shapeProperties.RemoveAllChildren <a.GroupFill>();
            shapeProperties.RemoveAllChildren <a.SolidFill>();
            var solidFill = new a.SolidFill();

            shapeProperties.Insert(solidFill).AfterOneOf(typeof(a.PresetGeometry));
            var fillColorModel = new a.RgbColorModelHex();

            fillColorModel.Val = fillColor.ToHex();
            solidFill.Append(fillColorModel);
            var colorAlpha = new a.Alpha()
            {
                Val = (int)(alpha * 100000)
            };                                                              // FillAlpha - def = val / 1000

            fillColorModel.Append(colorAlpha);
            return(shapeProperties);
        }
Ejemplo n.º 3
0
        FromCompositeElement(
            OpenXmlCompositeElement compositeElement)     // TODO: set annotation that about it cannot be NULL
        {
            // Get <a:lvlXpPr> elements, eg. <a:lvl1pPr>, <a:lvl2pPr>
            IEnumerable <OpenXmlElement> lvlParagraphPropertyList = compositeElement.Elements()
                                                                    .Where(e => e.LocalName.StartsWith("lvl", StringComparison.Ordinal));

            var lvlToFontData = new Dictionary <int, FontData>();

            foreach (OpenXmlElement textPr in lvlParagraphPropertyList)
            {
                A.DefaultRunProperties aDefRPr = textPr.GetFirstChild <A.DefaultRunProperties>();

                Int32Value         fontSize          = aDefRPr?.FontSize;
                BooleanValue       isBold            = aDefRPr?.Bold;
                BooleanValue       isItalic          = aDefRPr?.Italic;
                A.LatinFont        aLatinFont        = aDefRPr?.GetFirstChild <A.LatinFont>();
                A.RgbColorModelHex aRgbColorModelHex = aDefRPr?.GetFirstChild <A.SolidFill>()?.RgbColorModelHex;
                A.SchemeColor      aSchemeColor      = aDefRPr?.GetFirstChild <A.SolidFill>()?.SchemeColor;

#if NETSTANDARD2_0
                var lvl = int.Parse(textPr.LocalName[3].ToString(System.Globalization.CultureInfo.CurrentCulture), System.Globalization.CultureInfo.CurrentCulture);
#else
                // fourth character of LocalName contains level number, example: "lvl1pPr -> 1, lvl2pPr -> 2, etc."
                ReadOnlySpan <char> localNameAsSpan = textPr.LocalName.AsSpan();
                int lvl = int.Parse(localNameAsSpan.Slice(3, 1));
#endif
                lvlToFontData.Add(lvl, new FontData(fontSize, aLatinFont, isBold, isItalic, aRgbColorModelHex, aSchemeColor));
            }

            return(lvlToFontData);
        }
Ejemplo n.º 4
0
        public static Fill FromXmlSolidFill(A.RgbColorModelHex rgbColorModelHex)
        {
            var   hexColor    = rgbColorModelHex.Val.ToString();
            var   hexColorInt = int.Parse(hexColor, NumberStyles.HexNumber);
            Color clr         = Color.FromArgb(hexColorInt);

            return(new Fill(clr));
        }
Ejemplo n.º 5
0
        public static ShapeFill FromXmlSolidFill(A.RgbColorModelHex rgbColorModelHex)
        {
            var   hexColor    = rgbColorModelHex.Val.ToString();
            var   hexColorInt = int.Parse(hexColor, NumberStyles.HexNumber, CultureInfo.CurrentCulture);
            Color clr         = Color.FromArgb(hexColorInt);

            return(new ShapeFill(clr));
        }
Ejemplo n.º 6
0
        /// <summary>
        /// Editing PresentationExtensionList element.
        /// </summary>
        /// <param name="filePath">Tartget file path</param>
        /// <param name="log">Logger</param>
        public void EditElement(string filePath, VerifiableLog log)
        {
            using (PresentationDocument package = PresentationDocument.Open(filePath, true))
            {
                PresentationExtensionList presentationExtensionList = package.PresentationPart.RootElement.Descendants <PresentationExtensionList>().Single();
                PresentationExtension     PresentationExtension1    = package.PresentationPart.RootElement.Descendants <PresentationExtension>().Where(e => e.Uri == this.SldExtUri).Single();
                P15.ExtendedGuideList     extendedGuideList1        = PresentationExtension1.Descendants <P15.SlideGuideList>().Single();

                //Editing Guide(1) element
                P15.ExtendedGuide extendedGuide1 = extendedGuideList1.Descendants <P15.ExtendedGuide>().Where(e => e.Id == this.Id1).Single();
                extendedGuide1.Position    = this.position1;
                extendedGuide1.Orientation = this.directionValues1;

                A.RgbColorModelHex rgbColorModelHex1 = extendedGuide1.Descendants <A.RgbColorModelHex>().First();
                rgbColorModelHex1.Val.Value = this.Color1;

                //Editing Guide(2) element
                P15.ExtendedGuide extendedGuide2 = extendedGuideList1.Descendants <P15.ExtendedGuide>().Where(e => e.Id == this.Id2).Single();
                extendedGuide2.Position    = this.position2;
                extendedGuide2.Orientation = this.directionValues2;

                A.RgbColorModelHex rgbColorModelHex2 = extendedGuide2.Descendants <A.RgbColorModelHex>().First();
                rgbColorModelHex2.Val.Value = this.Color2;

                log.Pass("Edited the ExtendedGuideList element.");

                PresentationExtension PresentationExtension2 = package.PresentationPart.RootElement.Descendants <PresentationExtension>().Where(e => e.Uri == this.NotesExtUri).Single();

                P15.NotesGuideList notesGuideList = PresentationExtension2.Descendants <P15.NotesGuideList>().Single();

                //Editing Guide(NotesGuide_1) element
                P15.ExtendedGuide extendedGuide3 = notesGuideList.Descendants <P15.ExtendedGuide>().Where(e => e.Id == this.Id1).Single();
                extendedGuide3.Position    = this.position3;
                extendedGuide3.Orientation = this.directionValues2;

                A.RgbColorModelHex rgbColorModelHex3 = extendedGuide3.Descendants <A.RgbColorModelHex>().First();
                rgbColorModelHex3.Val.Value = this.Color3;

                //Editing Guide(NotesGuide_2) element
                P15.ExtendedGuide extendedGuide4 = notesGuideList.Descendants <P15.ExtendedGuide>().Where(e => e.Id == this.Id2).Single();
                extendedGuide4.Position    = this.position4;
                extendedGuide4.Orientation = this.directionValues1;

                A.RgbColorModelHex rgbColorModelHex4 = extendedGuide4.Descendants <A.RgbColorModelHex>().First();
                rgbColorModelHex4.Val.Value = this.Color4;

                log.Pass("Edited the NotesGuideList element.");
            }
        }
Ejemplo n.º 7
0
 public FontData(
     Int32Value fontSize,
     A.LatinFont aLatinFont,
     BooleanValue isBold,
     BooleanValue isItalic,
     A.RgbColorModelHex aRgbColorModelHex,
     A.SchemeColor aSchemeColor) : this(fontSize)
 {
     FontSize          = fontSize;
     ALatinFont        = aLatinFont;
     IsBold            = isBold;
     IsItalic          = isItalic;
     ASchemeColor      = aSchemeColor;
     ARgbColorModelHex = aRgbColorModelHex;
 }
Ejemplo n.º 8
0
        /// <summary>
        /// Verifying PresentationExtensionList element.
        /// </summary>
        /// <param name="filePath">Tartget file path</param>
        /// <param name="log">Logger</param>
        public void VerifyElement(string filePath, VerifiableLog log)
        {
            using (PresentationDocument package = PresentationDocument.Open(filePath, false))
            {
                //Verify ExtendedGuideList
                PresentationExtensionList presentationExtensionList = package.PresentationPart.RootElement.Descendants <PresentationExtensionList>().Single();
                PresentationExtension     PresentationExtension1    = package.PresentationPart.RootElement.Descendants <PresentationExtension>().Where(e => e.Uri == this.SldExtUri).Single();
                P15.ExtendedGuideList     extendedGuideList1        = PresentationExtension1.Descendants <P15.SlideGuideList>().Single();

                //Verifying Guide(1) element
                P15.ExtendedGuide extendedGuide1 = extendedGuideList1.Descendants <P15.ExtendedGuide>().Where(e => e.Id == this.Id1).Single();

                log.Verify(extendedGuide1.Position == this.position1, "An incorrect value, Position value of ExtendedGuide. Id=[{0}].", extendedGuide1.Id);
                log.Verify(extendedGuide1.Orientation == this.directionValues1, "An incorrect value, Orientation value of ExtendedGuide. Id=[{0}].", extendedGuide1.Id);
                A.RgbColorModelHex rgbColorModelHex1 = extendedGuide1.Descendants <A.RgbColorModelHex>().First();
                log.Verify(rgbColorModelHex1.Val.Value == this.Color1, "An incorrect value, RgbColorModelHex value. Guide Id=[{0}].", extendedGuide1.Id);

                //Verifying Guide(2) element
                P15.ExtendedGuide extendedGuide2 = extendedGuideList1.Descendants <P15.ExtendedGuide>().Where(e => e.Id == this.Id2).Single();

                log.Verify(extendedGuide2.Position == this.position2, "An incorrect value, Position value of ExtendedGuide. Id=[{0}].", extendedGuide1.Id);
                log.Verify(extendedGuide2.Orientation == this.directionValues2, "An incorrect value, Orientation value of ExtendedGuide. Id=[{0}].", extendedGuide1.Id);
                A.RgbColorModelHex rgbColorModelHex2 = extendedGuide2.Descendants <A.RgbColorModelHex>().First();
                log.Verify(rgbColorModelHex2.Val.Value == this.Color2, "An incorrect value, RgbColorModelHex value. Guide Id=[{0}].", extendedGuide1.Id);

                //Verify NotesGuideList
                PresentationExtension PresentationExtension2 = package.PresentationPart.RootElement.Descendants <PresentationExtension>().Where(e => e.Uri == this.NotesExtUri).Single();
                P15.NotesGuideList    notesGuideList         = PresentationExtension2.Descendants <P15.NotesGuideList>().Single();

                //Verifying Guide(1) element
                P15.ExtendedGuide extendedGuide3 = notesGuideList.Descendants <P15.ExtendedGuide>().Where(e => e.Id == this.Id1).Single();

                log.Verify(extendedGuide3.Position == this.position3, "An incorrect value, Position value of ExtendedGuide. Id=[{0}].", extendedGuide1.Id);
                log.Verify(extendedGuide3.Orientation == this.directionValues2, "An incorrect value, Orientation value of ExtendedGuide. Id=[{0}].", extendedGuide1.Id);
                A.RgbColorModelHex rgbColorModelHex3 = extendedGuide3.Descendants <A.RgbColorModelHex>().First();
                log.Verify(rgbColorModelHex3.Val.Value == this.Color3, "An incorrect value, RgbColorModelHex value. Guide Id=[{0}].", extendedGuide1.Id);

                //Verifying Guide(2) element
                P15.ExtendedGuide extendedGuide4 = notesGuideList.Descendants <P15.ExtendedGuide>().Where(e => e.Id == this.Id2).Single();

                log.Verify(extendedGuide4.Position == this.position4, "An incorrect value, Position value of ExtendedGuide. Id=[{0}].", extendedGuide1.Id);
                log.Verify(extendedGuide4.Orientation == this.directionValues1, "An incorrect value, Orientation value of ExtendedGuide. Id=[{0}].", extendedGuide1.Id);
                A.RgbColorModelHex rgbColorModelHex4 = extendedGuide4.Descendants <A.RgbColorModelHex>().First();
                log.Verify(rgbColorModelHex4.Val.Value == this.Color4, "An incorrect value, RgbColorModelHex value. Guide Id=[{0}].", extendedGuide1.Id);
            }
        }
Ejemplo n.º 9
0
        internal A.RgbColorModelHex ToRgbColorModelHex()
        {
            A.RgbColorModelHex rgb = new A.RgbColorModelHex();
            rgb.Val = string.Format("{0}{1}{2}", this.RgbColor.R.ToString("X2"), this.RgbColor.G.ToString("X2"), this.RgbColor.B.ToString("X2"));

            decimal decTint = this.Tint;

            // we don't have to do anything extra if the tint's zero.
            if (decTint < 0.0m)
            {
                decTint += 1.0m;
                decTint *= 100000m;
                rgb.Append(new A.LuminanceModulation()
                {
                    Val = Convert.ToInt32(decTint)
                });
            }
            else if (decTint > 0.0m)
            {
                decTint *= 100000m;
                decTint  = decimal.Floor(decTint);
                rgb.Append(new A.LuminanceModulation()
                {
                    Val = Convert.ToInt32(100000m - decTint)
                });
                rgb.Append(new A.LuminanceOffset()
                {
                    Val = Convert.ToInt32(decTint)
                });
            }

            int iAlpha = SLA.SLDrawingTool.CalculateAlpha(Transparency);

            // if >= 100000, then transparency was 0 (or negative),
            // then we don't have to append the Alpha class
            if (iAlpha < 100000)
            {
                rgb.Append(new A.Alpha()
                {
                    Val = iAlpha
                });
            }

            return(rgb);
        }
        /// <summary>
        /// Sets the color of the series using a solidcolor brush
        /// If a null brush is supplied any color is removed so the color will be automatic
        /// </summary>
        /// <param name="shape">The <see cref="DrawingSpreadsheet.Shape"/> to be updated</param>
        /// <param name="colour">The <see cref="System.Drawing.Color">colour</see> to be used as the shape fill colour</param>
        private static void UpdateShapeFillColour(DrawingSpreadsheet.Shape shape, System.Windows.Media.Color colour)
        {
            if (shape == null)
            {
                throw new ArgumentNullException("shape");
            }

            // Get the ShapeProperties
            DrawingSpreadsheet.ShapeProperties shapeProperties = shape.ShapeProperties;
            if (shapeProperties != null)
            {
                // Try and find a SolidFill, and remove it.
                Drawing.SolidFill solidFill = shapeProperties.Elements <Drawing.SolidFill>().FirstOrDefault();
                if (solidFill != null)
                {
                    solidFill.Remove();
                }

                var newSolidFill = new Drawing.SolidFill();

                StringBuilder hexString = new StringBuilder();
                hexString.Append(colour.R.ToString("X").PadLeft(2, '0'));
                hexString.Append(colour.G.ToString("X").PadLeft(2, '0'));
                hexString.Append(colour.B.ToString("X").PadLeft(2, '0'));

                var hexColour = new Drawing.RgbColorModelHex()
                {
                    Val = hexString.ToString()
                };

                //var outlineNoFill = new Drawing.Outline();
                //outlineNoFill.Append(new Drawing.NoFill());

                newSolidFill.Append(hexColour);

                // Append the SolidFill after the PresetGeometry (preset grometry being the geometry behind the shape)
                Drawing.PresetGeometry presetGeometry = shapeProperties.Elements <Drawing.PresetGeometry>().FirstOrDefault();
                presetGeometry.InsertAfterSelf(newSolidFill);
            }

            //shape.Append(shapeProperties);
        }
Ejemplo n.º 11
0
        private void DrawDashedLine(Wpg.WordprocessingGroup wordprocessingGroup, Rect cmlExtents, Point bondStart, Point bondEnd, string colour = "000000")
        {
            UInt32Value id           = UInt32Value.FromUInt32((uint)m_ooxmlId++);
            string      bondLineName = "DashedBondLine" + id;

            Int64Value width  = OoXmlHelper.ScaleCmlToEmu(cmlExtents.Width);
            Int64Value height = OoXmlHelper.ScaleCmlToEmu(cmlExtents.Height);
            Int64Value top    = OoXmlHelper.ScaleCmlToEmu(cmlExtents.Top);
            Int64Value left   = OoXmlHelper.ScaleCmlToEmu(cmlExtents.Left);

            Wps.WordprocessingShape        shape = new Wps.WordprocessingShape();
            Wps.NonVisualDrawingProperties nonVisualDrawingProperties = new Wps.NonVisualDrawingProperties()
            {
                Id = id, Name = bondLineName
            };
            Wps.NonVisualDrawingShapeProperties nonVisualDrawingShapeProperties = new Wps.NonVisualDrawingShapeProperties();

            Wps.ShapeProperties shapeProperties = new Wps.ShapeProperties();

            A.Transform2D transform2D = new A.Transform2D();
            A.Offset      offset      = new A.Offset {
                X = left, Y = top
            };
            A.Extents extents = new A.Extents {
                Cx = width, Cy = height
            };

            transform2D.Append(offset);
            transform2D.Append(extents);

            A.CustomGeometry  customGeometry  = new A.CustomGeometry();
            A.AdjustValueList adjustValueList = new A.AdjustValueList();
            A.Rectangle       rectangle       = new A.Rectangle {
                Left = "l", Top = "t", Right = "r", Bottom = "b"
            };

            A.PathList pathList = new A.PathList();

            A.Path path = new A.Path {
                Width = width, Height = height
            };

            A.MoveTo moveTo = new A.MoveTo();
            A.Point  point1 = new A.Point {
                X = OoXmlHelper.ScaleCmlToEmu(bondStart.X).ToString(), Y = OoXmlHelper.ScaleCmlToEmu(bondStart.Y).ToString()
            };

            moveTo.Append(point1);

            A.LineTo lineTo = new A.LineTo();
            A.Point  point2 = new A.Point {
                X = OoXmlHelper.ScaleCmlToEmu(bondEnd.X).ToString(), Y = OoXmlHelper.ScaleCmlToEmu(bondEnd.Y).ToString()
            };

            lineTo.Append(point2);

            path.Append(moveTo);
            path.Append(lineTo);

            pathList.Append(path);

            customGeometry.Append(adjustValueList);
            customGeometry.Append(rectangle);
            customGeometry.Append(pathList);

            A.Outline outline = new A.Outline {
                Width = OoXmlHelper.ACS_LINE_WIDTH_EMUS, CapType = A.LineCapValues.Round
            };

            A.SolidFill  solidFill  = new A.SolidFill();
            A.PresetDash presetDash = new A.PresetDash()
            {
                Val = A.PresetLineDashValues.SystemDash
            };

            A.RgbColorModelHex rgbColorModelHex = new A.RgbColorModelHex {
                Val = colour
            };
            solidFill.Append(rgbColorModelHex);

            outline.Append(solidFill);
            outline.Append(presetDash);

            shapeProperties.Append(transform2D);
            shapeProperties.Append(customGeometry);
            shapeProperties.Append(outline);

            OoXmlHelper.AppendShapeStyle(shape, nonVisualDrawingProperties, nonVisualDrawingShapeProperties, shapeProperties);
            wordprocessingGroup.Append(shape);
        }
Ejemplo n.º 12
0
        private void DrawDashedLine(Wpg.WordprocessingGroup wordprocessingGroup1, Rect extents, Point bondStart, Point bondEnd)
        {
            UInt32Value bondLineId   = UInt32Value.FromUInt32((uint)m_ooxmlId++);
            string      bondLineName = "DashedBondLine" + bondLineId;

            Int64Value width  = OoXmlHelper.ScaleCmlToEmu(extents.Width);
            Int64Value height = OoXmlHelper.ScaleCmlToEmu(extents.Height);
            Int64Value top    = OoXmlHelper.ScaleCmlToEmu(extents.Top);
            Int64Value left   = OoXmlHelper.ScaleCmlToEmu(extents.Left);

            Wps.WordprocessingShape        wordprocessingShape1        = new Wps.WordprocessingShape();
            Wps.NonVisualDrawingProperties nonVisualDrawingProperties1 = new Wps.NonVisualDrawingProperties()
            {
                Id = bondLineId, Name = bondLineName
            };
            Wps.NonVisualDrawingShapeProperties nonVisualDrawingShapeProperties1 = new Wps.NonVisualDrawingShapeProperties();

            Wps.ShapeProperties shapeProperties1 = new Wps.ShapeProperties();

            A.Transform2D transform2D1 = new A.Transform2D();
            A.Offset      offset2      = new A.Offset()
            {
                X = left, Y = top
            };
            A.Extents extents2 = new A.Extents()
            {
                Cx = width, Cy = height
            };

            transform2D1.Append(offset2);
            transform2D1.Append(extents2);

            A.CustomGeometry  customGeometry1  = new A.CustomGeometry();
            A.AdjustValueList adjustValueList1 = new A.AdjustValueList();
            A.Rectangle       rectangle1       = new A.Rectangle()
            {
                Left = "l", Top = "t", Right = "r", Bottom = "b"
            };

            A.PathList pathList1 = new A.PathList();

            A.Path path1 = new A.Path()
            {
                Width = width, Height = height
            };

            A.MoveTo moveTo1 = new A.MoveTo();
            A.Point  point1  = new A.Point()
            {
                X = OoXmlHelper.ScaleCmlToEmu(bondStart.X).ToString(), Y = OoXmlHelper.ScaleCmlToEmu(bondStart.Y).ToString()
            };

            moveTo1.Append(point1);

            A.LineTo lineTo1 = new A.LineTo();
            A.Point  point2  = new A.Point()
            {
                X = OoXmlHelper.ScaleCmlToEmu(bondEnd.X).ToString(), Y = OoXmlHelper.ScaleCmlToEmu(bondEnd.Y).ToString()
            };

            lineTo1.Append(point2);

            path1.Append(moveTo1);
            path1.Append(lineTo1);

            pathList1.Append(path1);

            customGeometry1.Append(adjustValueList1);
            customGeometry1.Append(rectangle1);
            customGeometry1.Append(pathList1);

            A.Outline outline1 = new A.Outline()
            {
                Width = 9525, CapType = A.LineCapValues.Round
            };

            A.SolidFill  solidFill1  = new A.SolidFill();
            A.PresetDash presetDash1 = new A.PresetDash()
            {
                Val = A.PresetLineDashValues.LargeDash
            };

            A.RgbColorModelHex rgbColorModelHex1 = new A.RgbColorModelHex()
            {
                Val = "000000"
            };
            A.Alpha alpha1 = new A.Alpha()
            {
                Val = new Int32Value()
                {
                    InnerText = "100%"
                }
            };

            rgbColorModelHex1.Append(alpha1);

            solidFill1.Append(rgbColorModelHex1);

            outline1.Append(solidFill1);
            outline1.Append(presetDash1);

            shapeProperties1.Append(transform2D1);
            shapeProperties1.Append(customGeometry1);
            shapeProperties1.Append(outline1);

            Wps.ShapeStyle  shapeStyle1    = new Wps.ShapeStyle();
            A.LineReference lineReference1 = new A.LineReference()
            {
                Index = (UInt32Value)0U
            };
            A.FillReference fillReference1 = new A.FillReference()
            {
                Index = (UInt32Value)0U
            };
            A.EffectReference effectReference1 = new A.EffectReference()
            {
                Index = (UInt32Value)0U
            };
            A.FontReference fontReference1 = new A.FontReference()
            {
                Index = A.FontCollectionIndexValues.Minor
            };

            shapeStyle1.Append(lineReference1);
            shapeStyle1.Append(fillReference1);
            shapeStyle1.Append(effectReference1);
            shapeStyle1.Append(fontReference1);
            Wps.TextBodyProperties textBodyProperties1 = new Wps.TextBodyProperties();

            wordprocessingShape1.Append(nonVisualDrawingProperties1);
            wordprocessingShape1.Append(nonVisualDrawingShapeProperties1);
            wordprocessingShape1.Append(shapeProperties1);
            wordprocessingShape1.Append(shapeStyle1);
            wordprocessingShape1.Append(textBodyProperties1);

            wordprocessingGroup1.Append(wordprocessingShape1);
        }
Ejemplo n.º 13
0
        private void DrawWavyLine(Wpg.WordprocessingGroup wordprocessingGroup, Rect cmlExtents, Point bondStart, Point bondEnd)
        {
            UInt32Value id           = UInt32Value.FromUInt32((uint)m_ooxmlId++);
            string      bondLineName = "WavyLine" + id;

            Vector bondVector  = bondEnd - bondStart;
            int    noOfWiggles = (int)Math.Ceiling(bondVector.Length / BondOffset());

            if (noOfWiggles < 1)
            {
                noOfWiggles = 1;
            }

            double wiggleLength = bondVector.Length / noOfWiggles;

            Vector originalWigglePortion = bondVector;

            originalWigglePortion.Normalize();
            originalWigglePortion *= wiggleLength / 2;

            Matrix toLeft = new Matrix();

            toLeft.Rotate(-60);
            Matrix toRight = new Matrix();

            toRight.Rotate(60);
            Vector leftVector  = originalWigglePortion * toLeft;
            Vector rightVector = originalWigglePortion * toRight;

            List <Point>         allpoints    = new List <Point>();
            List <List <Point> > allTriangles = new List <List <Point> >();
            List <Point>         triangle     = new List <Point>();

            Point lastPoint = bondStart;

            allpoints.Add(lastPoint);
            triangle.Add(lastPoint);
            for (int i = 0; i < noOfWiggles; i++)
            {
                Point leftPoint = lastPoint + leftVector;
                allpoints.Add(leftPoint);
                triangle.Add(leftPoint);

                Point midPoint = lastPoint + originalWigglePortion;
                allpoints.Add(midPoint);
                triangle.Add(midPoint);
                allTriangles.Add(triangle);
                triangle = new List <Point>();
                triangle.Add(midPoint);

                Point rightPoint = lastPoint + originalWigglePortion + rightVector;
                allpoints.Add(rightPoint);
                triangle.Add(rightPoint);

                lastPoint += originalWigglePortion * 2;
                allpoints.Add(lastPoint);
                triangle.Add(lastPoint);
                allTriangles.Add(triangle);
                triangle = new List <Point>();
                triangle.Add(lastPoint);
            }

            double minX = double.MaxValue;
            double maxX = double.MinValue;
            double minY = double.MaxValue;
            double maxY = double.MinValue;

            foreach (Point p in allpoints)
            {
                maxX = Math.Max(p.X + cmlExtents.Left, maxX);
                minX = Math.Min(p.X + cmlExtents.Left, minX);
                maxY = Math.Max(p.Y + cmlExtents.Top, maxY);
                minY = Math.Min(p.Y + cmlExtents.Top, minY);
            }

            Rect   newExtents = new Rect(minX, minY, maxX - minX, maxY - minY);
            double xOffset    = cmlExtents.Left - newExtents.Left;
            double yOffset    = cmlExtents.Top - newExtents.Top;

            Int64Value width  = OoXmlHelper.ScaleCmlToEmu(newExtents.Width);
            Int64Value height = OoXmlHelper.ScaleCmlToEmu(newExtents.Height);
            Int64Value top    = OoXmlHelper.ScaleCmlToEmu(newExtents.Top);
            Int64Value left   = OoXmlHelper.ScaleCmlToEmu(newExtents.Left);

            Wps.WordprocessingShape        shape = new Wps.WordprocessingShape();
            Wps.NonVisualDrawingProperties nonVisualDrawingProperties = new Wps.NonVisualDrawingProperties()
            {
                Id = id, Name = bondLineName
            };
            Wps.NonVisualDrawingShapeProperties nonVisualDrawingShapeProperties = new Wps.NonVisualDrawingShapeProperties();

            Wps.ShapeProperties shapeProperties = new Wps.ShapeProperties();

            A.Transform2D transform2D = new A.Transform2D();
            A.Offset      offset      = new A.Offset {
                X = left, Y = top
            };
            A.Extents extents = new A.Extents {
                Cx = width, Cy = height
            };

            transform2D.Append(offset);
            transform2D.Append(extents);

            A.CustomGeometry  customGeometry  = new A.CustomGeometry();
            A.AdjustValueList adjustValueList = new A.AdjustValueList();
            A.Rectangle       rectangle       = new A.Rectangle {
                Left = "l", Top = "t", Right = "r", Bottom = "b"
            };

            A.PathList pathList = new A.PathList();

            A.Path path = new A.Path {
                Width = width, Height = height
            };

            A.MoveTo moveTo = new A.MoveTo();
            A.Point  point1 = new A.Point {
                X = OoXmlHelper.ScaleCmlToEmu(bondStart.X + xOffset).ToString(), Y = OoXmlHelper.ScaleCmlToEmu(bondStart.Y + yOffset).ToString()
            };
            moveTo.Append(point1);
            path.Append(moveTo);

            // Render as Curves
            foreach (var tri in allTriangles)
            {
                A.CubicBezierCurveTo cubicBezierCurveTo = new A.CubicBezierCurveTo();
                foreach (var p in tri)
                {
                    A.Point point = new A.Point {
                        X = OoXmlHelper.ScaleCmlToEmu(p.X + xOffset).ToString(), Y = OoXmlHelper.ScaleCmlToEmu(p.Y + yOffset).ToString()
                    };
                    cubicBezierCurveTo.Append(point);
                }
                path.Append(cubicBezierCurveTo);
            }

            // Render as Straight Lines
            //foreach (var p in allpoints)
            //{
            //    A.LineTo lineTo = new A.LineTo();
            //    A.Point point = new A.Point { X = OoXmlHelper.ScaleCmlToEmu(p.X + xOffset).ToString(), Y = OoXmlHelper.ScaleCmlToEmu(p.Y + yOffset).ToString() };
            //    lineTo.Append(point);
            //    path1.Append(lineTo);
            //}

            pathList.Append(path);

            customGeometry.Append(adjustValueList);
            customGeometry.Append(rectangle);
            customGeometry.Append(pathList);

            A.Outline outline = new A.Outline {
                Width = OoXmlHelper.ACS_LINE_WIDTH_EMUS, CapType = A.LineCapValues.Round
            };

            A.SolidFill solidFill = new A.SolidFill();

            A.RgbColorModelHex rgbColorModelHex = new A.RgbColorModelHex {
                Val = "000000"
            };
            solidFill.Append(rgbColorModelHex);

            outline.Append(solidFill);

            shapeProperties.Append(transform2D);
            shapeProperties.Append(customGeometry);
            shapeProperties.Append(outline);

            OoXmlHelper.AppendShapeStyle(shape, nonVisualDrawingProperties, nonVisualDrawingShapeProperties, shapeProperties);
            wordprocessingGroup.Append(shape);
        }
Ejemplo n.º 14
0
        internal A.RgbColorModelHex ToRgbColorModelHex()
        {
            A.RgbColorModelHex rgb = new A.RgbColorModelHex();
            rgb.Val = string.Format("{0}{1}{2}", this.RgbColor.R.ToString("X2"), this.RgbColor.G.ToString("X2"), this.RgbColor.B.ToString("X2"));

            decimal decTint = this.Tint;

            // we don't have to do anything extra if the tint's zero.
            if (decTint < 0.0m)
            {
                decTint += 1.0m;
                decTint *= 100000m;
                rgb.Append(new A.LuminanceModulation() { Val = Convert.ToInt32(decTint) });
            }
            else if (decTint > 0.0m)
            {
                decTint *= 100000m;
                decTint = decimal.Floor(decTint);
                rgb.Append(new A.LuminanceModulation() { Val = Convert.ToInt32(100000m - decTint) });
                rgb.Append(new A.LuminanceOffset() { Val = Convert.ToInt32(decTint) });
            }

            int iAlpha = SLA.SLDrawingTool.CalculateAlpha(Transparency);
            // if >= 100000, then transparency was 0 (or negative),
            // then we don't have to append the Alpha class
            if (iAlpha < 100000)
            {
                rgb.Append(new A.Alpha() { Val = iAlpha });
            }

            return rgb;
        }
Ejemplo n.º 15
0
        // Generates content of themePart1.
        private void GenerateThemePart1Content(ThemePart themePart1)
        {
            A.Theme theme1 = new A.Theme(){ Name = "Apex" };
            theme1.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");

            A.ThemeElements themeElements1 = new A.ThemeElements();

            A.ColorScheme colorScheme1 = new A.ColorScheme(){ Name = "Apex" };

            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 rgbColorModelHex4 = new A.RgbColorModelHex(){ Val = "69676D" };

            dark2Color1.Append(rgbColorModelHex4);

            A.Light2Color light2Color1 = new A.Light2Color();
            A.RgbColorModelHex rgbColorModelHex5 = new A.RgbColorModelHex(){ Val = "C9C2D1" };

            light2Color1.Append(rgbColorModelHex5);

            A.Accent1Color accent1Color1 = new A.Accent1Color();
            A.RgbColorModelHex rgbColorModelHex6 = new A.RgbColorModelHex(){ Val = "CEB966" };

            accent1Color1.Append(rgbColorModelHex6);

            A.Accent2Color accent2Color1 = new A.Accent2Color();
            A.RgbColorModelHex rgbColorModelHex7 = new A.RgbColorModelHex(){ Val = "9CB084" };

            accent2Color1.Append(rgbColorModelHex7);

            A.Accent3Color accent3Color1 = new A.Accent3Color();
            A.RgbColorModelHex rgbColorModelHex8 = new A.RgbColorModelHex(){ Val = "6BB1C9" };

            accent3Color1.Append(rgbColorModelHex8);

            A.Accent4Color accent4Color1 = new A.Accent4Color();
            A.RgbColorModelHex rgbColorModelHex9 = new A.RgbColorModelHex(){ Val = "6585CF" };

            accent4Color1.Append(rgbColorModelHex9);

            A.Accent5Color accent5Color1 = new A.Accent5Color();
            A.RgbColorModelHex rgbColorModelHex10 = new A.RgbColorModelHex(){ Val = "7E6BC9" };

            accent5Color1.Append(rgbColorModelHex10);

            A.Accent6Color accent6Color1 = new A.Accent6Color();
            A.RgbColorModelHex rgbColorModelHex11 = new A.RgbColorModelHex(){ Val = "A379BB" };

            accent6Color1.Append(rgbColorModelHex11);

            A.Hyperlink hyperlink1 = new A.Hyperlink();
            A.RgbColorModelHex rgbColorModelHex12 = new A.RgbColorModelHex(){ Val = "410082" };

            hyperlink1.Append(rgbColorModelHex12);

            A.FollowedHyperlinkColor followedHyperlinkColor1 = new A.FollowedHyperlinkColor();
            A.RgbColorModelHex rgbColorModelHex13 = new A.RgbColorModelHex(){ Val = "932968" };

            followedHyperlinkColor1.Append(rgbColorModelHex13);

            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 fontScheme1 = new A.FontScheme(){ Name = "Apex" };

            A.MajorFont majorFont1 = new A.MajorFont();
            A.LatinFont latinFont30 = new A.LatinFont(){ Typeface = "Lucida Sans" };
            A.EastAsianFont eastAsianFont30 = new A.EastAsianFont(){ Typeface = "" };
            A.ComplexScriptFont complexScriptFont30 = new A.ComplexScriptFont(){ Typeface = "" };
            A.SupplementalFont supplementalFont1 = new A.SupplementalFont(){ Script = "Grek", Typeface = "Arial" };
            A.SupplementalFont supplementalFont2 = new A.SupplementalFont(){ Script = "Cyrl", Typeface = "Arial" };
            A.SupplementalFont supplementalFont3 = new A.SupplementalFont(){ Script = "Jpan", Typeface = "HG丸ゴシックM-PRO" };
            A.SupplementalFont supplementalFont4 = new A.SupplementalFont(){ Script = "Hang", Typeface = "휴먼옛체" };
            A.SupplementalFont supplementalFont5 = new A.SupplementalFont(){ Script = "Hans", Typeface = "黑体" };
            A.SupplementalFont supplementalFont6 = new A.SupplementalFont(){ Script = "Hant", Typeface = "微軟正黑體" };
            A.SupplementalFont supplementalFont7 = new A.SupplementalFont(){ Script = "Arab", Typeface = "Tahoma" };
            A.SupplementalFont supplementalFont8 = new A.SupplementalFont(){ Script = "Hebr", Typeface = "Levenim MT" };
            A.SupplementalFont supplementalFont9 = new A.SupplementalFont(){ Script = "Thai", Typeface = "FreesiaUPC" };
            A.SupplementalFont supplementalFont10 = new A.SupplementalFont(){ Script = "Ethi", Typeface = "Nyala" };
            A.SupplementalFont supplementalFont11 = new A.SupplementalFont(){ Script = "Beng", Typeface = "Vrinda" };
            A.SupplementalFont supplementalFont12 = new A.SupplementalFont(){ Script = "Gujr", Typeface = "Shruti" };
            A.SupplementalFont supplementalFont13 = new A.SupplementalFont(){ Script = "Khmr", Typeface = "DaunPenh" };
            A.SupplementalFont supplementalFont14 = new A.SupplementalFont(){ Script = "Knda", Typeface = "Tunga" };
            A.SupplementalFont supplementalFont15 = new A.SupplementalFont(){ Script = "Guru", Typeface = "Raavi" };
            A.SupplementalFont supplementalFont16 = new A.SupplementalFont(){ Script = "Cans", Typeface = "Euphemia" };
            A.SupplementalFont supplementalFont17 = new A.SupplementalFont(){ Script = "Cher", Typeface = "Plantagenet Cherokee" };
            A.SupplementalFont supplementalFont18 = new A.SupplementalFont(){ Script = "Yiii", Typeface = "Microsoft Yi Baiti" };
            A.SupplementalFont supplementalFont19 = new A.SupplementalFont(){ Script = "Tibt", Typeface = "Microsoft Himalaya" };
            A.SupplementalFont supplementalFont20 = new A.SupplementalFont(){ Script = "Thaa", Typeface = "MV Boli" };
            A.SupplementalFont supplementalFont21 = new A.SupplementalFont(){ Script = "Deva", Typeface = "Mangal" };
            A.SupplementalFont supplementalFont22 = new A.SupplementalFont(){ Script = "Telu", Typeface = "Gautami" };
            A.SupplementalFont supplementalFont23 = new A.SupplementalFont(){ Script = "Taml", Typeface = "Latha" };
            A.SupplementalFont supplementalFont24 = new A.SupplementalFont(){ Script = "Syrc", Typeface = "Estrangelo Edessa" };
            A.SupplementalFont supplementalFont25 = new A.SupplementalFont(){ Script = "Orya", Typeface = "Kalinga" };
            A.SupplementalFont supplementalFont26 = new A.SupplementalFont(){ Script = "Mlym", Typeface = "Kartika" };
            A.SupplementalFont supplementalFont27 = new A.SupplementalFont(){ Script = "Laoo", Typeface = "DokChampa" };
            A.SupplementalFont supplementalFont28 = new A.SupplementalFont(){ Script = "Sinh", Typeface = "Iskoola Pota" };
            A.SupplementalFont supplementalFont29 = new A.SupplementalFont(){ Script = "Mong", Typeface = "Mongolian Baiti" };
            A.SupplementalFont supplementalFont30 = new A.SupplementalFont(){ Script = "Viet", Typeface = "Tahoma" };
            A.SupplementalFont supplementalFont31 = new A.SupplementalFont(){ Script = "Uigh", Typeface = "Microsoft Uighur" };
            A.SupplementalFont supplementalFont32 = new A.SupplementalFont(){ Script = "Geor", Typeface = "Sylfaen" };

            majorFont1.Append(latinFont30);
            majorFont1.Append(eastAsianFont30);
            majorFont1.Append(complexScriptFont30);
            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);
            majorFont1.Append(supplementalFont30);
            majorFont1.Append(supplementalFont31);
            majorFont1.Append(supplementalFont32);

            A.MinorFont minorFont1 = new A.MinorFont();
            A.LatinFont latinFont31 = new A.LatinFont(){ Typeface = "Book Antiqua" };
            A.EastAsianFont eastAsianFont31 = new A.EastAsianFont(){ Typeface = "" };
            A.ComplexScriptFont complexScriptFont31 = new A.ComplexScriptFont(){ Typeface = "" };
            A.SupplementalFont supplementalFont33 = new A.SupplementalFont(){ Script = "Grek", Typeface = "Times New Roman" };
            A.SupplementalFont supplementalFont34 = new A.SupplementalFont(){ Script = "Cyrl", Typeface = "Times New Roman" };
            A.SupplementalFont supplementalFont35 = new A.SupplementalFont(){ Script = "Jpan", Typeface = "HG明朝B" };
            A.SupplementalFont supplementalFont36 = new A.SupplementalFont(){ Script = "Hang", Typeface = "돋움" };
            A.SupplementalFont supplementalFont37 = new A.SupplementalFont(){ Script = "Hans", Typeface = "宋体" };
            A.SupplementalFont supplementalFont38 = new A.SupplementalFont(){ Script = "Hant", Typeface = "新細明體" };
            A.SupplementalFont supplementalFont39 = new A.SupplementalFont(){ Script = "Arab", Typeface = "Times New Roman" };
            A.SupplementalFont supplementalFont40 = new A.SupplementalFont(){ Script = "Hebr", Typeface = "David" };
            A.SupplementalFont supplementalFont41 = new A.SupplementalFont(){ Script = "Thai", Typeface = "EucrosiaUPC" };
            A.SupplementalFont supplementalFont42 = new A.SupplementalFont(){ Script = "Ethi", Typeface = "Nyala" };
            A.SupplementalFont supplementalFont43 = new A.SupplementalFont(){ Script = "Beng", Typeface = "Vrinda" };
            A.SupplementalFont supplementalFont44 = new A.SupplementalFont(){ Script = "Gujr", Typeface = "Shruti" };
            A.SupplementalFont supplementalFont45 = new A.SupplementalFont(){ Script = "Khmr", Typeface = "MoolBoran" };
            A.SupplementalFont supplementalFont46 = new A.SupplementalFont(){ Script = "Knda", Typeface = "Tunga" };
            A.SupplementalFont supplementalFont47 = new A.SupplementalFont(){ Script = "Guru", Typeface = "Raavi" };
            A.SupplementalFont supplementalFont48 = new A.SupplementalFont(){ Script = "Cans", Typeface = "Euphemia" };
            A.SupplementalFont supplementalFont49 = new A.SupplementalFont(){ Script = "Cher", Typeface = "Plantagenet Cherokee" };
            A.SupplementalFont supplementalFont50 = new A.SupplementalFont(){ Script = "Yiii", Typeface = "Microsoft Yi Baiti" };
            A.SupplementalFont supplementalFont51 = new A.SupplementalFont(){ Script = "Tibt", Typeface = "Microsoft Himalaya" };
            A.SupplementalFont supplementalFont52 = new A.SupplementalFont(){ Script = "Thaa", Typeface = "MV Boli" };
            A.SupplementalFont supplementalFont53 = new A.SupplementalFont(){ Script = "Deva", Typeface = "Mangal" };
            A.SupplementalFont supplementalFont54 = new A.SupplementalFont(){ Script = "Telu", Typeface = "Gautami" };
            A.SupplementalFont supplementalFont55 = new A.SupplementalFont(){ Script = "Taml", Typeface = "Latha" };
            A.SupplementalFont supplementalFont56 = new A.SupplementalFont(){ Script = "Syrc", Typeface = "Estrangelo Edessa" };
            A.SupplementalFont supplementalFont57 = new A.SupplementalFont(){ Script = "Orya", Typeface = "Kalinga" };
            A.SupplementalFont supplementalFont58 = new A.SupplementalFont(){ Script = "Mlym", Typeface = "Kartika" };
            A.SupplementalFont supplementalFont59 = new A.SupplementalFont(){ Script = "Laoo", Typeface = "DokChampa" };
            A.SupplementalFont supplementalFont60 = new A.SupplementalFont(){ Script = "Sinh", Typeface = "Iskoola Pota" };
            A.SupplementalFont supplementalFont61 = new A.SupplementalFont(){ Script = "Mong", Typeface = "Mongolian Baiti" };
            A.SupplementalFont supplementalFont62 = new A.SupplementalFont(){ Script = "Viet", Typeface = "Times New Roman" };
            A.SupplementalFont supplementalFont63 = new A.SupplementalFont(){ Script = "Uigh", Typeface = "Microsoft Uighur" };
            A.SupplementalFont supplementalFont64 = new A.SupplementalFont(){ Script = "Geor", Typeface = "Sylfaen" };

            minorFont1.Append(latinFont31);
            minorFont1.Append(eastAsianFont31);
            minorFont1.Append(complexScriptFont31);
            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);
            minorFont1.Append(supplementalFont59);
            minorFont1.Append(supplementalFont60);
            minorFont1.Append(supplementalFont61);
            minorFont1.Append(supplementalFont62);
            minorFont1.Append(supplementalFont63);
            minorFont1.Append(supplementalFont64);

            fontScheme1.Append(majorFont1);
            fontScheme1.Append(minorFont1);

            A.FormatScheme formatScheme1 = new A.FormatScheme(){ Name = "Apex" };

            A.FillStyleList fillStyleList1 = new A.FillStyleList();

            A.SolidFill solidFill39 = new A.SolidFill();
            A.SchemeColor schemeColor57 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };

            solidFill39.Append(schemeColor57);

            A.GradientFill gradientFill3 = new A.GradientFill(){ RotateWithShape = true };

            A.GradientStopList gradientStopList3 = new A.GradientStopList();

            A.GradientStop gradientStop7 = new A.GradientStop(){ Position = 20000 };

            A.SchemeColor schemeColor58 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint13 = new A.Tint(){ Val = 9000 };

            schemeColor58.Append(tint13);

            gradientStop7.Append(schemeColor58);

            A.GradientStop gradientStop8 = new A.GradientStop(){ Position = 100000 };

            A.SchemeColor schemeColor59 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint14 = new A.Tint(){ Val = 70000 };
            A.SaturationModulation saturationModulation9 = new A.SaturationModulation(){ Val = 100000 };

            schemeColor59.Append(tint14);
            schemeColor59.Append(saturationModulation9);

            gradientStop8.Append(schemeColor59);

            gradientStopList3.Append(gradientStop7);
            gradientStopList3.Append(gradientStop8);

            A.PathGradientFill pathGradientFill1 = new A.PathGradientFill(){ Path = A.PathShadeValues.Circle };
            A.FillToRectangle fillToRectangle1 = new A.FillToRectangle(){ Left = -15000, Top = -15000, Right = 115000, Bottom = 115000 };

            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 gradientStop9 = new A.GradientStop(){ Position = 0 };

            A.SchemeColor schemeColor60 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Shade shade6 = new A.Shade(){ Val = 60000 };

            schemeColor60.Append(shade6);

            gradientStop9.Append(schemeColor60);

            A.GradientStop gradientStop10 = new A.GradientStop(){ Position = 33000 };

            A.SchemeColor schemeColor61 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint15 = new A.Tint(){ Val = 86500 };

            schemeColor61.Append(tint15);

            gradientStop10.Append(schemeColor61);

            A.GradientStop gradientStop11 = new A.GradientStop(){ Position = 46750 };

            A.SchemeColor schemeColor62 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint16 = new A.Tint(){ Val = 71000 };
            A.SaturationModulation saturationModulation10 = new A.SaturationModulation(){ Val = 112000 };

            schemeColor62.Append(tint16);
            schemeColor62.Append(saturationModulation10);

            gradientStop11.Append(schemeColor62);

            A.GradientStop gradientStop12 = new A.GradientStop(){ Position = 53000 };

            A.SchemeColor schemeColor63 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint17 = new A.Tint(){ Val = 71000 };
            A.SaturationModulation saturationModulation11 = new A.SaturationModulation(){ Val = 112000 };

            schemeColor63.Append(tint17);
            schemeColor63.Append(saturationModulation11);

            gradientStop12.Append(schemeColor63);

            A.GradientStop gradientStop13 = new A.GradientStop(){ Position = 68000 };

            A.SchemeColor schemeColor64 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint18 = new A.Tint(){ Val = 86000 };

            schemeColor64.Append(tint18);

            gradientStop13.Append(schemeColor64);

            A.GradientStop gradientStop14 = new A.GradientStop(){ Position = 100000 };

            A.SchemeColor schemeColor65 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Shade shade7 = new A.Shade(){ Val = 60000 };

            schemeColor65.Append(shade7);

            gradientStop14.Append(schemeColor65);

            gradientStopList4.Append(gradientStop9);
            gradientStopList4.Append(gradientStop10);
            gradientStopList4.Append(gradientStop11);
            gradientStopList4.Append(gradientStop12);
            gradientStopList4.Append(gradientStop13);
            gradientStopList4.Append(gradientStop14);
            A.LinearGradientFill linearGradientFill3 = new A.LinearGradientFill(){ Angle = 8350000, Scaled = true };

            gradientFill4.Append(gradientStopList4);
            gradientFill4.Append(linearGradientFill3);

            fillStyleList1.Append(solidFill39);
            fillStyleList1.Append(gradientFill3);
            fillStyleList1.Append(gradientFill4);

            A.LineStyleList lineStyleList1 = new A.LineStyleList();

            A.Outline outline5 = new A.Outline(){ Width = 9525, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill40 = new A.SolidFill();

            A.SchemeColor schemeColor66 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Shade shade8 = new A.Shade(){ Val = 48000 };
            A.SaturationModulation saturationModulation12 = new A.SaturationModulation(){ Val = 110000 };

            schemeColor66.Append(shade8);
            schemeColor66.Append(saturationModulation12);

            solidFill40.Append(schemeColor66);
            A.PresetDash presetDash1 = new A.PresetDash(){ Val = A.PresetLineDashValues.Solid };

            outline5.Append(solidFill40);
            outline5.Append(presetDash1);

            A.Outline outline6 = new A.Outline(){ Width = 25400, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill41 = new A.SolidFill();
            A.SchemeColor schemeColor67 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };

            solidFill41.Append(schemeColor67);
            A.PresetDash presetDash2 = new A.PresetDash(){ Val = A.PresetLineDashValues.Solid };

            outline6.Append(solidFill41);
            outline6.Append(presetDash2);

            A.Outline outline7 = new A.Outline(){ Width = 38100, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill42 = new A.SolidFill();
            A.SchemeColor schemeColor68 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };

            solidFill42.Append(schemeColor68);
            A.PresetDash presetDash3 = new A.PresetDash(){ Val = A.PresetLineDashValues.Solid };

            outline7.Append(solidFill42);
            outline7.Append(presetDash3);

            lineStyleList1.Append(outline5);
            lineStyleList1.Append(outline6);
            lineStyleList1.Append(outline7);

            A.EffectStyleList effectStyleList1 = new A.EffectStyleList();

            A.EffectStyle effectStyle1 = new A.EffectStyle();

            A.EffectList effectList4 = new A.EffectList();

            A.OuterShadow outerShadow4 = new A.OuterShadow(){ BlurRadius = 130000L, Distance = 101600L, Direction = 2700000, Alignment = A.RectangleAlignmentValues.TopLeft, RotateWithShape = false };

            A.RgbColorModelHex rgbColorModelHex14 = new A.RgbColorModelHex(){ Val = "000000" };
            A.Alpha alpha4 = new A.Alpha(){ Val = 35000 };

            rgbColorModelHex14.Append(alpha4);

            outerShadow4.Append(rgbColorModelHex14);

            effectList4.Append(outerShadow4);

            effectStyle1.Append(effectList4);

            A.EffectStyle effectStyle2 = new A.EffectStyle();

            A.EffectList effectList5 = new A.EffectList();

            A.OuterShadow outerShadow5 = new A.OuterShadow(){ BlurRadius = 190500L, Distance = 228600L, Direction = 2700000, VerticalRatio = 90000, RotateWithShape = false };

            A.RgbColorModelHex rgbColorModelHex15 = new A.RgbColorModelHex(){ Val = "000000" };
            A.Alpha alpha5 = new A.Alpha(){ Val = 25500 };

            rgbColorModelHex15.Append(alpha5);

            outerShadow5.Append(rgbColorModelHex15);

            effectList5.Append(outerShadow5);

            effectStyle2.Append(effectList5);

            A.EffectStyle effectStyle3 = new A.EffectStyle();

            A.EffectList effectList6 = new A.EffectList();

            A.OuterShadow outerShadow6 = new A.OuterShadow(){ BlurRadius = 190500L, Distance = 228600L, Direction = 2700000, VerticalRatio = 90000, RotateWithShape = false };

            A.RgbColorModelHex rgbColorModelHex16 = new A.RgbColorModelHex(){ Val = "000000" };
            A.Alpha alpha6 = new A.Alpha(){ Val = 25500 };

            rgbColorModelHex16.Append(alpha6);

            outerShadow6.Append(rgbColorModelHex16);

            effectList6.Append(outerShadow6);

            A.Scene3DType scene3DType4 = new A.Scene3DType();

            A.Camera camera4 = new A.Camera(){ Preset = A.PresetCameraValues.OrthographicFront, FieldOfView = 0 };
            A.Rotation rotation4 = new A.Rotation(){ Latitude = 0, Longitude = 0, Revolution = 0 };

            camera4.Append(rotation4);

            A.LightRig lightRig4 = new A.LightRig(){ Rig = A.LightRigValues.Soft, Direction = A.LightRigDirectionValues.TopLeft };
            A.Rotation rotation5 = new A.Rotation(){ Latitude = 0, Longitude = 0, Revolution = 20100000 };

            lightRig4.Append(rotation5);

            scene3DType4.Append(camera4);
            scene3DType4.Append(lightRig4);

            A.Shape3DType shape3DType5 = new A.Shape3DType();
            A.BevelTop bevelTop4 = new A.BevelTop(){ Width = 50800L, Height = 50800L };

            shape3DType5.Append(bevelTop4);

            effectStyle3.Append(effectList6);
            effectStyle3.Append(scene3DType4);
            effectStyle3.Append(shape3DType5);

            effectStyleList1.Append(effectStyle1);
            effectStyleList1.Append(effectStyle2);
            effectStyleList1.Append(effectStyle3);

            A.BackgroundFillStyleList backgroundFillStyleList1 = new A.BackgroundFillStyleList();

            A.SolidFill solidFill43 = new A.SolidFill();
            A.SchemeColor schemeColor69 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };

            solidFill43.Append(schemeColor69);

            A.GradientFill gradientFill5 = new A.GradientFill(){ RotateWithShape = true };

            A.GradientStopList gradientStopList5 = new A.GradientStopList();

            A.GradientStop gradientStop15 = new A.GradientStop(){ Position = 0 };

            A.SchemeColor schemeColor70 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint19 = new A.Tint(){ Val = 50000 };
            A.SaturationModulation saturationModulation13 = new A.SaturationModulation(){ Val = 180000 };

            schemeColor70.Append(tint19);
            schemeColor70.Append(saturationModulation13);

            gradientStop15.Append(schemeColor70);

            A.GradientStop gradientStop16 = new A.GradientStop(){ Position = 100000 };

            A.SchemeColor schemeColor71 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Shade shade9 = new A.Shade(){ Val = 45000 };
            A.SaturationModulation saturationModulation14 = new A.SaturationModulation(){ Val = 120000 };

            schemeColor71.Append(shade9);
            schemeColor71.Append(saturationModulation14);

            gradientStop16.Append(schemeColor71);

            gradientStopList5.Append(gradientStop15);
            gradientStopList5.Append(gradientStop16);

            A.PathGradientFill pathGradientFill2 = new A.PathGradientFill(){ Path = A.PathShadeValues.Circle };
            A.FillToRectangle fillToRectangle2 = new A.FillToRectangle(){ Right = 100000, Bottom = 100000 };

            pathGradientFill2.Append(fillToRectangle2);

            gradientFill5.Append(gradientStopList5);
            gradientFill5.Append(pathGradientFill2);

            A.BlipFill blipFill1 = new A.BlipFill();

            A.Blip blip1 = new A.Blip(){ Embed = "rId1" };
            blip1.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");

            A.Duotone duotone1 = new A.Duotone();

            A.SchemeColor schemeColor72 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Shade shade10 = new A.Shade(){ Val = 3000 };
            A.SaturationModulation saturationModulation15 = new A.SaturationModulation(){ Val = 110000 };

            schemeColor72.Append(shade10);
            schemeColor72.Append(saturationModulation15);

            A.SchemeColor schemeColor73 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint20 = new A.Tint(){ Val = 60000 };
            A.SaturationModulation saturationModulation16 = new A.SaturationModulation(){ Val = 425000 };

            schemeColor73.Append(tint20);
            schemeColor73.Append(saturationModulation16);

            duotone1.Append(schemeColor72);
            duotone1.Append(schemeColor73);

            blip1.Append(duotone1);

            A.Stretch stretch1 = new A.Stretch();
            A.FillRectangle fillRectangle1 = new A.FillRectangle();

            stretch1.Append(fillRectangle1);

            blipFill1.Append(blip1);
            blipFill1.Append(stretch1);

            backgroundFillStyleList1.Append(solidFill43);
            backgroundFillStyleList1.Append(gradientFill5);
            backgroundFillStyleList1.Append(blipFill1);

            formatScheme1.Append(fillStyleList1);
            formatScheme1.Append(lineStyleList1);
            formatScheme1.Append(effectStyleList1);
            formatScheme1.Append(backgroundFillStyleList1);

            themeElements1.Append(colorScheme1);
            themeElements1.Append(fontScheme1);
            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;
        }
Ejemplo n.º 16
0
        // 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 rgbColorModelHex1 = new A.RgbColorModelHex() { Val = "44546A" };

            dark2Color1.Append(rgbColorModelHex1);

            A.Light2Color light2Color1 = new A.Light2Color();
            A.RgbColorModelHex rgbColorModelHex2 = new A.RgbColorModelHex() { Val = "E7E6E6" };

            light2Color1.Append(rgbColorModelHex2);

            A.Accent1Color accent1Color1 = new A.Accent1Color();
            A.RgbColorModelHex rgbColorModelHex3 = new A.RgbColorModelHex() { Val = "5B9BD5" };

            accent1Color1.Append(rgbColorModelHex3);

            A.Accent2Color accent2Color1 = new A.Accent2Color();
            A.RgbColorModelHex rgbColorModelHex4 = new A.RgbColorModelHex() { Val = "ED7D31" };

            accent2Color1.Append(rgbColorModelHex4);

            A.Accent3Color accent3Color1 = new A.Accent3Color();
            A.RgbColorModelHex rgbColorModelHex5 = new A.RgbColorModelHex() { Val = "A5A5A5" };

            accent3Color1.Append(rgbColorModelHex5);

            A.Accent4Color accent4Color1 = new A.Accent4Color();
            A.RgbColorModelHex rgbColorModelHex6 = new A.RgbColorModelHex() { Val = "FFC000" };

            accent4Color1.Append(rgbColorModelHex6);

            A.Accent5Color accent5Color1 = new A.Accent5Color();
            A.RgbColorModelHex rgbColorModelHex7 = new A.RgbColorModelHex() { Val = "4472C4" };

            accent5Color1.Append(rgbColorModelHex7);

            A.Accent6Color accent6Color1 = new A.Accent6Color();
            A.RgbColorModelHex rgbColorModelHex8 = new A.RgbColorModelHex() { Val = "70AD47" };

            accent6Color1.Append(rgbColorModelHex8);

            A.Hyperlink hyperlink1 = new A.Hyperlink();
            A.RgbColorModelHex rgbColorModelHex9 = new A.RgbColorModelHex() { Val = "0563C1" };

            hyperlink1.Append(rgbColorModelHex9);

            A.FollowedHyperlinkColor followedHyperlinkColor1 = new A.FollowedHyperlinkColor();
            A.RgbColorModelHex rgbColorModelHex10 = new A.RgbColorModelHex() { Val = "954F72" };

            followedHyperlinkColor1.Append(rgbColorModelHex10);

            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 fontScheme1 = new A.FontScheme() { Name = "Office" };

            A.MajorFont majorFont1 = new A.MajorFont();
            A.LatinFont latinFont1 = new A.LatinFont() { Typeface = "Calibri Light", Panose = "020F0302020204030204" };
            A.EastAsianFont eastAsianFont1 = new A.EastAsianFont() { Typeface = "" };
            A.ComplexScriptFont complexScriptFont1 = new A.ComplexScriptFont() { Typeface = "" };
            A.SupplementalFont supplementalFont1 = new A.SupplementalFont() { Script = "Jpan", Typeface = "MS ゴシック" };
            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 = "Angsana New" };
            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" };
            A.SupplementalFont supplementalFont30 = new A.SupplementalFont() { Script = "Geor", Typeface = "Sylfaen" };

            majorFont1.Append(latinFont1);
            majorFont1.Append(eastAsianFont1);
            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);
            majorFont1.Append(supplementalFont30);

            A.MinorFont minorFont1 = new A.MinorFont();
            A.LatinFont latinFont2 = new A.LatinFont() { Typeface = "Calibri", Panose = "020F0502020204030204" };
            A.EastAsianFont eastAsianFont2 = new A.EastAsianFont() { Typeface = "" };
            A.ComplexScriptFont complexScriptFont2 = new A.ComplexScriptFont() { Typeface = "" };
            A.SupplementalFont supplementalFont31 = new A.SupplementalFont() { Script = "Jpan", Typeface = "MS 明朝" };
            A.SupplementalFont supplementalFont32 = new A.SupplementalFont() { Script = "Hang", Typeface = "맑은 고딕" };
            A.SupplementalFont supplementalFont33 = new A.SupplementalFont() { Script = "Hans", Typeface = "宋体" };
            A.SupplementalFont supplementalFont34 = new A.SupplementalFont() { Script = "Hant", Typeface = "新細明體" };
            A.SupplementalFont supplementalFont35 = new A.SupplementalFont() { Script = "Arab", Typeface = "Arial" };
            A.SupplementalFont supplementalFont36 = new A.SupplementalFont() { Script = "Hebr", Typeface = "Arial" };
            A.SupplementalFont supplementalFont37 = new A.SupplementalFont() { Script = "Thai", Typeface = "Cordia New" };
            A.SupplementalFont supplementalFont38 = new A.SupplementalFont() { Script = "Ethi", Typeface = "Nyala" };
            A.SupplementalFont supplementalFont39 = new A.SupplementalFont() { Script = "Beng", Typeface = "Vrinda" };
            A.SupplementalFont supplementalFont40 = new A.SupplementalFont() { Script = "Gujr", Typeface = "Shruti" };
            A.SupplementalFont supplementalFont41 = new A.SupplementalFont() { Script = "Khmr", Typeface = "DaunPenh" };
            A.SupplementalFont supplementalFont42 = new A.SupplementalFont() { Script = "Knda", Typeface = "Tunga" };
            A.SupplementalFont supplementalFont43 = new A.SupplementalFont() { Script = "Guru", Typeface = "Raavi" };
            A.SupplementalFont supplementalFont44 = new A.SupplementalFont() { Script = "Cans", Typeface = "Euphemia" };
            A.SupplementalFont supplementalFont45 = new A.SupplementalFont() { Script = "Cher", Typeface = "Plantagenet Cherokee" };
            A.SupplementalFont supplementalFont46 = new A.SupplementalFont() { Script = "Yiii", Typeface = "Microsoft Yi Baiti" };
            A.SupplementalFont supplementalFont47 = new A.SupplementalFont() { Script = "Tibt", Typeface = "Microsoft Himalaya" };
            A.SupplementalFont supplementalFont48 = new A.SupplementalFont() { Script = "Thaa", Typeface = "MV Boli" };
            A.SupplementalFont supplementalFont49 = new A.SupplementalFont() { Script = "Deva", Typeface = "Mangal" };
            A.SupplementalFont supplementalFont50 = new A.SupplementalFont() { Script = "Telu", Typeface = "Gautami" };
            A.SupplementalFont supplementalFont51 = new A.SupplementalFont() { Script = "Taml", Typeface = "Latha" };
            A.SupplementalFont supplementalFont52 = new A.SupplementalFont() { Script = "Syrc", Typeface = "Estrangelo Edessa" };
            A.SupplementalFont supplementalFont53 = new A.SupplementalFont() { Script = "Orya", Typeface = "Kalinga" };
            A.SupplementalFont supplementalFont54 = new A.SupplementalFont() { Script = "Mlym", Typeface = "Kartika" };
            A.SupplementalFont supplementalFont55 = new A.SupplementalFont() { Script = "Laoo", Typeface = "DokChampa" };
            A.SupplementalFont supplementalFont56 = new A.SupplementalFont() { Script = "Sinh", Typeface = "Iskoola Pota" };
            A.SupplementalFont supplementalFont57 = new A.SupplementalFont() { Script = "Mong", Typeface = "Mongolian Baiti" };
            A.SupplementalFont supplementalFont58 = new A.SupplementalFont() { Script = "Viet", Typeface = "Arial" };
            A.SupplementalFont supplementalFont59 = new A.SupplementalFont() { Script = "Uigh", Typeface = "Microsoft Uighur" };
            A.SupplementalFont supplementalFont60 = new A.SupplementalFont() { Script = "Geor", Typeface = "Sylfaen" };

            minorFont1.Append(latinFont2);
            minorFont1.Append(eastAsianFont2);
            minorFont1.Append(complexScriptFont2);
            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);
            minorFont1.Append(supplementalFont59);
            minorFont1.Append(supplementalFont60);

            fontScheme1.Append(majorFont1);
            fontScheme1.Append(minorFont1);

            A.FormatScheme formatScheme1 = new A.FormatScheme() { Name = "Office" };

            A.FillStyleList fillStyleList1 = new A.FillStyleList();

            A.SolidFill solidFill1 = new A.SolidFill();
            A.SchemeColor schemeColor1 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };

            solidFill1.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.LuminanceModulation luminanceModulation1 = new A.LuminanceModulation() { Val = 110000 };
            A.SaturationModulation saturationModulation1 = new A.SaturationModulation() { Val = 105000 };
            A.Tint tint1 = new A.Tint() { Val = 67000 };

            schemeColor2.Append(luminanceModulation1);
            schemeColor2.Append(saturationModulation1);
            schemeColor2.Append(tint1);

            gradientStop1.Append(schemeColor2);

            A.GradientStop gradientStop2 = new A.GradientStop() { Position = 50000 };

            A.SchemeColor schemeColor3 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
            A.LuminanceModulation luminanceModulation2 = new A.LuminanceModulation() { Val = 105000 };
            A.SaturationModulation saturationModulation2 = new A.SaturationModulation() { Val = 103000 };
            A.Tint tint2 = new A.Tint() { Val = 73000 };

            schemeColor3.Append(luminanceModulation2);
            schemeColor3.Append(saturationModulation2);
            schemeColor3.Append(tint2);

            gradientStop2.Append(schemeColor3);

            A.GradientStop gradientStop3 = new A.GradientStop() { Position = 100000 };

            A.SchemeColor schemeColor4 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
            A.LuminanceModulation luminanceModulation3 = new A.LuminanceModulation() { Val = 105000 };
            A.SaturationModulation saturationModulation3 = new A.SaturationModulation() { Val = 109000 };
            A.Tint tint3 = new A.Tint() { Val = 81000 };

            schemeColor4.Append(luminanceModulation3);
            schemeColor4.Append(saturationModulation3);
            schemeColor4.Append(tint3);

            gradientStop3.Append(schemeColor4);

            gradientStopList1.Append(gradientStop1);
            gradientStopList1.Append(gradientStop2);
            gradientStopList1.Append(gradientStop3);
            A.LinearGradientFill linearGradientFill1 = new A.LinearGradientFill() { Angle = 5400000, Scaled = false };

            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.SaturationModulation saturationModulation4 = new A.SaturationModulation() { Val = 103000 };
            A.LuminanceModulation luminanceModulation4 = new A.LuminanceModulation() { Val = 102000 };
            A.Tint tint4 = new A.Tint() { Val = 94000 };

            schemeColor5.Append(saturationModulation4);
            schemeColor5.Append(luminanceModulation4);
            schemeColor5.Append(tint4);

            gradientStop4.Append(schemeColor5);

            A.GradientStop gradientStop5 = new A.GradientStop() { Position = 50000 };

            A.SchemeColor schemeColor6 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
            A.SaturationModulation saturationModulation5 = new A.SaturationModulation() { Val = 110000 };
            A.LuminanceModulation luminanceModulation5 = new A.LuminanceModulation() { Val = 100000 };
            A.Shade shade1 = new A.Shade() { Val = 100000 };

            schemeColor6.Append(saturationModulation5);
            schemeColor6.Append(luminanceModulation5);
            schemeColor6.Append(shade1);

            gradientStop5.Append(schemeColor6);

            A.GradientStop gradientStop6 = new A.GradientStop() { Position = 100000 };

            A.SchemeColor schemeColor7 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
            A.LuminanceModulation luminanceModulation6 = new A.LuminanceModulation() { Val = 99000 };
            A.SaturationModulation saturationModulation6 = new A.SaturationModulation() { Val = 120000 };
            A.Shade shade2 = new A.Shade() { Val = 78000 };

            schemeColor7.Append(luminanceModulation6);
            schemeColor7.Append(saturationModulation6);
            schemeColor7.Append(shade2);

            gradientStop6.Append(schemeColor7);

            gradientStopList2.Append(gradientStop4);
            gradientStopList2.Append(gradientStop5);
            gradientStopList2.Append(gradientStop6);
            A.LinearGradientFill linearGradientFill2 = new A.LinearGradientFill() { Angle = 5400000, Scaled = false };

            gradientFill2.Append(gradientStopList2);
            gradientFill2.Append(linearGradientFill2);

            fillStyleList1.Append(solidFill1);
            fillStyleList1.Append(gradientFill1);
            fillStyleList1.Append(gradientFill2);

            A.LineStyleList lineStyleList1 = new A.LineStyleList();

            A.Outline outline1 = new A.Outline() { Width = 6350, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill2 = new A.SolidFill();
            A.SchemeColor schemeColor8 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };

            solidFill2.Append(schemeColor8);
            A.PresetDash presetDash1 = new A.PresetDash() { Val = A.PresetLineDashValues.Solid };
            A.Miter miter1 = new A.Miter() { Limit = 800000 };

            outline1.Append(solidFill2);
            outline1.Append(presetDash1);
            outline1.Append(miter1);

            A.Outline outline2 = new A.Outline() { Width = 12700, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill3 = new A.SolidFill();
            A.SchemeColor schemeColor9 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };

            solidFill3.Append(schemeColor9);
            A.PresetDash presetDash2 = new A.PresetDash() { Val = A.PresetLineDashValues.Solid };
            A.Miter miter2 = new A.Miter() { Limit = 800000 };

            outline2.Append(solidFill3);
            outline2.Append(presetDash2);
            outline2.Append(miter2);

            A.Outline outline3 = new A.Outline() { Width = 19050, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill4 = new A.SolidFill();
            A.SchemeColor schemeColor10 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };

            solidFill4.Append(schemeColor10);
            A.PresetDash presetDash3 = new A.PresetDash() { Val = A.PresetLineDashValues.Solid };
            A.Miter miter3 = new A.Miter() { Limit = 800000 };

            outline3.Append(solidFill4);
            outline3.Append(presetDash3);
            outline3.Append(miter3);

            lineStyleList1.Append(outline1);
            lineStyleList1.Append(outline2);
            lineStyleList1.Append(outline3);

            A.EffectStyleList effectStyleList1 = new A.EffectStyleList();

            A.EffectStyle effectStyle1 = new A.EffectStyle();
            A.EffectList effectList1 = new A.EffectList();

            effectStyle1.Append(effectList1);

            A.EffectStyle effectStyle2 = new A.EffectStyle();
            A.EffectList effectList2 = new A.EffectList();

            effectStyle2.Append(effectList2);

            A.EffectStyle effectStyle3 = new A.EffectStyle();

            A.EffectList effectList3 = new A.EffectList();

            A.OuterShadow outerShadow1 = new A.OuterShadow() { BlurRadius = 57150L, Distance = 19050L, Direction = 5400000, Alignment = A.RectangleAlignmentValues.Center, RotateWithShape = false };

            A.RgbColorModelHex rgbColorModelHex11 = new A.RgbColorModelHex() { Val = "000000" };
            A.Alpha alpha1 = new A.Alpha() { Val = 63000 };

            rgbColorModelHex11.Append(alpha1);

            outerShadow1.Append(rgbColorModelHex11);

            effectList3.Append(outerShadow1);

            effectStyle3.Append(effectList3);

            effectStyleList1.Append(effectStyle1);
            effectStyleList1.Append(effectStyle2);
            effectStyleList1.Append(effectStyle3);

            A.BackgroundFillStyleList backgroundFillStyleList1 = new A.BackgroundFillStyleList();

            A.SolidFill solidFill5 = new A.SolidFill();
            A.SchemeColor schemeColor11 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };

            solidFill5.Append(schemeColor11);

            A.SolidFill solidFill6 = new A.SolidFill();

            A.SchemeColor schemeColor12 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
            A.Tint tint5 = new A.Tint() { Val = 95000 };
            A.SaturationModulation saturationModulation7 = new A.SaturationModulation() { Val = 170000 };

            schemeColor12.Append(tint5);
            schemeColor12.Append(saturationModulation7);

            solidFill6.Append(schemeColor12);

            A.GradientFill gradientFill3 = new A.GradientFill() { RotateWithShape = true };

            A.GradientStopList gradientStopList3 = new A.GradientStopList();

            A.GradientStop gradientStop7 = new A.GradientStop() { Position = 0 };

            A.SchemeColor schemeColor13 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
            A.Tint tint6 = new A.Tint() { Val = 93000 };
            A.SaturationModulation saturationModulation8 = new A.SaturationModulation() { Val = 150000 };
            A.Shade shade3 = new A.Shade() { Val = 98000 };
            A.LuminanceModulation luminanceModulation7 = new A.LuminanceModulation() { Val = 102000 };

            schemeColor13.Append(tint6);
            schemeColor13.Append(saturationModulation8);
            schemeColor13.Append(shade3);
            schemeColor13.Append(luminanceModulation7);

            gradientStop7.Append(schemeColor13);

            A.GradientStop gradientStop8 = new A.GradientStop() { Position = 50000 };

            A.SchemeColor schemeColor14 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
            A.Tint tint7 = new A.Tint() { Val = 98000 };
            A.SaturationModulation saturationModulation9 = new A.SaturationModulation() { Val = 130000 };
            A.Shade shade4 = new A.Shade() { Val = 90000 };
            A.LuminanceModulation luminanceModulation8 = new A.LuminanceModulation() { Val = 103000 };

            schemeColor14.Append(tint7);
            schemeColor14.Append(saturationModulation9);
            schemeColor14.Append(shade4);
            schemeColor14.Append(luminanceModulation8);

            gradientStop8.Append(schemeColor14);

            A.GradientStop gradientStop9 = new A.GradientStop() { Position = 100000 };

            A.SchemeColor schemeColor15 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
            A.Shade shade5 = new A.Shade() { Val = 63000 };
            A.SaturationModulation saturationModulation10 = new A.SaturationModulation() { Val = 120000 };

            schemeColor15.Append(shade5);
            schemeColor15.Append(saturationModulation10);

            gradientStop9.Append(schemeColor15);

            gradientStopList3.Append(gradientStop7);
            gradientStopList3.Append(gradientStop8);
            gradientStopList3.Append(gradientStop9);
            A.LinearGradientFill linearGradientFill3 = new A.LinearGradientFill() { Angle = 5400000, Scaled = false };

            gradientFill3.Append(gradientStopList3);
            gradientFill3.Append(linearGradientFill3);

            backgroundFillStyleList1.Append(solidFill5);
            backgroundFillStyleList1.Append(solidFill6);
            backgroundFillStyleList1.Append(gradientFill3);

            formatScheme1.Append(fillStyleList1);
            formatScheme1.Append(lineStyleList1);
            formatScheme1.Append(effectStyleList1);
            formatScheme1.Append(backgroundFillStyleList1);

            themeElements1.Append(colorScheme1);
            themeElements1.Append(fontScheme1);
            themeElements1.Append(formatScheme1);
            A.ObjectDefaults objectDefaults1 = new A.ObjectDefaults();
            A.ExtraColorSchemeList extraColorSchemeList1 = new A.ExtraColorSchemeList();

            A.ExtensionList extensionList1 = new A.ExtensionList();

            A.Extension extension1 = new A.Extension() { Uri = "{05A4C25C-085E-4340-85A3-A5531E510DB2}" };

            OpenXmlUnknownElement openXmlUnknownElement3 = OpenXmlUnknownElement.CreateOpenXmlUnknownElement("<thm15:themeFamily xmlns:thm15=\"http://schemas.microsoft.com/office/thememl/2012/main\" name=\"Office Theme\" id=\"{62F939B6-93AF-4DB8-9C6B-D6C7DFDC589F}\" vid=\"{4A3C46E8-61CC-4603-A589-7422A47A8E4A}\" />");

            extension1.Append(openXmlUnknownElement3);

            extensionList1.Append(extension1);

            theme1.Append(themeElements1);
            theme1.Append(objectDefaults1);
            theme1.Append(extraColorSchemeList1);
            theme1.Append(extensionList1);

            themePart1.Theme = theme1;
        }
Ejemplo n.º 17
0
        // Generates content of slideLayoutPart11.
        private void GenerateSlideLayoutPart11Content(SlideLayoutPart slideLayoutPart11)
        {
            SlideLayout slideLayout11 = new SlideLayout(){ Type = SlideLayoutValues.PictureText, Preserve = true };
            slideLayout11.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");
            slideLayout11.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            slideLayout11.AddNamespaceDeclaration("p", "http://schemas.openxmlformats.org/presentationml/2006/main");

            CommonSlideData commonSlideData13 = new CommonSlideData(){ Name = "Picture with Caption" };

            ShapeTree shapeTree13 = new ShapeTree();

            NonVisualGroupShapeProperties nonVisualGroupShapeProperties13 = new NonVisualGroupShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties72 = new NonVisualDrawingProperties(){ Id = (UInt32Value)1U, Name = "" };
            NonVisualGroupShapeDrawingProperties nonVisualGroupShapeDrawingProperties13 = new NonVisualGroupShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties72 = new ApplicationNonVisualDrawingProperties();

            nonVisualGroupShapeProperties13.Append(nonVisualDrawingProperties72);
            nonVisualGroupShapeProperties13.Append(nonVisualGroupShapeDrawingProperties13);
            nonVisualGroupShapeProperties13.Append(applicationNonVisualDrawingProperties72);

            GroupShapeProperties groupShapeProperties13 = new GroupShapeProperties();

            A.TransformGroup transformGroup13 = new A.TransformGroup();
            A.Offset offset35 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents35 = new A.Extents(){ Cx = 0L, Cy = 0L };
            A.ChildOffset childOffset13 = new A.ChildOffset(){ X = 0L, Y = 0L };
            A.ChildExtents childExtents13 = new A.ChildExtents(){ Cx = 0L, Cy = 0L };

            transformGroup13.Append(offset35);
            transformGroup13.Append(extents35);
            transformGroup13.Append(childOffset13);
            transformGroup13.Append(childExtents13);

            groupShapeProperties13.Append(transformGroup13);

            Shape shape60 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties60 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties73 = new NonVisualDrawingProperties(){ Id = (UInt32Value)2U, Name = "Title 1" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties60 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks60 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties60.Append(shapeLocks60);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties73 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape60 = new PlaceholderShape(){ Type = PlaceholderValues.Title };

            applicationNonVisualDrawingProperties73.Append(placeholderShape60);

            nonVisualShapeProperties60.Append(nonVisualDrawingProperties73);
            nonVisualShapeProperties60.Append(nonVisualShapeDrawingProperties60);
            nonVisualShapeProperties60.Append(applicationNonVisualDrawingProperties73);

            ShapeProperties shapeProperties60 = new ShapeProperties();

            A.Transform2D transform2D23 = new A.Transform2D();
            A.Offset offset36 = new A.Offset(){ X = 2438400L, Y = 609600L };
            A.Extents extents36 = new A.Extents(){ Cx = 7315200L, Cy = 522288L };

            transform2D23.Append(offset36);
            transform2D23.Append(extents36);

            shapeProperties60.Append(transform2D23);

            TextBody textBody60 = new TextBody();

            A.BodyProperties bodyProperties60 = new A.BodyProperties(){ LeftInset = 45720, RightInset = 45720, BottomInset = 0, Anchor = A.TextAnchoringTypeValues.Bottom };
            A.Shape3DType shape3DType6 = new A.Shape3DType(){ PresetMaterial = A.PresetMaterialTypeValues.SoftEdge };

            bodyProperties60.Append(shape3DType6);

            A.ListStyle listStyle60 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties22 = new A.Level1ParagraphProperties(){ Alignment = A.TextAlignmentTypeValues.Center };
            A.NoBullet noBullet33 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties83 = new A.DefaultRunProperties(){ FontSize = 2000, Bold = true };

            level1ParagraphProperties22.Append(noBullet33);
            level1ParagraphProperties22.Append(defaultRunProperties83);

            listStyle60.Append(level1ParagraphProperties22);

            A.Paragraph paragraph96 = new A.Paragraph();

            A.Run run61 = new A.Run();

            A.RunProperties runProperties83 = new A.RunProperties(){ Kumimoji = false, Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties83.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text83 = new A.Text();
            text83.Text = "Click to edit Master title style";

            run61.Append(runProperties83);
            run61.Append(text83);
            A.EndParagraphRunProperties endParagraphRunProperties56 = new A.EndParagraphRunProperties(){ Kumimoji = false, Language = "en-US" };

            paragraph96.Append(run61);
            paragraph96.Append(endParagraphRunProperties56);

            textBody60.Append(bodyProperties60);
            textBody60.Append(listStyle60);
            textBody60.Append(paragraph96);

            shape60.Append(nonVisualShapeProperties60);
            shape60.Append(shapeProperties60);
            shape60.Append(textBody60);

            Shape shape61 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties61 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties74 = new NonVisualDrawingProperties(){ Id = (UInt32Value)3U, Name = "Picture Placeholder 2" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties61 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks61 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties61.Append(shapeLocks61);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties74 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape61 = new PlaceholderShape(){ Type = PlaceholderValues.Picture, Index = (UInt32Value)1U };

            applicationNonVisualDrawingProperties74.Append(placeholderShape61);

            nonVisualShapeProperties61.Append(nonVisualDrawingProperties74);
            nonVisualShapeProperties61.Append(nonVisualShapeDrawingProperties61);
            nonVisualShapeProperties61.Append(applicationNonVisualDrawingProperties74);

            ShapeProperties shapeProperties61 = new ShapeProperties();

            A.Transform2D transform2D24 = new A.Transform2D();
            A.Offset offset37 = new A.Offset(){ X = 2438400L, Y = 1831975L };
            A.Extents extents37 = new A.Extents(){ Cx = 7315200L, Cy = 3962400L };

            transform2D24.Append(offset37);
            transform2D24.Append(extents37);

            A.SolidFill solidFill46 = new A.SolidFill();
            A.SchemeColor schemeColor76 = new A.SchemeColor(){ Val = A.SchemeColorValues.Background2 };

            solidFill46.Append(schemeColor76);

            A.Outline outline8 = new A.Outline(){ Width = 44450, CapType = A.LineCapValues.Square, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill47 = new A.SolidFill();
            A.RgbColorModelHex rgbColorModelHex17 = new A.RgbColorModelHex(){ Val = "FFFFFF" };

            solidFill47.Append(rgbColorModelHex17);
            A.PresetDash presetDash4 = new A.PresetDash(){ Val = A.PresetLineDashValues.Solid };
            A.Miter miter1 = new A.Miter(){ Limit = 800000 };

            outline8.Append(solidFill47);
            outline8.Append(presetDash4);
            outline8.Append(miter1);

            A.EffectList effectList7 = new A.EffectList();

            A.OuterShadow outerShadow7 = new A.OuterShadow(){ BlurRadius = 190500L, Distance = 228600L, Direction = 2700000, VerticalRatio = 90000 };

            A.RgbColorModelHex rgbColorModelHex18 = new A.RgbColorModelHex(){ Val = "000000" };
            A.Alpha alpha7 = new A.Alpha(){ Val = 25000 };

            rgbColorModelHex18.Append(alpha7);

            outerShadow7.Append(rgbColorModelHex18);

            effectList7.Append(outerShadow7);

            A.Scene3DType scene3DType5 = new A.Scene3DType();

            A.Camera camera5 = new A.Camera(){ Preset = A.PresetCameraValues.OrthographicFront };
            A.Rotation rotation6 = new A.Rotation(){ Latitude = 0, Longitude = 0, Revolution = 0 };

            camera5.Append(rotation6);

            A.LightRig lightRig5 = new A.LightRig(){ Rig = A.LightRigValues.Balanced, Direction = A.LightRigDirectionValues.TopRight };
            A.Rotation rotation7 = new A.Rotation(){ Latitude = 0, Longitude = 0, Revolution = 2700000 };

            lightRig5.Append(rotation7);

            scene3DType5.Append(camera5);
            scene3DType5.Append(lightRig5);

            A.Shape3DType shape3DType7 = new A.Shape3DType(){ PresetMaterial = A.PresetMaterialTypeValues.Matte };

            A.ContourColor contourColor2 = new A.ContourColor();

            A.SchemeColor schemeColor77 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };
            A.Shade shade11 = new A.Shade(){ Val = 50000 };

            schemeColor77.Append(shade11);

            contourColor2.Append(schemeColor77);

            shape3DType7.Append(contourColor2);

            shapeProperties61.Append(transform2D24);
            shapeProperties61.Append(solidFill46);
            shapeProperties61.Append(outline8);
            shapeProperties61.Append(effectList7);
            shapeProperties61.Append(scene3DType5);
            shapeProperties61.Append(shape3DType7);

            ShapeStyle shapeStyle1 = new ShapeStyle();

            A.LineReference lineReference1 = new A.LineReference(){ Index = (UInt32Value)3U };
            A.SchemeColor schemeColor78 = new A.SchemeColor(){ Val = A.SchemeColorValues.Light1 };

            lineReference1.Append(schemeColor78);

            A.FillReference fillReference1 = new A.FillReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor79 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference1.Append(schemeColor79);

            A.EffectReference effectReference1 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor80 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference1.Append(schemeColor80);

            A.FontReference fontReference1 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor81 = new A.SchemeColor(){ Val = A.SchemeColorValues.Light1 };

            fontReference1.Append(schemeColor81);

            shapeStyle1.Append(lineReference1);
            shapeStyle1.Append(fillReference1);
            shapeStyle1.Append(effectReference1);
            shapeStyle1.Append(fontReference1);

            TextBody textBody61 = new TextBody();
            A.BodyProperties bodyProperties61 = new A.BodyProperties(){ Anchor = A.TextAnchoringTypeValues.Top };

            A.ListStyle listStyle61 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties23 = new A.Level1ParagraphProperties(){ LeftMargin = 0, Indent = 0, Alignment = A.TextAlignmentTypeValues.Left, RightToLeft = false, EastAsianLineBreak = true, LatinLineBreak = false, Height = true };
            A.NoBullet noBullet34 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties84 = new A.DefaultRunProperties(){ FontSize = 3200 };

            level1ParagraphProperties23.Append(noBullet34);
            level1ParagraphProperties23.Append(defaultRunProperties84);

            listStyle61.Append(level1ParagraphProperties23);

            A.Paragraph paragraph97 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties50 = new A.ParagraphProperties(){ LeftMargin = 0, Alignment = A.TextAlignmentTypeValues.Left, RightToLeft = false, EastAsianLineBreak = true, LatinLineBreak = false, Height = true };

            A.Run run62 = new A.Run();

            A.RunProperties runProperties84 = new A.RunProperties(){ Kumimoji = false, Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties84.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));

            A.SolidFill solidFill48 = new A.SolidFill();
            A.SchemeColor schemeColor82 = new A.SchemeColor(){ Val = A.SchemeColorValues.Light1 };

            solidFill48.Append(schemeColor82);
            A.LatinFont latinFont32 = new A.LatinFont(){ Typeface = "+mn-lt" };
            A.EastAsianFont eastAsianFont32 = new A.EastAsianFont(){ Typeface = "+mn-ea" };
            A.ComplexScriptFont complexScriptFont32 = new A.ComplexScriptFont(){ Typeface = "+mn-cs" };

            runProperties84.Append(solidFill48);
            runProperties84.Append(latinFont32);
            runProperties84.Append(eastAsianFont32);
            runProperties84.Append(complexScriptFont32);
            A.Text text84 = new A.Text();
            text84.Text = "Click icon to add picture";

            run62.Append(runProperties84);
            run62.Append(text84);

            A.EndParagraphRunProperties endParagraphRunProperties57 = new A.EndParagraphRunProperties(){ Kumimoji = false, Language = "en-US", Dirty = false };

            A.SolidFill solidFill49 = new A.SolidFill();
            A.SchemeColor schemeColor83 = new A.SchemeColor(){ Val = A.SchemeColorValues.Light1 };

            solidFill49.Append(schemeColor83);
            A.LatinFont latinFont33 = new A.LatinFont(){ Typeface = "+mn-lt" };
            A.EastAsianFont eastAsianFont33 = new A.EastAsianFont(){ Typeface = "+mn-ea" };
            A.ComplexScriptFont complexScriptFont33 = new A.ComplexScriptFont(){ Typeface = "+mn-cs" };

            endParagraphRunProperties57.Append(solidFill49);
            endParagraphRunProperties57.Append(latinFont33);
            endParagraphRunProperties57.Append(eastAsianFont33);
            endParagraphRunProperties57.Append(complexScriptFont33);

            paragraph97.Append(paragraphProperties50);
            paragraph97.Append(run62);
            paragraph97.Append(endParagraphRunProperties57);

            textBody61.Append(bodyProperties61);
            textBody61.Append(listStyle61);
            textBody61.Append(paragraph97);

            shape61.Append(nonVisualShapeProperties61);
            shape61.Append(shapeProperties61);
            shape61.Append(shapeStyle1);
            shape61.Append(textBody61);

            Shape shape62 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties62 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties75 = new NonVisualDrawingProperties(){ Id = (UInt32Value)4U, Name = "Text Placeholder 3" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties62 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks62 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties62.Append(shapeLocks62);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties75 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape62 = new PlaceholderShape(){ Type = PlaceholderValues.Body, Size = PlaceholderSizeValues.Half, Index = (UInt32Value)2U };

            applicationNonVisualDrawingProperties75.Append(placeholderShape62);

            nonVisualShapeProperties62.Append(nonVisualDrawingProperties75);
            nonVisualShapeProperties62.Append(nonVisualShapeDrawingProperties62);
            nonVisualShapeProperties62.Append(applicationNonVisualDrawingProperties75);

            ShapeProperties shapeProperties62 = new ShapeProperties();

            A.Transform2D transform2D25 = new A.Transform2D();
            A.Offset offset38 = new A.Offset(){ X = 2438400L, Y = 1166787L };
            A.Extents extents38 = new A.Extents(){ Cx = 7315200L, Cy = 530352L };

            transform2D25.Append(offset38);
            transform2D25.Append(extents38);

            shapeProperties62.Append(transform2D25);

            TextBody textBody62 = new TextBody();
            A.BodyProperties bodyProperties62 = new A.BodyProperties(){ LeftInset = 45720, TopInset = 45720, RightInset = 45720, Anchor = A.TextAnchoringTypeValues.Top };

            A.ListStyle listStyle62 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties24 = new A.Level1ParagraphProperties(){ LeftMargin = 0, Indent = 0, Alignment = A.TextAlignmentTypeValues.Center };
            A.NoBullet noBullet35 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties85 = new A.DefaultRunProperties(){ FontSize = 1400 };

            level1ParagraphProperties24.Append(noBullet35);
            level1ParagraphProperties24.Append(defaultRunProperties85);

            A.Level2ParagraphProperties level2ParagraphProperties14 = new A.Level2ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties86 = new A.DefaultRunProperties(){ FontSize = 1200 };

            level2ParagraphProperties14.Append(defaultRunProperties86);

            A.Level3ParagraphProperties level3ParagraphProperties14 = new A.Level3ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties87 = new A.DefaultRunProperties(){ FontSize = 1000 };

            level3ParagraphProperties14.Append(defaultRunProperties87);

            A.Level4ParagraphProperties level4ParagraphProperties14 = new A.Level4ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties88 = new A.DefaultRunProperties(){ FontSize = 900 };

            level4ParagraphProperties14.Append(defaultRunProperties88);

            A.Level5ParagraphProperties level5ParagraphProperties14 = new A.Level5ParagraphProperties();
            A.DefaultRunProperties defaultRunProperties89 = new A.DefaultRunProperties(){ FontSize = 900 };

            level5ParagraphProperties14.Append(defaultRunProperties89);

            listStyle62.Append(level1ParagraphProperties24);
            listStyle62.Append(level2ParagraphProperties14);
            listStyle62.Append(level3ParagraphProperties14);
            listStyle62.Append(level4ParagraphProperties14);
            listStyle62.Append(level5ParagraphProperties14);

            A.Paragraph paragraph98 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties51 = new A.ParagraphProperties(){ Level = 0, EastAsianLineBreak = true, LatinLineBreak = false, Height = true };

            A.Run run63 = new A.Run();

            A.RunProperties runProperties85 = new A.RunProperties(){ Kumimoji = false, Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties85.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text85 = new A.Text();
            text85.Text = "Click to edit Master text styles";

            run63.Append(runProperties85);
            run63.Append(text85);

            paragraph98.Append(paragraphProperties51);
            paragraph98.Append(run63);

            textBody62.Append(bodyProperties62);
            textBody62.Append(listStyle62);
            textBody62.Append(paragraph98);

            shape62.Append(nonVisualShapeProperties62);
            shape62.Append(shapeProperties62);
            shape62.Append(textBody62);

            Shape shape63 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties63 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties76 = new NonVisualDrawingProperties(){ Id = (UInt32Value)5U, Name = "Date Placeholder 4" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties63 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks63 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties63.Append(shapeLocks63);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties76 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape63 = new PlaceholderShape(){ Type = PlaceholderValues.DateAndTime, Size = PlaceholderSizeValues.Half, Index = (UInt32Value)10U };

            applicationNonVisualDrawingProperties76.Append(placeholderShape63);

            nonVisualShapeProperties63.Append(nonVisualDrawingProperties76);
            nonVisualShapeProperties63.Append(nonVisualShapeDrawingProperties63);
            nonVisualShapeProperties63.Append(applicationNonVisualDrawingProperties76);
            ShapeProperties shapeProperties63 = new ShapeProperties();

            TextBody textBody63 = new TextBody();
            A.BodyProperties bodyProperties63 = new A.BodyProperties();
            A.ListStyle listStyle63 = new A.ListStyle();

            A.Paragraph paragraph99 = new A.Paragraph();

            A.Field field23 = new A.Field(){ Id = "{8263865E-5382-4BDD-A09E-2B63F38BCE59}", Type = "datetimeFigureOut" };

            A.RunProperties runProperties86 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties86.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text86 = new A.Text();
            text86.Text = "2012/10/3";

            field23.Append(runProperties86);
            field23.Append(text86);
            A.EndParagraphRunProperties endParagraphRunProperties58 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph99.Append(field23);
            paragraph99.Append(endParagraphRunProperties58);

            textBody63.Append(bodyProperties63);
            textBody63.Append(listStyle63);
            textBody63.Append(paragraph99);

            shape63.Append(nonVisualShapeProperties63);
            shape63.Append(shapeProperties63);
            shape63.Append(textBody63);

            Shape shape64 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties64 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties77 = new NonVisualDrawingProperties(){ Id = (UInt32Value)6U, Name = "Footer Placeholder 5" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties64 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks64 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties64.Append(shapeLocks64);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties77 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape64 = new PlaceholderShape(){ Type = PlaceholderValues.Footer, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)11U };

            applicationNonVisualDrawingProperties77.Append(placeholderShape64);

            nonVisualShapeProperties64.Append(nonVisualDrawingProperties77);
            nonVisualShapeProperties64.Append(nonVisualShapeDrawingProperties64);
            nonVisualShapeProperties64.Append(applicationNonVisualDrawingProperties77);
            ShapeProperties shapeProperties64 = new ShapeProperties();

            TextBody textBody64 = new TextBody();
            A.BodyProperties bodyProperties64 = new A.BodyProperties();
            A.ListStyle listStyle64 = new A.ListStyle();

            A.Paragraph paragraph100 = new A.Paragraph();
            A.EndParagraphRunProperties endParagraphRunProperties59 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph100.Append(endParagraphRunProperties59);

            textBody64.Append(bodyProperties64);
            textBody64.Append(listStyle64);
            textBody64.Append(paragraph100);

            shape64.Append(nonVisualShapeProperties64);
            shape64.Append(shapeProperties64);
            shape64.Append(textBody64);

            Shape shape65 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties65 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties78 = new NonVisualDrawingProperties(){ Id = (UInt32Value)7U, Name = "Slide Number Placeholder 6" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties65 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks65 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties65.Append(shapeLocks65);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties78 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape65 = new PlaceholderShape(){ Type = PlaceholderValues.SlideNumber, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)12U };

            applicationNonVisualDrawingProperties78.Append(placeholderShape65);

            nonVisualShapeProperties65.Append(nonVisualDrawingProperties78);
            nonVisualShapeProperties65.Append(nonVisualShapeDrawingProperties65);
            nonVisualShapeProperties65.Append(applicationNonVisualDrawingProperties78);
            ShapeProperties shapeProperties65 = new ShapeProperties();

            TextBody textBody65 = new TextBody();
            A.BodyProperties bodyProperties65 = new A.BodyProperties();
            A.ListStyle listStyle65 = new A.ListStyle();

            A.Paragraph paragraph101 = new A.Paragraph();

            A.Field field24 = new A.Field(){ Id = "{DF0B8B9E-EDC2-479A-B980-EDD8632819B1}", Type = "slidenum" };

            A.RunProperties runProperties87 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties87.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text87 = new A.Text();
            text87.Text = "‹#›";

            field24.Append(runProperties87);
            field24.Append(text87);
            A.EndParagraphRunProperties endParagraphRunProperties60 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph101.Append(field24);
            paragraph101.Append(endParagraphRunProperties60);

            textBody65.Append(bodyProperties65);
            textBody65.Append(listStyle65);
            textBody65.Append(paragraph101);

            shape65.Append(nonVisualShapeProperties65);
            shape65.Append(shapeProperties65);
            shape65.Append(textBody65);

            shapeTree13.Append(nonVisualGroupShapeProperties13);
            shapeTree13.Append(groupShapeProperties13);
            shapeTree13.Append(shape60);
            shapeTree13.Append(shape61);
            shapeTree13.Append(shape62);
            shapeTree13.Append(shape63);
            shapeTree13.Append(shape64);
            shapeTree13.Append(shape65);

            CommonSlideDataExtensionList commonSlideDataExtensionList13 = new CommonSlideDataExtensionList();

            CommonSlideDataExtension commonSlideDataExtension13 = new CommonSlideDataExtension(){ Uri = "{BB962C8B-B14F-4D97-AF65-F5344CB8AC3E}" };

            P14.CreationId creationId13 = new P14.CreationId(){ Val = (UInt32Value)1836910191U };
            creationId13.AddNamespaceDeclaration("p14", "http://schemas.microsoft.com/office/powerpoint/2010/main");

            commonSlideDataExtension13.Append(creationId13);

            commonSlideDataExtensionList13.Append(commonSlideDataExtension13);

            commonSlideData13.Append(shapeTree13);
            commonSlideData13.Append(commonSlideDataExtensionList13);

            ColorMapOverride colorMapOverride12 = new ColorMapOverride();
            A.MasterColorMapping masterColorMapping11 = new A.MasterColorMapping();

            colorMapOverride12.Append(masterColorMapping11);

            slideLayout11.Append(commonSlideData13);
            slideLayout11.Append(colorMapOverride12);

            slideLayoutPart11.SlideLayout = slideLayout11;
        }
Ejemplo n.º 18
0
        // Generates content of themePart1.
        private void GenerateThemePart1Content(ThemePart themePart1)
        {
            A.Theme theme1 = new A.Theme(){ Name = "Slice" };
            theme1.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");

            A.ThemeElements themeElements1 = new A.ThemeElements();

            A.ColorScheme colorScheme1 = new A.ColorScheme(){ Name = "Slice HD-RCA" };

            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 rgbColorModelHex1 = new A.RgbColorModelHex(){ Val = "537D0B" };

            dark2Color1.Append(rgbColorModelHex1);

            A.Light2Color light2Color1 = new A.Light2Color();
            A.RgbColorModelHex rgbColorModelHex2 = new A.RgbColorModelHex(){ Val = "A9E257" };

            light2Color1.Append(rgbColorModelHex2);

            A.Accent1Color accent1Color1 = new A.Accent1Color();
            A.RgbColorModelHex rgbColorModelHex3 = new A.RgbColorModelHex(){ Val = "38540A" };

            accent1Color1.Append(rgbColorModelHex3);

            A.Accent2Color accent2Color1 = new A.Accent2Color();
            A.RgbColorModelHex rgbColorModelHex4 = new A.RgbColorModelHex(){ Val = "31A274" };

            accent2Color1.Append(rgbColorModelHex4);

            A.Accent3Color accent3Color1 = new A.Accent3Color();
            A.RgbColorModelHex rgbColorModelHex5 = new A.RgbColorModelHex(){ Val = "236073" };

            accent3Color1.Append(rgbColorModelHex5);

            A.Accent4Color accent4Color1 = new A.Accent4Color();
            A.RgbColorModelHex rgbColorModelHex6 = new A.RgbColorModelHex(){ Val = "6C4D90" };

            accent4Color1.Append(rgbColorModelHex6);

            A.Accent5Color accent5Color1 = new A.Accent5Color();
            A.RgbColorModelHex rgbColorModelHex7 = new A.RgbColorModelHex(){ Val = "983C27" };

            accent5Color1.Append(rgbColorModelHex7);

            A.Accent6Color accent6Color1 = new A.Accent6Color();
            A.RgbColorModelHex rgbColorModelHex8 = new A.RgbColorModelHex(){ Val = "CD811F" };

            accent6Color1.Append(rgbColorModelHex8);

            A.Hyperlink hyperlink1 = new A.Hyperlink();
            A.RgbColorModelHex rgbColorModelHex9 = new A.RgbColorModelHex(){ Val = "293F06" };

            hyperlink1.Append(rgbColorModelHex9);

            A.FollowedHyperlinkColor followedHyperlinkColor1 = new A.FollowedHyperlinkColor();
            A.RgbColorModelHex rgbColorModelHex10 = new A.RgbColorModelHex(){ Val = "68883A" };

            followedHyperlinkColor1.Append(rgbColorModelHex10);

            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 fontScheme1 = new A.FontScheme(){ Name = "Slice HD-RCA" };

            A.MajorFont majorFont1 = new A.MajorFont();
            A.LatinFont latinFont32 = new A.LatinFont(){ Typeface = "Century Gothic", Panose = "020B0502020202020204" };
            A.EastAsianFont eastAsianFont29 = new A.EastAsianFont(){ Typeface = "" };
            A.ComplexScriptFont complexScriptFont29 = new A.ComplexScriptFont(){ Typeface = "" };

            majorFont1.Append(latinFont32);
            majorFont1.Append(eastAsianFont29);
            majorFont1.Append(complexScriptFont29);

            A.MinorFont minorFont1 = new A.MinorFont();
            A.LatinFont latinFont33 = new A.LatinFont(){ Typeface = "Century Gothic", Panose = "020B0502020202020204" };
            A.EastAsianFont eastAsianFont30 = new A.EastAsianFont(){ Typeface = "" };
            A.ComplexScriptFont complexScriptFont30 = new A.ComplexScriptFont(){ Typeface = "" };

            minorFont1.Append(latinFont33);
            minorFont1.Append(eastAsianFont30);
            minorFont1.Append(complexScriptFont30);

            fontScheme1.Append(majorFont1);
            fontScheme1.Append(minorFont1);

            A.FormatScheme formatScheme1 = new A.FormatScheme(){ Name = "Slice HD-RCA" };

            A.FillStyleList fillStyleList1 = new A.FillStyleList();

            A.SolidFill solidFill73 = new A.SolidFill();
            A.SchemeColor schemeColor139 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };

            solidFill73.Append(schemeColor139);

            A.GradientFill gradientFill1 = new A.GradientFill(){ RotateWithShape = true };

            A.GradientStopList gradientStopList1 = new A.GradientStopList();

            A.GradientStop gradientStop1 = new A.GradientStop(){ Position = 0 };

            A.SchemeColor schemeColor140 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint17 = new A.Tint(){ Val = 62000 };
            A.HueModulation hueModulation1 = new A.HueModulation(){ Val = 94000 };
            A.SaturationModulation saturationModulation1 = new A.SaturationModulation(){ Val = 140000 };
            A.LuminanceModulation luminanceModulation11 = new A.LuminanceModulation(){ Val = 110000 };

            schemeColor140.Append(tint17);
            schemeColor140.Append(hueModulation1);
            schemeColor140.Append(saturationModulation1);
            schemeColor140.Append(luminanceModulation11);

            gradientStop1.Append(schemeColor140);

            A.GradientStop gradientStop2 = new A.GradientStop(){ Position = 100000 };

            A.SchemeColor schemeColor141 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint18 = new A.Tint(){ Val = 84000 };
            A.SaturationModulation saturationModulation2 = new A.SaturationModulation(){ Val = 160000 };

            schemeColor141.Append(tint18);
            schemeColor141.Append(saturationModulation2);

            gradientStop2.Append(schemeColor141);

            gradientStopList1.Append(gradientStop1);
            gradientStopList1.Append(gradientStop2);
            A.LinearGradientFill linearGradientFill1 = new A.LinearGradientFill(){ Angle = 5400000, Scaled = false };

            gradientFill1.Append(gradientStopList1);
            gradientFill1.Append(linearGradientFill1);

            A.GradientFill gradientFill2 = new A.GradientFill(){ RotateWithShape = true };

            A.GradientStopList gradientStopList2 = new A.GradientStopList();

            A.GradientStop gradientStop3 = new A.GradientStop(){ Position = 0 };

            A.SchemeColor schemeColor142 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint19 = new A.Tint(){ Val = 98000 };
            A.HueModulation hueModulation2 = new A.HueModulation(){ Val = 94000 };
            A.SaturationModulation saturationModulation3 = new A.SaturationModulation(){ Val = 130000 };
            A.LuminanceModulation luminanceModulation12 = new A.LuminanceModulation(){ Val = 128000 };

            schemeColor142.Append(tint19);
            schemeColor142.Append(hueModulation2);
            schemeColor142.Append(saturationModulation3);
            schemeColor142.Append(luminanceModulation12);

            gradientStop3.Append(schemeColor142);

            A.GradientStop gradientStop4 = new A.GradientStop(){ Position = 100000 };

            A.SchemeColor schemeColor143 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Shade shade1 = new A.Shade(){ Val = 94000 };
            A.LuminanceModulation luminanceModulation13 = new A.LuminanceModulation(){ Val = 88000 };

            schemeColor143.Append(shade1);
            schemeColor143.Append(luminanceModulation13);

            gradientStop4.Append(schemeColor143);

            gradientStopList2.Append(gradientStop3);
            gradientStopList2.Append(gradientStop4);
            A.LinearGradientFill linearGradientFill2 = new A.LinearGradientFill(){ Angle = 5400000, Scaled = false };

            gradientFill2.Append(gradientStopList2);
            gradientFill2.Append(linearGradientFill2);

            fillStyleList1.Append(solidFill73);
            fillStyleList1.Append(gradientFill1);
            fillStyleList1.Append(gradientFill2);

            A.LineStyleList lineStyleList1 = new A.LineStyleList();

            A.Outline outline17 = new A.Outline(){ Width = 9525, CapType = A.LineCapValues.Round, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill74 = new A.SolidFill();

            A.SchemeColor schemeColor144 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint20 = new A.Tint(){ Val = 76000 };
            A.Alpha alpha1 = new A.Alpha(){ Val = 60000 };
            A.HueModulation hueModulation3 = new A.HueModulation(){ Val = 94000 };

            schemeColor144.Append(tint20);
            schemeColor144.Append(alpha1);
            schemeColor144.Append(hueModulation3);

            solidFill74.Append(schemeColor144);
            A.PresetDash presetDash1 = new A.PresetDash(){ Val = A.PresetLineDashValues.Solid };

            outline17.Append(solidFill74);
            outline17.Append(presetDash1);

            A.Outline outline18 = new A.Outline(){ Width = 15875, CapType = A.LineCapValues.Round, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill75 = new A.SolidFill();

            A.SchemeColor schemeColor145 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.HueModulation hueModulation4 = new A.HueModulation(){ Val = 94000 };

            schemeColor145.Append(hueModulation4);

            solidFill75.Append(schemeColor145);
            A.PresetDash presetDash2 = new A.PresetDash(){ Val = A.PresetLineDashValues.Solid };

            outline18.Append(solidFill75);
            outline18.Append(presetDash2);

            A.Outline outline19 = new A.Outline(){ Width = 28575, CapType = A.LineCapValues.Round, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill76 = new A.SolidFill();
            A.SchemeColor schemeColor146 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };

            solidFill76.Append(schemeColor146);
            A.PresetDash presetDash3 = new A.PresetDash(){ Val = A.PresetLineDashValues.Solid };

            outline19.Append(solidFill76);
            outline19.Append(presetDash3);

            lineStyleList1.Append(outline17);
            lineStyleList1.Append(outline18);
            lineStyleList1.Append(outline19);

            A.EffectStyleList effectStyleList1 = new A.EffectStyleList();

            A.EffectStyle effectStyle1 = new A.EffectStyle();
            A.EffectList effectList12 = new A.EffectList();

            effectStyle1.Append(effectList12);

            A.EffectStyle effectStyle2 = new A.EffectStyle();

            A.EffectList effectList13 = new A.EffectList();

            A.InnerShadow innerShadow1 = new A.InnerShadow(){ BlurRadius = 25400L, Distance = 12700L, Direction = 13500000 };

            A.RgbColorModelHex rgbColorModelHex11 = new A.RgbColorModelHex(){ Val = "000000" };
            A.Alpha alpha2 = new A.Alpha(){ Val = 45000 };

            rgbColorModelHex11.Append(alpha2);

            innerShadow1.Append(rgbColorModelHex11);

            effectList13.Append(innerShadow1);

            effectStyle2.Append(effectList13);

            A.EffectStyle effectStyle3 = new A.EffectStyle();

            A.EffectList effectList14 = new A.EffectList();

            A.OuterShadow outerShadow1 = new A.OuterShadow(){ BlurRadius = 50800L, Distance = 38100L, Direction = 5400000, RotateWithShape = false };

            A.RgbColorModelHex rgbColorModelHex12 = new A.RgbColorModelHex(){ Val = "000000" };
            A.Alpha alpha3 = new A.Alpha(){ Val = 46000 };

            rgbColorModelHex12.Append(alpha3);

            outerShadow1.Append(rgbColorModelHex12);

            effectList14.Append(outerShadow1);

            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 };

            scene3DType1.Append(camera1);
            scene3DType1.Append(lightRig1);

            A.Shape3DType shape3DType1 = new A.Shape3DType(){ PresetMaterial = A.PresetMaterialTypeValues.Plastic };
            A.BevelTop bevelTop1 = new A.BevelTop(){ Width = 25400L, Height = 25400L };

            shape3DType1.Append(bevelTop1);

            effectStyle3.Append(effectList14);
            effectStyle3.Append(scene3DType1);
            effectStyle3.Append(shape3DType1);

            effectStyleList1.Append(effectStyle1);
            effectStyleList1.Append(effectStyle2);
            effectStyleList1.Append(effectStyle3);

            A.BackgroundFillStyleList backgroundFillStyleList1 = new A.BackgroundFillStyleList();

            A.SolidFill solidFill77 = new A.SolidFill();
            A.SchemeColor schemeColor147 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };

            solidFill77.Append(schemeColor147);

            A.GradientFill gradientFill3 = new A.GradientFill(){ RotateWithShape = true };

            A.GradientStopList gradientStopList3 = new A.GradientStopList();

            A.GradientStop gradientStop5 = new A.GradientStop(){ Position = 10000 };

            A.SchemeColor schemeColor148 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint21 = new A.Tint(){ Val = 97000 };
            A.HueModulation hueModulation5 = new A.HueModulation(){ Val = 92000 };
            A.SaturationModulation saturationModulation4 = new A.SaturationModulation(){ Val = 169000 };
            A.LuminanceModulation luminanceModulation14 = new A.LuminanceModulation(){ Val = 164000 };

            schemeColor148.Append(tint21);
            schemeColor148.Append(hueModulation5);
            schemeColor148.Append(saturationModulation4);
            schemeColor148.Append(luminanceModulation14);

            gradientStop5.Append(schemeColor148);

            A.GradientStop gradientStop6 = new A.GradientStop(){ Position = 100000 };

            A.SchemeColor schemeColor149 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Shade shade2 = new A.Shade(){ Val = 96000 };
            A.SaturationModulation saturationModulation5 = new A.SaturationModulation(){ Val = 120000 };
            A.LuminanceModulation luminanceModulation15 = new A.LuminanceModulation(){ Val = 90000 };

            schemeColor149.Append(shade2);
            schemeColor149.Append(saturationModulation5);
            schemeColor149.Append(luminanceModulation15);

            gradientStop6.Append(schemeColor149);

            gradientStopList3.Append(gradientStop5);
            gradientStopList3.Append(gradientStop6);
            A.LinearGradientFill linearGradientFill3 = new A.LinearGradientFill(){ Angle = 6120000, Scaled = true };

            gradientFill3.Append(gradientStopList3);
            gradientFill3.Append(linearGradientFill3);

            A.GradientFill gradientFill4 = new A.GradientFill(){ RotateWithShape = true };

            A.GradientStopList gradientStopList4 = new A.GradientStopList();

            A.GradientStop gradientStop7 = new A.GradientStop(){ Position = 0 };

            A.SchemeColor schemeColor150 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint22 = new A.Tint(){ Val = 97000 };
            A.HueModulation hueModulation6 = new A.HueModulation(){ Val = 92000 };
            A.SaturationModulation saturationModulation6 = new A.SaturationModulation(){ Val = 169000 };
            A.LuminanceModulation luminanceModulation16 = new A.LuminanceModulation(){ Val = 164000 };

            schemeColor150.Append(tint22);
            schemeColor150.Append(hueModulation6);
            schemeColor150.Append(saturationModulation6);
            schemeColor150.Append(luminanceModulation16);

            gradientStop7.Append(schemeColor150);

            A.GradientStop gradientStop8 = new A.GradientStop(){ Position = 100000 };

            A.SchemeColor schemeColor151 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Shade shade3 = new A.Shade(){ Val = 96000 };
            A.SaturationModulation saturationModulation7 = new A.SaturationModulation(){ Val = 120000 };
            A.LuminanceModulation luminanceModulation17 = new A.LuminanceModulation(){ Val = 90000 };

            schemeColor151.Append(shade3);
            schemeColor151.Append(saturationModulation7);
            schemeColor151.Append(luminanceModulation17);

            gradientStop8.Append(schemeColor151);

            gradientStopList4.Append(gradientStop7);
            gradientStopList4.Append(gradientStop8);

            A.PathGradientFill pathGradientFill1 = new A.PathGradientFill(){ Path = A.PathShadeValues.Circle };
            A.FillToRectangle fillToRectangle1 = new A.FillToRectangle(){ Bottom = 100000 };

            pathGradientFill1.Append(fillToRectangle1);

            gradientFill4.Append(gradientStopList4);
            gradientFill4.Append(pathGradientFill1);

            backgroundFillStyleList1.Append(solidFill77);
            backgroundFillStyleList1.Append(gradientFill3);
            backgroundFillStyleList1.Append(gradientFill4);

            formatScheme1.Append(fillStyleList1);
            formatScheme1.Append(lineStyleList1);
            formatScheme1.Append(effectStyleList1);
            formatScheme1.Append(backgroundFillStyleList1);

            themeElements1.Append(colorScheme1);
            themeElements1.Append(fontScheme1);
            themeElements1.Append(formatScheme1);
            A.ObjectDefaults objectDefaults1 = new A.ObjectDefaults();
            A.ExtraColorSchemeList extraColorSchemeList1 = new A.ExtraColorSchemeList();

            A.OfficeStyleSheetExtensionList officeStyleSheetExtensionList1 = new A.OfficeStyleSheetExtensionList();

            A.OfficeStyleSheetExtension officeStyleSheetExtension1 = new A.OfficeStyleSheetExtension(){ Uri = "{05A4C25C-085E-4340-85A3-A5531E510DB2}" };

            Thm15.ThemeFamily themeFamily1 = new Thm15.ThemeFamily(){ Name = "Slice", Id = "{0507925B-6AC9-4358-8E18-C330545D08F8}", Vid = "{24C90B2D-6D41-4755-90A4-ED86E7EA9F03}" };
            themeFamily1.AddNamespaceDeclaration("thm15", "http://schemas.microsoft.com/office/thememl/2012/main");

            officeStyleSheetExtension1.Append(themeFamily1);

            officeStyleSheetExtensionList1.Append(officeStyleSheetExtension1);

            theme1.Append(themeElements1);
            theme1.Append(objectDefaults1);
            theme1.Append(extraColorSchemeList1);
            theme1.Append(officeStyleSheetExtensionList1);

            themePart1.Theme = theme1;
        }
Ejemplo n.º 19
0
        // Generates content of slideLayoutPart6.
        private void GenerateSlideLayoutPart6Content(SlideLayoutPart slideLayoutPart6)
        {
            SlideLayout slideLayout6 = new SlideLayout(){ Preserve = true };
            slideLayout6.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");
            slideLayout6.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            slideLayout6.AddNamespaceDeclaration("p", "http://schemas.openxmlformats.org/presentationml/2006/main");

            CommonSlideData commonSlideData8 = new CommonSlideData(){ Name = "Quote with Caption" };

            ShapeTree shapeTree8 = new ShapeTree();

            NonVisualGroupShapeProperties nonVisualGroupShapeProperties8 = new NonVisualGroupShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties64 = new NonVisualDrawingProperties(){ Id = (UInt32Value)1U, Name = "" };
            NonVisualGroupShapeDrawingProperties nonVisualGroupShapeDrawingProperties8 = new NonVisualGroupShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties64 = new ApplicationNonVisualDrawingProperties();

            nonVisualGroupShapeProperties8.Append(nonVisualDrawingProperties64);
            nonVisualGroupShapeProperties8.Append(nonVisualGroupShapeDrawingProperties8);
            nonVisualGroupShapeProperties8.Append(applicationNonVisualDrawingProperties64);

            GroupShapeProperties groupShapeProperties8 = new GroupShapeProperties();

            A.TransformGroup transformGroup8 = new A.TransformGroup();
            A.Offset offset47 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents47 = new A.Extents(){ Cx = 0L, Cy = 0L };
            A.ChildOffset childOffset8 = new A.ChildOffset(){ X = 0L, Y = 0L };
            A.ChildExtents childExtents8 = new A.ChildExtents(){ Cx = 0L, Cy = 0L };

            transformGroup8.Append(offset47);
            transformGroup8.Append(extents47);
            transformGroup8.Append(childOffset8);
            transformGroup8.Append(childExtents8);

            groupShapeProperties8.Append(transformGroup8);

            Shape shape32 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties32 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties65 = new NonVisualDrawingProperties(){ Id = (UInt32Value)2U, Name = "Title 1" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties32 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks32 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties32.Append(shapeLocks32);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties65 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape32 = new PlaceholderShape(){ Type = PlaceholderValues.Title };

            applicationNonVisualDrawingProperties65.Append(placeholderShape32);

            nonVisualShapeProperties32.Append(nonVisualDrawingProperties65);
            nonVisualShapeProperties32.Append(nonVisualShapeDrawingProperties32);
            nonVisualShapeProperties32.Append(applicationNonVisualDrawingProperties65);

            ShapeProperties shapeProperties57 = new ShapeProperties();

            A.Transform2D transform2D40 = new A.Transform2D();
            A.Offset offset48 = new A.Offset(){ X = 1141709L, Y = 685800L };
            A.Extents extents48 = new A.Extents(){ Cx = 9146383L, Cy = 2743200L };

            transform2D40.Append(offset48);
            transform2D40.Append(extents48);

            shapeProperties57.Append(transform2D40);

            TextBody textBody32 = new TextBody();

            A.BodyProperties bodyProperties32 = new A.BodyProperties(){ Anchor = A.TextAnchoringTypeValues.Center };
            A.NormalAutoFit normalAutoFit12 = new A.NormalAutoFit();

            bodyProperties32.Append(normalAutoFit12);

            A.ListStyle listStyle32 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties17 = new A.Level1ParagraphProperties(){ Alignment = A.TextAlignmentTypeValues.Left };

            A.DefaultRunProperties defaultRunProperties91 = new A.DefaultRunProperties(){ FontSize = 3200, Bold = false, Capital = A.TextCapsValues.All };

            A.SolidFill solidFill97 = new A.SolidFill();
            A.SchemeColor schemeColor211 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill97.Append(schemeColor211);

            defaultRunProperties91.Append(solidFill97);

            level1ParagraphProperties17.Append(defaultRunProperties91);

            listStyle32.Append(level1ParagraphProperties17);

            A.Paragraph paragraph40 = new A.Paragraph();

            A.Run run23 = new A.Run();

            A.RunProperties runProperties35 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties35.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text35 = new A.Text();
            text35.Text = "Click to edit Master title style";

            run23.Append(runProperties35);
            run23.Append(text35);
            A.EndParagraphRunProperties endParagraphRunProperties29 = new A.EndParagraphRunProperties(){ Language = "en-US", Dirty = false };

            paragraph40.Append(run23);
            paragraph40.Append(endParagraphRunProperties29);

            textBody32.Append(bodyProperties32);
            textBody32.Append(listStyle32);
            textBody32.Append(paragraph40);

            shape32.Append(nonVisualShapeProperties32);
            shape32.Append(shapeProperties57);
            shape32.Append(textBody32);

            Shape shape33 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties33 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties66 = new NonVisualDrawingProperties(){ Id = (UInt32Value)3U, Name = "Text Placeholder 2" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties33 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks33 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties33.Append(shapeLocks33);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties66 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape33 = new PlaceholderShape(){ Type = PlaceholderValues.Body, Index = (UInt32Value)1U };

            applicationNonVisualDrawingProperties66.Append(placeholderShape33);

            nonVisualShapeProperties33.Append(nonVisualDrawingProperties66);
            nonVisualShapeProperties33.Append(nonVisualShapeDrawingProperties33);
            nonVisualShapeProperties33.Append(applicationNonVisualDrawingProperties66);

            ShapeProperties shapeProperties58 = new ShapeProperties();

            A.Transform2D transform2D41 = new A.Transform2D();
            A.Offset offset49 = new A.Offset(){ X = 684391L, Y = 4301068L };
            A.Extents extents49 = new A.Extents(){ Cx = 8536623L, Cy = 1684865L };

            transform2D41.Append(offset49);
            transform2D41.Append(extents49);

            shapeProperties58.Append(transform2D41);

            TextBody textBody33 = new TextBody();

            A.BodyProperties bodyProperties33 = new A.BodyProperties(){ Anchor = A.TextAnchoringTypeValues.Center };
            A.NormalAutoFit normalAutoFit13 = new A.NormalAutoFit();

            bodyProperties33.Append(normalAutoFit13);

            A.ListStyle listStyle33 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties18 = new A.Level1ParagraphProperties(){ LeftMargin = 0, Indent = 0, Alignment = A.TextAlignmentTypeValues.Left };
            A.NoBullet noBullet38 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties92 = new A.DefaultRunProperties(){ FontSize = 2000 };

            A.SolidFill solidFill98 = new A.SolidFill();

            A.SchemeColor schemeColor212 = new A.SchemeColor(){ Val = A.SchemeColorValues.Background2 };
            A.LuminanceModulation luminanceModulation19 = new A.LuminanceModulation(){ Val = 75000 };

            schemeColor212.Append(luminanceModulation19);

            solidFill98.Append(schemeColor212);

            defaultRunProperties92.Append(solidFill98);

            level1ParagraphProperties18.Append(noBullet38);
            level1ParagraphProperties18.Append(defaultRunProperties92);

            A.Level2ParagraphProperties level2ParagraphProperties10 = new A.Level2ParagraphProperties(){ LeftMargin = 457200, Indent = 0 };
            A.NoBullet noBullet39 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties93 = new A.DefaultRunProperties(){ FontSize = 1800 };

            A.SolidFill solidFill99 = new A.SolidFill();

            A.SchemeColor schemeColor213 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint31 = new A.Tint(){ Val = 75000 };

            schemeColor213.Append(tint31);

            solidFill99.Append(schemeColor213);

            defaultRunProperties93.Append(solidFill99);

            level2ParagraphProperties10.Append(noBullet39);
            level2ParagraphProperties10.Append(defaultRunProperties93);

            A.Level3ParagraphProperties level3ParagraphProperties10 = new A.Level3ParagraphProperties(){ LeftMargin = 914400, Indent = 0 };
            A.NoBullet noBullet40 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties94 = new A.DefaultRunProperties(){ FontSize = 1600 };

            A.SolidFill solidFill100 = new A.SolidFill();

            A.SchemeColor schemeColor214 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint32 = new A.Tint(){ Val = 75000 };

            schemeColor214.Append(tint32);

            solidFill100.Append(schemeColor214);

            defaultRunProperties94.Append(solidFill100);

            level3ParagraphProperties10.Append(noBullet40);
            level3ParagraphProperties10.Append(defaultRunProperties94);

            A.Level4ParagraphProperties level4ParagraphProperties10 = new A.Level4ParagraphProperties(){ LeftMargin = 1371600, Indent = 0 };
            A.NoBullet noBullet41 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties95 = new A.DefaultRunProperties(){ FontSize = 1400 };

            A.SolidFill solidFill101 = new A.SolidFill();

            A.SchemeColor schemeColor215 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint33 = new A.Tint(){ Val = 75000 };

            schemeColor215.Append(tint33);

            solidFill101.Append(schemeColor215);

            defaultRunProperties95.Append(solidFill101);

            level4ParagraphProperties10.Append(noBullet41);
            level4ParagraphProperties10.Append(defaultRunProperties95);

            A.Level5ParagraphProperties level5ParagraphProperties10 = new A.Level5ParagraphProperties(){ LeftMargin = 1828800, Indent = 0 };
            A.NoBullet noBullet42 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties96 = new A.DefaultRunProperties(){ FontSize = 1400 };

            A.SolidFill solidFill102 = new A.SolidFill();

            A.SchemeColor schemeColor216 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint34 = new A.Tint(){ Val = 75000 };

            schemeColor216.Append(tint34);

            solidFill102.Append(schemeColor216);

            defaultRunProperties96.Append(solidFill102);

            level5ParagraphProperties10.Append(noBullet42);
            level5ParagraphProperties10.Append(defaultRunProperties96);

            A.Level6ParagraphProperties level6ParagraphProperties10 = new A.Level6ParagraphProperties(){ LeftMargin = 2286000, Indent = 0 };
            A.NoBullet noBullet43 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties97 = new A.DefaultRunProperties(){ FontSize = 1400 };

            A.SolidFill solidFill103 = new A.SolidFill();

            A.SchemeColor schemeColor217 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint35 = new A.Tint(){ Val = 75000 };

            schemeColor217.Append(tint35);

            solidFill103.Append(schemeColor217);

            defaultRunProperties97.Append(solidFill103);

            level6ParagraphProperties10.Append(noBullet43);
            level6ParagraphProperties10.Append(defaultRunProperties97);

            A.Level7ParagraphProperties level7ParagraphProperties10 = new A.Level7ParagraphProperties(){ LeftMargin = 2743200, Indent = 0 };
            A.NoBullet noBullet44 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties98 = new A.DefaultRunProperties(){ FontSize = 1400 };

            A.SolidFill solidFill104 = new A.SolidFill();

            A.SchemeColor schemeColor218 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint36 = new A.Tint(){ Val = 75000 };

            schemeColor218.Append(tint36);

            solidFill104.Append(schemeColor218);

            defaultRunProperties98.Append(solidFill104);

            level7ParagraphProperties10.Append(noBullet44);
            level7ParagraphProperties10.Append(defaultRunProperties98);

            A.Level8ParagraphProperties level8ParagraphProperties10 = new A.Level8ParagraphProperties(){ LeftMargin = 3200400, Indent = 0 };
            A.NoBullet noBullet45 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties99 = new A.DefaultRunProperties(){ FontSize = 1400 };

            A.SolidFill solidFill105 = new A.SolidFill();

            A.SchemeColor schemeColor219 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint37 = new A.Tint(){ Val = 75000 };

            schemeColor219.Append(tint37);

            solidFill105.Append(schemeColor219);

            defaultRunProperties99.Append(solidFill105);

            level8ParagraphProperties10.Append(noBullet45);
            level8ParagraphProperties10.Append(defaultRunProperties99);

            A.Level9ParagraphProperties level9ParagraphProperties10 = new A.Level9ParagraphProperties(){ LeftMargin = 3657600, Indent = 0 };
            A.NoBullet noBullet46 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties100 = new A.DefaultRunProperties(){ FontSize = 1400 };

            A.SolidFill solidFill106 = new A.SolidFill();

            A.SchemeColor schemeColor220 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint38 = new A.Tint(){ Val = 75000 };

            schemeColor220.Append(tint38);

            solidFill106.Append(schemeColor220);

            defaultRunProperties100.Append(solidFill106);

            level9ParagraphProperties10.Append(noBullet46);
            level9ParagraphProperties10.Append(defaultRunProperties100);

            listStyle33.Append(level1ParagraphProperties18);
            listStyle33.Append(level2ParagraphProperties10);
            listStyle33.Append(level3ParagraphProperties10);
            listStyle33.Append(level4ParagraphProperties10);
            listStyle33.Append(level5ParagraphProperties10);
            listStyle33.Append(level6ParagraphProperties10);
            listStyle33.Append(level7ParagraphProperties10);
            listStyle33.Append(level8ParagraphProperties10);
            listStyle33.Append(level9ParagraphProperties10);

            A.Paragraph paragraph41 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties14 = new A.ParagraphProperties(){ Level = 0 };

            A.Run run24 = new A.Run();

            A.RunProperties runProperties36 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties36.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text36 = new A.Text();
            text36.Text = "Click to edit Master text styles";

            run24.Append(runProperties36);
            run24.Append(text36);

            paragraph41.Append(paragraphProperties14);
            paragraph41.Append(run24);

            textBody33.Append(bodyProperties33);
            textBody33.Append(listStyle33);
            textBody33.Append(paragraph41);

            shape33.Append(nonVisualShapeProperties33);
            shape33.Append(shapeProperties58);
            shape33.Append(textBody33);

            Shape shape34 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties34 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties67 = new NonVisualDrawingProperties(){ Id = (UInt32Value)4U, Name = "Date Placeholder 3" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties34 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks34 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties34.Append(shapeLocks34);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties67 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape34 = new PlaceholderShape(){ Type = PlaceholderValues.DateAndTime, Size = PlaceholderSizeValues.Half, Index = (UInt32Value)10U };

            applicationNonVisualDrawingProperties67.Append(placeholderShape34);

            nonVisualShapeProperties34.Append(nonVisualDrawingProperties67);
            nonVisualShapeProperties34.Append(nonVisualShapeDrawingProperties34);
            nonVisualShapeProperties34.Append(applicationNonVisualDrawingProperties67);
            ShapeProperties shapeProperties59 = new ShapeProperties();

            TextBody textBody34 = new TextBody();
            A.BodyProperties bodyProperties34 = new A.BodyProperties();
            A.ListStyle listStyle34 = new A.ListStyle();

            A.Paragraph paragraph42 = new A.Paragraph();

            A.Field field13 = new A.Field(){ Id = "{CE1A2D98-1BBD-4706-A118-AAC2A16BEAD3}", Type = "datetimeFigureOut" };

            A.RunProperties runProperties37 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties37.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text37 = new A.Text();
            text37.Text = "2012/10/3";

            field13.Append(runProperties37);
            field13.Append(text37);
            A.EndParagraphRunProperties endParagraphRunProperties30 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph42.Append(field13);
            paragraph42.Append(endParagraphRunProperties30);

            textBody34.Append(bodyProperties34);
            textBody34.Append(listStyle34);
            textBody34.Append(paragraph42);

            shape34.Append(nonVisualShapeProperties34);
            shape34.Append(shapeProperties59);
            shape34.Append(textBody34);

            Shape shape35 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties35 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties68 = new NonVisualDrawingProperties(){ Id = (UInt32Value)5U, Name = "Footer Placeholder 4" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties35 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks35 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties35.Append(shapeLocks35);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties68 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape35 = new PlaceholderShape(){ Type = PlaceholderValues.Footer, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)11U };

            applicationNonVisualDrawingProperties68.Append(placeholderShape35);

            nonVisualShapeProperties35.Append(nonVisualDrawingProperties68);
            nonVisualShapeProperties35.Append(nonVisualShapeDrawingProperties35);
            nonVisualShapeProperties35.Append(applicationNonVisualDrawingProperties68);
            ShapeProperties shapeProperties60 = new ShapeProperties();

            TextBody textBody35 = new TextBody();
            A.BodyProperties bodyProperties35 = new A.BodyProperties();
            A.ListStyle listStyle35 = new A.ListStyle();

            A.Paragraph paragraph43 = new A.Paragraph();
            A.EndParagraphRunProperties endParagraphRunProperties31 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph43.Append(endParagraphRunProperties31);

            textBody35.Append(bodyProperties35);
            textBody35.Append(listStyle35);
            textBody35.Append(paragraph43);

            shape35.Append(nonVisualShapeProperties35);
            shape35.Append(shapeProperties60);
            shape35.Append(textBody35);

            Shape shape36 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties36 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties69 = new NonVisualDrawingProperties(){ Id = (UInt32Value)6U, Name = "Slide Number Placeholder 5" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties36 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks36 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties36.Append(shapeLocks36);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties69 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape36 = new PlaceholderShape(){ Type = PlaceholderValues.SlideNumber, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)12U };

            applicationNonVisualDrawingProperties69.Append(placeholderShape36);

            nonVisualShapeProperties36.Append(nonVisualDrawingProperties69);
            nonVisualShapeProperties36.Append(nonVisualShapeDrawingProperties36);
            nonVisualShapeProperties36.Append(applicationNonVisualDrawingProperties69);
            ShapeProperties shapeProperties61 = new ShapeProperties();

            TextBody textBody36 = new TextBody();
            A.BodyProperties bodyProperties36 = new A.BodyProperties();
            A.ListStyle listStyle36 = new A.ListStyle();

            A.Paragraph paragraph44 = new A.Paragraph();

            A.Field field14 = new A.Field(){ Id = "{D107CD50-7081-433F-A1F2-156B4E14F4F4}", Type = "slidenum" };

            A.RunProperties runProperties38 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties38.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text38 = new A.Text();
            text38.Text = "‹#›";

            field14.Append(runProperties38);
            field14.Append(text38);
            A.EndParagraphRunProperties endParagraphRunProperties32 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph44.Append(field14);
            paragraph44.Append(endParagraphRunProperties32);

            textBody36.Append(bodyProperties36);
            textBody36.Append(listStyle36);
            textBody36.Append(paragraph44);

            shape36.Append(nonVisualShapeProperties36);
            shape36.Append(shapeProperties61);
            shape36.Append(textBody36);

            Shape shape37 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties37 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties70 = new NonVisualDrawingProperties(){ Id = (UInt32Value)10U, Name = "Text Placeholder 9" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties37 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks37 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties37.Append(shapeLocks37);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties70 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape37 = new PlaceholderShape(){ Type = PlaceholderValues.Body, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)13U };

            applicationNonVisualDrawingProperties70.Append(placeholderShape37);

            nonVisualShapeProperties37.Append(nonVisualDrawingProperties70);
            nonVisualShapeProperties37.Append(nonVisualShapeDrawingProperties37);
            nonVisualShapeProperties37.Append(applicationNonVisualDrawingProperties70);

            ShapeProperties shapeProperties62 = new ShapeProperties();

            A.Transform2D transform2D42 = new A.Transform2D();
            A.Offset offset50 = new A.Offset(){ X = 1446589L, Y = 3429000L };
            A.Extents extents50 = new A.Extents(){ Cx = 8536623L, Cy = 381000L };

            transform2D42.Append(offset50);
            transform2D42.Append(extents50);

            shapeProperties62.Append(transform2D42);

            TextBody textBody37 = new TextBody();
            A.BodyProperties bodyProperties37 = new A.BodyProperties(){ Anchor = A.TextAnchoringTypeValues.Center };

            A.ListStyle listStyle37 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties19 = new A.Level1ParagraphProperties(){ LeftMargin = 0, Indent = 0 };
            A.BulletFontText bulletFontText1 = new A.BulletFontText();
            A.NoBullet noBullet47 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties101 = new A.DefaultRunProperties();

            level1ParagraphProperties19.Append(bulletFontText1);
            level1ParagraphProperties19.Append(noBullet47);
            level1ParagraphProperties19.Append(defaultRunProperties101);

            A.Level2ParagraphProperties level2ParagraphProperties11 = new A.Level2ParagraphProperties(){ LeftMargin = 457200, Indent = 0 };
            A.BulletFontText bulletFontText2 = new A.BulletFontText();
            A.NoBullet noBullet48 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties102 = new A.DefaultRunProperties();

            level2ParagraphProperties11.Append(bulletFontText2);
            level2ParagraphProperties11.Append(noBullet48);
            level2ParagraphProperties11.Append(defaultRunProperties102);

            A.Level3ParagraphProperties level3ParagraphProperties11 = new A.Level3ParagraphProperties(){ LeftMargin = 914400, Indent = 0 };
            A.BulletFontText bulletFontText3 = new A.BulletFontText();
            A.NoBullet noBullet49 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties103 = new A.DefaultRunProperties();

            level3ParagraphProperties11.Append(bulletFontText3);
            level3ParagraphProperties11.Append(noBullet49);
            level3ParagraphProperties11.Append(defaultRunProperties103);

            A.Level4ParagraphProperties level4ParagraphProperties11 = new A.Level4ParagraphProperties(){ LeftMargin = 1371600, Indent = 0 };
            A.BulletFontText bulletFontText4 = new A.BulletFontText();
            A.NoBullet noBullet50 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties104 = new A.DefaultRunProperties();

            level4ParagraphProperties11.Append(bulletFontText4);
            level4ParagraphProperties11.Append(noBullet50);
            level4ParagraphProperties11.Append(defaultRunProperties104);

            A.Level5ParagraphProperties level5ParagraphProperties11 = new A.Level5ParagraphProperties(){ LeftMargin = 1828800, Indent = 0 };
            A.BulletFontText bulletFontText5 = new A.BulletFontText();
            A.NoBullet noBullet51 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties105 = new A.DefaultRunProperties();

            level5ParagraphProperties11.Append(bulletFontText5);
            level5ParagraphProperties11.Append(noBullet51);
            level5ParagraphProperties11.Append(defaultRunProperties105);

            listStyle37.Append(level1ParagraphProperties19);
            listStyle37.Append(level2ParagraphProperties11);
            listStyle37.Append(level3ParagraphProperties11);
            listStyle37.Append(level4ParagraphProperties11);
            listStyle37.Append(level5ParagraphProperties11);

            A.Paragraph paragraph45 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties15 = new A.ParagraphProperties(){ Level = 0 };

            A.Run run25 = new A.Run();

            A.RunProperties runProperties39 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties39.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text39 = new A.Text();
            text39.Text = "Click to edit Master text styles";

            run25.Append(runProperties39);
            run25.Append(text39);

            paragraph45.Append(paragraphProperties15);
            paragraph45.Append(run25);

            textBody37.Append(bodyProperties37);
            textBody37.Append(listStyle37);
            textBody37.Append(paragraph45);

            shape37.Append(nonVisualShapeProperties37);
            shape37.Append(shapeProperties62);
            shape37.Append(textBody37);

            Shape shape38 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties38 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties71 = new NonVisualDrawingProperties(){ Id = (UInt32Value)14U, Name = "TextBox 13" };
            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties38 = new NonVisualShapeDrawingProperties(){ TextBox = true };
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties71 = new ApplicationNonVisualDrawingProperties();

            nonVisualShapeProperties38.Append(nonVisualDrawingProperties71);
            nonVisualShapeProperties38.Append(nonVisualShapeDrawingProperties38);
            nonVisualShapeProperties38.Append(applicationNonVisualDrawingProperties71);

            ShapeProperties shapeProperties63 = new ShapeProperties();

            A.Transform2D transform2D43 = new A.Transform2D();
            A.Offset offset51 = new A.Offset(){ X = 531950L, Y = 812222L };
            A.Extents extents51 = new A.Extents(){ Cx = 609759L, Cy = 584776L };

            transform2D43.Append(offset51);
            transform2D43.Append(extents51);

            A.PresetGeometry presetGeometry31 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Rectangle };
            A.AdjustValueList adjustValueList31 = new A.AdjustValueList();

            presetGeometry31.Append(adjustValueList31);

            shapeProperties63.Append(transform2D43);
            shapeProperties63.Append(presetGeometry31);

            TextBody textBody38 = new TextBody();

            A.BodyProperties bodyProperties38 = new A.BodyProperties(){ Vertical = A.TextVerticalValues.Horizontal, LeftInset = 91440, TopInset = 45720, RightInset = 91440, BottomInset = 45720, RightToLeftColumns = false, Anchor = A.TextAnchoringTypeValues.Center };
            A.NoAutoFit noAutoFit1 = new A.NoAutoFit();

            bodyProperties38.Append(noAutoFit1);

            A.ListStyle listStyle38 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties20 = new A.Level1ParagraphProperties();

            A.SpaceBefore spaceBefore11 = new A.SpaceBefore();
            A.SpacingPercent spacingPercent11 = new A.SpacingPercent(){ Val = 0 };

            spaceBefore11.Append(spacingPercent11);
            A.NoBullet noBullet52 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties106 = new A.DefaultRunProperties(){ FontSize = 3200, Bold = false, Capital = A.TextCapsValues.All };

            A.Outline outline30 = new A.Outline(){ Width = 3175, CompoundLineType = A.CompoundLineValues.Single };
            A.NoFill noFill2 = new A.NoFill();

            outline30.Append(noFill2);

            A.EffectList effectList15 = new A.EffectList();

            A.Glow glow1 = new A.Glow(){ Radius = 38100L };

            A.SchemeColor schemeColor221 = new A.SchemeColor(){ Val = A.SchemeColorValues.Background1 };
            A.LuminanceModulation luminanceModulation20 = new A.LuminanceModulation(){ Val = 65000 };
            A.LuminanceOffset luminanceOffset1 = new A.LuminanceOffset(){ Val = 35000 };
            A.Alpha alpha4 = new A.Alpha(){ Val = 40000 };

            schemeColor221.Append(luminanceModulation20);
            schemeColor221.Append(luminanceOffset1);
            schemeColor221.Append(alpha4);

            glow1.Append(schemeColor221);

            A.OuterShadow outerShadow2 = new A.OuterShadow(){ BlurRadius = 28575L, Distance = 38100L, Direction = 14040000, Alignment = A.RectangleAlignmentValues.TopLeft, RotateWithShape = false };

            A.RgbColorModelHex rgbColorModelHex13 = new A.RgbColorModelHex(){ Val = "000000" };
            A.Alpha alpha5 = new A.Alpha(){ Val = 25000 };

            rgbColorModelHex13.Append(alpha5);

            outerShadow2.Append(rgbColorModelHex13);

            effectList15.Append(glow1);
            effectList15.Append(outerShadow2);
            A.LatinFont latinFont34 = new A.LatinFont(){ Typeface = "+mj-lt" };
            A.EastAsianFont eastAsianFont31 = new A.EastAsianFont(){ Typeface = "+mj-ea" };
            A.ComplexScriptFont complexScriptFont31 = new A.ComplexScriptFont(){ Typeface = "Trebuchet MS" };

            defaultRunProperties106.Append(outline30);
            defaultRunProperties106.Append(effectList15);
            defaultRunProperties106.Append(latinFont34);
            defaultRunProperties106.Append(eastAsianFont31);
            defaultRunProperties106.Append(complexScriptFont31);

            level1ParagraphProperties20.Append(spaceBefore11);
            level1ParagraphProperties20.Append(noBullet52);
            level1ParagraphProperties20.Append(defaultRunProperties106);

            A.Level2ParagraphProperties level2ParagraphProperties12 = new A.Level2ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties107 = new A.DefaultRunProperties();

            A.SolidFill solidFill107 = new A.SolidFill();
            A.SchemeColor schemeColor222 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill107.Append(schemeColor222);

            defaultRunProperties107.Append(solidFill107);

            level2ParagraphProperties12.Append(defaultRunProperties107);

            A.Level3ParagraphProperties level3ParagraphProperties12 = new A.Level3ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties108 = new A.DefaultRunProperties();

            A.SolidFill solidFill108 = new A.SolidFill();
            A.SchemeColor schemeColor223 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill108.Append(schemeColor223);

            defaultRunProperties108.Append(solidFill108);

            level3ParagraphProperties12.Append(defaultRunProperties108);

            A.Level4ParagraphProperties level4ParagraphProperties12 = new A.Level4ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties109 = new A.DefaultRunProperties();

            A.SolidFill solidFill109 = new A.SolidFill();
            A.SchemeColor schemeColor224 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill109.Append(schemeColor224);

            defaultRunProperties109.Append(solidFill109);

            level4ParagraphProperties12.Append(defaultRunProperties109);

            A.Level5ParagraphProperties level5ParagraphProperties12 = new A.Level5ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties110 = new A.DefaultRunProperties();

            A.SolidFill solidFill110 = new A.SolidFill();
            A.SchemeColor schemeColor225 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill110.Append(schemeColor225);

            defaultRunProperties110.Append(solidFill110);

            level5ParagraphProperties12.Append(defaultRunProperties110);

            A.Level6ParagraphProperties level6ParagraphProperties11 = new A.Level6ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties111 = new A.DefaultRunProperties();

            A.SolidFill solidFill111 = new A.SolidFill();
            A.SchemeColor schemeColor226 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill111.Append(schemeColor226);

            defaultRunProperties111.Append(solidFill111);

            level6ParagraphProperties11.Append(defaultRunProperties111);

            A.Level7ParagraphProperties level7ParagraphProperties11 = new A.Level7ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties112 = new A.DefaultRunProperties();

            A.SolidFill solidFill112 = new A.SolidFill();
            A.SchemeColor schemeColor227 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill112.Append(schemeColor227);

            defaultRunProperties112.Append(solidFill112);

            level7ParagraphProperties11.Append(defaultRunProperties112);

            A.Level8ParagraphProperties level8ParagraphProperties11 = new A.Level8ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties113 = new A.DefaultRunProperties();

            A.SolidFill solidFill113 = new A.SolidFill();
            A.SchemeColor schemeColor228 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill113.Append(schemeColor228);

            defaultRunProperties113.Append(solidFill113);

            level8ParagraphProperties11.Append(defaultRunProperties113);

            A.Level9ParagraphProperties level9ParagraphProperties11 = new A.Level9ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties114 = new A.DefaultRunProperties();

            A.SolidFill solidFill114 = new A.SolidFill();
            A.SchemeColor schemeColor229 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill114.Append(schemeColor229);

            defaultRunProperties114.Append(solidFill114);

            level9ParagraphProperties11.Append(defaultRunProperties114);

            listStyle38.Append(level1ParagraphProperties20);
            listStyle38.Append(level2ParagraphProperties12);
            listStyle38.Append(level3ParagraphProperties12);
            listStyle38.Append(level4ParagraphProperties12);
            listStyle38.Append(level5ParagraphProperties12);
            listStyle38.Append(level6ParagraphProperties11);
            listStyle38.Append(level7ParagraphProperties11);
            listStyle38.Append(level8ParagraphProperties11);
            listStyle38.Append(level9ParagraphProperties11);

            A.Paragraph paragraph46 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties16 = new A.ParagraphProperties(){ Level = 0 };

            A.Run run26 = new A.Run();

            A.RunProperties runProperties40 = new A.RunProperties(){ Language = "en-US", FontSize = 8000, Dirty = false };
            runProperties40.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));

            A.SolidFill solidFill115 = new A.SolidFill();
            A.SchemeColor schemeColor230 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill115.Append(schemeColor230);
            A.EffectList effectList16 = new A.EffectList();

            runProperties40.Append(solidFill115);
            runProperties40.Append(effectList16);
            A.Text text40 = new A.Text();
            text40.Text = "“";

            run26.Append(runProperties40);
            run26.Append(text40);

            A.EndParagraphRunProperties endParagraphRunProperties33 = new A.EndParagraphRunProperties(){ Language = "en-US", FontSize = 8000, Dirty = false };

            A.SolidFill solidFill116 = new A.SolidFill();
            A.SchemeColor schemeColor231 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill116.Append(schemeColor231);
            A.EffectList effectList17 = new A.EffectList();

            endParagraphRunProperties33.Append(solidFill116);
            endParagraphRunProperties33.Append(effectList17);

            paragraph46.Append(paragraphProperties16);
            paragraph46.Append(run26);
            paragraph46.Append(endParagraphRunProperties33);

            textBody38.Append(bodyProperties38);
            textBody38.Append(listStyle38);
            textBody38.Append(paragraph46);

            shape38.Append(nonVisualShapeProperties38);
            shape38.Append(shapeProperties63);
            shape38.Append(textBody38);

            Shape shape39 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties39 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties72 = new NonVisualDrawingProperties(){ Id = (UInt32Value)15U, Name = "TextBox 14" };
            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties39 = new NonVisualShapeDrawingProperties(){ TextBox = true };
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties72 = new ApplicationNonVisualDrawingProperties();

            nonVisualShapeProperties39.Append(nonVisualDrawingProperties72);
            nonVisualShapeProperties39.Append(nonVisualShapeDrawingProperties39);
            nonVisualShapeProperties39.Append(applicationNonVisualDrawingProperties72);

            ShapeProperties shapeProperties64 = new ShapeProperties();

            A.Transform2D transform2D44 = new A.Transform2D();
            A.Offset offset52 = new A.Offset(){ X = 10288091L, Y = 2768601L };
            A.Extents extents52 = new A.Extents(){ Cx = 609759L, Cy = 584776L };

            transform2D44.Append(offset52);
            transform2D44.Append(extents52);

            A.PresetGeometry presetGeometry32 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Rectangle };
            A.AdjustValueList adjustValueList32 = new A.AdjustValueList();

            presetGeometry32.Append(adjustValueList32);

            shapeProperties64.Append(transform2D44);
            shapeProperties64.Append(presetGeometry32);

            TextBody textBody39 = new TextBody();

            A.BodyProperties bodyProperties39 = new A.BodyProperties(){ Vertical = A.TextVerticalValues.Horizontal, LeftInset = 91440, TopInset = 45720, RightInset = 91440, BottomInset = 45720, RightToLeftColumns = false, Anchor = A.TextAnchoringTypeValues.Center };
            A.NoAutoFit noAutoFit2 = new A.NoAutoFit();

            bodyProperties39.Append(noAutoFit2);

            A.ListStyle listStyle39 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties21 = new A.Level1ParagraphProperties();

            A.SpaceBefore spaceBefore12 = new A.SpaceBefore();
            A.SpacingPercent spacingPercent12 = new A.SpacingPercent(){ Val = 0 };

            spaceBefore12.Append(spacingPercent12);
            A.NoBullet noBullet53 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties115 = new A.DefaultRunProperties(){ FontSize = 3200, Bold = false, Capital = A.TextCapsValues.All };

            A.Outline outline31 = new A.Outline(){ Width = 3175, CompoundLineType = A.CompoundLineValues.Single };
            A.NoFill noFill3 = new A.NoFill();

            outline31.Append(noFill3);

            A.EffectList effectList18 = new A.EffectList();

            A.Glow glow2 = new A.Glow(){ Radius = 38100L };

            A.SchemeColor schemeColor232 = new A.SchemeColor(){ Val = A.SchemeColorValues.Background1 };
            A.LuminanceModulation luminanceModulation21 = new A.LuminanceModulation(){ Val = 65000 };
            A.LuminanceOffset luminanceOffset2 = new A.LuminanceOffset(){ Val = 35000 };
            A.Alpha alpha6 = new A.Alpha(){ Val = 40000 };

            schemeColor232.Append(luminanceModulation21);
            schemeColor232.Append(luminanceOffset2);
            schemeColor232.Append(alpha6);

            glow2.Append(schemeColor232);

            A.OuterShadow outerShadow3 = new A.OuterShadow(){ BlurRadius = 28575L, Distance = 38100L, Direction = 14040000, Alignment = A.RectangleAlignmentValues.TopLeft, RotateWithShape = false };

            A.RgbColorModelHex rgbColorModelHex14 = new A.RgbColorModelHex(){ Val = "000000" };
            A.Alpha alpha7 = new A.Alpha(){ Val = 25000 };

            rgbColorModelHex14.Append(alpha7);

            outerShadow3.Append(rgbColorModelHex14);

            effectList18.Append(glow2);
            effectList18.Append(outerShadow3);
            A.LatinFont latinFont35 = new A.LatinFont(){ Typeface = "+mj-lt" };
            A.EastAsianFont eastAsianFont32 = new A.EastAsianFont(){ Typeface = "+mj-ea" };
            A.ComplexScriptFont complexScriptFont32 = new A.ComplexScriptFont(){ Typeface = "Trebuchet MS" };

            defaultRunProperties115.Append(outline31);
            defaultRunProperties115.Append(effectList18);
            defaultRunProperties115.Append(latinFont35);
            defaultRunProperties115.Append(eastAsianFont32);
            defaultRunProperties115.Append(complexScriptFont32);

            level1ParagraphProperties21.Append(spaceBefore12);
            level1ParagraphProperties21.Append(noBullet53);
            level1ParagraphProperties21.Append(defaultRunProperties115);

            A.Level2ParagraphProperties level2ParagraphProperties13 = new A.Level2ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties116 = new A.DefaultRunProperties();

            A.SolidFill solidFill117 = new A.SolidFill();
            A.SchemeColor schemeColor233 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill117.Append(schemeColor233);

            defaultRunProperties116.Append(solidFill117);

            level2ParagraphProperties13.Append(defaultRunProperties116);

            A.Level3ParagraphProperties level3ParagraphProperties13 = new A.Level3ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties117 = new A.DefaultRunProperties();

            A.SolidFill solidFill118 = new A.SolidFill();
            A.SchemeColor schemeColor234 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill118.Append(schemeColor234);

            defaultRunProperties117.Append(solidFill118);

            level3ParagraphProperties13.Append(defaultRunProperties117);

            A.Level4ParagraphProperties level4ParagraphProperties13 = new A.Level4ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties118 = new A.DefaultRunProperties();

            A.SolidFill solidFill119 = new A.SolidFill();
            A.SchemeColor schemeColor235 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill119.Append(schemeColor235);

            defaultRunProperties118.Append(solidFill119);

            level4ParagraphProperties13.Append(defaultRunProperties118);

            A.Level5ParagraphProperties level5ParagraphProperties13 = new A.Level5ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties119 = new A.DefaultRunProperties();

            A.SolidFill solidFill120 = new A.SolidFill();
            A.SchemeColor schemeColor236 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill120.Append(schemeColor236);

            defaultRunProperties119.Append(solidFill120);

            level5ParagraphProperties13.Append(defaultRunProperties119);

            A.Level6ParagraphProperties level6ParagraphProperties12 = new A.Level6ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties120 = new A.DefaultRunProperties();

            A.SolidFill solidFill121 = new A.SolidFill();
            A.SchemeColor schemeColor237 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill121.Append(schemeColor237);

            defaultRunProperties120.Append(solidFill121);

            level6ParagraphProperties12.Append(defaultRunProperties120);

            A.Level7ParagraphProperties level7ParagraphProperties12 = new A.Level7ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties121 = new A.DefaultRunProperties();

            A.SolidFill solidFill122 = new A.SolidFill();
            A.SchemeColor schemeColor238 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill122.Append(schemeColor238);

            defaultRunProperties121.Append(solidFill122);

            level7ParagraphProperties12.Append(defaultRunProperties121);

            A.Level8ParagraphProperties level8ParagraphProperties12 = new A.Level8ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties122 = new A.DefaultRunProperties();

            A.SolidFill solidFill123 = new A.SolidFill();
            A.SchemeColor schemeColor239 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill123.Append(schemeColor239);

            defaultRunProperties122.Append(solidFill123);

            level8ParagraphProperties12.Append(defaultRunProperties122);

            A.Level9ParagraphProperties level9ParagraphProperties12 = new A.Level9ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties123 = new A.DefaultRunProperties();

            A.SolidFill solidFill124 = new A.SolidFill();
            A.SchemeColor schemeColor240 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill124.Append(schemeColor240);

            defaultRunProperties123.Append(solidFill124);

            level9ParagraphProperties12.Append(defaultRunProperties123);

            listStyle39.Append(level1ParagraphProperties21);
            listStyle39.Append(level2ParagraphProperties13);
            listStyle39.Append(level3ParagraphProperties13);
            listStyle39.Append(level4ParagraphProperties13);
            listStyle39.Append(level5ParagraphProperties13);
            listStyle39.Append(level6ParagraphProperties12);
            listStyle39.Append(level7ParagraphProperties12);
            listStyle39.Append(level8ParagraphProperties12);
            listStyle39.Append(level9ParagraphProperties12);

            A.Paragraph paragraph47 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties17 = new A.ParagraphProperties(){ Level = 0, Alignment = A.TextAlignmentTypeValues.Right };

            A.Run run27 = new A.Run();

            A.RunProperties runProperties41 = new A.RunProperties(){ Language = "en-US", FontSize = 8000, Dirty = false };
            runProperties41.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));

            A.SolidFill solidFill125 = new A.SolidFill();
            A.SchemeColor schemeColor241 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill125.Append(schemeColor241);
            A.EffectList effectList19 = new A.EffectList();

            runProperties41.Append(solidFill125);
            runProperties41.Append(effectList19);
            A.Text text41 = new A.Text();
            text41.Text = "”";

            run27.Append(runProperties41);
            run27.Append(text41);

            A.EndParagraphRunProperties endParagraphRunProperties34 = new A.EndParagraphRunProperties(){ Language = "en-US", FontSize = 8000, Dirty = false };

            A.SolidFill solidFill126 = new A.SolidFill();
            A.SchemeColor schemeColor242 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill126.Append(schemeColor242);
            A.EffectList effectList20 = new A.EffectList();

            endParagraphRunProperties34.Append(solidFill126);
            endParagraphRunProperties34.Append(effectList20);

            paragraph47.Append(paragraphProperties17);
            paragraph47.Append(run27);
            paragraph47.Append(endParagraphRunProperties34);

            textBody39.Append(bodyProperties39);
            textBody39.Append(listStyle39);
            textBody39.Append(paragraph47);

            shape39.Append(nonVisualShapeProperties39);
            shape39.Append(shapeProperties64);
            shape39.Append(textBody39);

            ConnectionShape connectionShape26 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties26 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties73 = new NonVisualDrawingProperties(){ Id = (UInt32Value)23U, Name = "Straight Connector 22" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties26 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties73 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties26.Append(nonVisualDrawingProperties73);
            nonVisualConnectionShapeProperties26.Append(nonVisualConnectorShapeDrawingProperties26);
            nonVisualConnectionShapeProperties26.Append(applicationNonVisualDrawingProperties73);

            ShapeProperties shapeProperties65 = new ShapeProperties();

            A.Transform2D transform2D45 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset53 = new A.Offset(){ X = 11278949L, Y = 2963333L };
            A.Extents extents53 = new A.Extents(){ Cx = 913052L, Cy = 912812L };

            transform2D45.Append(offset53);
            transform2D45.Append(extents53);

            A.PresetGeometry presetGeometry33 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList33 = new A.AdjustValueList();

            presetGeometry33.Append(adjustValueList33);

            A.Outline outline32 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill127 = new A.SolidFill();
            A.SchemeColor schemeColor243 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill127.Append(schemeColor243);

            outline32.Append(solidFill127);

            shapeProperties65.Append(transform2D45);
            shapeProperties65.Append(presetGeometry33);
            shapeProperties65.Append(outline32);

            ShapeStyle shapeStyle26 = new ShapeStyle();

            A.LineReference lineReference26 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor244 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference26.Append(schemeColor244);

            A.FillReference fillReference26 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor245 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference26.Append(schemeColor245);

            A.EffectReference effectReference26 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor246 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference26.Append(schemeColor246);

            A.FontReference fontReference26 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor247 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference26.Append(schemeColor247);

            shapeStyle26.Append(lineReference26);
            shapeStyle26.Append(fillReference26);
            shapeStyle26.Append(effectReference26);
            shapeStyle26.Append(fontReference26);

            connectionShape26.Append(nonVisualConnectionShapeProperties26);
            connectionShape26.Append(shapeProperties65);
            connectionShape26.Append(shapeStyle26);

            ConnectionShape connectionShape27 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties27 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties74 = new NonVisualDrawingProperties(){ Id = (UInt32Value)24U, Name = "Straight Connector 23" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties27 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties74 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties27.Append(nonVisualDrawingProperties74);
            nonVisualConnectionShapeProperties27.Append(nonVisualConnectorShapeDrawingProperties27);
            nonVisualConnectionShapeProperties27.Append(applicationNonVisualDrawingProperties74);

            ShapeProperties shapeProperties66 = new ShapeProperties();

            A.Transform2D transform2D46 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset54 = new A.Offset(){ X = 9209368L, Y = 3190344L };
            A.Extents extents54 = new A.Extents(){ Cx = 2982634L, Cy = 2981856L };

            transform2D46.Append(offset54);
            transform2D46.Append(extents54);

            A.PresetGeometry presetGeometry34 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList34 = new A.AdjustValueList();

            presetGeometry34.Append(adjustValueList34);

            A.Outline outline33 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill128 = new A.SolidFill();
            A.SchemeColor schemeColor248 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill128.Append(schemeColor248);

            outline33.Append(solidFill128);

            shapeProperties66.Append(transform2D46);
            shapeProperties66.Append(presetGeometry34);
            shapeProperties66.Append(outline33);

            ShapeStyle shapeStyle27 = new ShapeStyle();

            A.LineReference lineReference27 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor249 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference27.Append(schemeColor249);

            A.FillReference fillReference27 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor250 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference27.Append(schemeColor250);

            A.EffectReference effectReference27 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor251 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference27.Append(schemeColor251);

            A.FontReference fontReference27 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor252 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference27.Append(schemeColor252);

            shapeStyle27.Append(lineReference27);
            shapeStyle27.Append(fillReference27);
            shapeStyle27.Append(effectReference27);
            shapeStyle27.Append(fontReference27);

            connectionShape27.Append(nonVisualConnectionShapeProperties27);
            connectionShape27.Append(shapeProperties66);
            connectionShape27.Append(shapeStyle27);

            ConnectionShape connectionShape28 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties28 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties75 = new NonVisualDrawingProperties(){ Id = (UInt32Value)25U, Name = "Straight Connector 24" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties28 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties75 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties28.Append(nonVisualDrawingProperties75);
            nonVisualConnectionShapeProperties28.Append(nonVisualConnectorShapeDrawingProperties28);
            nonVisualConnectionShapeProperties28.Append(applicationNonVisualDrawingProperties75);

            ShapeProperties shapeProperties67 = new ShapeProperties();

            A.Transform2D transform2D47 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset55 = new A.Offset(){ X = 10294973L, Y = 3285068L };
            A.Extents extents55 = new A.Extents(){ Cx = 1897028L, Cy = 1896533L };

            transform2D47.Append(offset55);
            transform2D47.Append(extents55);

            A.PresetGeometry presetGeometry35 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList35 = new A.AdjustValueList();

            presetGeometry35.Append(adjustValueList35);

            A.Outline outline34 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill129 = new A.SolidFill();
            A.SchemeColor schemeColor253 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill129.Append(schemeColor253);

            outline34.Append(solidFill129);

            shapeProperties67.Append(transform2D47);
            shapeProperties67.Append(presetGeometry35);
            shapeProperties67.Append(outline34);

            ShapeStyle shapeStyle28 = new ShapeStyle();

            A.LineReference lineReference28 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor254 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference28.Append(schemeColor254);

            A.FillReference fillReference28 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor255 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference28.Append(schemeColor255);

            A.EffectReference effectReference28 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor256 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference28.Append(schemeColor256);

            A.FontReference fontReference28 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor257 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference28.Append(schemeColor257);

            shapeStyle28.Append(lineReference28);
            shapeStyle28.Append(fillReference28);
            shapeStyle28.Append(effectReference28);
            shapeStyle28.Append(fontReference28);

            connectionShape28.Append(nonVisualConnectionShapeProperties28);
            connectionShape28.Append(shapeProperties67);
            connectionShape28.Append(shapeStyle28);

            ConnectionShape connectionShape29 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties29 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties76 = new NonVisualDrawingProperties(){ Id = (UInt32Value)26U, Name = "Straight Connector 25" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties29 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties76 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties29.Append(nonVisualDrawingProperties76);
            nonVisualConnectionShapeProperties29.Append(nonVisualConnectorShapeDrawingProperties29);
            nonVisualConnectionShapeProperties29.Append(applicationNonVisualDrawingProperties76);

            ShapeProperties shapeProperties68 = new ShapeProperties();

            A.Transform2D transform2D48 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset56 = new A.Offset(){ X = 10445823L, Y = 3131080L };
            A.Extents extents56 = new A.Extents(){ Cx = 1746177L, Cy = 1745720L };

            transform2D48.Append(offset56);
            transform2D48.Append(extents56);

            A.PresetGeometry presetGeometry36 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList36 = new A.AdjustValueList();

            presetGeometry36.Append(adjustValueList36);

            A.Outline outline35 = new A.Outline(){ Width = 28575 };

            A.SolidFill solidFill130 = new A.SolidFill();
            A.SchemeColor schemeColor258 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill130.Append(schemeColor258);

            outline35.Append(solidFill130);

            shapeProperties68.Append(transform2D48);
            shapeProperties68.Append(presetGeometry36);
            shapeProperties68.Append(outline35);

            ShapeStyle shapeStyle29 = new ShapeStyle();

            A.LineReference lineReference29 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor259 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference29.Append(schemeColor259);

            A.FillReference fillReference29 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor260 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference29.Append(schemeColor260);

            A.EffectReference effectReference29 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor261 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference29.Append(schemeColor261);

            A.FontReference fontReference29 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor262 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference29.Append(schemeColor262);

            shapeStyle29.Append(lineReference29);
            shapeStyle29.Append(fillReference29);
            shapeStyle29.Append(effectReference29);
            shapeStyle29.Append(fontReference29);

            connectionShape29.Append(nonVisualConnectionShapeProperties29);
            connectionShape29.Append(shapeProperties68);
            connectionShape29.Append(shapeStyle29);

            ConnectionShape connectionShape30 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties30 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties77 = new NonVisualDrawingProperties(){ Id = (UInt32Value)27U, Name = "Straight Connector 26" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties30 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties77 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties30.Append(nonVisualDrawingProperties77);
            nonVisualConnectionShapeProperties30.Append(nonVisualConnectorShapeDrawingProperties30);
            nonVisualConnectionShapeProperties30.Append(applicationNonVisualDrawingProperties77);

            ShapeProperties shapeProperties69 = new ShapeProperties();

            A.Transform2D transform2D49 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset57 = new A.Offset(){ X = 10921671L, Y = 3683002L };
            A.Extents extents57 = new A.Extents(){ Cx = 1270332L, Cy = 1269999L };

            transform2D49.Append(offset57);
            transform2D49.Append(extents57);

            A.PresetGeometry presetGeometry37 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList37 = new A.AdjustValueList();

            presetGeometry37.Append(adjustValueList37);

            A.Outline outline36 = new A.Outline(){ Width = 28575 };

            A.SolidFill solidFill131 = new A.SolidFill();
            A.SchemeColor schemeColor263 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill131.Append(schemeColor263);

            outline36.Append(solidFill131);

            shapeProperties69.Append(transform2D49);
            shapeProperties69.Append(presetGeometry37);
            shapeProperties69.Append(outline36);

            ShapeStyle shapeStyle30 = new ShapeStyle();

            A.LineReference lineReference30 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor264 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference30.Append(schemeColor264);

            A.FillReference fillReference30 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor265 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference30.Append(schemeColor265);

            A.EffectReference effectReference30 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor266 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference30.Append(schemeColor266);

            A.FontReference fontReference30 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor267 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference30.Append(schemeColor267);

            shapeStyle30.Append(lineReference30);
            shapeStyle30.Append(fillReference30);
            shapeStyle30.Append(effectReference30);
            shapeStyle30.Append(fontReference30);

            connectionShape30.Append(nonVisualConnectionShapeProperties30);
            connectionShape30.Append(shapeProperties69);
            connectionShape30.Append(shapeStyle30);

            shapeTree8.Append(nonVisualGroupShapeProperties8);
            shapeTree8.Append(groupShapeProperties8);
            shapeTree8.Append(shape32);
            shapeTree8.Append(shape33);
            shapeTree8.Append(shape34);
            shapeTree8.Append(shape35);
            shapeTree8.Append(shape36);
            shapeTree8.Append(shape37);
            shapeTree8.Append(shape38);
            shapeTree8.Append(shape39);
            shapeTree8.Append(connectionShape26);
            shapeTree8.Append(connectionShape27);
            shapeTree8.Append(connectionShape28);
            shapeTree8.Append(connectionShape29);
            shapeTree8.Append(connectionShape30);

            CommonSlideDataExtensionList commonSlideDataExtensionList8 = new CommonSlideDataExtensionList();

            CommonSlideDataExtension commonSlideDataExtension8 = new CommonSlideDataExtension(){ Uri = "{BB962C8B-B14F-4D97-AF65-F5344CB8AC3E}" };

            P14.CreationId creationId8 = new P14.CreationId(){ Val = (UInt32Value)629197057U };
            creationId8.AddNamespaceDeclaration("p14", "http://schemas.microsoft.com/office/powerpoint/2010/main");

            commonSlideDataExtension8.Append(creationId8);

            commonSlideDataExtensionList8.Append(commonSlideDataExtension8);

            commonSlideData8.Append(shapeTree8);
            commonSlideData8.Append(commonSlideDataExtensionList8);

            ColorMapOverride colorMapOverride7 = new ColorMapOverride();
            A.MasterColorMapping masterColorMapping7 = new A.MasterColorMapping();

            colorMapOverride7.Append(masterColorMapping7);

            Timing timing8 = new Timing();

            TimeNodeList timeNodeList8 = new TimeNodeList();

            ParallelTimeNode parallelTimeNode8 = new ParallelTimeNode();
            CommonTimeNode commonTimeNode8 = new CommonTimeNode(){ Id = (UInt32Value)1U, Duration = "indefinite", Restart = TimeNodeRestartValues.Never, NodeType = TimeNodeValues.TmingRoot };

            parallelTimeNode8.Append(commonTimeNode8);

            timeNodeList8.Append(parallelTimeNode8);

            timing8.Append(timeNodeList8);

            slideLayout6.Append(commonSlideData8);
            slideLayout6.Append(colorMapOverride7);
            slideLayout6.Append(timing8);

            slideLayoutPart6.SlideLayout = slideLayout6;
        }
Ejemplo n.º 20
0
        // Generates content of slideLayoutPart16.
        private void GenerateSlideLayoutPart16Content(SlideLayoutPart slideLayoutPart16)
        {
            SlideLayout slideLayout16 = new SlideLayout(){ Preserve = true };
            slideLayout16.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");
            slideLayout16.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            slideLayout16.AddNamespaceDeclaration("p", "http://schemas.openxmlformats.org/presentationml/2006/main");

            CommonSlideData commonSlideData18 = new CommonSlideData(){ Name = "Picture with Caption" };

            ShapeTree shapeTree18 = new ShapeTree();

            NonVisualGroupShapeProperties nonVisualGroupShapeProperties18 = new NonVisualGroupShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties182 = new NonVisualDrawingProperties(){ Id = (UInt32Value)1U, Name = "" };
            NonVisualGroupShapeDrawingProperties nonVisualGroupShapeDrawingProperties18 = new NonVisualGroupShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties182 = new ApplicationNonVisualDrawingProperties();

            nonVisualGroupShapeProperties18.Append(nonVisualDrawingProperties182);
            nonVisualGroupShapeProperties18.Append(nonVisualGroupShapeDrawingProperties18);
            nonVisualGroupShapeProperties18.Append(applicationNonVisualDrawingProperties182);

            GroupShapeProperties groupShapeProperties18 = new GroupShapeProperties();

            A.TransformGroup transformGroup18 = new A.TransformGroup();
            A.Offset offset127 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents127 = new A.Extents(){ Cx = 0L, Cy = 0L };
            A.ChildOffset childOffset18 = new A.ChildOffset(){ X = 0L, Y = 0L };
            A.ChildExtents childExtents18 = new A.ChildExtents(){ Cx = 0L, Cy = 0L };

            transformGroup18.Append(offset127);
            transformGroup18.Append(extents127);
            transformGroup18.Append(childOffset18);
            transformGroup18.Append(childExtents18);

            groupShapeProperties18.Append(transformGroup18);

            Shape shape90 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties90 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties183 = new NonVisualDrawingProperties(){ Id = (UInt32Value)2U, Name = "Title 1" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties90 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks88 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties90.Append(shapeLocks88);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties183 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape88 = new PlaceholderShape(){ Type = PlaceholderValues.Title };

            applicationNonVisualDrawingProperties183.Append(placeholderShape88);

            nonVisualShapeProperties90.Append(nonVisualDrawingProperties183);
            nonVisualShapeProperties90.Append(nonVisualShapeDrawingProperties90);
            nonVisualShapeProperties90.Append(applicationNonVisualDrawingProperties183);

            ShapeProperties shapeProperties165 = new ShapeProperties();

            A.Transform2D transform2D110 = new A.Transform2D();
            A.Offset offset128 = new A.Offset(){ X = 4724042L, Y = 1447800L };
            A.Extents extents128 = new A.Extents(){ Cx = 6021368L, Cy = 1143000L };

            transform2D110.Append(offset128);
            transform2D110.Append(extents128);

            shapeProperties165.Append(transform2D110);

            TextBody textBody90 = new TextBody();

            A.BodyProperties bodyProperties90 = new A.BodyProperties(){ Anchor = A.TextAnchoringTypeValues.Bottom };
            A.NormalAutoFit normalAutoFit25 = new A.NormalAutoFit();

            bodyProperties90.Append(normalAutoFit25);

            A.ListStyle listStyle90 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties38 = new A.Level1ParagraphProperties(){ Alignment = A.TextAlignmentTypeValues.Left };
            A.DefaultRunProperties defaultRunProperties220 = new A.DefaultRunProperties(){ FontSize = 2800, Bold = false };

            level1ParagraphProperties38.Append(defaultRunProperties220);

            listStyle90.Append(level1ParagraphProperties38);

            A.Paragraph paragraph126 = new A.Paragraph();

            A.Run run79 = new A.Run();

            A.RunProperties runProperties111 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties111.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text111 = new A.Text();
            text111.Text = "Click to edit Master title style";

            run79.Append(runProperties111);
            run79.Append(text111);
            A.EndParagraphRunProperties endParagraphRunProperties79 = new A.EndParagraphRunProperties(){ Language = "en-US" };

            paragraph126.Append(run79);
            paragraph126.Append(endParagraphRunProperties79);

            textBody90.Append(bodyProperties90);
            textBody90.Append(listStyle90);
            textBody90.Append(paragraph126);

            shape90.Append(nonVisualShapeProperties90);
            shape90.Append(shapeProperties165);
            shape90.Append(textBody90);

            Shape shape91 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties91 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties184 = new NonVisualDrawingProperties(){ Id = (UInt32Value)4U, Name = "Text Placeholder 3" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties91 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks89 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties91.Append(shapeLocks89);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties184 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape89 = new PlaceholderShape(){ Type = PlaceholderValues.Body, Size = PlaceholderSizeValues.Half, Index = (UInt32Value)2U };

            applicationNonVisualDrawingProperties184.Append(placeholderShape89);

            nonVisualShapeProperties91.Append(nonVisualDrawingProperties184);
            nonVisualShapeProperties91.Append(nonVisualShapeDrawingProperties91);
            nonVisualShapeProperties91.Append(applicationNonVisualDrawingProperties184);

            ShapeProperties shapeProperties166 = new ShapeProperties();

            A.Transform2D transform2D111 = new A.Transform2D();
            A.Offset offset129 = new A.Offset(){ X = 4724042L, Y = 2777067L };
            A.Extents extents129 = new A.Extents(){ Cx = 6022956L, Cy = 2048933L };

            transform2D111.Append(offset129);
            transform2D111.Append(extents129);

            shapeProperties166.Append(transform2D111);

            TextBody textBody91 = new TextBody();

            A.BodyProperties bodyProperties91 = new A.BodyProperties(){ Anchor = A.TextAnchoringTypeValues.Top };
            A.NormalAutoFit normalAutoFit26 = new A.NormalAutoFit();

            bodyProperties91.Append(normalAutoFit26);

            A.ListStyle listStyle91 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties39 = new A.Level1ParagraphProperties(){ LeftMargin = 0, Indent = 0 };
            A.NoBullet noBullet105 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties221 = new A.DefaultRunProperties(){ FontSize = 1800 };

            level1ParagraphProperties39.Append(noBullet105);
            level1ParagraphProperties39.Append(defaultRunProperties221);

            A.Level2ParagraphProperties level2ParagraphProperties25 = new A.Level2ParagraphProperties(){ LeftMargin = 457200, Indent = 0 };
            A.NoBullet noBullet106 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties222 = new A.DefaultRunProperties(){ FontSize = 1200 };

            level2ParagraphProperties25.Append(noBullet106);
            level2ParagraphProperties25.Append(defaultRunProperties222);

            A.Level3ParagraphProperties level3ParagraphProperties25 = new A.Level3ParagraphProperties(){ LeftMargin = 914400, Indent = 0 };
            A.NoBullet noBullet107 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties223 = new A.DefaultRunProperties(){ FontSize = 1000 };

            level3ParagraphProperties25.Append(noBullet107);
            level3ParagraphProperties25.Append(defaultRunProperties223);

            A.Level4ParagraphProperties level4ParagraphProperties25 = new A.Level4ParagraphProperties(){ LeftMargin = 1371600, Indent = 0 };
            A.NoBullet noBullet108 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties224 = new A.DefaultRunProperties(){ FontSize = 900 };

            level4ParagraphProperties25.Append(noBullet108);
            level4ParagraphProperties25.Append(defaultRunProperties224);

            A.Level5ParagraphProperties level5ParagraphProperties25 = new A.Level5ParagraphProperties(){ LeftMargin = 1828800, Indent = 0 };
            A.NoBullet noBullet109 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties225 = new A.DefaultRunProperties(){ FontSize = 900 };

            level5ParagraphProperties25.Append(noBullet109);
            level5ParagraphProperties25.Append(defaultRunProperties225);

            A.Level6ParagraphProperties level6ParagraphProperties22 = new A.Level6ParagraphProperties(){ LeftMargin = 2286000, Indent = 0 };
            A.NoBullet noBullet110 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties226 = new A.DefaultRunProperties(){ FontSize = 900 };

            level6ParagraphProperties22.Append(noBullet110);
            level6ParagraphProperties22.Append(defaultRunProperties226);

            A.Level7ParagraphProperties level7ParagraphProperties22 = new A.Level7ParagraphProperties(){ LeftMargin = 2743200, Indent = 0 };
            A.NoBullet noBullet111 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties227 = new A.DefaultRunProperties(){ FontSize = 900 };

            level7ParagraphProperties22.Append(noBullet111);
            level7ParagraphProperties22.Append(defaultRunProperties227);

            A.Level8ParagraphProperties level8ParagraphProperties22 = new A.Level8ParagraphProperties(){ LeftMargin = 3200400, Indent = 0 };
            A.NoBullet noBullet112 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties228 = new A.DefaultRunProperties(){ FontSize = 900 };

            level8ParagraphProperties22.Append(noBullet112);
            level8ParagraphProperties22.Append(defaultRunProperties228);

            A.Level9ParagraphProperties level9ParagraphProperties22 = new A.Level9ParagraphProperties(){ LeftMargin = 3657600, Indent = 0 };
            A.NoBullet noBullet113 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties229 = new A.DefaultRunProperties(){ FontSize = 900 };

            level9ParagraphProperties22.Append(noBullet113);
            level9ParagraphProperties22.Append(defaultRunProperties229);

            listStyle91.Append(level1ParagraphProperties39);
            listStyle91.Append(level2ParagraphProperties25);
            listStyle91.Append(level3ParagraphProperties25);
            listStyle91.Append(level4ParagraphProperties25);
            listStyle91.Append(level5ParagraphProperties25);
            listStyle91.Append(level6ParagraphProperties22);
            listStyle91.Append(level7ParagraphProperties22);
            listStyle91.Append(level8ParagraphProperties22);
            listStyle91.Append(level9ParagraphProperties22);

            A.Paragraph paragraph127 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties60 = new A.ParagraphProperties(){ Level = 0 };

            A.Run run80 = new A.Run();

            A.RunProperties runProperties112 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties112.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text112 = new A.Text();
            text112.Text = "Click to edit Master text styles";

            run80.Append(runProperties112);
            run80.Append(text112);

            paragraph127.Append(paragraphProperties60);
            paragraph127.Append(run80);

            textBody91.Append(bodyProperties91);
            textBody91.Append(listStyle91);
            textBody91.Append(paragraph127);

            shape91.Append(nonVisualShapeProperties91);
            shape91.Append(shapeProperties166);
            shape91.Append(textBody91);

            Shape shape92 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties92 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties185 = new NonVisualDrawingProperties(){ Id = (UInt32Value)5U, Name = "Date Placeholder 4" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties92 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks90 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties92.Append(shapeLocks90);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties185 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape90 = new PlaceholderShape(){ Type = PlaceholderValues.DateAndTime, Size = PlaceholderSizeValues.Half, Index = (UInt32Value)10U };

            applicationNonVisualDrawingProperties185.Append(placeholderShape90);

            nonVisualShapeProperties92.Append(nonVisualDrawingProperties185);
            nonVisualShapeProperties92.Append(nonVisualShapeDrawingProperties92);
            nonVisualShapeProperties92.Append(applicationNonVisualDrawingProperties185);
            ShapeProperties shapeProperties167 = new ShapeProperties();

            TextBody textBody92 = new TextBody();
            A.BodyProperties bodyProperties92 = new A.BodyProperties();
            A.ListStyle listStyle92 = new A.ListStyle();

            A.Paragraph paragraph128 = new A.Paragraph();

            A.Field field33 = new A.Field(){ Id = "{CE1A2D98-1BBD-4706-A118-AAC2A16BEAD3}", Type = "datetimeFigureOut" };

            A.RunProperties runProperties113 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties113.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text113 = new A.Text();
            text113.Text = "2012/10/3";

            field33.Append(runProperties113);
            field33.Append(text113);
            A.EndParagraphRunProperties endParagraphRunProperties80 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph128.Append(field33);
            paragraph128.Append(endParagraphRunProperties80);

            textBody92.Append(bodyProperties92);
            textBody92.Append(listStyle92);
            textBody92.Append(paragraph128);

            shape92.Append(nonVisualShapeProperties92);
            shape92.Append(shapeProperties167);
            shape92.Append(textBody92);

            Shape shape93 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties93 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties186 = new NonVisualDrawingProperties(){ Id = (UInt32Value)6U, Name = "Footer Placeholder 5" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties93 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks91 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties93.Append(shapeLocks91);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties186 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape91 = new PlaceholderShape(){ Type = PlaceholderValues.Footer, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)11U };

            applicationNonVisualDrawingProperties186.Append(placeholderShape91);

            nonVisualShapeProperties93.Append(nonVisualDrawingProperties186);
            nonVisualShapeProperties93.Append(nonVisualShapeDrawingProperties93);
            nonVisualShapeProperties93.Append(applicationNonVisualDrawingProperties186);
            ShapeProperties shapeProperties168 = new ShapeProperties();

            TextBody textBody93 = new TextBody();
            A.BodyProperties bodyProperties93 = new A.BodyProperties();
            A.ListStyle listStyle93 = new A.ListStyle();

            A.Paragraph paragraph129 = new A.Paragraph();
            A.EndParagraphRunProperties endParagraphRunProperties81 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph129.Append(endParagraphRunProperties81);

            textBody93.Append(bodyProperties93);
            textBody93.Append(listStyle93);
            textBody93.Append(paragraph129);

            shape93.Append(nonVisualShapeProperties93);
            shape93.Append(shapeProperties168);
            shape93.Append(textBody93);

            Shape shape94 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties94 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties187 = new NonVisualDrawingProperties(){ Id = (UInt32Value)7U, Name = "Slide Number Placeholder 6" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties94 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks92 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties94.Append(shapeLocks92);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties187 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape92 = new PlaceholderShape(){ Type = PlaceholderValues.SlideNumber, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)12U };

            applicationNonVisualDrawingProperties187.Append(placeholderShape92);

            nonVisualShapeProperties94.Append(nonVisualDrawingProperties187);
            nonVisualShapeProperties94.Append(nonVisualShapeDrawingProperties94);
            nonVisualShapeProperties94.Append(applicationNonVisualDrawingProperties187);
            ShapeProperties shapeProperties169 = new ShapeProperties();

            TextBody textBody94 = new TextBody();
            A.BodyProperties bodyProperties94 = new A.BodyProperties();
            A.ListStyle listStyle94 = new A.ListStyle();

            A.Paragraph paragraph130 = new A.Paragraph();

            A.Field field34 = new A.Field(){ Id = "{D107CD50-7081-433F-A1F2-156B4E14F4F4}", Type = "slidenum" };

            A.RunProperties runProperties114 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties114.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text114 = new A.Text();
            text114.Text = "‹#›";

            field34.Append(runProperties114);
            field34.Append(text114);
            A.EndParagraphRunProperties endParagraphRunProperties82 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph130.Append(field34);
            paragraph130.Append(endParagraphRunProperties82);

            textBody94.Append(bodyProperties94);
            textBody94.Append(listStyle94);
            textBody94.Append(paragraph130);

            shape94.Append(nonVisualShapeProperties94);
            shape94.Append(shapeProperties169);
            shape94.Append(textBody94);

            Shape shape95 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties95 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties188 = new NonVisualDrawingProperties(){ Id = (UInt32Value)14U, Name = "Picture Placeholder 2" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties95 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks93 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties95.Append(shapeLocks93);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties188 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape93 = new PlaceholderShape(){ Type = PlaceholderValues.Picture, Index = (UInt32Value)1U };

            applicationNonVisualDrawingProperties188.Append(placeholderShape93);

            nonVisualShapeProperties95.Append(nonVisualDrawingProperties188);
            nonVisualShapeProperties95.Append(nonVisualShapeDrawingProperties95);
            nonVisualShapeProperties95.Append(applicationNonVisualDrawingProperties188);

            ShapeProperties shapeProperties170 = new ShapeProperties();

            A.Transform2D transform2D112 = new A.Transform2D();
            A.Offset offset130 = new A.Offset(){ X = 989269L, Y = 914400L };
            A.Extents extents130 = new A.Extents(){ Cx = 3281829L, Cy = 4572000L };

            transform2D112.Append(offset130);
            transform2D112.Append(extents130);

            A.PresetGeometry presetGeometry84 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Snip2DiagonalRectangle };

            A.AdjustValueList adjustValueList84 = new A.AdjustValueList();
            A.ShapeGuide shapeGuide3 = new A.ShapeGuide(){ Name = "adj1", Formula = "val 10815" };
            A.ShapeGuide shapeGuide4 = new A.ShapeGuide(){ Name = "adj2", Formula = "val 0" };

            adjustValueList84.Append(shapeGuide3);
            adjustValueList84.Append(shapeGuide4);

            presetGeometry84.Append(adjustValueList84);

            A.Outline outline84 = new A.Outline(){ Width = 15875 };

            A.SolidFill solidFill199 = new A.SolidFill();

            A.SchemeColor schemeColor515 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Alpha alpha10 = new A.Alpha(){ Val = 40000 };

            schemeColor515.Append(alpha10);

            solidFill199.Append(schemeColor515);

            outline84.Append(solidFill199);

            A.EffectList effectList23 = new A.EffectList();

            A.InnerShadow innerShadow3 = new A.InnerShadow(){ BlurRadius = 57150L, Distance = 38100L, Direction = 14460000 };

            A.RgbColorModelHex rgbColorModelHex16 = new A.RgbColorModelHex(){ Val = "000000" };
            A.Alpha alpha11 = new A.Alpha(){ Val = 70000 };

            rgbColorModelHex16.Append(alpha11);

            innerShadow3.Append(rgbColorModelHex16);

            effectList23.Append(innerShadow3);

            shapeProperties170.Append(transform2D112);
            shapeProperties170.Append(presetGeometry84);
            shapeProperties170.Append(outline84);
            shapeProperties170.Append(effectList23);

            TextBody textBody95 = new TextBody();

            A.BodyProperties bodyProperties95 = new A.BodyProperties(){ Anchor = A.TextAnchoringTypeValues.Center };
            A.NormalAutoFit normalAutoFit27 = new A.NormalAutoFit();

            bodyProperties95.Append(normalAutoFit27);

            A.ListStyle listStyle95 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties40 = new A.Level1ParagraphProperties(){ LeftMargin = 0, Indent = 0, Alignment = A.TextAlignmentTypeValues.Center };
            A.NoBullet noBullet114 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties230 = new A.DefaultRunProperties(){ FontSize = 1600 };

            level1ParagraphProperties40.Append(noBullet114);
            level1ParagraphProperties40.Append(defaultRunProperties230);

            A.Level2ParagraphProperties level2ParagraphProperties26 = new A.Level2ParagraphProperties(){ LeftMargin = 457200, Indent = 0 };
            A.NoBullet noBullet115 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties231 = new A.DefaultRunProperties(){ FontSize = 2800 };

            level2ParagraphProperties26.Append(noBullet115);
            level2ParagraphProperties26.Append(defaultRunProperties231);

            A.Level3ParagraphProperties level3ParagraphProperties26 = new A.Level3ParagraphProperties(){ LeftMargin = 914400, Indent = 0 };
            A.NoBullet noBullet116 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties232 = new A.DefaultRunProperties(){ FontSize = 2400 };

            level3ParagraphProperties26.Append(noBullet116);
            level3ParagraphProperties26.Append(defaultRunProperties232);

            A.Level4ParagraphProperties level4ParagraphProperties26 = new A.Level4ParagraphProperties(){ LeftMargin = 1371600, Indent = 0 };
            A.NoBullet noBullet117 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties233 = new A.DefaultRunProperties(){ FontSize = 2000 };

            level4ParagraphProperties26.Append(noBullet117);
            level4ParagraphProperties26.Append(defaultRunProperties233);

            A.Level5ParagraphProperties level5ParagraphProperties26 = new A.Level5ParagraphProperties(){ LeftMargin = 1828800, Indent = 0 };
            A.NoBullet noBullet118 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties234 = new A.DefaultRunProperties(){ FontSize = 2000 };

            level5ParagraphProperties26.Append(noBullet118);
            level5ParagraphProperties26.Append(defaultRunProperties234);

            A.Level6ParagraphProperties level6ParagraphProperties23 = new A.Level6ParagraphProperties(){ LeftMargin = 2286000, Indent = 0 };
            A.NoBullet noBullet119 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties235 = new A.DefaultRunProperties(){ FontSize = 2000 };

            level6ParagraphProperties23.Append(noBullet119);
            level6ParagraphProperties23.Append(defaultRunProperties235);

            A.Level7ParagraphProperties level7ParagraphProperties23 = new A.Level7ParagraphProperties(){ LeftMargin = 2743200, Indent = 0 };
            A.NoBullet noBullet120 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties236 = new A.DefaultRunProperties(){ FontSize = 2000 };

            level7ParagraphProperties23.Append(noBullet120);
            level7ParagraphProperties23.Append(defaultRunProperties236);

            A.Level8ParagraphProperties level8ParagraphProperties23 = new A.Level8ParagraphProperties(){ LeftMargin = 3200400, Indent = 0 };
            A.NoBullet noBullet121 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties237 = new A.DefaultRunProperties(){ FontSize = 2000 };

            level8ParagraphProperties23.Append(noBullet121);
            level8ParagraphProperties23.Append(defaultRunProperties237);

            A.Level9ParagraphProperties level9ParagraphProperties23 = new A.Level9ParagraphProperties(){ LeftMargin = 3657600, Indent = 0 };
            A.NoBullet noBullet122 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties238 = new A.DefaultRunProperties(){ FontSize = 2000 };

            level9ParagraphProperties23.Append(noBullet122);
            level9ParagraphProperties23.Append(defaultRunProperties238);

            listStyle95.Append(level1ParagraphProperties40);
            listStyle95.Append(level2ParagraphProperties26);
            listStyle95.Append(level3ParagraphProperties26);
            listStyle95.Append(level4ParagraphProperties26);
            listStyle95.Append(level5ParagraphProperties26);
            listStyle95.Append(level6ParagraphProperties23);
            listStyle95.Append(level7ParagraphProperties23);
            listStyle95.Append(level8ParagraphProperties23);
            listStyle95.Append(level9ParagraphProperties23);

            A.Paragraph paragraph131 = new A.Paragraph();

            A.Run run81 = new A.Run();

            A.RunProperties runProperties115 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties115.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text115 = new A.Text();
            text115.Text = "Click icon to add picture";

            run81.Append(runProperties115);
            run81.Append(text115);
            A.EndParagraphRunProperties endParagraphRunProperties83 = new A.EndParagraphRunProperties(){ Language = "en-US" };

            paragraph131.Append(run81);
            paragraph131.Append(endParagraphRunProperties83);

            textBody95.Append(bodyProperties95);
            textBody95.Append(listStyle95);
            textBody95.Append(paragraph131);

            shape95.Append(nonVisualShapeProperties95);
            shape95.Append(shapeProperties170);
            shape95.Append(textBody95);

            ConnectionShape connectionShape76 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties76 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties189 = new NonVisualDrawingProperties(){ Id = (UInt32Value)8U, Name = "Straight Connector 7" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties76 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties189 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties76.Append(nonVisualDrawingProperties189);
            nonVisualConnectionShapeProperties76.Append(nonVisualConnectorShapeDrawingProperties76);
            nonVisualConnectionShapeProperties76.Append(applicationNonVisualDrawingProperties189);

            ShapeProperties shapeProperties171 = new ShapeProperties();

            A.Transform2D transform2D113 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset131 = new A.Offset(){ X = 11278949L, Y = 2963333L };
            A.Extents extents131 = new A.Extents(){ Cx = 913052L, Cy = 912812L };

            transform2D113.Append(offset131);
            transform2D113.Append(extents131);

            A.PresetGeometry presetGeometry85 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList85 = new A.AdjustValueList();

            presetGeometry85.Append(adjustValueList85);

            A.Outline outline85 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill200 = new A.SolidFill();
            A.SchemeColor schemeColor516 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill200.Append(schemeColor516);

            outline85.Append(solidFill200);

            shapeProperties171.Append(transform2D113);
            shapeProperties171.Append(presetGeometry85);
            shapeProperties171.Append(outline85);

            ShapeStyle shapeStyle76 = new ShapeStyle();

            A.LineReference lineReference76 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor517 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference76.Append(schemeColor517);

            A.FillReference fillReference76 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor518 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference76.Append(schemeColor518);

            A.EffectReference effectReference76 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor519 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference76.Append(schemeColor519);

            A.FontReference fontReference76 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor520 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference76.Append(schemeColor520);

            shapeStyle76.Append(lineReference76);
            shapeStyle76.Append(fillReference76);
            shapeStyle76.Append(effectReference76);
            shapeStyle76.Append(fontReference76);

            connectionShape76.Append(nonVisualConnectionShapeProperties76);
            connectionShape76.Append(shapeProperties171);
            connectionShape76.Append(shapeStyle76);

            ConnectionShape connectionShape77 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties77 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties190 = new NonVisualDrawingProperties(){ Id = (UInt32Value)9U, Name = "Straight Connector 8" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties77 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties190 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties77.Append(nonVisualDrawingProperties190);
            nonVisualConnectionShapeProperties77.Append(nonVisualConnectorShapeDrawingProperties77);
            nonVisualConnectionShapeProperties77.Append(applicationNonVisualDrawingProperties190);

            ShapeProperties shapeProperties172 = new ShapeProperties();

            A.Transform2D transform2D114 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset132 = new A.Offset(){ X = 9209368L, Y = 3190344L };
            A.Extents extents132 = new A.Extents(){ Cx = 2982634L, Cy = 2981856L };

            transform2D114.Append(offset132);
            transform2D114.Append(extents132);

            A.PresetGeometry presetGeometry86 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList86 = new A.AdjustValueList();

            presetGeometry86.Append(adjustValueList86);

            A.Outline outline86 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill201 = new A.SolidFill();
            A.SchemeColor schemeColor521 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill201.Append(schemeColor521);

            outline86.Append(solidFill201);

            shapeProperties172.Append(transform2D114);
            shapeProperties172.Append(presetGeometry86);
            shapeProperties172.Append(outline86);

            ShapeStyle shapeStyle77 = new ShapeStyle();

            A.LineReference lineReference77 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor522 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference77.Append(schemeColor522);

            A.FillReference fillReference77 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor523 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference77.Append(schemeColor523);

            A.EffectReference effectReference77 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor524 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference77.Append(schemeColor524);

            A.FontReference fontReference77 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor525 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference77.Append(schemeColor525);

            shapeStyle77.Append(lineReference77);
            shapeStyle77.Append(fillReference77);
            shapeStyle77.Append(effectReference77);
            shapeStyle77.Append(fontReference77);

            connectionShape77.Append(nonVisualConnectionShapeProperties77);
            connectionShape77.Append(shapeProperties172);
            connectionShape77.Append(shapeStyle77);

            ConnectionShape connectionShape78 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties78 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties191 = new NonVisualDrawingProperties(){ Id = (UInt32Value)10U, Name = "Straight Connector 9" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties78 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties191 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties78.Append(nonVisualDrawingProperties191);
            nonVisualConnectionShapeProperties78.Append(nonVisualConnectorShapeDrawingProperties78);
            nonVisualConnectionShapeProperties78.Append(applicationNonVisualDrawingProperties191);

            ShapeProperties shapeProperties173 = new ShapeProperties();

            A.Transform2D transform2D115 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset133 = new A.Offset(){ X = 10294973L, Y = 3285068L };
            A.Extents extents133 = new A.Extents(){ Cx = 1897028L, Cy = 1896533L };

            transform2D115.Append(offset133);
            transform2D115.Append(extents133);

            A.PresetGeometry presetGeometry87 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList87 = new A.AdjustValueList();

            presetGeometry87.Append(adjustValueList87);

            A.Outline outline87 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill202 = new A.SolidFill();
            A.SchemeColor schemeColor526 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill202.Append(schemeColor526);

            outline87.Append(solidFill202);

            shapeProperties173.Append(transform2D115);
            shapeProperties173.Append(presetGeometry87);
            shapeProperties173.Append(outline87);

            ShapeStyle shapeStyle78 = new ShapeStyle();

            A.LineReference lineReference78 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor527 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference78.Append(schemeColor527);

            A.FillReference fillReference78 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor528 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference78.Append(schemeColor528);

            A.EffectReference effectReference78 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor529 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference78.Append(schemeColor529);

            A.FontReference fontReference78 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor530 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference78.Append(schemeColor530);

            shapeStyle78.Append(lineReference78);
            shapeStyle78.Append(fillReference78);
            shapeStyle78.Append(effectReference78);
            shapeStyle78.Append(fontReference78);

            connectionShape78.Append(nonVisualConnectionShapeProperties78);
            connectionShape78.Append(shapeProperties173);
            connectionShape78.Append(shapeStyle78);

            ConnectionShape connectionShape79 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties79 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties192 = new NonVisualDrawingProperties(){ Id = (UInt32Value)11U, Name = "Straight Connector 10" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties79 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties192 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties79.Append(nonVisualDrawingProperties192);
            nonVisualConnectionShapeProperties79.Append(nonVisualConnectorShapeDrawingProperties79);
            nonVisualConnectionShapeProperties79.Append(applicationNonVisualDrawingProperties192);

            ShapeProperties shapeProperties174 = new ShapeProperties();

            A.Transform2D transform2D116 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset134 = new A.Offset(){ X = 10445823L, Y = 3131080L };
            A.Extents extents134 = new A.Extents(){ Cx = 1746177L, Cy = 1745720L };

            transform2D116.Append(offset134);
            transform2D116.Append(extents134);

            A.PresetGeometry presetGeometry88 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList88 = new A.AdjustValueList();

            presetGeometry88.Append(adjustValueList88);

            A.Outline outline88 = new A.Outline(){ Width = 28575 };

            A.SolidFill solidFill203 = new A.SolidFill();
            A.SchemeColor schemeColor531 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill203.Append(schemeColor531);

            outline88.Append(solidFill203);

            shapeProperties174.Append(transform2D116);
            shapeProperties174.Append(presetGeometry88);
            shapeProperties174.Append(outline88);

            ShapeStyle shapeStyle79 = new ShapeStyle();

            A.LineReference lineReference79 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor532 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference79.Append(schemeColor532);

            A.FillReference fillReference79 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor533 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference79.Append(schemeColor533);

            A.EffectReference effectReference79 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor534 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference79.Append(schemeColor534);

            A.FontReference fontReference79 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor535 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference79.Append(schemeColor535);

            shapeStyle79.Append(lineReference79);
            shapeStyle79.Append(fillReference79);
            shapeStyle79.Append(effectReference79);
            shapeStyle79.Append(fontReference79);

            connectionShape79.Append(nonVisualConnectionShapeProperties79);
            connectionShape79.Append(shapeProperties174);
            connectionShape79.Append(shapeStyle79);

            ConnectionShape connectionShape80 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties80 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties193 = new NonVisualDrawingProperties(){ Id = (UInt32Value)12U, Name = "Straight Connector 11" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties80 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties193 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties80.Append(nonVisualDrawingProperties193);
            nonVisualConnectionShapeProperties80.Append(nonVisualConnectorShapeDrawingProperties80);
            nonVisualConnectionShapeProperties80.Append(applicationNonVisualDrawingProperties193);

            ShapeProperties shapeProperties175 = new ShapeProperties();

            A.Transform2D transform2D117 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset135 = new A.Offset(){ X = 10921671L, Y = 3683002L };
            A.Extents extents135 = new A.Extents(){ Cx = 1270332L, Cy = 1269999L };

            transform2D117.Append(offset135);
            transform2D117.Append(extents135);

            A.PresetGeometry presetGeometry89 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList89 = new A.AdjustValueList();

            presetGeometry89.Append(adjustValueList89);

            A.Outline outline89 = new A.Outline(){ Width = 28575 };

            A.SolidFill solidFill204 = new A.SolidFill();
            A.SchemeColor schemeColor536 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill204.Append(schemeColor536);

            outline89.Append(solidFill204);

            shapeProperties175.Append(transform2D117);
            shapeProperties175.Append(presetGeometry89);
            shapeProperties175.Append(outline89);

            ShapeStyle shapeStyle80 = new ShapeStyle();

            A.LineReference lineReference80 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor537 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference80.Append(schemeColor537);

            A.FillReference fillReference80 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor538 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference80.Append(schemeColor538);

            A.EffectReference effectReference80 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor539 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference80.Append(schemeColor539);

            A.FontReference fontReference80 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor540 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference80.Append(schemeColor540);

            shapeStyle80.Append(lineReference80);
            shapeStyle80.Append(fillReference80);
            shapeStyle80.Append(effectReference80);
            shapeStyle80.Append(fontReference80);

            connectionShape80.Append(nonVisualConnectionShapeProperties80);
            connectionShape80.Append(shapeProperties175);
            connectionShape80.Append(shapeStyle80);

            shapeTree18.Append(nonVisualGroupShapeProperties18);
            shapeTree18.Append(groupShapeProperties18);
            shapeTree18.Append(shape90);
            shapeTree18.Append(shape91);
            shapeTree18.Append(shape92);
            shapeTree18.Append(shape93);
            shapeTree18.Append(shape94);
            shapeTree18.Append(shape95);
            shapeTree18.Append(connectionShape76);
            shapeTree18.Append(connectionShape77);
            shapeTree18.Append(connectionShape78);
            shapeTree18.Append(connectionShape79);
            shapeTree18.Append(connectionShape80);

            CommonSlideDataExtensionList commonSlideDataExtensionList18 = new CommonSlideDataExtensionList();

            CommonSlideDataExtension commonSlideDataExtension18 = new CommonSlideDataExtension(){ Uri = "{BB962C8B-B14F-4D97-AF65-F5344CB8AC3E}" };

            P14.CreationId creationId18 = new P14.CreationId(){ Val = (UInt32Value)1479597387U };
            creationId18.AddNamespaceDeclaration("p14", "http://schemas.microsoft.com/office/powerpoint/2010/main");

            commonSlideDataExtension18.Append(creationId18);

            commonSlideDataExtensionList18.Append(commonSlideDataExtension18);

            commonSlideData18.Append(shapeTree18);
            commonSlideData18.Append(commonSlideDataExtensionList18);

            ColorMapOverride colorMapOverride17 = new ColorMapOverride();
            A.MasterColorMapping masterColorMapping17 = new A.MasterColorMapping();

            colorMapOverride17.Append(masterColorMapping17);

            Timing timing18 = new Timing();

            TimeNodeList timeNodeList18 = new TimeNodeList();

            ParallelTimeNode parallelTimeNode18 = new ParallelTimeNode();
            CommonTimeNode commonTimeNode18 = new CommonTimeNode(){ Id = (UInt32Value)1U, Duration = "indefinite", Restart = TimeNodeRestartValues.Never, NodeType = TimeNodeValues.TmingRoot };

            parallelTimeNode18.Append(commonTimeNode18);

            timeNodeList18.Append(parallelTimeNode18);

            timing18.Append(timeNodeList18);

            slideLayout16.Append(commonSlideData18);
            slideLayout16.Append(colorMapOverride17);
            slideLayout16.Append(timing18);

            slideLayoutPart16.SlideLayout = slideLayout16;
        }
Ejemplo n.º 21
0
        // Generates content of slideLayoutPart17.
        private void GenerateSlideLayoutPart17Content(SlideLayoutPart slideLayoutPart17)
        {
            SlideLayout slideLayout17 = new SlideLayout(){ Preserve = true };
            slideLayout17.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");
            slideLayout17.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            slideLayout17.AddNamespaceDeclaration("p", "http://schemas.openxmlformats.org/presentationml/2006/main");

            CommonSlideData commonSlideData19 = new CommonSlideData(){ Name = "Quote Name Card" };

            ShapeTree shapeTree19 = new ShapeTree();

            NonVisualGroupShapeProperties nonVisualGroupShapeProperties19 = new NonVisualGroupShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties194 = new NonVisualDrawingProperties(){ Id = (UInt32Value)1U, Name = "" };
            NonVisualGroupShapeDrawingProperties nonVisualGroupShapeDrawingProperties19 = new NonVisualGroupShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties194 = new ApplicationNonVisualDrawingProperties();

            nonVisualGroupShapeProperties19.Append(nonVisualDrawingProperties194);
            nonVisualGroupShapeProperties19.Append(nonVisualGroupShapeDrawingProperties19);
            nonVisualGroupShapeProperties19.Append(applicationNonVisualDrawingProperties194);

            GroupShapeProperties groupShapeProperties19 = new GroupShapeProperties();

            A.TransformGroup transformGroup19 = new A.TransformGroup();
            A.Offset offset136 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents136 = new A.Extents(){ Cx = 0L, Cy = 0L };
            A.ChildOffset childOffset19 = new A.ChildOffset(){ X = 0L, Y = 0L };
            A.ChildExtents childExtents19 = new A.ChildExtents(){ Cx = 0L, Cy = 0L };

            transformGroup19.Append(offset136);
            transformGroup19.Append(extents136);
            transformGroup19.Append(childOffset19);
            transformGroup19.Append(childExtents19);

            groupShapeProperties19.Append(transformGroup19);

            Shape shape96 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties96 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties195 = new NonVisualDrawingProperties(){ Id = (UInt32Value)2U, Name = "Title 1" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties96 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks94 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties96.Append(shapeLocks94);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties195 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape94 = new PlaceholderShape(){ Type = PlaceholderValues.Title };

            applicationNonVisualDrawingProperties195.Append(placeholderShape94);

            nonVisualShapeProperties96.Append(nonVisualDrawingProperties195);
            nonVisualShapeProperties96.Append(nonVisualShapeDrawingProperties96);
            nonVisualShapeProperties96.Append(applicationNonVisualDrawingProperties195);

            ShapeProperties shapeProperties176 = new ShapeProperties();

            A.Transform2D transform2D118 = new A.Transform2D();
            A.Offset offset137 = new A.Offset(){ X = 1141710L, Y = 685800L };
            A.Extents extents137 = new A.Extents(){ Cx = 9146382L, Cy = 2743200L };

            transform2D118.Append(offset137);
            transform2D118.Append(extents137);

            shapeProperties176.Append(transform2D118);

            TextBody textBody96 = new TextBody();

            A.BodyProperties bodyProperties96 = new A.BodyProperties(){ Anchor = A.TextAnchoringTypeValues.Center };
            A.NormalAutoFit normalAutoFit28 = new A.NormalAutoFit();

            bodyProperties96.Append(normalAutoFit28);

            A.ListStyle listStyle96 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties41 = new A.Level1ParagraphProperties(){ Alignment = A.TextAlignmentTypeValues.Left };

            A.DefaultRunProperties defaultRunProperties239 = new A.DefaultRunProperties(){ FontSize = 3200, Bold = false, Capital = A.TextCapsValues.All };

            A.SolidFill solidFill205 = new A.SolidFill();
            A.SchemeColor schemeColor541 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill205.Append(schemeColor541);

            defaultRunProperties239.Append(solidFill205);

            level1ParagraphProperties41.Append(defaultRunProperties239);

            listStyle96.Append(level1ParagraphProperties41);

            A.Paragraph paragraph132 = new A.Paragraph();

            A.Run run82 = new A.Run();

            A.RunProperties runProperties116 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties116.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text116 = new A.Text();
            text116.Text = "Click to edit Master title style";

            run82.Append(runProperties116);
            run82.Append(text116);
            A.EndParagraphRunProperties endParagraphRunProperties84 = new A.EndParagraphRunProperties(){ Language = "en-US", Dirty = false };

            paragraph132.Append(run82);
            paragraph132.Append(endParagraphRunProperties84);

            textBody96.Append(bodyProperties96);
            textBody96.Append(listStyle96);
            textBody96.Append(paragraph132);

            shape96.Append(nonVisualShapeProperties96);
            shape96.Append(shapeProperties176);
            shape96.Append(textBody96);

            Shape shape97 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties97 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties196 = new NonVisualDrawingProperties(){ Id = (UInt32Value)3U, Name = "Text Placeholder 2" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties97 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks95 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties97.Append(shapeLocks95);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties196 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape95 = new PlaceholderShape(){ Type = PlaceholderValues.Body, Index = (UInt32Value)1U };

            applicationNonVisualDrawingProperties196.Append(placeholderShape95);

            nonVisualShapeProperties97.Append(nonVisualDrawingProperties196);
            nonVisualShapeProperties97.Append(nonVisualShapeDrawingProperties97);
            nonVisualShapeProperties97.Append(applicationNonVisualDrawingProperties196);

            ShapeProperties shapeProperties177 = new ShapeProperties();

            A.Transform2D transform2D119 = new A.Transform2D();
            A.Offset offset138 = new A.Offset(){ X = 684390L, Y = 4978400L };
            A.Extents extents138 = new A.Extents(){ Cx = 8536624L, Cy = 1016000L };

            transform2D119.Append(offset138);
            transform2D119.Append(extents138);

            shapeProperties177.Append(transform2D119);

            TextBody textBody97 = new TextBody();

            A.BodyProperties bodyProperties97 = new A.BodyProperties(){ Anchor = A.TextAnchoringTypeValues.Top };
            A.NormalAutoFit normalAutoFit29 = new A.NormalAutoFit();

            bodyProperties97.Append(normalAutoFit29);

            A.ListStyle listStyle97 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties42 = new A.Level1ParagraphProperties(){ LeftMargin = 0, Indent = 0, Alignment = A.TextAlignmentTypeValues.Left };
            A.NoBullet noBullet123 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties240 = new A.DefaultRunProperties(){ FontSize = 1800 };

            A.SolidFill solidFill206 = new A.SolidFill();

            A.SchemeColor schemeColor542 = new A.SchemeColor(){ Val = A.SchemeColorValues.Background2 };
            A.LuminanceModulation luminanceModulation24 = new A.LuminanceModulation(){ Val = 75000 };

            schemeColor542.Append(luminanceModulation24);

            solidFill206.Append(schemeColor542);

            defaultRunProperties240.Append(solidFill206);

            level1ParagraphProperties42.Append(noBullet123);
            level1ParagraphProperties42.Append(defaultRunProperties240);

            A.Level2ParagraphProperties level2ParagraphProperties27 = new A.Level2ParagraphProperties(){ LeftMargin = 457200, Indent = 0 };
            A.NoBullet noBullet124 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties241 = new A.DefaultRunProperties(){ FontSize = 1800 };

            A.SolidFill solidFill207 = new A.SolidFill();

            A.SchemeColor schemeColor543 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint55 = new A.Tint(){ Val = 75000 };

            schemeColor543.Append(tint55);

            solidFill207.Append(schemeColor543);

            defaultRunProperties241.Append(solidFill207);

            level2ParagraphProperties27.Append(noBullet124);
            level2ParagraphProperties27.Append(defaultRunProperties241);

            A.Level3ParagraphProperties level3ParagraphProperties27 = new A.Level3ParagraphProperties(){ LeftMargin = 914400, Indent = 0 };
            A.NoBullet noBullet125 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties242 = new A.DefaultRunProperties(){ FontSize = 1600 };

            A.SolidFill solidFill208 = new A.SolidFill();

            A.SchemeColor schemeColor544 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint56 = new A.Tint(){ Val = 75000 };

            schemeColor544.Append(tint56);

            solidFill208.Append(schemeColor544);

            defaultRunProperties242.Append(solidFill208);

            level3ParagraphProperties27.Append(noBullet125);
            level3ParagraphProperties27.Append(defaultRunProperties242);

            A.Level4ParagraphProperties level4ParagraphProperties27 = new A.Level4ParagraphProperties(){ LeftMargin = 1371600, Indent = 0 };
            A.NoBullet noBullet126 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties243 = new A.DefaultRunProperties(){ FontSize = 1400 };

            A.SolidFill solidFill209 = new A.SolidFill();

            A.SchemeColor schemeColor545 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint57 = new A.Tint(){ Val = 75000 };

            schemeColor545.Append(tint57);

            solidFill209.Append(schemeColor545);

            defaultRunProperties243.Append(solidFill209);

            level4ParagraphProperties27.Append(noBullet126);
            level4ParagraphProperties27.Append(defaultRunProperties243);

            A.Level5ParagraphProperties level5ParagraphProperties27 = new A.Level5ParagraphProperties(){ LeftMargin = 1828800, Indent = 0 };
            A.NoBullet noBullet127 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties244 = new A.DefaultRunProperties(){ FontSize = 1400 };

            A.SolidFill solidFill210 = new A.SolidFill();

            A.SchemeColor schemeColor546 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint58 = new A.Tint(){ Val = 75000 };

            schemeColor546.Append(tint58);

            solidFill210.Append(schemeColor546);

            defaultRunProperties244.Append(solidFill210);

            level5ParagraphProperties27.Append(noBullet127);
            level5ParagraphProperties27.Append(defaultRunProperties244);

            A.Level6ParagraphProperties level6ParagraphProperties24 = new A.Level6ParagraphProperties(){ LeftMargin = 2286000, Indent = 0 };
            A.NoBullet noBullet128 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties245 = new A.DefaultRunProperties(){ FontSize = 1400 };

            A.SolidFill solidFill211 = new A.SolidFill();

            A.SchemeColor schemeColor547 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint59 = new A.Tint(){ Val = 75000 };

            schemeColor547.Append(tint59);

            solidFill211.Append(schemeColor547);

            defaultRunProperties245.Append(solidFill211);

            level6ParagraphProperties24.Append(noBullet128);
            level6ParagraphProperties24.Append(defaultRunProperties245);

            A.Level7ParagraphProperties level7ParagraphProperties24 = new A.Level7ParagraphProperties(){ LeftMargin = 2743200, Indent = 0 };
            A.NoBullet noBullet129 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties246 = new A.DefaultRunProperties(){ FontSize = 1400 };

            A.SolidFill solidFill212 = new A.SolidFill();

            A.SchemeColor schemeColor548 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint60 = new A.Tint(){ Val = 75000 };

            schemeColor548.Append(tint60);

            solidFill212.Append(schemeColor548);

            defaultRunProperties246.Append(solidFill212);

            level7ParagraphProperties24.Append(noBullet129);
            level7ParagraphProperties24.Append(defaultRunProperties246);

            A.Level8ParagraphProperties level8ParagraphProperties24 = new A.Level8ParagraphProperties(){ LeftMargin = 3200400, Indent = 0 };
            A.NoBullet noBullet130 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties247 = new A.DefaultRunProperties(){ FontSize = 1400 };

            A.SolidFill solidFill213 = new A.SolidFill();

            A.SchemeColor schemeColor549 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint61 = new A.Tint(){ Val = 75000 };

            schemeColor549.Append(tint61);

            solidFill213.Append(schemeColor549);

            defaultRunProperties247.Append(solidFill213);

            level8ParagraphProperties24.Append(noBullet130);
            level8ParagraphProperties24.Append(defaultRunProperties247);

            A.Level9ParagraphProperties level9ParagraphProperties24 = new A.Level9ParagraphProperties(){ LeftMargin = 3657600, Indent = 0 };
            A.NoBullet noBullet131 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties248 = new A.DefaultRunProperties(){ FontSize = 1400 };

            A.SolidFill solidFill214 = new A.SolidFill();

            A.SchemeColor schemeColor550 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint62 = new A.Tint(){ Val = 75000 };

            schemeColor550.Append(tint62);

            solidFill214.Append(schemeColor550);

            defaultRunProperties248.Append(solidFill214);

            level9ParagraphProperties24.Append(noBullet131);
            level9ParagraphProperties24.Append(defaultRunProperties248);

            listStyle97.Append(level1ParagraphProperties42);
            listStyle97.Append(level2ParagraphProperties27);
            listStyle97.Append(level3ParagraphProperties27);
            listStyle97.Append(level4ParagraphProperties27);
            listStyle97.Append(level5ParagraphProperties27);
            listStyle97.Append(level6ParagraphProperties24);
            listStyle97.Append(level7ParagraphProperties24);
            listStyle97.Append(level8ParagraphProperties24);
            listStyle97.Append(level9ParagraphProperties24);

            A.Paragraph paragraph133 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties61 = new A.ParagraphProperties(){ Level = 0 };

            A.Run run83 = new A.Run();

            A.RunProperties runProperties117 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties117.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text117 = new A.Text();
            text117.Text = "Click to edit Master text styles";

            run83.Append(runProperties117);
            run83.Append(text117);

            paragraph133.Append(paragraphProperties61);
            paragraph133.Append(run83);

            textBody97.Append(bodyProperties97);
            textBody97.Append(listStyle97);
            textBody97.Append(paragraph133);

            shape97.Append(nonVisualShapeProperties97);
            shape97.Append(shapeProperties177);
            shape97.Append(textBody97);

            Shape shape98 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties98 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties197 = new NonVisualDrawingProperties(){ Id = (UInt32Value)4U, Name = "Date Placeholder 3" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties98 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks96 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties98.Append(shapeLocks96);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties197 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape96 = new PlaceholderShape(){ Type = PlaceholderValues.DateAndTime, Size = PlaceholderSizeValues.Half, Index = (UInt32Value)10U };

            applicationNonVisualDrawingProperties197.Append(placeholderShape96);

            nonVisualShapeProperties98.Append(nonVisualDrawingProperties197);
            nonVisualShapeProperties98.Append(nonVisualShapeDrawingProperties98);
            nonVisualShapeProperties98.Append(applicationNonVisualDrawingProperties197);
            ShapeProperties shapeProperties178 = new ShapeProperties();

            TextBody textBody98 = new TextBody();
            A.BodyProperties bodyProperties98 = new A.BodyProperties();
            A.ListStyle listStyle98 = new A.ListStyle();

            A.Paragraph paragraph134 = new A.Paragraph();

            A.Field field35 = new A.Field(){ Id = "{CE1A2D98-1BBD-4706-A118-AAC2A16BEAD3}", Type = "datetimeFigureOut" };

            A.RunProperties runProperties118 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties118.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text118 = new A.Text();
            text118.Text = "2012/10/3";

            field35.Append(runProperties118);
            field35.Append(text118);
            A.EndParagraphRunProperties endParagraphRunProperties85 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph134.Append(field35);
            paragraph134.Append(endParagraphRunProperties85);

            textBody98.Append(bodyProperties98);
            textBody98.Append(listStyle98);
            textBody98.Append(paragraph134);

            shape98.Append(nonVisualShapeProperties98);
            shape98.Append(shapeProperties178);
            shape98.Append(textBody98);

            Shape shape99 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties99 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties198 = new NonVisualDrawingProperties(){ Id = (UInt32Value)5U, Name = "Footer Placeholder 4" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties99 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks97 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties99.Append(shapeLocks97);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties198 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape97 = new PlaceholderShape(){ Type = PlaceholderValues.Footer, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)11U };

            applicationNonVisualDrawingProperties198.Append(placeholderShape97);

            nonVisualShapeProperties99.Append(nonVisualDrawingProperties198);
            nonVisualShapeProperties99.Append(nonVisualShapeDrawingProperties99);
            nonVisualShapeProperties99.Append(applicationNonVisualDrawingProperties198);
            ShapeProperties shapeProperties179 = new ShapeProperties();

            TextBody textBody99 = new TextBody();
            A.BodyProperties bodyProperties99 = new A.BodyProperties();
            A.ListStyle listStyle99 = new A.ListStyle();

            A.Paragraph paragraph135 = new A.Paragraph();
            A.EndParagraphRunProperties endParagraphRunProperties86 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph135.Append(endParagraphRunProperties86);

            textBody99.Append(bodyProperties99);
            textBody99.Append(listStyle99);
            textBody99.Append(paragraph135);

            shape99.Append(nonVisualShapeProperties99);
            shape99.Append(shapeProperties179);
            shape99.Append(textBody99);

            Shape shape100 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties100 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties199 = new NonVisualDrawingProperties(){ Id = (UInt32Value)6U, Name = "Slide Number Placeholder 5" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties100 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks98 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties100.Append(shapeLocks98);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties199 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape98 = new PlaceholderShape(){ Type = PlaceholderValues.SlideNumber, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)12U };

            applicationNonVisualDrawingProperties199.Append(placeholderShape98);

            nonVisualShapeProperties100.Append(nonVisualDrawingProperties199);
            nonVisualShapeProperties100.Append(nonVisualShapeDrawingProperties100);
            nonVisualShapeProperties100.Append(applicationNonVisualDrawingProperties199);
            ShapeProperties shapeProperties180 = new ShapeProperties();

            TextBody textBody100 = new TextBody();
            A.BodyProperties bodyProperties100 = new A.BodyProperties();
            A.ListStyle listStyle100 = new A.ListStyle();

            A.Paragraph paragraph136 = new A.Paragraph();

            A.Field field36 = new A.Field(){ Id = "{D107CD50-7081-433F-A1F2-156B4E14F4F4}", Type = "slidenum" };

            A.RunProperties runProperties119 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties119.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text119 = new A.Text();
            text119.Text = "‹#›";

            field36.Append(runProperties119);
            field36.Append(text119);
            A.EndParagraphRunProperties endParagraphRunProperties87 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph136.Append(field36);
            paragraph136.Append(endParagraphRunProperties87);

            textBody100.Append(bodyProperties100);
            textBody100.Append(listStyle100);
            textBody100.Append(paragraph136);

            shape100.Append(nonVisualShapeProperties100);
            shape100.Append(shapeProperties180);
            shape100.Append(textBody100);

            Shape shape101 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties101 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties200 = new NonVisualDrawingProperties(){ Id = (UInt32Value)10U, Name = "Text Placeholder 9" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties101 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks99 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties101.Append(shapeLocks99);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties200 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape99 = new PlaceholderShape(){ Type = PlaceholderValues.Body, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)13U };

            applicationNonVisualDrawingProperties200.Append(placeholderShape99);

            nonVisualShapeProperties101.Append(nonVisualDrawingProperties200);
            nonVisualShapeProperties101.Append(nonVisualShapeDrawingProperties101);
            nonVisualShapeProperties101.Append(applicationNonVisualDrawingProperties200);

            ShapeProperties shapeProperties181 = new ShapeProperties();

            A.Transform2D transform2D120 = new A.Transform2D();
            A.Offset offset139 = new A.Offset(){ X = 684391L, Y = 3928534L };
            A.Extents extents139 = new A.Extents(){ Cx = 8536624L, Cy = 1049866L };

            transform2D120.Append(offset139);
            transform2D120.Append(extents139);

            shapeProperties181.Append(transform2D120);

            TextBody textBody101 = new TextBody();

            A.BodyProperties bodyProperties101 = new A.BodyProperties(){ Vertical = A.TextVerticalValues.Horizontal, LeftInset = 91440, TopInset = 45720, RightInset = 91440, BottomInset = 45720, RightToLeftColumns = false, Anchor = A.TextAnchoringTypeValues.Bottom };
            A.NormalAutoFit normalAutoFit30 = new A.NormalAutoFit();

            bodyProperties101.Append(normalAutoFit30);

            A.ListStyle listStyle101 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties43 = new A.Level1ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties249 = new A.DefaultRunProperties(){ Language = "en-US", FontSize = 2400, Bold = false, Capital = A.TextCapsValues.All, Dirty = false };
            defaultRunProperties249.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));

            A.Outline outline90 = new A.Outline(){ Width = 3175, CompoundLineType = A.CompoundLineValues.Single };
            A.NoFill noFill5 = new A.NoFill();

            outline90.Append(noFill5);

            A.SolidFill solidFill215 = new A.SolidFill();
            A.SchemeColor schemeColor551 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill215.Append(schemeColor551);
            A.EffectList effectList24 = new A.EffectList();
            A.LatinFont latinFont37 = new A.LatinFont(){ Typeface = "+mj-lt" };
            A.EastAsianFont eastAsianFont34 = new A.EastAsianFont(){ Typeface = "+mj-ea" };
            A.ComplexScriptFont complexScriptFont34 = new A.ComplexScriptFont(){ Typeface = "Trebuchet MS" };

            defaultRunProperties249.Append(outline90);
            defaultRunProperties249.Append(solidFill215);
            defaultRunProperties249.Append(effectList24);
            defaultRunProperties249.Append(latinFont37);
            defaultRunProperties249.Append(eastAsianFont34);
            defaultRunProperties249.Append(complexScriptFont34);

            level1ParagraphProperties43.Append(defaultRunProperties249);

            listStyle101.Append(level1ParagraphProperties43);

            A.Paragraph paragraph137 = new A.Paragraph();

            A.ParagraphProperties paragraphProperties62 = new A.ParagraphProperties(){ LeftMargin = 0, Level = 0 };

            A.SpaceBefore spaceBefore14 = new A.SpaceBefore();
            A.SpacingPercent spacingPercent14 = new A.SpacingPercent(){ Val = 0 };

            spaceBefore14.Append(spacingPercent14);
            A.NoBullet noBullet132 = new A.NoBullet();

            paragraphProperties62.Append(spaceBefore14);
            paragraphProperties62.Append(noBullet132);

            A.Run run84 = new A.Run();

            A.RunProperties runProperties120 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties120.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text120 = new A.Text();
            text120.Text = "Click to edit Master text styles";

            run84.Append(runProperties120);
            run84.Append(text120);

            paragraph137.Append(paragraphProperties62);
            paragraph137.Append(run84);

            textBody101.Append(bodyProperties101);
            textBody101.Append(listStyle101);
            textBody101.Append(paragraph137);

            shape101.Append(nonVisualShapeProperties101);
            shape101.Append(shapeProperties181);
            shape101.Append(textBody101);

            Shape shape102 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties102 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties201 = new NonVisualDrawingProperties(){ Id = (UInt32Value)11U, Name = "TextBox 10" };
            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties102 = new NonVisualShapeDrawingProperties(){ TextBox = true };
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties201 = new ApplicationNonVisualDrawingProperties();

            nonVisualShapeProperties102.Append(nonVisualDrawingProperties201);
            nonVisualShapeProperties102.Append(nonVisualShapeDrawingProperties102);
            nonVisualShapeProperties102.Append(applicationNonVisualDrawingProperties201);

            ShapeProperties shapeProperties182 = new ShapeProperties();

            A.Transform2D transform2D121 = new A.Transform2D();
            A.Offset offset140 = new A.Offset(){ X = 531950L, Y = 812222L };
            A.Extents extents140 = new A.Extents(){ Cx = 609759L, Cy = 584776L };

            transform2D121.Append(offset140);
            transform2D121.Append(extents140);

            A.PresetGeometry presetGeometry90 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Rectangle };
            A.AdjustValueList adjustValueList90 = new A.AdjustValueList();

            presetGeometry90.Append(adjustValueList90);

            shapeProperties182.Append(transform2D121);
            shapeProperties182.Append(presetGeometry90);

            TextBody textBody102 = new TextBody();

            A.BodyProperties bodyProperties102 = new A.BodyProperties(){ Vertical = A.TextVerticalValues.Horizontal, LeftInset = 91440, TopInset = 45720, RightInset = 91440, BottomInset = 45720, RightToLeftColumns = false, Anchor = A.TextAnchoringTypeValues.Center };
            A.NoAutoFit noAutoFit5 = new A.NoAutoFit();

            bodyProperties102.Append(noAutoFit5);

            A.ListStyle listStyle102 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties44 = new A.Level1ParagraphProperties();

            A.SpaceBefore spaceBefore15 = new A.SpaceBefore();
            A.SpacingPercent spacingPercent15 = new A.SpacingPercent(){ Val = 0 };

            spaceBefore15.Append(spacingPercent15);
            A.NoBullet noBullet133 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties250 = new A.DefaultRunProperties(){ FontSize = 3200, Bold = false, Capital = A.TextCapsValues.All };

            A.Outline outline91 = new A.Outline(){ Width = 3175, CompoundLineType = A.CompoundLineValues.Single };
            A.NoFill noFill6 = new A.NoFill();

            outline91.Append(noFill6);

            A.EffectList effectList25 = new A.EffectList();

            A.Glow glow3 = new A.Glow(){ Radius = 38100L };

            A.SchemeColor schemeColor552 = new A.SchemeColor(){ Val = A.SchemeColorValues.Background1 };
            A.LuminanceModulation luminanceModulation25 = new A.LuminanceModulation(){ Val = 65000 };
            A.LuminanceOffset luminanceOffset3 = new A.LuminanceOffset(){ Val = 35000 };
            A.Alpha alpha12 = new A.Alpha(){ Val = 40000 };

            schemeColor552.Append(luminanceModulation25);
            schemeColor552.Append(luminanceOffset3);
            schemeColor552.Append(alpha12);

            glow3.Append(schemeColor552);

            A.OuterShadow outerShadow4 = new A.OuterShadow(){ BlurRadius = 28575L, Distance = 38100L, Direction = 14040000, Alignment = A.RectangleAlignmentValues.TopLeft, RotateWithShape = false };

            A.RgbColorModelHex rgbColorModelHex17 = new A.RgbColorModelHex(){ Val = "000000" };
            A.Alpha alpha13 = new A.Alpha(){ Val = 25000 };

            rgbColorModelHex17.Append(alpha13);

            outerShadow4.Append(rgbColorModelHex17);

            effectList25.Append(glow3);
            effectList25.Append(outerShadow4);
            A.LatinFont latinFont38 = new A.LatinFont(){ Typeface = "+mj-lt" };
            A.EastAsianFont eastAsianFont35 = new A.EastAsianFont(){ Typeface = "+mj-ea" };
            A.ComplexScriptFont complexScriptFont35 = new A.ComplexScriptFont(){ Typeface = "Trebuchet MS" };

            defaultRunProperties250.Append(outline91);
            defaultRunProperties250.Append(effectList25);
            defaultRunProperties250.Append(latinFont38);
            defaultRunProperties250.Append(eastAsianFont35);
            defaultRunProperties250.Append(complexScriptFont35);

            level1ParagraphProperties44.Append(spaceBefore15);
            level1ParagraphProperties44.Append(noBullet133);
            level1ParagraphProperties44.Append(defaultRunProperties250);

            A.Level2ParagraphProperties level2ParagraphProperties28 = new A.Level2ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties251 = new A.DefaultRunProperties();

            A.SolidFill solidFill216 = new A.SolidFill();
            A.SchemeColor schemeColor553 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill216.Append(schemeColor553);

            defaultRunProperties251.Append(solidFill216);

            level2ParagraphProperties28.Append(defaultRunProperties251);

            A.Level3ParagraphProperties level3ParagraphProperties28 = new A.Level3ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties252 = new A.DefaultRunProperties();

            A.SolidFill solidFill217 = new A.SolidFill();
            A.SchemeColor schemeColor554 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill217.Append(schemeColor554);

            defaultRunProperties252.Append(solidFill217);

            level3ParagraphProperties28.Append(defaultRunProperties252);

            A.Level4ParagraphProperties level4ParagraphProperties28 = new A.Level4ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties253 = new A.DefaultRunProperties();

            A.SolidFill solidFill218 = new A.SolidFill();
            A.SchemeColor schemeColor555 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill218.Append(schemeColor555);

            defaultRunProperties253.Append(solidFill218);

            level4ParagraphProperties28.Append(defaultRunProperties253);

            A.Level5ParagraphProperties level5ParagraphProperties28 = new A.Level5ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties254 = new A.DefaultRunProperties();

            A.SolidFill solidFill219 = new A.SolidFill();
            A.SchemeColor schemeColor556 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill219.Append(schemeColor556);

            defaultRunProperties254.Append(solidFill219);

            level5ParagraphProperties28.Append(defaultRunProperties254);

            A.Level6ParagraphProperties level6ParagraphProperties25 = new A.Level6ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties255 = new A.DefaultRunProperties();

            A.SolidFill solidFill220 = new A.SolidFill();
            A.SchemeColor schemeColor557 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill220.Append(schemeColor557);

            defaultRunProperties255.Append(solidFill220);

            level6ParagraphProperties25.Append(defaultRunProperties255);

            A.Level7ParagraphProperties level7ParagraphProperties25 = new A.Level7ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties256 = new A.DefaultRunProperties();

            A.SolidFill solidFill221 = new A.SolidFill();
            A.SchemeColor schemeColor558 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill221.Append(schemeColor558);

            defaultRunProperties256.Append(solidFill221);

            level7ParagraphProperties25.Append(defaultRunProperties256);

            A.Level8ParagraphProperties level8ParagraphProperties25 = new A.Level8ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties257 = new A.DefaultRunProperties();

            A.SolidFill solidFill222 = new A.SolidFill();
            A.SchemeColor schemeColor559 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill222.Append(schemeColor559);

            defaultRunProperties257.Append(solidFill222);

            level8ParagraphProperties25.Append(defaultRunProperties257);

            A.Level9ParagraphProperties level9ParagraphProperties25 = new A.Level9ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties258 = new A.DefaultRunProperties();

            A.SolidFill solidFill223 = new A.SolidFill();
            A.SchemeColor schemeColor560 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill223.Append(schemeColor560);

            defaultRunProperties258.Append(solidFill223);

            level9ParagraphProperties25.Append(defaultRunProperties258);

            listStyle102.Append(level1ParagraphProperties44);
            listStyle102.Append(level2ParagraphProperties28);
            listStyle102.Append(level3ParagraphProperties28);
            listStyle102.Append(level4ParagraphProperties28);
            listStyle102.Append(level5ParagraphProperties28);
            listStyle102.Append(level6ParagraphProperties25);
            listStyle102.Append(level7ParagraphProperties25);
            listStyle102.Append(level8ParagraphProperties25);
            listStyle102.Append(level9ParagraphProperties25);

            A.Paragraph paragraph138 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties63 = new A.ParagraphProperties(){ Level = 0 };

            A.Run run85 = new A.Run();

            A.RunProperties runProperties121 = new A.RunProperties(){ Language = "en-US", FontSize = 8000, Dirty = false };
            runProperties121.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));

            A.SolidFill solidFill224 = new A.SolidFill();
            A.SchemeColor schemeColor561 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill224.Append(schemeColor561);
            A.EffectList effectList26 = new A.EffectList();

            runProperties121.Append(solidFill224);
            runProperties121.Append(effectList26);
            A.Text text121 = new A.Text();
            text121.Text = "“";

            run85.Append(runProperties121);
            run85.Append(text121);

            A.EndParagraphRunProperties endParagraphRunProperties88 = new A.EndParagraphRunProperties(){ Language = "en-US", FontSize = 8000, Dirty = false };

            A.SolidFill solidFill225 = new A.SolidFill();
            A.SchemeColor schemeColor562 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill225.Append(schemeColor562);
            A.EffectList effectList27 = new A.EffectList();

            endParagraphRunProperties88.Append(solidFill225);
            endParagraphRunProperties88.Append(effectList27);

            paragraph138.Append(paragraphProperties63);
            paragraph138.Append(run85);
            paragraph138.Append(endParagraphRunProperties88);

            textBody102.Append(bodyProperties102);
            textBody102.Append(listStyle102);
            textBody102.Append(paragraph138);

            shape102.Append(nonVisualShapeProperties102);
            shape102.Append(shapeProperties182);
            shape102.Append(textBody102);

            Shape shape103 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties103 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties202 = new NonVisualDrawingProperties(){ Id = (UInt32Value)12U, Name = "TextBox 11" };
            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties103 = new NonVisualShapeDrawingProperties(){ TextBox = true };
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties202 = new ApplicationNonVisualDrawingProperties();

            nonVisualShapeProperties103.Append(nonVisualDrawingProperties202);
            nonVisualShapeProperties103.Append(nonVisualShapeDrawingProperties103);
            nonVisualShapeProperties103.Append(applicationNonVisualDrawingProperties202);

            ShapeProperties shapeProperties183 = new ShapeProperties();

            A.Transform2D transform2D122 = new A.Transform2D();
            A.Offset offset141 = new A.Offset(){ X = 10288091L, Y = 2768601L };
            A.Extents extents141 = new A.Extents(){ Cx = 609759L, Cy = 584776L };

            transform2D122.Append(offset141);
            transform2D122.Append(extents141);

            A.PresetGeometry presetGeometry91 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Rectangle };
            A.AdjustValueList adjustValueList91 = new A.AdjustValueList();

            presetGeometry91.Append(adjustValueList91);

            shapeProperties183.Append(transform2D122);
            shapeProperties183.Append(presetGeometry91);

            TextBody textBody103 = new TextBody();

            A.BodyProperties bodyProperties103 = new A.BodyProperties(){ Vertical = A.TextVerticalValues.Horizontal, LeftInset = 91440, TopInset = 45720, RightInset = 91440, BottomInset = 45720, RightToLeftColumns = false, Anchor = A.TextAnchoringTypeValues.Center };
            A.NoAutoFit noAutoFit6 = new A.NoAutoFit();

            bodyProperties103.Append(noAutoFit6);

            A.ListStyle listStyle103 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties45 = new A.Level1ParagraphProperties();

            A.SpaceBefore spaceBefore16 = new A.SpaceBefore();
            A.SpacingPercent spacingPercent16 = new A.SpacingPercent(){ Val = 0 };

            spaceBefore16.Append(spacingPercent16);
            A.NoBullet noBullet134 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties259 = new A.DefaultRunProperties(){ FontSize = 3200, Bold = false, Capital = A.TextCapsValues.All };

            A.Outline outline92 = new A.Outline(){ Width = 3175, CompoundLineType = A.CompoundLineValues.Single };
            A.NoFill noFill7 = new A.NoFill();

            outline92.Append(noFill7);

            A.EffectList effectList28 = new A.EffectList();

            A.Glow glow4 = new A.Glow(){ Radius = 38100L };

            A.SchemeColor schemeColor563 = new A.SchemeColor(){ Val = A.SchemeColorValues.Background1 };
            A.LuminanceModulation luminanceModulation26 = new A.LuminanceModulation(){ Val = 65000 };
            A.LuminanceOffset luminanceOffset4 = new A.LuminanceOffset(){ Val = 35000 };
            A.Alpha alpha14 = new A.Alpha(){ Val = 40000 };

            schemeColor563.Append(luminanceModulation26);
            schemeColor563.Append(luminanceOffset4);
            schemeColor563.Append(alpha14);

            glow4.Append(schemeColor563);

            A.OuterShadow outerShadow5 = new A.OuterShadow(){ BlurRadius = 28575L, Distance = 38100L, Direction = 14040000, Alignment = A.RectangleAlignmentValues.TopLeft, RotateWithShape = false };

            A.RgbColorModelHex rgbColorModelHex18 = new A.RgbColorModelHex(){ Val = "000000" };
            A.Alpha alpha15 = new A.Alpha(){ Val = 25000 };

            rgbColorModelHex18.Append(alpha15);

            outerShadow5.Append(rgbColorModelHex18);

            effectList28.Append(glow4);
            effectList28.Append(outerShadow5);
            A.LatinFont latinFont39 = new A.LatinFont(){ Typeface = "+mj-lt" };
            A.EastAsianFont eastAsianFont36 = new A.EastAsianFont(){ Typeface = "+mj-ea" };
            A.ComplexScriptFont complexScriptFont36 = new A.ComplexScriptFont(){ Typeface = "Trebuchet MS" };

            defaultRunProperties259.Append(outline92);
            defaultRunProperties259.Append(effectList28);
            defaultRunProperties259.Append(latinFont39);
            defaultRunProperties259.Append(eastAsianFont36);
            defaultRunProperties259.Append(complexScriptFont36);

            level1ParagraphProperties45.Append(spaceBefore16);
            level1ParagraphProperties45.Append(noBullet134);
            level1ParagraphProperties45.Append(defaultRunProperties259);

            A.Level2ParagraphProperties level2ParagraphProperties29 = new A.Level2ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties260 = new A.DefaultRunProperties();

            A.SolidFill solidFill226 = new A.SolidFill();
            A.SchemeColor schemeColor564 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill226.Append(schemeColor564);

            defaultRunProperties260.Append(solidFill226);

            level2ParagraphProperties29.Append(defaultRunProperties260);

            A.Level3ParagraphProperties level3ParagraphProperties29 = new A.Level3ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties261 = new A.DefaultRunProperties();

            A.SolidFill solidFill227 = new A.SolidFill();
            A.SchemeColor schemeColor565 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill227.Append(schemeColor565);

            defaultRunProperties261.Append(solidFill227);

            level3ParagraphProperties29.Append(defaultRunProperties261);

            A.Level4ParagraphProperties level4ParagraphProperties29 = new A.Level4ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties262 = new A.DefaultRunProperties();

            A.SolidFill solidFill228 = new A.SolidFill();
            A.SchemeColor schemeColor566 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill228.Append(schemeColor566);

            defaultRunProperties262.Append(solidFill228);

            level4ParagraphProperties29.Append(defaultRunProperties262);

            A.Level5ParagraphProperties level5ParagraphProperties29 = new A.Level5ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties263 = new A.DefaultRunProperties();

            A.SolidFill solidFill229 = new A.SolidFill();
            A.SchemeColor schemeColor567 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill229.Append(schemeColor567);

            defaultRunProperties263.Append(solidFill229);

            level5ParagraphProperties29.Append(defaultRunProperties263);

            A.Level6ParagraphProperties level6ParagraphProperties26 = new A.Level6ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties264 = new A.DefaultRunProperties();

            A.SolidFill solidFill230 = new A.SolidFill();
            A.SchemeColor schemeColor568 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill230.Append(schemeColor568);

            defaultRunProperties264.Append(solidFill230);

            level6ParagraphProperties26.Append(defaultRunProperties264);

            A.Level7ParagraphProperties level7ParagraphProperties26 = new A.Level7ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties265 = new A.DefaultRunProperties();

            A.SolidFill solidFill231 = new A.SolidFill();
            A.SchemeColor schemeColor569 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill231.Append(schemeColor569);

            defaultRunProperties265.Append(solidFill231);

            level7ParagraphProperties26.Append(defaultRunProperties265);

            A.Level8ParagraphProperties level8ParagraphProperties26 = new A.Level8ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties266 = new A.DefaultRunProperties();

            A.SolidFill solidFill232 = new A.SolidFill();
            A.SchemeColor schemeColor570 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill232.Append(schemeColor570);

            defaultRunProperties266.Append(solidFill232);

            level8ParagraphProperties26.Append(defaultRunProperties266);

            A.Level9ParagraphProperties level9ParagraphProperties26 = new A.Level9ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties267 = new A.DefaultRunProperties();

            A.SolidFill solidFill233 = new A.SolidFill();
            A.SchemeColor schemeColor571 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };

            solidFill233.Append(schemeColor571);

            defaultRunProperties267.Append(solidFill233);

            level9ParagraphProperties26.Append(defaultRunProperties267);

            listStyle103.Append(level1ParagraphProperties45);
            listStyle103.Append(level2ParagraphProperties29);
            listStyle103.Append(level3ParagraphProperties29);
            listStyle103.Append(level4ParagraphProperties29);
            listStyle103.Append(level5ParagraphProperties29);
            listStyle103.Append(level6ParagraphProperties26);
            listStyle103.Append(level7ParagraphProperties26);
            listStyle103.Append(level8ParagraphProperties26);
            listStyle103.Append(level9ParagraphProperties26);

            A.Paragraph paragraph139 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties64 = new A.ParagraphProperties(){ Level = 0, Alignment = A.TextAlignmentTypeValues.Right };

            A.Run run86 = new A.Run();

            A.RunProperties runProperties122 = new A.RunProperties(){ Language = "en-US", FontSize = 8000, Dirty = false };
            runProperties122.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));

            A.SolidFill solidFill234 = new A.SolidFill();
            A.SchemeColor schemeColor572 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill234.Append(schemeColor572);
            A.EffectList effectList29 = new A.EffectList();

            runProperties122.Append(solidFill234);
            runProperties122.Append(effectList29);
            A.Text text122 = new A.Text();
            text122.Text = "”";

            run86.Append(runProperties122);
            run86.Append(text122);

            A.EndParagraphRunProperties endParagraphRunProperties89 = new A.EndParagraphRunProperties(){ Language = "en-US", FontSize = 8000, Dirty = false };

            A.SolidFill solidFill235 = new A.SolidFill();
            A.SchemeColor schemeColor573 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill235.Append(schemeColor573);
            A.EffectList effectList30 = new A.EffectList();

            endParagraphRunProperties89.Append(solidFill235);
            endParagraphRunProperties89.Append(effectList30);

            paragraph139.Append(paragraphProperties64);
            paragraph139.Append(run86);
            paragraph139.Append(endParagraphRunProperties89);

            textBody103.Append(bodyProperties103);
            textBody103.Append(listStyle103);
            textBody103.Append(paragraph139);

            shape103.Append(nonVisualShapeProperties103);
            shape103.Append(shapeProperties183);
            shape103.Append(textBody103);

            ConnectionShape connectionShape81 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties81 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties203 = new NonVisualDrawingProperties(){ Id = (UInt32Value)13U, Name = "Straight Connector 12" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties81 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties203 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties81.Append(nonVisualDrawingProperties203);
            nonVisualConnectionShapeProperties81.Append(nonVisualConnectorShapeDrawingProperties81);
            nonVisualConnectionShapeProperties81.Append(applicationNonVisualDrawingProperties203);

            ShapeProperties shapeProperties184 = new ShapeProperties();

            A.Transform2D transform2D123 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset142 = new A.Offset(){ X = 11278949L, Y = 2963333L };
            A.Extents extents142 = new A.Extents(){ Cx = 913052L, Cy = 912812L };

            transform2D123.Append(offset142);
            transform2D123.Append(extents142);

            A.PresetGeometry presetGeometry92 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList92 = new A.AdjustValueList();

            presetGeometry92.Append(adjustValueList92);

            A.Outline outline93 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill236 = new A.SolidFill();
            A.SchemeColor schemeColor574 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill236.Append(schemeColor574);

            outline93.Append(solidFill236);

            shapeProperties184.Append(transform2D123);
            shapeProperties184.Append(presetGeometry92);
            shapeProperties184.Append(outline93);

            ShapeStyle shapeStyle81 = new ShapeStyle();

            A.LineReference lineReference81 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor575 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference81.Append(schemeColor575);

            A.FillReference fillReference81 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor576 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference81.Append(schemeColor576);

            A.EffectReference effectReference81 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor577 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference81.Append(schemeColor577);

            A.FontReference fontReference81 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor578 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference81.Append(schemeColor578);

            shapeStyle81.Append(lineReference81);
            shapeStyle81.Append(fillReference81);
            shapeStyle81.Append(effectReference81);
            shapeStyle81.Append(fontReference81);

            connectionShape81.Append(nonVisualConnectionShapeProperties81);
            connectionShape81.Append(shapeProperties184);
            connectionShape81.Append(shapeStyle81);

            ConnectionShape connectionShape82 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties82 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties204 = new NonVisualDrawingProperties(){ Id = (UInt32Value)16U, Name = "Straight Connector 15" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties82 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties204 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties82.Append(nonVisualDrawingProperties204);
            nonVisualConnectionShapeProperties82.Append(nonVisualConnectorShapeDrawingProperties82);
            nonVisualConnectionShapeProperties82.Append(applicationNonVisualDrawingProperties204);

            ShapeProperties shapeProperties185 = new ShapeProperties();

            A.Transform2D transform2D124 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset143 = new A.Offset(){ X = 9209368L, Y = 3190344L };
            A.Extents extents143 = new A.Extents(){ Cx = 2982634L, Cy = 2981856L };

            transform2D124.Append(offset143);
            transform2D124.Append(extents143);

            A.PresetGeometry presetGeometry93 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList93 = new A.AdjustValueList();

            presetGeometry93.Append(adjustValueList93);

            A.Outline outline94 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill237 = new A.SolidFill();
            A.SchemeColor schemeColor579 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill237.Append(schemeColor579);

            outline94.Append(solidFill237);

            shapeProperties185.Append(transform2D124);
            shapeProperties185.Append(presetGeometry93);
            shapeProperties185.Append(outline94);

            ShapeStyle shapeStyle82 = new ShapeStyle();

            A.LineReference lineReference82 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor580 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference82.Append(schemeColor580);

            A.FillReference fillReference82 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor581 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference82.Append(schemeColor581);

            A.EffectReference effectReference82 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor582 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference82.Append(schemeColor582);

            A.FontReference fontReference82 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor583 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference82.Append(schemeColor583);

            shapeStyle82.Append(lineReference82);
            shapeStyle82.Append(fillReference82);
            shapeStyle82.Append(effectReference82);
            shapeStyle82.Append(fontReference82);

            connectionShape82.Append(nonVisualConnectionShapeProperties82);
            connectionShape82.Append(shapeProperties185);
            connectionShape82.Append(shapeStyle82);

            ConnectionShape connectionShape83 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties83 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties205 = new NonVisualDrawingProperties(){ Id = (UInt32Value)17U, Name = "Straight Connector 16" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties83 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties205 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties83.Append(nonVisualDrawingProperties205);
            nonVisualConnectionShapeProperties83.Append(nonVisualConnectorShapeDrawingProperties83);
            nonVisualConnectionShapeProperties83.Append(applicationNonVisualDrawingProperties205);

            ShapeProperties shapeProperties186 = new ShapeProperties();

            A.Transform2D transform2D125 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset144 = new A.Offset(){ X = 10294973L, Y = 3285068L };
            A.Extents extents144 = new A.Extents(){ Cx = 1897028L, Cy = 1896533L };

            transform2D125.Append(offset144);
            transform2D125.Append(extents144);

            A.PresetGeometry presetGeometry94 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList94 = new A.AdjustValueList();

            presetGeometry94.Append(adjustValueList94);

            A.Outline outline95 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill238 = new A.SolidFill();
            A.SchemeColor schemeColor584 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill238.Append(schemeColor584);

            outline95.Append(solidFill238);

            shapeProperties186.Append(transform2D125);
            shapeProperties186.Append(presetGeometry94);
            shapeProperties186.Append(outline95);

            ShapeStyle shapeStyle83 = new ShapeStyle();

            A.LineReference lineReference83 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor585 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference83.Append(schemeColor585);

            A.FillReference fillReference83 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor586 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference83.Append(schemeColor586);

            A.EffectReference effectReference83 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor587 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference83.Append(schemeColor587);

            A.FontReference fontReference83 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor588 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference83.Append(schemeColor588);

            shapeStyle83.Append(lineReference83);
            shapeStyle83.Append(fillReference83);
            shapeStyle83.Append(effectReference83);
            shapeStyle83.Append(fontReference83);

            connectionShape83.Append(nonVisualConnectionShapeProperties83);
            connectionShape83.Append(shapeProperties186);
            connectionShape83.Append(shapeStyle83);

            ConnectionShape connectionShape84 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties84 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties206 = new NonVisualDrawingProperties(){ Id = (UInt32Value)18U, Name = "Straight Connector 17" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties84 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties206 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties84.Append(nonVisualDrawingProperties206);
            nonVisualConnectionShapeProperties84.Append(nonVisualConnectorShapeDrawingProperties84);
            nonVisualConnectionShapeProperties84.Append(applicationNonVisualDrawingProperties206);

            ShapeProperties shapeProperties187 = new ShapeProperties();

            A.Transform2D transform2D126 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset145 = new A.Offset(){ X = 10445823L, Y = 3131080L };
            A.Extents extents145 = new A.Extents(){ Cx = 1746177L, Cy = 1745720L };

            transform2D126.Append(offset145);
            transform2D126.Append(extents145);

            A.PresetGeometry presetGeometry95 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList95 = new A.AdjustValueList();

            presetGeometry95.Append(adjustValueList95);

            A.Outline outline96 = new A.Outline(){ Width = 28575 };

            A.SolidFill solidFill239 = new A.SolidFill();
            A.SchemeColor schemeColor589 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill239.Append(schemeColor589);

            outline96.Append(solidFill239);

            shapeProperties187.Append(transform2D126);
            shapeProperties187.Append(presetGeometry95);
            shapeProperties187.Append(outline96);

            ShapeStyle shapeStyle84 = new ShapeStyle();

            A.LineReference lineReference84 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor590 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference84.Append(schemeColor590);

            A.FillReference fillReference84 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor591 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference84.Append(schemeColor591);

            A.EffectReference effectReference84 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor592 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference84.Append(schemeColor592);

            A.FontReference fontReference84 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor593 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference84.Append(schemeColor593);

            shapeStyle84.Append(lineReference84);
            shapeStyle84.Append(fillReference84);
            shapeStyle84.Append(effectReference84);
            shapeStyle84.Append(fontReference84);

            connectionShape84.Append(nonVisualConnectionShapeProperties84);
            connectionShape84.Append(shapeProperties187);
            connectionShape84.Append(shapeStyle84);

            ConnectionShape connectionShape85 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties85 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties207 = new NonVisualDrawingProperties(){ Id = (UInt32Value)19U, Name = "Straight Connector 18" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties85 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties207 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties85.Append(nonVisualDrawingProperties207);
            nonVisualConnectionShapeProperties85.Append(nonVisualConnectorShapeDrawingProperties85);
            nonVisualConnectionShapeProperties85.Append(applicationNonVisualDrawingProperties207);

            ShapeProperties shapeProperties188 = new ShapeProperties();

            A.Transform2D transform2D127 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset146 = new A.Offset(){ X = 10921671L, Y = 3683002L };
            A.Extents extents146 = new A.Extents(){ Cx = 1270332L, Cy = 1269999L };

            transform2D127.Append(offset146);
            transform2D127.Append(extents146);

            A.PresetGeometry presetGeometry96 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList96 = new A.AdjustValueList();

            presetGeometry96.Append(adjustValueList96);

            A.Outline outline97 = new A.Outline(){ Width = 28575 };

            A.SolidFill solidFill240 = new A.SolidFill();
            A.SchemeColor schemeColor594 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill240.Append(schemeColor594);

            outline97.Append(solidFill240);

            shapeProperties188.Append(transform2D127);
            shapeProperties188.Append(presetGeometry96);
            shapeProperties188.Append(outline97);

            ShapeStyle shapeStyle85 = new ShapeStyle();

            A.LineReference lineReference85 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor595 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference85.Append(schemeColor595);

            A.FillReference fillReference85 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor596 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference85.Append(schemeColor596);

            A.EffectReference effectReference85 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor597 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference85.Append(schemeColor597);

            A.FontReference fontReference85 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor598 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference85.Append(schemeColor598);

            shapeStyle85.Append(lineReference85);
            shapeStyle85.Append(fillReference85);
            shapeStyle85.Append(effectReference85);
            shapeStyle85.Append(fontReference85);

            connectionShape85.Append(nonVisualConnectionShapeProperties85);
            connectionShape85.Append(shapeProperties188);
            connectionShape85.Append(shapeStyle85);

            shapeTree19.Append(nonVisualGroupShapeProperties19);
            shapeTree19.Append(groupShapeProperties19);
            shapeTree19.Append(shape96);
            shapeTree19.Append(shape97);
            shapeTree19.Append(shape98);
            shapeTree19.Append(shape99);
            shapeTree19.Append(shape100);
            shapeTree19.Append(shape101);
            shapeTree19.Append(shape102);
            shapeTree19.Append(shape103);
            shapeTree19.Append(connectionShape81);
            shapeTree19.Append(connectionShape82);
            shapeTree19.Append(connectionShape83);
            shapeTree19.Append(connectionShape84);
            shapeTree19.Append(connectionShape85);

            CommonSlideDataExtensionList commonSlideDataExtensionList19 = new CommonSlideDataExtensionList();

            CommonSlideDataExtension commonSlideDataExtension19 = new CommonSlideDataExtension(){ Uri = "{BB962C8B-B14F-4D97-AF65-F5344CB8AC3E}" };

            P14.CreationId creationId19 = new P14.CreationId(){ Val = (UInt32Value)493948837U };
            creationId19.AddNamespaceDeclaration("p14", "http://schemas.microsoft.com/office/powerpoint/2010/main");

            commonSlideDataExtension19.Append(creationId19);

            commonSlideDataExtensionList19.Append(commonSlideDataExtension19);

            commonSlideData19.Append(shapeTree19);
            commonSlideData19.Append(commonSlideDataExtensionList19);

            ColorMapOverride colorMapOverride18 = new ColorMapOverride();
            A.MasterColorMapping masterColorMapping18 = new A.MasterColorMapping();

            colorMapOverride18.Append(masterColorMapping18);

            Timing timing19 = new Timing();

            TimeNodeList timeNodeList19 = new TimeNodeList();

            ParallelTimeNode parallelTimeNode19 = new ParallelTimeNode();
            CommonTimeNode commonTimeNode19 = new CommonTimeNode(){ Id = (UInt32Value)1U, Duration = "indefinite", Restart = TimeNodeRestartValues.Never, NodeType = TimeNodeValues.TmingRoot };

            parallelTimeNode19.Append(commonTimeNode19);

            timeNodeList19.Append(parallelTimeNode19);

            timing19.Append(timeNodeList19);

            slideLayout17.Append(commonSlideData19);
            slideLayout17.Append(colorMapOverride18);
            slideLayout17.Append(timing19);

            slideLayoutPart17.SlideLayout = slideLayout17;
        }
Ejemplo n.º 22
0
        // Generates content of slideLayoutPart14.
        private void GenerateSlideLayoutPart14Content(SlideLayoutPart slideLayoutPart14)
        {
            SlideLayout slideLayout14 = new SlideLayout(){ Preserve = true };
            slideLayout14.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");
            slideLayout14.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            slideLayout14.AddNamespaceDeclaration("p", "http://schemas.openxmlformats.org/presentationml/2006/main");

            CommonSlideData commonSlideData16 = new CommonSlideData(){ Name = "Panoramic Picture with Caption" };

            ShapeTree shapeTree16 = new ShapeTree();

            NonVisualGroupShapeProperties nonVisualGroupShapeProperties16 = new NonVisualGroupShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties158 = new NonVisualDrawingProperties(){ Id = (UInt32Value)1U, Name = "" };
            NonVisualGroupShapeDrawingProperties nonVisualGroupShapeDrawingProperties16 = new NonVisualGroupShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties158 = new ApplicationNonVisualDrawingProperties();

            nonVisualGroupShapeProperties16.Append(nonVisualDrawingProperties158);
            nonVisualGroupShapeProperties16.Append(nonVisualGroupShapeDrawingProperties16);
            nonVisualGroupShapeProperties16.Append(applicationNonVisualDrawingProperties158);

            GroupShapeProperties groupShapeProperties16 = new GroupShapeProperties();

            A.TransformGroup transformGroup16 = new A.TransformGroup();
            A.Offset offset111 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents111 = new A.Extents(){ Cx = 0L, Cy = 0L };
            A.ChildOffset childOffset16 = new A.ChildOffset(){ X = 0L, Y = 0L };
            A.ChildExtents childExtents16 = new A.ChildExtents(){ Cx = 0L, Cy = 0L };

            transformGroup16.Append(offset111);
            transformGroup16.Append(extents111);
            transformGroup16.Append(childOffset16);
            transformGroup16.Append(childExtents16);

            groupShapeProperties16.Append(transformGroup16);

            Shape shape78 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties78 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties159 = new NonVisualDrawingProperties(){ Id = (UInt32Value)2U, Name = "Title 1" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties78 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks76 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties78.Append(shapeLocks76);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties159 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape76 = new PlaceholderShape(){ Type = PlaceholderValues.Title };

            applicationNonVisualDrawingProperties159.Append(placeholderShape76);

            nonVisualShapeProperties78.Append(nonVisualDrawingProperties159);
            nonVisualShapeProperties78.Append(nonVisualShapeDrawingProperties78);
            nonVisualShapeProperties78.Append(applicationNonVisualDrawingProperties159);
            ShapeProperties shapeProperties143 = new ShapeProperties();

            TextBody textBody78 = new TextBody();
            A.BodyProperties bodyProperties78 = new A.BodyProperties();
            A.ListStyle listStyle78 = new A.ListStyle();

            A.Paragraph paragraph106 = new A.Paragraph();

            A.Run run65 = new A.Run();

            A.RunProperties runProperties93 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties93.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text93 = new A.Text();
            text93.Text = "Click to edit Master title style";

            run65.Append(runProperties93);
            run65.Append(text93);
            A.EndParagraphRunProperties endParagraphRunProperties68 = new A.EndParagraphRunProperties(){ Language = "en-US" };

            paragraph106.Append(run65);
            paragraph106.Append(endParagraphRunProperties68);

            textBody78.Append(bodyProperties78);
            textBody78.Append(listStyle78);
            textBody78.Append(paragraph106);

            shape78.Append(nonVisualShapeProperties78);
            shape78.Append(shapeProperties143);
            shape78.Append(textBody78);

            Shape shape79 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties79 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties160 = new NonVisualDrawingProperties(){ Id = (UInt32Value)3U, Name = "Date Placeholder 2" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties79 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks77 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties79.Append(shapeLocks77);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties160 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape77 = new PlaceholderShape(){ Type = PlaceholderValues.DateAndTime, Size = PlaceholderSizeValues.Half, Index = (UInt32Value)10U };

            applicationNonVisualDrawingProperties160.Append(placeholderShape77);

            nonVisualShapeProperties79.Append(nonVisualDrawingProperties160);
            nonVisualShapeProperties79.Append(nonVisualShapeDrawingProperties79);
            nonVisualShapeProperties79.Append(applicationNonVisualDrawingProperties160);
            ShapeProperties shapeProperties144 = new ShapeProperties();

            TextBody textBody79 = new TextBody();
            A.BodyProperties bodyProperties79 = new A.BodyProperties();
            A.ListStyle listStyle79 = new A.ListStyle();

            A.Paragraph paragraph107 = new A.Paragraph();

            A.Field field29 = new A.Field(){ Id = "{CE1A2D98-1BBD-4706-A118-AAC2A16BEAD3}", Type = "datetimeFigureOut" };

            A.RunProperties runProperties94 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties94.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text94 = new A.Text();
            text94.Text = "2012/10/3";

            field29.Append(runProperties94);
            field29.Append(text94);
            A.EndParagraphRunProperties endParagraphRunProperties69 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph107.Append(field29);
            paragraph107.Append(endParagraphRunProperties69);

            textBody79.Append(bodyProperties79);
            textBody79.Append(listStyle79);
            textBody79.Append(paragraph107);

            shape79.Append(nonVisualShapeProperties79);
            shape79.Append(shapeProperties144);
            shape79.Append(textBody79);

            Shape shape80 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties80 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties161 = new NonVisualDrawingProperties(){ Id = (UInt32Value)4U, Name = "Footer Placeholder 3" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties80 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks78 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties80.Append(shapeLocks78);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties161 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape78 = new PlaceholderShape(){ Type = PlaceholderValues.Footer, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)11U };

            applicationNonVisualDrawingProperties161.Append(placeholderShape78);

            nonVisualShapeProperties80.Append(nonVisualDrawingProperties161);
            nonVisualShapeProperties80.Append(nonVisualShapeDrawingProperties80);
            nonVisualShapeProperties80.Append(applicationNonVisualDrawingProperties161);
            ShapeProperties shapeProperties145 = new ShapeProperties();

            TextBody textBody80 = new TextBody();
            A.BodyProperties bodyProperties80 = new A.BodyProperties();
            A.ListStyle listStyle80 = new A.ListStyle();

            A.Paragraph paragraph108 = new A.Paragraph();
            A.EndParagraphRunProperties endParagraphRunProperties70 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph108.Append(endParagraphRunProperties70);

            textBody80.Append(bodyProperties80);
            textBody80.Append(listStyle80);
            textBody80.Append(paragraph108);

            shape80.Append(nonVisualShapeProperties80);
            shape80.Append(shapeProperties145);
            shape80.Append(textBody80);

            Shape shape81 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties81 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties162 = new NonVisualDrawingProperties(){ Id = (UInt32Value)5U, Name = "Slide Number Placeholder 4" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties81 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks79 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties81.Append(shapeLocks79);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties162 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape79 = new PlaceholderShape(){ Type = PlaceholderValues.SlideNumber, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)12U };

            applicationNonVisualDrawingProperties162.Append(placeholderShape79);

            nonVisualShapeProperties81.Append(nonVisualDrawingProperties162);
            nonVisualShapeProperties81.Append(nonVisualShapeDrawingProperties81);
            nonVisualShapeProperties81.Append(applicationNonVisualDrawingProperties162);
            ShapeProperties shapeProperties146 = new ShapeProperties();

            TextBody textBody81 = new TextBody();
            A.BodyProperties bodyProperties81 = new A.BodyProperties();
            A.ListStyle listStyle81 = new A.ListStyle();

            A.Paragraph paragraph109 = new A.Paragraph();

            A.Field field30 = new A.Field(){ Id = "{D107CD50-7081-433F-A1F2-156B4E14F4F4}", Type = "slidenum" };

            A.RunProperties runProperties95 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties95.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text95 = new A.Text();
            text95.Text = "‹#›";

            field30.Append(runProperties95);
            field30.Append(text95);
            A.EndParagraphRunProperties endParagraphRunProperties71 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph109.Append(field30);
            paragraph109.Append(endParagraphRunProperties71);

            textBody81.Append(bodyProperties81);
            textBody81.Append(listStyle81);
            textBody81.Append(paragraph109);

            shape81.Append(nonVisualShapeProperties81);
            shape81.Append(shapeProperties146);
            shape81.Append(textBody81);

            ConnectionShape connectionShape66 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties66 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties163 = new NonVisualDrawingProperties(){ Id = (UInt32Value)6U, Name = "Straight Connector 5" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties66 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties163 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties66.Append(nonVisualDrawingProperties163);
            nonVisualConnectionShapeProperties66.Append(nonVisualConnectorShapeDrawingProperties66);
            nonVisualConnectionShapeProperties66.Append(applicationNonVisualDrawingProperties163);

            ShapeProperties shapeProperties147 = new ShapeProperties();

            A.Transform2D transform2D96 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset112 = new A.Offset(){ X = 11278949L, Y = 2963333L };
            A.Extents extents112 = new A.Extents(){ Cx = 913052L, Cy = 912812L };

            transform2D96.Append(offset112);
            transform2D96.Append(extents112);

            A.PresetGeometry presetGeometry73 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList73 = new A.AdjustValueList();

            presetGeometry73.Append(adjustValueList73);

            A.Outline outline73 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill188 = new A.SolidFill();
            A.SchemeColor schemeColor464 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill188.Append(schemeColor464);

            outline73.Append(solidFill188);

            shapeProperties147.Append(transform2D96);
            shapeProperties147.Append(presetGeometry73);
            shapeProperties147.Append(outline73);

            ShapeStyle shapeStyle66 = new ShapeStyle();

            A.LineReference lineReference66 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor465 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference66.Append(schemeColor465);

            A.FillReference fillReference66 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor466 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference66.Append(schemeColor466);

            A.EffectReference effectReference66 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor467 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference66.Append(schemeColor467);

            A.FontReference fontReference66 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor468 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference66.Append(schemeColor468);

            shapeStyle66.Append(lineReference66);
            shapeStyle66.Append(fillReference66);
            shapeStyle66.Append(effectReference66);
            shapeStyle66.Append(fontReference66);

            connectionShape66.Append(nonVisualConnectionShapeProperties66);
            connectionShape66.Append(shapeProperties147);
            connectionShape66.Append(shapeStyle66);

            ConnectionShape connectionShape67 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties67 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties164 = new NonVisualDrawingProperties(){ Id = (UInt32Value)7U, Name = "Straight Connector 6" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties67 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties164 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties67.Append(nonVisualDrawingProperties164);
            nonVisualConnectionShapeProperties67.Append(nonVisualConnectorShapeDrawingProperties67);
            nonVisualConnectionShapeProperties67.Append(applicationNonVisualDrawingProperties164);

            ShapeProperties shapeProperties148 = new ShapeProperties();

            A.Transform2D transform2D97 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset113 = new A.Offset(){ X = 9209368L, Y = 3190344L };
            A.Extents extents113 = new A.Extents(){ Cx = 2982634L, Cy = 2981856L };

            transform2D97.Append(offset113);
            transform2D97.Append(extents113);

            A.PresetGeometry presetGeometry74 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList74 = new A.AdjustValueList();

            presetGeometry74.Append(adjustValueList74);

            A.Outline outline74 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill189 = new A.SolidFill();
            A.SchemeColor schemeColor469 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill189.Append(schemeColor469);

            outline74.Append(solidFill189);

            shapeProperties148.Append(transform2D97);
            shapeProperties148.Append(presetGeometry74);
            shapeProperties148.Append(outline74);

            ShapeStyle shapeStyle67 = new ShapeStyle();

            A.LineReference lineReference67 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor470 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference67.Append(schemeColor470);

            A.FillReference fillReference67 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor471 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference67.Append(schemeColor471);

            A.EffectReference effectReference67 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor472 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference67.Append(schemeColor472);

            A.FontReference fontReference67 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor473 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference67.Append(schemeColor473);

            shapeStyle67.Append(lineReference67);
            shapeStyle67.Append(fillReference67);
            shapeStyle67.Append(effectReference67);
            shapeStyle67.Append(fontReference67);

            connectionShape67.Append(nonVisualConnectionShapeProperties67);
            connectionShape67.Append(shapeProperties148);
            connectionShape67.Append(shapeStyle67);

            ConnectionShape connectionShape68 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties68 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties165 = new NonVisualDrawingProperties(){ Id = (UInt32Value)8U, Name = "Straight Connector 7" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties68 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties165 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties68.Append(nonVisualDrawingProperties165);
            nonVisualConnectionShapeProperties68.Append(nonVisualConnectorShapeDrawingProperties68);
            nonVisualConnectionShapeProperties68.Append(applicationNonVisualDrawingProperties165);

            ShapeProperties shapeProperties149 = new ShapeProperties();

            A.Transform2D transform2D98 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset114 = new A.Offset(){ X = 10294973L, Y = 3285068L };
            A.Extents extents114 = new A.Extents(){ Cx = 1897028L, Cy = 1896533L };

            transform2D98.Append(offset114);
            transform2D98.Append(extents114);

            A.PresetGeometry presetGeometry75 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList75 = new A.AdjustValueList();

            presetGeometry75.Append(adjustValueList75);

            A.Outline outline75 = new A.Outline(){ Width = 9525 };

            A.SolidFill solidFill190 = new A.SolidFill();
            A.SchemeColor schemeColor474 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill190.Append(schemeColor474);

            outline75.Append(solidFill190);

            shapeProperties149.Append(transform2D98);
            shapeProperties149.Append(presetGeometry75);
            shapeProperties149.Append(outline75);

            ShapeStyle shapeStyle68 = new ShapeStyle();

            A.LineReference lineReference68 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor475 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference68.Append(schemeColor475);

            A.FillReference fillReference68 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor476 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference68.Append(schemeColor476);

            A.EffectReference effectReference68 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor477 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference68.Append(schemeColor477);

            A.FontReference fontReference68 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor478 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference68.Append(schemeColor478);

            shapeStyle68.Append(lineReference68);
            shapeStyle68.Append(fillReference68);
            shapeStyle68.Append(effectReference68);
            shapeStyle68.Append(fontReference68);

            connectionShape68.Append(nonVisualConnectionShapeProperties68);
            connectionShape68.Append(shapeProperties149);
            connectionShape68.Append(shapeStyle68);

            ConnectionShape connectionShape69 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties69 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties166 = new NonVisualDrawingProperties(){ Id = (UInt32Value)9U, Name = "Straight Connector 8" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties69 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties166 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties69.Append(nonVisualDrawingProperties166);
            nonVisualConnectionShapeProperties69.Append(nonVisualConnectorShapeDrawingProperties69);
            nonVisualConnectionShapeProperties69.Append(applicationNonVisualDrawingProperties166);

            ShapeProperties shapeProperties150 = new ShapeProperties();

            A.Transform2D transform2D99 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset115 = new A.Offset(){ X = 10445823L, Y = 3131080L };
            A.Extents extents115 = new A.Extents(){ Cx = 1746177L, Cy = 1745720L };

            transform2D99.Append(offset115);
            transform2D99.Append(extents115);

            A.PresetGeometry presetGeometry76 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList76 = new A.AdjustValueList();

            presetGeometry76.Append(adjustValueList76);

            A.Outline outline76 = new A.Outline(){ Width = 28575 };

            A.SolidFill solidFill191 = new A.SolidFill();
            A.SchemeColor schemeColor479 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill191.Append(schemeColor479);

            outline76.Append(solidFill191);

            shapeProperties150.Append(transform2D99);
            shapeProperties150.Append(presetGeometry76);
            shapeProperties150.Append(outline76);

            ShapeStyle shapeStyle69 = new ShapeStyle();

            A.LineReference lineReference69 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor480 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference69.Append(schemeColor480);

            A.FillReference fillReference69 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor481 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference69.Append(schemeColor481);

            A.EffectReference effectReference69 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor482 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference69.Append(schemeColor482);

            A.FontReference fontReference69 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor483 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference69.Append(schemeColor483);

            shapeStyle69.Append(lineReference69);
            shapeStyle69.Append(fillReference69);
            shapeStyle69.Append(effectReference69);
            shapeStyle69.Append(fontReference69);

            connectionShape69.Append(nonVisualConnectionShapeProperties69);
            connectionShape69.Append(shapeProperties150);
            connectionShape69.Append(shapeStyle69);

            ConnectionShape connectionShape70 = new ConnectionShape();

            NonVisualConnectionShapeProperties nonVisualConnectionShapeProperties70 = new NonVisualConnectionShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties167 = new NonVisualDrawingProperties(){ Id = (UInt32Value)10U, Name = "Straight Connector 9" };
            NonVisualConnectorShapeDrawingProperties nonVisualConnectorShapeDrawingProperties70 = new NonVisualConnectorShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties167 = new ApplicationNonVisualDrawingProperties();

            nonVisualConnectionShapeProperties70.Append(nonVisualDrawingProperties167);
            nonVisualConnectionShapeProperties70.Append(nonVisualConnectorShapeDrawingProperties70);
            nonVisualConnectionShapeProperties70.Append(applicationNonVisualDrawingProperties167);

            ShapeProperties shapeProperties151 = new ShapeProperties();

            A.Transform2D transform2D100 = new A.Transform2D(){ HorizontalFlip = true };
            A.Offset offset116 = new A.Offset(){ X = 10921671L, Y = 3683002L };
            A.Extents extents116 = new A.Extents(){ Cx = 1270332L, Cy = 1269999L };

            transform2D100.Append(offset116);
            transform2D100.Append(extents116);

            A.PresetGeometry presetGeometry77 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Line };
            A.AdjustValueList adjustValueList77 = new A.AdjustValueList();

            presetGeometry77.Append(adjustValueList77);

            A.Outline outline77 = new A.Outline(){ Width = 28575 };

            A.SolidFill solidFill192 = new A.SolidFill();
            A.SchemeColor schemeColor484 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill192.Append(schemeColor484);

            outline77.Append(solidFill192);

            shapeProperties151.Append(transform2D100);
            shapeProperties151.Append(presetGeometry77);
            shapeProperties151.Append(outline77);

            ShapeStyle shapeStyle70 = new ShapeStyle();

            A.LineReference lineReference70 = new A.LineReference(){ Index = (UInt32Value)2U };
            A.SchemeColor schemeColor485 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            lineReference70.Append(schemeColor485);

            A.FillReference fillReference70 = new A.FillReference(){ Index = (UInt32Value)0U };
            A.SchemeColor schemeColor486 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            fillReference70.Append(schemeColor486);

            A.EffectReference effectReference70 = new A.EffectReference(){ Index = (UInt32Value)1U };
            A.SchemeColor schemeColor487 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };

            effectReference70.Append(schemeColor487);

            A.FontReference fontReference70 = new A.FontReference(){ Index = A.FontCollectionIndexValues.Minor };
            A.SchemeColor schemeColor488 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            fontReference70.Append(schemeColor488);

            shapeStyle70.Append(lineReference70);
            shapeStyle70.Append(fillReference70);
            shapeStyle70.Append(effectReference70);
            shapeStyle70.Append(fontReference70);

            connectionShape70.Append(nonVisualConnectionShapeProperties70);
            connectionShape70.Append(shapeProperties151);
            connectionShape70.Append(shapeStyle70);

            Shape shape82 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties82 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties168 = new NonVisualDrawingProperties(){ Id = (UInt32Value)16U, Name = "Text Placeholder 9" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties82 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks80 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties82.Append(shapeLocks80);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties168 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape80 = new PlaceholderShape(){ Type = PlaceholderValues.Body, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)14U };

            applicationNonVisualDrawingProperties168.Append(placeholderShape80);

            nonVisualShapeProperties82.Append(nonVisualDrawingProperties168);
            nonVisualShapeProperties82.Append(nonVisualShapeDrawingProperties82);
            nonVisualShapeProperties82.Append(applicationNonVisualDrawingProperties168);

            ShapeProperties shapeProperties152 = new ShapeProperties();

            A.Transform2D transform2D101 = new A.Transform2D();
            A.Offset offset117 = new A.Offset(){ X = 914640L, Y = 3843867L };
            A.Extents extents117 = new A.Extents(){ Cx = 8306373L, Cy = 457200L };

            transform2D101.Append(offset117);
            transform2D101.Append(extents117);

            shapeProperties152.Append(transform2D101);

            TextBody textBody82 = new TextBody();

            A.BodyProperties bodyProperties82 = new A.BodyProperties(){ Anchor = A.TextAnchoringTypeValues.Top };
            A.NormalAutoFit normalAutoFit21 = new A.NormalAutoFit();

            bodyProperties82.Append(normalAutoFit21);

            A.ListStyle listStyle82 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties34 = new A.Level1ParagraphProperties(){ LeftMargin = 0, Indent = 0 };
            A.BulletFontText bulletFontText6 = new A.BulletFontText();
            A.NoBullet noBullet91 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties188 = new A.DefaultRunProperties(){ FontSize = 1600 };

            level1ParagraphProperties34.Append(bulletFontText6);
            level1ParagraphProperties34.Append(noBullet91);
            level1ParagraphProperties34.Append(defaultRunProperties188);

            A.Level2ParagraphProperties level2ParagraphProperties21 = new A.Level2ParagraphProperties(){ LeftMargin = 457200, Indent = 0 };
            A.BulletFontText bulletFontText7 = new A.BulletFontText();
            A.NoBullet noBullet92 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties189 = new A.DefaultRunProperties();

            level2ParagraphProperties21.Append(bulletFontText7);
            level2ParagraphProperties21.Append(noBullet92);
            level2ParagraphProperties21.Append(defaultRunProperties189);

            A.Level3ParagraphProperties level3ParagraphProperties21 = new A.Level3ParagraphProperties(){ LeftMargin = 914400, Indent = 0 };
            A.BulletFontText bulletFontText8 = new A.BulletFontText();
            A.NoBullet noBullet93 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties190 = new A.DefaultRunProperties();

            level3ParagraphProperties21.Append(bulletFontText8);
            level3ParagraphProperties21.Append(noBullet93);
            level3ParagraphProperties21.Append(defaultRunProperties190);

            A.Level4ParagraphProperties level4ParagraphProperties21 = new A.Level4ParagraphProperties(){ LeftMargin = 1371600, Indent = 0 };
            A.BulletFontText bulletFontText9 = new A.BulletFontText();
            A.NoBullet noBullet94 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties191 = new A.DefaultRunProperties();

            level4ParagraphProperties21.Append(bulletFontText9);
            level4ParagraphProperties21.Append(noBullet94);
            level4ParagraphProperties21.Append(defaultRunProperties191);

            A.Level5ParagraphProperties level5ParagraphProperties21 = new A.Level5ParagraphProperties(){ LeftMargin = 1828800, Indent = 0 };
            A.BulletFontText bulletFontText10 = new A.BulletFontText();
            A.NoBullet noBullet95 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties192 = new A.DefaultRunProperties();

            level5ParagraphProperties21.Append(bulletFontText10);
            level5ParagraphProperties21.Append(noBullet95);
            level5ParagraphProperties21.Append(defaultRunProperties192);

            listStyle82.Append(level1ParagraphProperties34);
            listStyle82.Append(level2ParagraphProperties21);
            listStyle82.Append(level3ParagraphProperties21);
            listStyle82.Append(level4ParagraphProperties21);
            listStyle82.Append(level5ParagraphProperties21);

            A.Paragraph paragraph110 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties49 = new A.ParagraphProperties(){ Level = 0 };

            A.Run run66 = new A.Run();

            A.RunProperties runProperties96 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties96.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text96 = new A.Text();
            text96.Text = "Click to edit Master text styles";

            run66.Append(runProperties96);
            run66.Append(text96);

            paragraph110.Append(paragraphProperties49);
            paragraph110.Append(run66);

            textBody82.Append(bodyProperties82);
            textBody82.Append(listStyle82);
            textBody82.Append(paragraph110);

            shape82.Append(nonVisualShapeProperties82);
            shape82.Append(shapeProperties152);
            shape82.Append(textBody82);

            Shape shape83 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties83 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties169 = new NonVisualDrawingProperties(){ Id = (UInt32Value)17U, Name = "Picture Placeholder 2" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties83 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks81 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties83.Append(shapeLocks81);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties169 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape81 = new PlaceholderShape(){ Type = PlaceholderValues.Picture, Index = (UInt32Value)13U };

            applicationNonVisualDrawingProperties169.Append(placeholderShape81);

            nonVisualShapeProperties83.Append(nonVisualDrawingProperties169);
            nonVisualShapeProperties83.Append(nonVisualShapeDrawingProperties83);
            nonVisualShapeProperties83.Append(applicationNonVisualDrawingProperties169);

            ShapeProperties shapeProperties153 = new ShapeProperties();

            A.Transform2D transform2D102 = new A.Transform2D();
            A.Offset offset118 = new A.Offset(){ X = 685979L, Y = 533400L };
            A.Extents extents118 = new A.Extents(){ Cx = 10821630L, Cy = 3124200L };

            transform2D102.Append(offset118);
            transform2D102.Append(extents118);

            A.PresetGeometry presetGeometry78 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Snip2DiagonalRectangle };

            A.AdjustValueList adjustValueList78 = new A.AdjustValueList();
            A.ShapeGuide shapeGuide1 = new A.ShapeGuide(){ Name = "adj1", Formula = "val 10815" };
            A.ShapeGuide shapeGuide2 = new A.ShapeGuide(){ Name = "adj2", Formula = "val 0" };

            adjustValueList78.Append(shapeGuide1);
            adjustValueList78.Append(shapeGuide2);

            presetGeometry78.Append(adjustValueList78);

            A.Outline outline78 = new A.Outline(){ Width = 15875 };

            A.SolidFill solidFill193 = new A.SolidFill();

            A.SchemeColor schemeColor489 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Alpha alpha8 = new A.Alpha(){ Val = 40000 };

            schemeColor489.Append(alpha8);

            solidFill193.Append(schemeColor489);

            outline78.Append(solidFill193);

            A.EffectList effectList22 = new A.EffectList();

            A.InnerShadow innerShadow2 = new A.InnerShadow(){ BlurRadius = 57150L, Distance = 38100L, Direction = 14460000 };

            A.RgbColorModelHex rgbColorModelHex15 = new A.RgbColorModelHex(){ Val = "000000" };
            A.Alpha alpha9 = new A.Alpha(){ Val = 70000 };

            rgbColorModelHex15.Append(alpha9);

            innerShadow2.Append(rgbColorModelHex15);

            effectList22.Append(innerShadow2);

            shapeProperties153.Append(transform2D102);
            shapeProperties153.Append(presetGeometry78);
            shapeProperties153.Append(outline78);
            shapeProperties153.Append(effectList22);

            TextBody textBody83 = new TextBody();

            A.BodyProperties bodyProperties83 = new A.BodyProperties(){ Anchor = A.TextAnchoringTypeValues.Center };
            A.NormalAutoFit normalAutoFit22 = new A.NormalAutoFit();

            bodyProperties83.Append(normalAutoFit22);

            A.ListStyle listStyle83 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties35 = new A.Level1ParagraphProperties(){ LeftMargin = 0, Indent = 0, Alignment = A.TextAlignmentTypeValues.Center };
            A.NoBullet noBullet96 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties193 = new A.DefaultRunProperties(){ FontSize = 1600 };

            level1ParagraphProperties35.Append(noBullet96);
            level1ParagraphProperties35.Append(defaultRunProperties193);

            A.Level2ParagraphProperties level2ParagraphProperties22 = new A.Level2ParagraphProperties(){ LeftMargin = 457200, Indent = 0 };
            A.NoBullet noBullet97 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties194 = new A.DefaultRunProperties(){ FontSize = 2800 };

            level2ParagraphProperties22.Append(noBullet97);
            level2ParagraphProperties22.Append(defaultRunProperties194);

            A.Level3ParagraphProperties level3ParagraphProperties22 = new A.Level3ParagraphProperties(){ LeftMargin = 914400, Indent = 0 };
            A.NoBullet noBullet98 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties195 = new A.DefaultRunProperties(){ FontSize = 2400 };

            level3ParagraphProperties22.Append(noBullet98);
            level3ParagraphProperties22.Append(defaultRunProperties195);

            A.Level4ParagraphProperties level4ParagraphProperties22 = new A.Level4ParagraphProperties(){ LeftMargin = 1371600, Indent = 0 };
            A.NoBullet noBullet99 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties196 = new A.DefaultRunProperties(){ FontSize = 2000 };

            level4ParagraphProperties22.Append(noBullet99);
            level4ParagraphProperties22.Append(defaultRunProperties196);

            A.Level5ParagraphProperties level5ParagraphProperties22 = new A.Level5ParagraphProperties(){ LeftMargin = 1828800, Indent = 0 };
            A.NoBullet noBullet100 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties197 = new A.DefaultRunProperties(){ FontSize = 2000 };

            level5ParagraphProperties22.Append(noBullet100);
            level5ParagraphProperties22.Append(defaultRunProperties197);

            A.Level6ParagraphProperties level6ParagraphProperties19 = new A.Level6ParagraphProperties(){ LeftMargin = 2286000, Indent = 0 };
            A.NoBullet noBullet101 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties198 = new A.DefaultRunProperties(){ FontSize = 2000 };

            level6ParagraphProperties19.Append(noBullet101);
            level6ParagraphProperties19.Append(defaultRunProperties198);

            A.Level7ParagraphProperties level7ParagraphProperties19 = new A.Level7ParagraphProperties(){ LeftMargin = 2743200, Indent = 0 };
            A.NoBullet noBullet102 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties199 = new A.DefaultRunProperties(){ FontSize = 2000 };

            level7ParagraphProperties19.Append(noBullet102);
            level7ParagraphProperties19.Append(defaultRunProperties199);

            A.Level8ParagraphProperties level8ParagraphProperties19 = new A.Level8ParagraphProperties(){ LeftMargin = 3200400, Indent = 0 };
            A.NoBullet noBullet103 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties200 = new A.DefaultRunProperties(){ FontSize = 2000 };

            level8ParagraphProperties19.Append(noBullet103);
            level8ParagraphProperties19.Append(defaultRunProperties200);

            A.Level9ParagraphProperties level9ParagraphProperties19 = new A.Level9ParagraphProperties(){ LeftMargin = 3657600, Indent = 0 };
            A.NoBullet noBullet104 = new A.NoBullet();
            A.DefaultRunProperties defaultRunProperties201 = new A.DefaultRunProperties(){ FontSize = 2000 };

            level9ParagraphProperties19.Append(noBullet104);
            level9ParagraphProperties19.Append(defaultRunProperties201);

            listStyle83.Append(level1ParagraphProperties35);
            listStyle83.Append(level2ParagraphProperties22);
            listStyle83.Append(level3ParagraphProperties22);
            listStyle83.Append(level4ParagraphProperties22);
            listStyle83.Append(level5ParagraphProperties22);
            listStyle83.Append(level6ParagraphProperties19);
            listStyle83.Append(level7ParagraphProperties19);
            listStyle83.Append(level8ParagraphProperties19);
            listStyle83.Append(level9ParagraphProperties19);

            A.Paragraph paragraph111 = new A.Paragraph();

            A.Run run67 = new A.Run();

            A.RunProperties runProperties97 = new A.RunProperties(){ Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties97.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text97 = new A.Text();
            text97.Text = "Click icon to add picture";

            run67.Append(runProperties97);
            run67.Append(text97);
            A.EndParagraphRunProperties endParagraphRunProperties72 = new A.EndParagraphRunProperties(){ Language = "en-US", Dirty = false };

            paragraph111.Append(run67);
            paragraph111.Append(endParagraphRunProperties72);

            textBody83.Append(bodyProperties83);
            textBody83.Append(listStyle83);
            textBody83.Append(paragraph111);

            shape83.Append(nonVisualShapeProperties83);
            shape83.Append(shapeProperties153);
            shape83.Append(textBody83);

            shapeTree16.Append(nonVisualGroupShapeProperties16);
            shapeTree16.Append(groupShapeProperties16);
            shapeTree16.Append(shape78);
            shapeTree16.Append(shape79);
            shapeTree16.Append(shape80);
            shapeTree16.Append(shape81);
            shapeTree16.Append(connectionShape66);
            shapeTree16.Append(connectionShape67);
            shapeTree16.Append(connectionShape68);
            shapeTree16.Append(connectionShape69);
            shapeTree16.Append(connectionShape70);
            shapeTree16.Append(shape82);
            shapeTree16.Append(shape83);

            CommonSlideDataExtensionList commonSlideDataExtensionList16 = new CommonSlideDataExtensionList();

            CommonSlideDataExtension commonSlideDataExtension16 = new CommonSlideDataExtension(){ Uri = "{BB962C8B-B14F-4D97-AF65-F5344CB8AC3E}" };

            P14.CreationId creationId16 = new P14.CreationId(){ Val = (UInt32Value)1306565808U };
            creationId16.AddNamespaceDeclaration("p14", "http://schemas.microsoft.com/office/powerpoint/2010/main");

            commonSlideDataExtension16.Append(creationId16);

            commonSlideDataExtensionList16.Append(commonSlideDataExtension16);

            commonSlideData16.Append(shapeTree16);
            commonSlideData16.Append(commonSlideDataExtensionList16);

            ColorMapOverride colorMapOverride15 = new ColorMapOverride();
            A.MasterColorMapping masterColorMapping15 = new A.MasterColorMapping();

            colorMapOverride15.Append(masterColorMapping15);

            Timing timing16 = new Timing();

            TimeNodeList timeNodeList16 = new TimeNodeList();

            ParallelTimeNode parallelTimeNode16 = new ParallelTimeNode();
            CommonTimeNode commonTimeNode16 = new CommonTimeNode(){ Id = (UInt32Value)1U, Duration = "indefinite", Restart = TimeNodeRestartValues.Never, NodeType = TimeNodeValues.TmingRoot };

            parallelTimeNode16.Append(commonTimeNode16);

            timeNodeList16.Append(parallelTimeNode16);

            timing16.Append(timeNodeList16);

            slideLayout14.Append(commonSlideData16);
            slideLayout14.Append(colorMapOverride15);
            slideLayout14.Append(timing16);

            slideLayoutPart14.SlideLayout = slideLayout14;
        }
        public static void GenerateNotesSlidePart1Content(NotesSlidePart notesSlidePart1)
        {
            NotesSlide notesSlide1 = new NotesSlide();

            notesSlide1.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");
            notesSlide1.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            notesSlide1.AddNamespaceDeclaration("p", "http://schemas.openxmlformats.org/presentationml/2006/main");

            CommonSlideData commonSlideData4 = new CommonSlideData();

            ShapeTree shapeTree4 = new ShapeTree();

            NonVisualGroupShapeProperties nonVisualGroupShapeProperties4 = new NonVisualGroupShapeProperties();
            NonVisualDrawingProperties    nonVisualDrawingProperties20   = new NonVisualDrawingProperties()
            {
                Id = (UInt32Value)1U, Name = ""
            };
            NonVisualGroupShapeDrawingProperties  nonVisualGroupShapeDrawingProperties4   = new NonVisualGroupShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties20 = new ApplicationNonVisualDrawingProperties();

            nonVisualGroupShapeProperties4.Append(nonVisualDrawingProperties20);
            nonVisualGroupShapeProperties4.Append(nonVisualGroupShapeDrawingProperties4);
            nonVisualGroupShapeProperties4.Append(applicationNonVisualDrawingProperties20);

            GroupShapeProperties groupShapeProperties4 = new GroupShapeProperties();

            A.TransformGroup transformGroup4 = new A.TransformGroup();
            A.Offset         offset22        = new A.Offset()
            {
                X = 0L, Y = 0L
            };
            A.Extents extents22 = new A.Extents()
            {
                Cx = 0L, Cy = 0L
            };
            A.ChildOffset childOffset4 = new A.ChildOffset()
            {
                X = 0L, Y = 0L
            };
            A.ChildExtents childExtents4 = new A.ChildExtents()
            {
                Cx = 0L, Cy = 0L
            };

            transformGroup4.Append(offset22);
            transformGroup4.Append(extents22);
            transformGroup4.Append(childOffset4);
            transformGroup4.Append(childExtents4);

            groupShapeProperties4.Append(transformGroup4);

            Shape shape16 = new Shape();

            NonVisualShapeProperties   nonVisualShapeProperties16   = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties21 = new NonVisualDrawingProperties()
            {
                Id = (UInt32Value)19458U, Name = "Rectangle 7"
            };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties16 = new NonVisualShapeDrawingProperties();

            A.ShapeLocks shapeLocks16 = new A.ShapeLocks()
            {
                NoGrouping = true, NoChangeArrowheads = true
            };

            nonVisualShapeDrawingProperties16.Append(shapeLocks16);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties21 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape11 = new PlaceholderShape()
            {
                Type = PlaceholderValues.SlideNumber, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)5U
            };

            applicationNonVisualDrawingProperties21.Append(placeholderShape11);

            nonVisualShapeProperties16.Append(nonVisualDrawingProperties21);
            nonVisualShapeProperties16.Append(nonVisualShapeDrawingProperties16);
            nonVisualShapeProperties16.Append(applicationNonVisualDrawingProperties21);

            ShapeProperties shapeProperties19 = new ShapeProperties();

            A.NoFill  noFill19  = new A.NoFill();
            A.Outline outline33 = new A.Outline();

            A.ShapePropertiesExtensionList shapePropertiesExtensionList7 = new A.ShapePropertiesExtensionList();

            A.ShapePropertiesExtension shapePropertiesExtension7 = new A.ShapePropertiesExtension()
            {
                Uri = "{909E8E84-426E-40DD-AFC4-6F175D3DCCD1}"
            };

            A14.HiddenFillProperties hiddenFillProperties2 = new A14.HiddenFillProperties();
            hiddenFillProperties2.AddNamespaceDeclaration("a14", "http://schemas.microsoft.com/office/drawing/2010/main");

            A.SolidFill        solidFill158        = new A.SolidFill();
            A.RgbColorModelHex rgbColorModelHex239 = new A.RgbColorModelHex()
            {
                Val = "FFFFFF"
            };

            solidFill158.Append(rgbColorModelHex239);

            hiddenFillProperties2.Append(solidFill158);

            shapePropertiesExtension7.Append(hiddenFillProperties2);

            A.ShapePropertiesExtension shapePropertiesExtension8 = new A.ShapePropertiesExtension()
            {
                Uri = "{91240B29-F687-4F45-9708-019B960494DF}"
            };

            A14.HiddenLineProperties hiddenLineProperties6 = new A14.HiddenLineProperties()
            {
                Width = 9525
            };
            hiddenLineProperties6.AddNamespaceDeclaration("a14", "http://schemas.microsoft.com/office/drawing/2010/main");

            A.SolidFill        solidFill159        = new A.SolidFill();
            A.RgbColorModelHex rgbColorModelHex240 = new A.RgbColorModelHex()
            {
                Val = "000000"
            };

            solidFill159.Append(rgbColorModelHex240);
            A.Miter miter15 = new A.Miter()
            {
                Limit = 800000
            };
            A.HeadEnd headEnd14 = new A.HeadEnd();
            A.TailEnd tailEnd14 = new A.TailEnd();

            hiddenLineProperties6.Append(solidFill159);
            hiddenLineProperties6.Append(miter15);
            hiddenLineProperties6.Append(headEnd14);
            hiddenLineProperties6.Append(tailEnd14);

            shapePropertiesExtension8.Append(hiddenLineProperties6);

            shapePropertiesExtensionList7.Append(shapePropertiesExtension7);
            shapePropertiesExtensionList7.Append(shapePropertiesExtension8);

            shapeProperties19.Append(noFill19);
            shapeProperties19.Append(outline33);
            shapeProperties19.Append(shapePropertiesExtensionList7);

            TextBody textBody15 = new TextBody();

            A.BodyProperties bodyProperties17 = new A.BodyProperties();

            A.ListStyle listStyle17 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties16 = new A.Level1ParagraphProperties();

            A.SpaceBefore    spaceBefore74    = new A.SpaceBefore();
            A.SpacingPercent spacingPercent95 = new A.SpacingPercent()
            {
                Val = 30000
            };

            spaceBefore74.Append(spacingPercent95);

            A.DefaultRunProperties defaultRunProperties95 = new A.DefaultRunProperties()
            {
                FontSize = 1200
            };

            A.SolidFill   solidFill160   = new A.SolidFill();
            A.SchemeColor schemeColor221 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.Text1
            };

            solidFill160.Append(schemeColor221);
            A.LatinFont latinFont112 = new A.LatinFont()
            {
                Typeface = "Arial", Panose = "020B0604020202020204", PitchFamily = 34, CharacterSet = 0
            };
            A.EastAsianFont eastAsianFont75 = new A.EastAsianFont()
            {
                Typeface = "MS PGothic", Panose = "020B0600070205080204", PitchFamily = 34, CharacterSet = -128
            };

            defaultRunProperties95.Append(solidFill160);
            defaultRunProperties95.Append(latinFont112);
            defaultRunProperties95.Append(eastAsianFont75);

            level1ParagraphProperties16.Append(spaceBefore74);
            level1ParagraphProperties16.Append(defaultRunProperties95);

            A.Level2ParagraphProperties level2ParagraphProperties8 = new A.Level2ParagraphProperties()
            {
                LeftMargin = 735013, Indent = -280988
            };

            A.SpaceBefore    spaceBefore75    = new A.SpaceBefore();
            A.SpacingPercent spacingPercent96 = new A.SpacingPercent()
            {
                Val = 30000
            };

            spaceBefore75.Append(spacingPercent96);

            A.DefaultRunProperties defaultRunProperties96 = new A.DefaultRunProperties()
            {
                FontSize = 1200
            };

            A.SolidFill   solidFill161   = new A.SolidFill();
            A.SchemeColor schemeColor222 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.Text1
            };

            solidFill161.Append(schemeColor222);
            A.LatinFont latinFont113 = new A.LatinFont()
            {
                Typeface = "Arial", Panose = "020B0604020202020204", PitchFamily = 34, CharacterSet = 0
            };
            A.EastAsianFont eastAsianFont76 = new A.EastAsianFont()
            {
                Typeface = "MS PGothic", Panose = "020B0600070205080204", PitchFamily = 34, CharacterSet = -128
            };

            defaultRunProperties96.Append(solidFill161);
            defaultRunProperties96.Append(latinFont113);
            defaultRunProperties96.Append(eastAsianFont76);

            level2ParagraphProperties8.Append(spaceBefore75);
            level2ParagraphProperties8.Append(defaultRunProperties96);

            A.Level3ParagraphProperties level3ParagraphProperties8 = new A.Level3ParagraphProperties()
            {
                LeftMargin = 1131888, Indent = -225425
            };

            A.SpaceBefore    spaceBefore76    = new A.SpaceBefore();
            A.SpacingPercent spacingPercent97 = new A.SpacingPercent()
            {
                Val = 30000
            };

            spaceBefore76.Append(spacingPercent97);

            A.DefaultRunProperties defaultRunProperties97 = new A.DefaultRunProperties()
            {
                FontSize = 1200
            };

            A.SolidFill   solidFill162   = new A.SolidFill();
            A.SchemeColor schemeColor223 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.Text1
            };

            solidFill162.Append(schemeColor223);
            A.LatinFont latinFont114 = new A.LatinFont()
            {
                Typeface = "Arial", Panose = "020B0604020202020204", PitchFamily = 34, CharacterSet = 0
            };
            A.EastAsianFont eastAsianFont77 = new A.EastAsianFont()
            {
                Typeface = "MS PGothic", Panose = "020B0600070205080204", PitchFamily = 34, CharacterSet = -128
            };

            defaultRunProperties97.Append(solidFill162);
            defaultRunProperties97.Append(latinFont114);
            defaultRunProperties97.Append(eastAsianFont77);

            level3ParagraphProperties8.Append(spaceBefore76);
            level3ParagraphProperties8.Append(defaultRunProperties97);

            A.Level4ParagraphProperties level4ParagraphProperties8 = new A.Level4ParagraphProperties()
            {
                LeftMargin = 1585913, Indent = -225425
            };

            A.SpaceBefore    spaceBefore77    = new A.SpaceBefore();
            A.SpacingPercent spacingPercent98 = new A.SpacingPercent()
            {
                Val = 30000
            };

            spaceBefore77.Append(spacingPercent98);

            A.DefaultRunProperties defaultRunProperties98 = new A.DefaultRunProperties()
            {
                FontSize = 1200
            };

            A.SolidFill   solidFill163   = new A.SolidFill();
            A.SchemeColor schemeColor224 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.Text1
            };

            solidFill163.Append(schemeColor224);
            A.LatinFont latinFont115 = new A.LatinFont()
            {
                Typeface = "Arial", Panose = "020B0604020202020204", PitchFamily = 34, CharacterSet = 0
            };
            A.EastAsianFont eastAsianFont78 = new A.EastAsianFont()
            {
                Typeface = "MS PGothic", Panose = "020B0600070205080204", PitchFamily = 34, CharacterSet = -128
            };

            defaultRunProperties98.Append(solidFill163);
            defaultRunProperties98.Append(latinFont115);
            defaultRunProperties98.Append(eastAsianFont78);

            level4ParagraphProperties8.Append(spaceBefore77);
            level4ParagraphProperties8.Append(defaultRunProperties98);

            A.Level5ParagraphProperties level5ParagraphProperties8 = new A.Level5ParagraphProperties()
            {
                LeftMargin = 2038350, Indent = -225425
            };

            A.SpaceBefore    spaceBefore78    = new A.SpaceBefore();
            A.SpacingPercent spacingPercent99 = new A.SpacingPercent()
            {
                Val = 30000
            };

            spaceBefore78.Append(spacingPercent99);

            A.DefaultRunProperties defaultRunProperties99 = new A.DefaultRunProperties()
            {
                FontSize = 1200
            };

            A.SolidFill   solidFill164   = new A.SolidFill();
            A.SchemeColor schemeColor225 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.Text1
            };

            solidFill164.Append(schemeColor225);
            A.LatinFont latinFont116 = new A.LatinFont()
            {
                Typeface = "Arial", Panose = "020B0604020202020204", PitchFamily = 34, CharacterSet = 0
            };
            A.EastAsianFont eastAsianFont79 = new A.EastAsianFont()
            {
                Typeface = "MS PGothic", Panose = "020B0600070205080204", PitchFamily = 34, CharacterSet = -128
            };

            defaultRunProperties99.Append(solidFill164);
            defaultRunProperties99.Append(latinFont116);
            defaultRunProperties99.Append(eastAsianFont79);

            level5ParagraphProperties8.Append(spaceBefore78);
            level5ParagraphProperties8.Append(defaultRunProperties99);

            A.Level6ParagraphProperties level6ParagraphProperties8 = new A.Level6ParagraphProperties()
            {
                LeftMargin = 2495550, Indent = -225425, EastAsianLineBreak = false, FontAlignment = A.TextFontAlignmentValues.Baseline, Height = false
            };

            A.SpaceBefore    spaceBefore79     = new A.SpaceBefore();
            A.SpacingPercent spacingPercent100 = new A.SpacingPercent()
            {
                Val = 30000
            };

            spaceBefore79.Append(spacingPercent100);

            A.SpaceAfter     spaceAfter59      = new A.SpaceAfter();
            A.SpacingPercent spacingPercent101 = new A.SpacingPercent()
            {
                Val = 0
            };

            spaceAfter59.Append(spacingPercent101);

            A.DefaultRunProperties defaultRunProperties100 = new A.DefaultRunProperties()
            {
                FontSize = 1200
            };

            A.SolidFill   solidFill165   = new A.SolidFill();
            A.SchemeColor schemeColor226 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.Text1
            };

            solidFill165.Append(schemeColor226);
            A.LatinFont latinFont117 = new A.LatinFont()
            {
                Typeface = "Arial", Panose = "020B0604020202020204", PitchFamily = 34, CharacterSet = 0
            };
            A.EastAsianFont eastAsianFont80 = new A.EastAsianFont()
            {
                Typeface = "MS PGothic", Panose = "020B0600070205080204", PitchFamily = 34, CharacterSet = -128
            };

            defaultRunProperties100.Append(solidFill165);
            defaultRunProperties100.Append(latinFont117);
            defaultRunProperties100.Append(eastAsianFont80);

            level6ParagraphProperties8.Append(spaceBefore79);
            level6ParagraphProperties8.Append(spaceAfter59);
            level6ParagraphProperties8.Append(defaultRunProperties100);

            A.Level7ParagraphProperties level7ParagraphProperties8 = new A.Level7ParagraphProperties()
            {
                LeftMargin = 2952750, Indent = -225425, EastAsianLineBreak = false, FontAlignment = A.TextFontAlignmentValues.Baseline, Height = false
            };

            A.SpaceBefore    spaceBefore80     = new A.SpaceBefore();
            A.SpacingPercent spacingPercent102 = new A.SpacingPercent()
            {
                Val = 30000
            };

            spaceBefore80.Append(spacingPercent102);

            A.SpaceAfter     spaceAfter60      = new A.SpaceAfter();
            A.SpacingPercent spacingPercent103 = new A.SpacingPercent()
            {
                Val = 0
            };

            spaceAfter60.Append(spacingPercent103);

            A.DefaultRunProperties defaultRunProperties101 = new A.DefaultRunProperties()
            {
                FontSize = 1200
            };

            A.SolidFill   solidFill166   = new A.SolidFill();
            A.SchemeColor schemeColor227 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.Text1
            };

            solidFill166.Append(schemeColor227);
            A.LatinFont latinFont118 = new A.LatinFont()
            {
                Typeface = "Arial", Panose = "020B0604020202020204", PitchFamily = 34, CharacterSet = 0
            };
            A.EastAsianFont eastAsianFont81 = new A.EastAsianFont()
            {
                Typeface = "MS PGothic", Panose = "020B0600070205080204", PitchFamily = 34, CharacterSet = -128
            };

            defaultRunProperties101.Append(solidFill166);
            defaultRunProperties101.Append(latinFont118);
            defaultRunProperties101.Append(eastAsianFont81);

            level7ParagraphProperties8.Append(spaceBefore80);
            level7ParagraphProperties8.Append(spaceAfter60);
            level7ParagraphProperties8.Append(defaultRunProperties101);

            A.Level8ParagraphProperties level8ParagraphProperties8 = new A.Level8ParagraphProperties()
            {
                LeftMargin = 3409950, Indent = -225425, EastAsianLineBreak = false, FontAlignment = A.TextFontAlignmentValues.Baseline, Height = false
            };

            A.SpaceBefore    spaceBefore81     = new A.SpaceBefore();
            A.SpacingPercent spacingPercent104 = new A.SpacingPercent()
            {
                Val = 30000
            };

            spaceBefore81.Append(spacingPercent104);

            A.SpaceAfter     spaceAfter61      = new A.SpaceAfter();
            A.SpacingPercent spacingPercent105 = new A.SpacingPercent()
            {
                Val = 0
            };

            spaceAfter61.Append(spacingPercent105);

            A.DefaultRunProperties defaultRunProperties102 = new A.DefaultRunProperties()
            {
                FontSize = 1200
            };

            A.SolidFill   solidFill167   = new A.SolidFill();
            A.SchemeColor schemeColor228 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.Text1
            };

            solidFill167.Append(schemeColor228);
            A.LatinFont latinFont119 = new A.LatinFont()
            {
                Typeface = "Arial", Panose = "020B0604020202020204", PitchFamily = 34, CharacterSet = 0
            };
            A.EastAsianFont eastAsianFont82 = new A.EastAsianFont()
            {
                Typeface = "MS PGothic", Panose = "020B0600070205080204", PitchFamily = 34, CharacterSet = -128
            };

            defaultRunProperties102.Append(solidFill167);
            defaultRunProperties102.Append(latinFont119);
            defaultRunProperties102.Append(eastAsianFont82);

            level8ParagraphProperties8.Append(spaceBefore81);
            level8ParagraphProperties8.Append(spaceAfter61);
            level8ParagraphProperties8.Append(defaultRunProperties102);

            A.Level9ParagraphProperties level9ParagraphProperties8 = new A.Level9ParagraphProperties()
            {
                LeftMargin = 3867150, Indent = -225425, EastAsianLineBreak = false, FontAlignment = A.TextFontAlignmentValues.Baseline, Height = false
            };

            A.SpaceBefore    spaceBefore82     = new A.SpaceBefore();
            A.SpacingPercent spacingPercent106 = new A.SpacingPercent()
            {
                Val = 30000
            };

            spaceBefore82.Append(spacingPercent106);

            A.SpaceAfter     spaceAfter62      = new A.SpaceAfter();
            A.SpacingPercent spacingPercent107 = new A.SpacingPercent()
            {
                Val = 0
            };

            spaceAfter62.Append(spacingPercent107);

            A.DefaultRunProperties defaultRunProperties103 = new A.DefaultRunProperties()
            {
                FontSize = 1200
            };

            A.SolidFill   solidFill168   = new A.SolidFill();
            A.SchemeColor schemeColor229 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.Text1
            };

            solidFill168.Append(schemeColor229);
            A.LatinFont latinFont120 = new A.LatinFont()
            {
                Typeface = "Arial", Panose = "020B0604020202020204", PitchFamily = 34, CharacterSet = 0
            };
            A.EastAsianFont eastAsianFont83 = new A.EastAsianFont()
            {
                Typeface = "MS PGothic", Panose = "020B0600070205080204", PitchFamily = 34, CharacterSet = -128
            };

            defaultRunProperties103.Append(solidFill168);
            defaultRunProperties103.Append(latinFont120);
            defaultRunProperties103.Append(eastAsianFont83);

            level9ParagraphProperties8.Append(spaceBefore82);
            level9ParagraphProperties8.Append(spaceAfter62);
            level9ParagraphProperties8.Append(defaultRunProperties103);

            listStyle17.Append(level1ParagraphProperties16);
            listStyle17.Append(level2ParagraphProperties8);
            listStyle17.Append(level3ParagraphProperties8);
            listStyle17.Append(level4ParagraphProperties8);
            listStyle17.Append(level5ParagraphProperties8);
            listStyle17.Append(level6ParagraphProperties8);
            listStyle17.Append(level7ParagraphProperties8);
            listStyle17.Append(level8ParagraphProperties8);
            listStyle17.Append(level9ParagraphProperties8);

            A.Paragraph paragraph40 = new A.Paragraph();

            A.ParagraphProperties paragraphProperties37 = new A.ParagraphProperties();

            A.SpaceBefore    spaceBefore83     = new A.SpaceBefore();
            A.SpacingPercent spacingPercent108 = new A.SpacingPercent()
            {
                Val = 0
            };

            spaceBefore83.Append(spacingPercent108);

            paragraphProperties37.Append(spaceBefore83);

            A.Field field4 = new A.Field()
            {
                Id = "{99BBE751-775A-442D-AED5-C8FC60817C7D}", Type = "slidenum"
            };

            A.RunProperties runProperties41 = new A.RunProperties()
            {
                Language = "en-US", AlternativeLanguage = "et-EE"
            };
            runProperties41.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.ComplexScriptFont complexScriptFont61 = new A.ComplexScriptFont()
            {
                Typeface = "Arial", Panose = "020B0604020202020204", PitchFamily = 34, CharacterSet = 0
            };

            runProperties41.Append(complexScriptFont61);

            A.ParagraphProperties paragraphProperties38 = new A.ParagraphProperties();

            A.SpaceBefore    spaceBefore84     = new A.SpaceBefore();
            A.SpacingPercent spacingPercent109 = new A.SpacingPercent()
            {
                Val = 0
            };

            spaceBefore84.Append(spacingPercent109);

            paragraphProperties38.Append(spaceBefore84);
            A.Text text41 = new A.Text();
            text41.Text = "1";

            field4.Append(runProperties41);
            field4.Append(paragraphProperties38);
            field4.Append(text41);

            A.EndParagraphRunProperties endParagraphRunProperties21 = new A.EndParagraphRunProperties()
            {
                Language = "en-US", AlternativeLanguage = "et-EE"
            };
            A.ComplexScriptFont complexScriptFont62 = new A.ComplexScriptFont()
            {
                Typeface = "Arial", Panose = "020B0604020202020204", PitchFamily = 34, CharacterSet = 0
            };

            endParagraphRunProperties21.Append(complexScriptFont62);

            paragraph40.Append(paragraphProperties37);
            paragraph40.Append(field4);
            paragraph40.Append(endParagraphRunProperties21);

            textBody15.Append(bodyProperties17);
            textBody15.Append(listStyle17);
            textBody15.Append(paragraph40);

            shape16.Append(nonVisualShapeProperties16);
            shape16.Append(shapeProperties19);
            shape16.Append(textBody15);

            Shape shape17 = new Shape();

            NonVisualShapeProperties   nonVisualShapeProperties17   = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties22 = new NonVisualDrawingProperties()
            {
                Id = (UInt32Value)19459U, Name = "Rectangle 2"
            };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties17 = new NonVisualShapeDrawingProperties();

            A.ShapeLocks shapeLocks17 = new A.ShapeLocks()
            {
                NoGrouping = true, NoRotation = true, NoChangeAspect = true, NoChangeArrowheads = true, NoTextEdit = true
            };

            nonVisualShapeDrawingProperties17.Append(shapeLocks17);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties22 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape12 = new PlaceholderShape()
            {
                Type = PlaceholderValues.SlideImage
            };

            applicationNonVisualDrawingProperties22.Append(placeholderShape12);

            nonVisualShapeProperties17.Append(nonVisualDrawingProperties22);
            nonVisualShapeProperties17.Append(nonVisualShapeDrawingProperties17);
            nonVisualShapeProperties17.Append(applicationNonVisualDrawingProperties22);

            ShapeProperties shapeProperties20 = new ShapeProperties();

            A.Outline outline34 = new A.Outline();

            shapeProperties20.Append(outline34);

            shape17.Append(nonVisualShapeProperties17);
            shape17.Append(shapeProperties20);

            Shape shape18 = new Shape();

            NonVisualShapeProperties   nonVisualShapeProperties18   = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties23 = new NonVisualDrawingProperties()
            {
                Id = (UInt32Value)19460U, Name = "Rectangle 3"
            };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties18 = new NonVisualShapeDrawingProperties();

            A.ShapeLocks shapeLocks18 = new A.ShapeLocks()
            {
                NoGrouping = true, NoChangeArrowheads = true
            };

            nonVisualShapeDrawingProperties18.Append(shapeLocks18);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties23 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape13 = new PlaceholderShape()
            {
                Type = PlaceholderValues.Body, Index = (UInt32Value)1U
            };

            applicationNonVisualDrawingProperties23.Append(placeholderShape13);

            nonVisualShapeProperties18.Append(nonVisualDrawingProperties23);
            nonVisualShapeProperties18.Append(nonVisualShapeDrawingProperties18);
            nonVisualShapeProperties18.Append(applicationNonVisualDrawingProperties23);

            ShapeProperties shapeProperties21 = new ShapeProperties();

            A.NoFill  noFill20  = new A.NoFill();
            A.Outline outline35 = new A.Outline();

            A.ShapePropertiesExtensionList shapePropertiesExtensionList8 = new A.ShapePropertiesExtensionList();

            A.ShapePropertiesExtension shapePropertiesExtension9 = new A.ShapePropertiesExtension()
            {
                Uri = "{909E8E84-426E-40DD-AFC4-6F175D3DCCD1}"
            };

            A14.HiddenFillProperties hiddenFillProperties3 = new A14.HiddenFillProperties();
            hiddenFillProperties3.AddNamespaceDeclaration("a14", "http://schemas.microsoft.com/office/drawing/2010/main");

            A.SolidFill        solidFill169        = new A.SolidFill();
            A.RgbColorModelHex rgbColorModelHex241 = new A.RgbColorModelHex()
            {
                Val = "FFFFFF"
            };

            solidFill169.Append(rgbColorModelHex241);

            hiddenFillProperties3.Append(solidFill169);

            shapePropertiesExtension9.Append(hiddenFillProperties3);

            A.ShapePropertiesExtension shapePropertiesExtension10 = new A.ShapePropertiesExtension()
            {
                Uri = "{91240B29-F687-4F45-9708-019B960494DF}"
            };

            A14.HiddenLineProperties hiddenLineProperties7 = new A14.HiddenLineProperties()
            {
                Width = 9525
            };
            hiddenLineProperties7.AddNamespaceDeclaration("a14", "http://schemas.microsoft.com/office/drawing/2010/main");

            A.SolidFill        solidFill170        = new A.SolidFill();
            A.RgbColorModelHex rgbColorModelHex242 = new A.RgbColorModelHex()
            {
                Val = "000000"
            };

            solidFill170.Append(rgbColorModelHex242);
            A.Miter miter16 = new A.Miter()
            {
                Limit = 800000
            };
            A.HeadEnd headEnd15 = new A.HeadEnd();
            A.TailEnd tailEnd15 = new A.TailEnd();

            hiddenLineProperties7.Append(solidFill170);
            hiddenLineProperties7.Append(miter16);
            hiddenLineProperties7.Append(headEnd15);
            hiddenLineProperties7.Append(tailEnd15);

            shapePropertiesExtension10.Append(hiddenLineProperties7);

            shapePropertiesExtensionList8.Append(shapePropertiesExtension9);
            shapePropertiesExtensionList8.Append(shapePropertiesExtension10);

            shapeProperties21.Append(noFill20);
            shapeProperties21.Append(outline35);
            shapeProperties21.Append(shapePropertiesExtensionList8);

            TextBody textBody16 = new TextBody();

            A.BodyProperties bodyProperties18 = new A.BodyProperties();
            A.ListStyle      listStyle18      = new A.ListStyle();

            A.Paragraph           paragraph41           = new A.Paragraph();
            A.ParagraphProperties paragraphProperties39 = new A.ParagraphProperties()
            {
                EastAsianLineBreak = true, Height = true
            };

            A.EndParagraphRunProperties endParagraphRunProperties22 = new A.EndParagraphRunProperties()
            {
                Language = "lv-LV", AlternativeLanguage = "et-EE"
            };
            A.LatinFont latinFont121 = new A.LatinFont()
            {
                Typeface = "Arial", Panose = "020B0604020202020204", PitchFamily = 34, CharacterSet = 0
            };

            endParagraphRunProperties22.Append(latinFont121);

            paragraph41.Append(paragraphProperties39);
            paragraph41.Append(endParagraphRunProperties22);

            textBody16.Append(bodyProperties18);
            textBody16.Append(listStyle18);
            textBody16.Append(paragraph41);

            shape18.Append(nonVisualShapeProperties18);
            shape18.Append(shapeProperties21);
            shape18.Append(textBody16);

            shapeTree4.Append(nonVisualGroupShapeProperties4);
            shapeTree4.Append(groupShapeProperties4);
            shapeTree4.Append(shape16);
            shapeTree4.Append(shape17);
            shapeTree4.Append(shape18);

            CommonSlideDataExtensionList commonSlideDataExtensionList4 = new CommonSlideDataExtensionList();

            CommonSlideDataExtension commonSlideDataExtension4 = new CommonSlideDataExtension()
            {
                Uri = "{BB962C8B-B14F-4D97-AF65-F5344CB8AC3E}"
            };

            P14.CreationId creationId4 = new P14.CreationId()
            {
                Val = (UInt32Value)4141007346U
            };
            creationId4.AddNamespaceDeclaration("p14", "http://schemas.microsoft.com/office/powerpoint/2010/main");

            commonSlideDataExtension4.Append(creationId4);

            commonSlideDataExtensionList4.Append(commonSlideDataExtension4);

            commonSlideData4.Append(shapeTree4);
            commonSlideData4.Append(commonSlideDataExtensionList4);

            ColorMapOverride colorMapOverride2 = new ColorMapOverride();

            A.MasterColorMapping masterColorMapping2 = new A.MasterColorMapping();

            colorMapOverride2.Append(masterColorMapping2);

            notesSlide1.Append(commonSlideData4);
            notesSlide1.Append(colorMapOverride2);

            notesSlidePart1.NotesSlide = notesSlide1;
        }
Ejemplo n.º 24
0
        // 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() { EditAs = Xdr.EditAsValues.OneCell };

            Xdr.FromMarker fromMarker1 = new Xdr.FromMarker();
            Xdr.ColumnId columnId1 = new Xdr.ColumnId();
            columnId1.Text = "0";
            Xdr.ColumnOffset columnOffset1 = new Xdr.ColumnOffset();
            columnOffset1.Text = "347384";
            Xdr.RowId rowId1 = new Xdr.RowId();
            rowId1.Text = "0";
            Xdr.RowOffset rowOffset1 = new Xdr.RowOffset();
            rowOffset1.Text = "123265";

            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 = "2";
            Xdr.ColumnOffset columnOffset2 = new Xdr.ColumnOffset();
            columnOffset2.Text = "223413";
            Xdr.RowId rowId2 = new Xdr.RowId();
            rowId2.Text = "3";
            Xdr.RowOffset rowOffset2 = new Xdr.RowOffset();
            rowOffset2.Text = "98965";

            toMarker1.Append(columnId2);
            toMarker1.Append(columnOffset2);
            toMarker1.Append(rowId2);
            toMarker1.Append(rowOffset2);

            Xdr.Picture picture1 = new Xdr.Picture();

            Xdr.NonVisualPictureProperties nonVisualPictureProperties1 = new Xdr.NonVisualPictureProperties();
            Xdr.NonVisualDrawingProperties nonVisualDrawingProperties1 = new Xdr.NonVisualDrawingProperties() { Id = (UInt32Value)2U, Name = "Picture 1", Description = "logo-Sprayette" };

            Xdr.NonVisualPictureDrawingProperties nonVisualPictureDrawingProperties1 = new Xdr.NonVisualPictureDrawingProperties();
            A.PictureLocks pictureLocks1 = new A.PictureLocks() { NoChangeAspect = true, NoChangeArrowheads = true };

            nonVisualPictureDrawingProperties1.Append(pictureLocks1);

            nonVisualPictureProperties1.Append(nonVisualDrawingProperties1);
            nonVisualPictureProperties1.Append(nonVisualPictureDrawingProperties1);

            Xdr.BlipFill blipFill1 = new Xdr.BlipFill();

            A.Blip blip1 = new A.Blip() { Embed = "rId1" };
            blip1.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");

            A.BlipExtensionList blipExtensionList1 = new A.BlipExtensionList();

            A.BlipExtension blipExtension1 = new A.BlipExtension() { Uri = "{28A0092B-C50C-407E-A947-70E740481C1C}" };

            A14.UseLocalDpi useLocalDpi1 = new A14.UseLocalDpi() { Val = false };
            useLocalDpi1.AddNamespaceDeclaration("a14", "http://schemas.microsoft.com/office/drawing/2010/main");

            blipExtension1.Append(useLocalDpi1);

            blipExtensionList1.Append(blipExtension1);

            blip1.Append(blipExtensionList1);
            A.SourceRectangle sourceRectangle1 = new A.SourceRectangle();

            A.Stretch stretch1 = new A.Stretch();
            A.FillRectangle fillRectangle1 = new A.FillRectangle();

            stretch1.Append(fillRectangle1);

            blipFill1.Append(blip1);
            blipFill1.Append(sourceRectangle1);
            blipFill1.Append(stretch1);

            Xdr.ShapeProperties shapeProperties1 = new Xdr.ShapeProperties() { BlackWhiteMode = A.BlackWhiteModeValues.Auto };

            A.Transform2D transform2D1 = new A.Transform2D();
            A.Offset offset1 = new A.Offset() { X = 347384L, Y = 123265L };
            A.Extents extents1 = new A.Extents() { Cx = 2106000L, Cy = 547200L };

            transform2D1.Append(offset1);
            transform2D1.Append(extents1);

            A.PresetGeometry presetGeometry1 = new A.PresetGeometry() { Preset = A.ShapeTypeValues.Rectangle };
            A.AdjustValueList adjustValueList1 = new A.AdjustValueList();

            presetGeometry1.Append(adjustValueList1);
            A.NoFill noFill1 = new A.NoFill();

            A.Outline outline4 = new A.Outline();
            A.NoFill noFill2 = new A.NoFill();

            outline4.Append(noFill2);

            A.ShapePropertiesExtensionList shapePropertiesExtensionList1 = new A.ShapePropertiesExtensionList();

            A.ShapePropertiesExtension shapePropertiesExtension1 = new A.ShapePropertiesExtension() { Uri = "{909E8E84-426E-40DD-AFC4-6F175D3DCCD1}" };

            A14.HiddenFillProperties hiddenFillProperties1 = new A14.HiddenFillProperties();
            hiddenFillProperties1.AddNamespaceDeclaration("a14", "http://schemas.microsoft.com/office/drawing/2010/main");

            A.SolidFill solidFill6 = new A.SolidFill();
            A.RgbColorModelHex rgbColorModelHex14 = new A.RgbColorModelHex() { Val = "FFFFFF" };

            solidFill6.Append(rgbColorModelHex14);

            hiddenFillProperties1.Append(solidFill6);

            shapePropertiesExtension1.Append(hiddenFillProperties1);

            A.ShapePropertiesExtension shapePropertiesExtension2 = new A.ShapePropertiesExtension() { Uri = "{91240B29-F687-4F45-9708-019B960494DF}" };

            A14.HiddenLineProperties hiddenLineProperties1 = new A14.HiddenLineProperties() { Width = 9525 };
            hiddenLineProperties1.AddNamespaceDeclaration("a14", "http://schemas.microsoft.com/office/drawing/2010/main");

            A.SolidFill solidFill7 = new A.SolidFill();
            A.RgbColorModelHex rgbColorModelHex15 = new A.RgbColorModelHex() { Val = "000000" };

            solidFill7.Append(rgbColorModelHex15);
            A.Miter miter1 = new A.Miter() { Limit = 800000 };
            A.HeadEnd headEnd1 = new A.HeadEnd();
            A.TailEnd tailEnd1 = new A.TailEnd();

            hiddenLineProperties1.Append(solidFill7);
            hiddenLineProperties1.Append(miter1);
            hiddenLineProperties1.Append(headEnd1);
            hiddenLineProperties1.Append(tailEnd1);

            shapePropertiesExtension2.Append(hiddenLineProperties1);

            shapePropertiesExtensionList1.Append(shapePropertiesExtension1);
            shapePropertiesExtensionList1.Append(shapePropertiesExtension2);

            shapeProperties1.Append(transform2D1);
            shapeProperties1.Append(presetGeometry1);
            shapeProperties1.Append(noFill1);
            shapeProperties1.Append(outline4);
            shapeProperties1.Append(shapePropertiesExtensionList1);

            picture1.Append(nonVisualPictureProperties1);
            picture1.Append(blipFill1);
            picture1.Append(shapeProperties1);
            Xdr.ClientData clientData1 = new Xdr.ClientData();

            twoCellAnchor1.Append(fromMarker1);
            twoCellAnchor1.Append(toMarker1);
            twoCellAnchor1.Append(picture1);
            twoCellAnchor1.Append(clientData1);

            worksheetDrawing1.Append(twoCellAnchor1);

            drawingsPart1.WorksheetDrawing = worksheetDrawing1;
        }
        public static void GeneratePresentationPart1Content(PresentationPart presentationPart1)
        {
            Presentation presentation1 = new Presentation()
            {
                ShowSpecialPlaceholderOnTitleSlide = false, RemovePersonalInfoOnSave = true, StrictFirstAndLastChars = false, SaveSubsetFonts = true
            };

            presentation1.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");
            presentation1.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            presentation1.AddNamespaceDeclaration("p", "http://schemas.openxmlformats.org/presentationml/2006/main");

            SlideMasterIdList slideMasterIdList1 = new SlideMasterIdList();
            SlideMasterId     slideMasterId1     = new SlideMasterId()
            {
                Id = (UInt32Value)2147483648U, RelationshipId = "rId4"
            };

            slideMasterIdList1.Append(slideMasterId1);

            NotesMasterIdList notesMasterIdList1 = new NotesMasterIdList();
            NotesMasterId     notesMasterId1     = new NotesMasterId()
            {
                Id = "rId6"
            };

            notesMasterIdList1.Append(notesMasterId1);

            HandoutMasterIdList handoutMasterIdList1 = new HandoutMasterIdList();
            HandoutMasterId     handoutMasterId1     = new HandoutMasterId()
            {
                Id = "rId7"
            };

            handoutMasterIdList1.Append(handoutMasterId1);

            SlideIdList slideIdList1 = new SlideIdList();
            SlideId     slideId1     = new SlideId()
            {
                Id = (UInt32Value)371U, RelationshipId = "rId5"
            };

            slideIdList1.Append(slideId1);
            SlideSize slideSize1 = new SlideSize()
            {
                Cx = 9906000, Cy = 6858000, Type = SlideSizeValues.A4
            };
            NotesSize notesSize1 = new NotesSize()
            {
                Cx = 6797675L, Cy = 9874250L
            };

            DefaultTextStyle defaultTextStyle1 = new DefaultTextStyle();

            A.DefaultParagraphProperties defaultParagraphProperties1 = new A.DefaultParagraphProperties();
            A.DefaultRunProperties       defaultRunProperties1       = new A.DefaultRunProperties()
            {
                Language = "en-US"
            };

            defaultParagraphProperties1.Append(defaultRunProperties1);

            A.Level1ParagraphProperties level1ParagraphProperties1 = new A.Level1ParagraphProperties()
            {
                Alignment = A.TextAlignmentTypeValues.Left, RightToLeft = false, EastAsianLineBreak = false, FontAlignment = A.TextFontAlignmentValues.Baseline, Height = false
            };

            A.SpaceBefore    spaceBefore1    = new A.SpaceBefore();
            A.SpacingPercent spacingPercent1 = new A.SpacingPercent()
            {
                Val = 0
            };

            spaceBefore1.Append(spacingPercent1);

            A.SpaceAfter     spaceAfter1     = new A.SpaceAfter();
            A.SpacingPercent spacingPercent2 = new A.SpacingPercent()
            {
                Val = 0
            };

            spaceAfter1.Append(spacingPercent2);

            A.DefaultRunProperties defaultRunProperties2 = new A.DefaultRunProperties()
            {
                FontSize = 2400, Kerning = 1200
            };

            A.SolidFill   solidFill1   = new A.SolidFill();
            A.SchemeColor schemeColor1 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.Text1
            };

            solidFill1.Append(schemeColor1);
            A.LatinFont latinFont1 = new A.LatinFont()
            {
                Typeface = "Arial", Panose = "020B0604020202020204", PitchFamily = 34, CharacterSet = 0
            };
            A.EastAsianFont eastAsianFont1 = new A.EastAsianFont()
            {
                Typeface = "MS PGothic", Panose = "020B0600070205080204", PitchFamily = 34, CharacterSet = -128
            };
            A.ComplexScriptFont complexScriptFont1 = new A.ComplexScriptFont()
            {
                Typeface = "+mn-cs"
            };

            defaultRunProperties2.Append(solidFill1);
            defaultRunProperties2.Append(latinFont1);
            defaultRunProperties2.Append(eastAsianFont1);
            defaultRunProperties2.Append(complexScriptFont1);

            level1ParagraphProperties1.Append(spaceBefore1);
            level1ParagraphProperties1.Append(spaceAfter1);
            level1ParagraphProperties1.Append(defaultRunProperties2);

            A.Level2ParagraphProperties level2ParagraphProperties1 = new A.Level2ParagraphProperties()
            {
                LeftMargin = 457200, Alignment = A.TextAlignmentTypeValues.Left, RightToLeft = false, EastAsianLineBreak = false, FontAlignment = A.TextFontAlignmentValues.Baseline, Height = false
            };

            A.SpaceBefore    spaceBefore2    = new A.SpaceBefore();
            A.SpacingPercent spacingPercent3 = new A.SpacingPercent()
            {
                Val = 0
            };

            spaceBefore2.Append(spacingPercent3);

            A.SpaceAfter     spaceAfter2     = new A.SpaceAfter();
            A.SpacingPercent spacingPercent4 = new A.SpacingPercent()
            {
                Val = 0
            };

            spaceAfter2.Append(spacingPercent4);

            A.DefaultRunProperties defaultRunProperties3 = new A.DefaultRunProperties()
            {
                FontSize = 2400, Kerning = 1200
            };

            A.SolidFill   solidFill2   = new A.SolidFill();
            A.SchemeColor schemeColor2 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.Text1
            };

            solidFill2.Append(schemeColor2);
            A.LatinFont latinFont2 = new A.LatinFont()
            {
                Typeface = "Arial", Panose = "020B0604020202020204", PitchFamily = 34, CharacterSet = 0
            };
            A.EastAsianFont eastAsianFont2 = new A.EastAsianFont()
            {
                Typeface = "MS PGothic", Panose = "020B0600070205080204", PitchFamily = 34, CharacterSet = -128
            };
            A.ComplexScriptFont complexScriptFont2 = new A.ComplexScriptFont()
            {
                Typeface = "+mn-cs"
            };

            defaultRunProperties3.Append(solidFill2);
            defaultRunProperties3.Append(latinFont2);
            defaultRunProperties3.Append(eastAsianFont2);
            defaultRunProperties3.Append(complexScriptFont2);

            level2ParagraphProperties1.Append(spaceBefore2);
            level2ParagraphProperties1.Append(spaceAfter2);
            level2ParagraphProperties1.Append(defaultRunProperties3);

            A.Level3ParagraphProperties level3ParagraphProperties1 = new A.Level3ParagraphProperties()
            {
                LeftMargin = 914400, Alignment = A.TextAlignmentTypeValues.Left, RightToLeft = false, EastAsianLineBreak = false, FontAlignment = A.TextFontAlignmentValues.Baseline, Height = false
            };

            A.SpaceBefore    spaceBefore3    = new A.SpaceBefore();
            A.SpacingPercent spacingPercent5 = new A.SpacingPercent()
            {
                Val = 0
            };

            spaceBefore3.Append(spacingPercent5);

            A.SpaceAfter     spaceAfter3     = new A.SpaceAfter();
            A.SpacingPercent spacingPercent6 = new A.SpacingPercent()
            {
                Val = 0
            };

            spaceAfter3.Append(spacingPercent6);

            A.DefaultRunProperties defaultRunProperties4 = new A.DefaultRunProperties()
            {
                FontSize = 2400, Kerning = 1200
            };

            A.SolidFill   solidFill3   = new A.SolidFill();
            A.SchemeColor schemeColor3 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.Text1
            };

            solidFill3.Append(schemeColor3);
            A.LatinFont latinFont3 = new A.LatinFont()
            {
                Typeface = "Arial", Panose = "020B0604020202020204", PitchFamily = 34, CharacterSet = 0
            };
            A.EastAsianFont eastAsianFont3 = new A.EastAsianFont()
            {
                Typeface = "MS PGothic", Panose = "020B0600070205080204", PitchFamily = 34, CharacterSet = -128
            };
            A.ComplexScriptFont complexScriptFont3 = new A.ComplexScriptFont()
            {
                Typeface = "+mn-cs"
            };

            defaultRunProperties4.Append(solidFill3);
            defaultRunProperties4.Append(latinFont3);
            defaultRunProperties4.Append(eastAsianFont3);
            defaultRunProperties4.Append(complexScriptFont3);

            level3ParagraphProperties1.Append(spaceBefore3);
            level3ParagraphProperties1.Append(spaceAfter3);
            level3ParagraphProperties1.Append(defaultRunProperties4);

            A.Level4ParagraphProperties level4ParagraphProperties1 = new A.Level4ParagraphProperties()
            {
                LeftMargin = 1371600, Alignment = A.TextAlignmentTypeValues.Left, RightToLeft = false, EastAsianLineBreak = false, FontAlignment = A.TextFontAlignmentValues.Baseline, Height = false
            };

            A.SpaceBefore    spaceBefore4    = new A.SpaceBefore();
            A.SpacingPercent spacingPercent7 = new A.SpacingPercent()
            {
                Val = 0
            };

            spaceBefore4.Append(spacingPercent7);

            A.SpaceAfter     spaceAfter4     = new A.SpaceAfter();
            A.SpacingPercent spacingPercent8 = new A.SpacingPercent()
            {
                Val = 0
            };

            spaceAfter4.Append(spacingPercent8);

            A.DefaultRunProperties defaultRunProperties5 = new A.DefaultRunProperties()
            {
                FontSize = 2400, Kerning = 1200
            };

            A.SolidFill   solidFill4   = new A.SolidFill();
            A.SchemeColor schemeColor4 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.Text1
            };

            solidFill4.Append(schemeColor4);
            A.LatinFont latinFont4 = new A.LatinFont()
            {
                Typeface = "Arial", Panose = "020B0604020202020204", PitchFamily = 34, CharacterSet = 0
            };
            A.EastAsianFont eastAsianFont4 = new A.EastAsianFont()
            {
                Typeface = "MS PGothic", Panose = "020B0600070205080204", PitchFamily = 34, CharacterSet = -128
            };
            A.ComplexScriptFont complexScriptFont4 = new A.ComplexScriptFont()
            {
                Typeface = "+mn-cs"
            };

            defaultRunProperties5.Append(solidFill4);
            defaultRunProperties5.Append(latinFont4);
            defaultRunProperties5.Append(eastAsianFont4);
            defaultRunProperties5.Append(complexScriptFont4);

            level4ParagraphProperties1.Append(spaceBefore4);
            level4ParagraphProperties1.Append(spaceAfter4);
            level4ParagraphProperties1.Append(defaultRunProperties5);

            A.Level5ParagraphProperties level5ParagraphProperties1 = new A.Level5ParagraphProperties()
            {
                LeftMargin = 1828800, Alignment = A.TextAlignmentTypeValues.Left, RightToLeft = false, EastAsianLineBreak = false, FontAlignment = A.TextFontAlignmentValues.Baseline, Height = false
            };

            A.SpaceBefore    spaceBefore5    = new A.SpaceBefore();
            A.SpacingPercent spacingPercent9 = new A.SpacingPercent()
            {
                Val = 0
            };

            spaceBefore5.Append(spacingPercent9);

            A.SpaceAfter     spaceAfter5      = new A.SpaceAfter();
            A.SpacingPercent spacingPercent10 = new A.SpacingPercent()
            {
                Val = 0
            };

            spaceAfter5.Append(spacingPercent10);

            A.DefaultRunProperties defaultRunProperties6 = new A.DefaultRunProperties()
            {
                FontSize = 2400, Kerning = 1200
            };

            A.SolidFill   solidFill5   = new A.SolidFill();
            A.SchemeColor schemeColor5 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.Text1
            };

            solidFill5.Append(schemeColor5);
            A.LatinFont latinFont5 = new A.LatinFont()
            {
                Typeface = "Arial", Panose = "020B0604020202020204", PitchFamily = 34, CharacterSet = 0
            };
            A.EastAsianFont eastAsianFont5 = new A.EastAsianFont()
            {
                Typeface = "MS PGothic", Panose = "020B0600070205080204", PitchFamily = 34, CharacterSet = -128
            };
            A.ComplexScriptFont complexScriptFont5 = new A.ComplexScriptFont()
            {
                Typeface = "+mn-cs"
            };

            defaultRunProperties6.Append(solidFill5);
            defaultRunProperties6.Append(latinFont5);
            defaultRunProperties6.Append(eastAsianFont5);
            defaultRunProperties6.Append(complexScriptFont5);

            level5ParagraphProperties1.Append(spaceBefore5);
            level5ParagraphProperties1.Append(spaceAfter5);
            level5ParagraphProperties1.Append(defaultRunProperties6);

            A.Level6ParagraphProperties level6ParagraphProperties1 = new A.Level6ParagraphProperties()
            {
                LeftMargin = 2286000, Alignment = A.TextAlignmentTypeValues.Left, DefaultTabSize = 914400, RightToLeft = false, EastAsianLineBreak = true, LatinLineBreak = false, Height = true
            };

            A.DefaultRunProperties defaultRunProperties7 = new A.DefaultRunProperties()
            {
                FontSize = 2400, Kerning = 1200
            };

            A.SolidFill   solidFill6   = new A.SolidFill();
            A.SchemeColor schemeColor6 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.Text1
            };

            solidFill6.Append(schemeColor6);
            A.LatinFont latinFont6 = new A.LatinFont()
            {
                Typeface = "Arial", Panose = "020B0604020202020204", PitchFamily = 34, CharacterSet = 0
            };
            A.EastAsianFont eastAsianFont6 = new A.EastAsianFont()
            {
                Typeface = "MS PGothic", Panose = "020B0600070205080204", PitchFamily = 34, CharacterSet = -128
            };
            A.ComplexScriptFont complexScriptFont6 = new A.ComplexScriptFont()
            {
                Typeface = "+mn-cs"
            };

            defaultRunProperties7.Append(solidFill6);
            defaultRunProperties7.Append(latinFont6);
            defaultRunProperties7.Append(eastAsianFont6);
            defaultRunProperties7.Append(complexScriptFont6);

            level6ParagraphProperties1.Append(defaultRunProperties7);

            A.Level7ParagraphProperties level7ParagraphProperties1 = new A.Level7ParagraphProperties()
            {
                LeftMargin = 2743200, Alignment = A.TextAlignmentTypeValues.Left, DefaultTabSize = 914400, RightToLeft = false, EastAsianLineBreak = true, LatinLineBreak = false, Height = true
            };

            A.DefaultRunProperties defaultRunProperties8 = new A.DefaultRunProperties()
            {
                FontSize = 2400, Kerning = 1200
            };

            A.SolidFill   solidFill7   = new A.SolidFill();
            A.SchemeColor schemeColor7 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.Text1
            };

            solidFill7.Append(schemeColor7);
            A.LatinFont latinFont7 = new A.LatinFont()
            {
                Typeface = "Arial", Panose = "020B0604020202020204", PitchFamily = 34, CharacterSet = 0
            };
            A.EastAsianFont eastAsianFont7 = new A.EastAsianFont()
            {
                Typeface = "MS PGothic", Panose = "020B0600070205080204", PitchFamily = 34, CharacterSet = -128
            };
            A.ComplexScriptFont complexScriptFont7 = new A.ComplexScriptFont()
            {
                Typeface = "+mn-cs"
            };

            defaultRunProperties8.Append(solidFill7);
            defaultRunProperties8.Append(latinFont7);
            defaultRunProperties8.Append(eastAsianFont7);
            defaultRunProperties8.Append(complexScriptFont7);

            level7ParagraphProperties1.Append(defaultRunProperties8);

            A.Level8ParagraphProperties level8ParagraphProperties1 = new A.Level8ParagraphProperties()
            {
                LeftMargin = 3200400, Alignment = A.TextAlignmentTypeValues.Left, DefaultTabSize = 914400, RightToLeft = false, EastAsianLineBreak = true, LatinLineBreak = false, Height = true
            };

            A.DefaultRunProperties defaultRunProperties9 = new A.DefaultRunProperties()
            {
                FontSize = 2400, Kerning = 1200
            };

            A.SolidFill   solidFill8   = new A.SolidFill();
            A.SchemeColor schemeColor8 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.Text1
            };

            solidFill8.Append(schemeColor8);
            A.LatinFont latinFont8 = new A.LatinFont()
            {
                Typeface = "Arial", Panose = "020B0604020202020204", PitchFamily = 34, CharacterSet = 0
            };
            A.EastAsianFont eastAsianFont8 = new A.EastAsianFont()
            {
                Typeface = "MS PGothic", Panose = "020B0600070205080204", PitchFamily = 34, CharacterSet = -128
            };
            A.ComplexScriptFont complexScriptFont8 = new A.ComplexScriptFont()
            {
                Typeface = "+mn-cs"
            };

            defaultRunProperties9.Append(solidFill8);
            defaultRunProperties9.Append(latinFont8);
            defaultRunProperties9.Append(eastAsianFont8);
            defaultRunProperties9.Append(complexScriptFont8);

            level8ParagraphProperties1.Append(defaultRunProperties9);

            A.Level9ParagraphProperties level9ParagraphProperties1 = new A.Level9ParagraphProperties()
            {
                LeftMargin = 3657600, Alignment = A.TextAlignmentTypeValues.Left, DefaultTabSize = 914400, RightToLeft = false, EastAsianLineBreak = true, LatinLineBreak = false, Height = true
            };

            A.DefaultRunProperties defaultRunProperties10 = new A.DefaultRunProperties()
            {
                FontSize = 2400, Kerning = 1200
            };

            A.SolidFill   solidFill9   = new A.SolidFill();
            A.SchemeColor schemeColor9 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.Text1
            };

            solidFill9.Append(schemeColor9);
            A.LatinFont latinFont9 = new A.LatinFont()
            {
                Typeface = "Arial", Panose = "020B0604020202020204", PitchFamily = 34, CharacterSet = 0
            };
            A.EastAsianFont eastAsianFont9 = new A.EastAsianFont()
            {
                Typeface = "MS PGothic", Panose = "020B0600070205080204", PitchFamily = 34, CharacterSet = -128
            };
            A.ComplexScriptFont complexScriptFont9 = new A.ComplexScriptFont()
            {
                Typeface = "+mn-cs"
            };

            defaultRunProperties10.Append(solidFill9);
            defaultRunProperties10.Append(latinFont9);
            defaultRunProperties10.Append(eastAsianFont9);
            defaultRunProperties10.Append(complexScriptFont9);

            level9ParagraphProperties1.Append(defaultRunProperties10);

            defaultTextStyle1.Append(defaultParagraphProperties1);
            defaultTextStyle1.Append(level1ParagraphProperties1);
            defaultTextStyle1.Append(level2ParagraphProperties1);
            defaultTextStyle1.Append(level3ParagraphProperties1);
            defaultTextStyle1.Append(level4ParagraphProperties1);
            defaultTextStyle1.Append(level5ParagraphProperties1);
            defaultTextStyle1.Append(level6ParagraphProperties1);
            defaultTextStyle1.Append(level7ParagraphProperties1);
            defaultTextStyle1.Append(level8ParagraphProperties1);
            defaultTextStyle1.Append(level9ParagraphProperties1);

            PresentationExtensionList presentationExtensionList1 = new PresentationExtensionList();

            PresentationExtension presentationExtension1 = new PresentationExtension()
            {
                Uri = "{EFAFB233-063F-42B5-8137-9DF3F51BA10A}"
            };

            P15.SlideGuideList slideGuideList1 = new P15.SlideGuideList();
            slideGuideList1.AddNamespaceDeclaration("p15", "http://schemas.microsoft.com/office/powerpoint/2012/main");

            P15.ExtendedGuide extendedGuide1 = new P15.ExtendedGuide()
            {
                Id = (UInt32Value)1U, Orientation = DirectionValues.Horizontal, Position = 240
            };

            P15.ColorType      colorType1        = new P15.ColorType();
            A.RgbColorModelHex rgbColorModelHex1 = new A.RgbColorModelHex()
            {
                Val = "A4A3A4"
            };

            colorType1.Append(rgbColorModelHex1);

            extendedGuide1.Append(colorType1);

            P15.ExtendedGuide extendedGuide2 = new P15.ExtendedGuide()
            {
                Id = (UInt32Value)2U, Orientation = DirectionValues.Horizontal, Position = 3648, IsUserDrawn = true
            };

            P15.ColorType      colorType2        = new P15.ColorType();
            A.RgbColorModelHex rgbColorModelHex2 = new A.RgbColorModelHex()
            {
                Val = "A4A3A4"
            };

            colorType2.Append(rgbColorModelHex2);

            extendedGuide2.Append(colorType2);

            P15.ExtendedGuide extendedGuide3 = new P15.ExtendedGuide()
            {
                Id = (UInt32Value)4U, Position = 2736, IsUserDrawn = true
            };

            P15.ColorType      colorType3        = new P15.ColorType();
            A.RgbColorModelHex rgbColorModelHex3 = new A.RgbColorModelHex()
            {
                Val = "A4A3A4"
            };

            colorType3.Append(rgbColorModelHex3);

            extendedGuide3.Append(colorType3);

            P15.ExtendedGuide extendedGuide4 = new P15.ExtendedGuide()
            {
                Id = (UInt32Value)5U, Position = 5904
            };

            P15.ColorType      colorType4        = new P15.ColorType();
            A.RgbColorModelHex rgbColorModelHex4 = new A.RgbColorModelHex()
            {
                Val = "A4A3A4"
            };

            colorType4.Append(rgbColorModelHex4);

            extendedGuide4.Append(colorType4);

            P15.ExtendedGuide extendedGuide5 = new P15.ExtendedGuide()
            {
                Id = (UInt32Value)6U, Position = 336
            };

            P15.ColorType      colorType5        = new P15.ColorType();
            A.RgbColorModelHex rgbColorModelHex5 = new A.RgbColorModelHex()
            {
                Val = "A4A3A4"
            };

            colorType5.Append(rgbColorModelHex5);

            extendedGuide5.Append(colorType5);

            P15.ExtendedGuide extendedGuide6 = new P15.ExtendedGuide()
            {
                Id = (UInt32Value)7U, Orientation = DirectionValues.Horizontal, IsUserDrawn = true
            };

            P15.ColorType      colorType6        = new P15.ColorType();
            A.RgbColorModelHex rgbColorModelHex6 = new A.RgbColorModelHex()
            {
                Val = "A4A3A4"
            };

            colorType6.Append(rgbColorModelHex6);

            extendedGuide6.Append(colorType6);

            P15.ExtendedGuide extendedGuide7 = new P15.ExtendedGuide()
            {
                Id = (UInt32Value)8U, Orientation = DirectionValues.Horizontal, Position = 1152, IsUserDrawn = true
            };

            P15.ColorType      colorType7        = new P15.ColorType();
            A.RgbColorModelHex rgbColorModelHex7 = new A.RgbColorModelHex()
            {
                Val = "A4A3A4"
            };

            colorType7.Append(rgbColorModelHex7);

            extendedGuide7.Append(colorType7);

            P15.ExtendedGuide extendedGuide8 = new P15.ExtendedGuide()
            {
                Id = (UInt32Value)9U, Orientation = DirectionValues.Horizontal, Position = 1200, IsUserDrawn = true
            };

            P15.ColorType      colorType8        = new P15.ColorType();
            A.RgbColorModelHex rgbColorModelHex8 = new A.RgbColorModelHex()
            {
                Val = "A4A3A4"
            };

            colorType8.Append(rgbColorModelHex8);

            extendedGuide8.Append(colorType8);

            P15.ExtendedGuide extendedGuide9 = new P15.ExtendedGuide()
            {
                Id = (UInt32Value)10U, Position = 2784, IsUserDrawn = true
            };

            P15.ColorType      colorType9        = new P15.ColorType();
            A.RgbColorModelHex rgbColorModelHex9 = new A.RgbColorModelHex()
            {
                Val = "A4A3A4"
            };

            colorType9.Append(rgbColorModelHex9);

            extendedGuide9.Append(colorType9);

            P15.ExtendedGuide extendedGuide10 = new P15.ExtendedGuide()
            {
                Id = (UInt32Value)12U, Orientation = DirectionValues.Horizontal, Position = 2448, IsUserDrawn = true
            };

            P15.ColorType      colorType10        = new P15.ColorType();
            A.RgbColorModelHex rgbColorModelHex10 = new A.RgbColorModelHex()
            {
                Val = "A4A3A4"
            };

            colorType10.Append(rgbColorModelHex10);

            extendedGuide10.Append(colorType10);

            P15.ExtendedGuide extendedGuide11 = new P15.ExtendedGuide()
            {
                Id = (UInt32Value)13U, Orientation = DirectionValues.Horizontal, Position = 2496, IsUserDrawn = true
            };

            P15.ColorType      colorType11        = new P15.ColorType();
            A.RgbColorModelHex rgbColorModelHex11 = new A.RgbColorModelHex()
            {
                Val = "A4A3A4"
            };

            colorType11.Append(rgbColorModelHex11);

            extendedGuide11.Append(colorType11);

            P15.ExtendedGuide extendedGuide12 = new P15.ExtendedGuide()
            {
                Id = (UInt32Value)14U, Position = 1872, IsUserDrawn = true
            };

            P15.ColorType      colorType12        = new P15.ColorType();
            A.RgbColorModelHex rgbColorModelHex12 = new A.RgbColorModelHex()
            {
                Val = "A4A3A4"
            };

            colorType12.Append(rgbColorModelHex12);

            extendedGuide12.Append(colorType12);

            P15.ExtendedGuide extendedGuide13 = new P15.ExtendedGuide()
            {
                Id = (UInt32Value)15U, Position = 2688, IsUserDrawn = true
            };

            P15.ColorType      colorType13        = new P15.ColorType();
            A.RgbColorModelHex rgbColorModelHex13 = new A.RgbColorModelHex()
            {
                Val = "A4A3A4"
            };

            colorType13.Append(rgbColorModelHex13);

            extendedGuide13.Append(colorType13);

            P15.ExtendedGuide extendedGuide14 = new P15.ExtendedGuide()
            {
                Id = (UInt32Value)16U, Orientation = DirectionValues.Horizontal, Position = 288, IsUserDrawn = true
            };

            P15.ColorType      colorType14        = new P15.ColorType();
            A.RgbColorModelHex rgbColorModelHex14 = new A.RgbColorModelHex()
            {
                Val = "A4A3A4"
            };

            colorType14.Append(rgbColorModelHex14);

            extendedGuide14.Append(colorType14);

            P15.ExtendedGuide extendedGuide15 = new P15.ExtendedGuide()
            {
                Id = (UInt32Value)17U, Orientation = DirectionValues.Horizontal, Position = 1104, IsUserDrawn = true
            };

            P15.ColorType      colorType15        = new P15.ColorType();
            A.RgbColorModelHex rgbColorModelHex15 = new A.RgbColorModelHex()
            {
                Val = "A4A3A4"
            };

            colorType15.Append(rgbColorModelHex15);

            extendedGuide15.Append(colorType15);

            slideGuideList1.Append(extendedGuide1);
            slideGuideList1.Append(extendedGuide2);
            slideGuideList1.Append(extendedGuide3);
            slideGuideList1.Append(extendedGuide4);
            slideGuideList1.Append(extendedGuide5);
            slideGuideList1.Append(extendedGuide6);
            slideGuideList1.Append(extendedGuide7);
            slideGuideList1.Append(extendedGuide8);
            slideGuideList1.Append(extendedGuide9);
            slideGuideList1.Append(extendedGuide10);
            slideGuideList1.Append(extendedGuide11);
            slideGuideList1.Append(extendedGuide12);
            slideGuideList1.Append(extendedGuide13);
            slideGuideList1.Append(extendedGuide14);
            slideGuideList1.Append(extendedGuide15);

            presentationExtension1.Append(slideGuideList1);

            PresentationExtension presentationExtension2 = new PresentationExtension()
            {
                Uri = "{2D200454-40CA-4A62-9FC3-DE9A4176ACB9}"
            };

            P15.NotesGuideList notesGuideList1 = new P15.NotesGuideList();
            notesGuideList1.AddNamespaceDeclaration("p15", "http://schemas.microsoft.com/office/powerpoint/2012/main");

            P15.ExtendedGuide extendedGuide16 = new P15.ExtendedGuide()
            {
                Id = (UInt32Value)1U, Orientation = DirectionValues.Horizontal, Position = 3110, IsUserDrawn = true
            };

            P15.ColorType      colorType16        = new P15.ColorType();
            A.RgbColorModelHex rgbColorModelHex16 = new A.RgbColorModelHex()
            {
                Val = "A4A3A4"
            };

            colorType16.Append(rgbColorModelHex16);

            extendedGuide16.Append(colorType16);

            P15.ExtendedGuide extendedGuide17 = new P15.ExtendedGuide()
            {
                Id = (UInt32Value)2U, Position = 2140, IsUserDrawn = true
            };

            P15.ColorType      colorType17        = new P15.ColorType();
            A.RgbColorModelHex rgbColorModelHex17 = new A.RgbColorModelHex()
            {
                Val = "A4A3A4"
            };

            colorType17.Append(rgbColorModelHex17);

            extendedGuide17.Append(colorType17);

            notesGuideList1.Append(extendedGuide16);
            notesGuideList1.Append(extendedGuide17);

            presentationExtension2.Append(notesGuideList1);

            presentationExtensionList1.Append(presentationExtension1);
            presentationExtensionList1.Append(presentationExtension2);

            presentation1.Append(slideMasterIdList1);
            presentation1.Append(notesMasterIdList1);
            presentation1.Append(handoutMasterIdList1);
            presentation1.Append(slideIdList1);
            presentation1.Append(slideSize1);
            presentation1.Append(notesSize1);
            presentation1.Append(defaultTextStyle1);
            presentation1.Append(presentationExtensionList1);

            presentationPart1.Presentation = presentation1;
        }
Ejemplo n.º 26
0
        private static void GeneratePartContent(ThemePart themePart1)
        {
            A.Theme theme1 = new A.Theme()
            {
                Name = "Office テーマ"
            };
            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 rgbColorModelHex1 = new A.RgbColorModelHex()
            {
                Val = "44546A"
            };

            dark2Color1.Append(rgbColorModelHex1);

            A.Light2Color      light2Color1      = new A.Light2Color();
            A.RgbColorModelHex rgbColorModelHex2 = new A.RgbColorModelHex()
            {
                Val = "E7E6E6"
            };

            light2Color1.Append(rgbColorModelHex2);

            A.Accent1Color     accent1Color1     = new A.Accent1Color();
            A.RgbColorModelHex rgbColorModelHex3 = new A.RgbColorModelHex()
            {
                Val = "4472C4"
            };

            accent1Color1.Append(rgbColorModelHex3);

            A.Accent2Color     accent2Color1     = new A.Accent2Color();
            A.RgbColorModelHex rgbColorModelHex4 = new A.RgbColorModelHex()
            {
                Val = "ED7D31"
            };

            accent2Color1.Append(rgbColorModelHex4);

            A.Accent3Color     accent3Color1     = new A.Accent3Color();
            A.RgbColorModelHex rgbColorModelHex5 = new A.RgbColorModelHex()
            {
                Val = "A5A5A5"
            };

            accent3Color1.Append(rgbColorModelHex5);

            A.Accent4Color     accent4Color1     = new A.Accent4Color();
            A.RgbColorModelHex rgbColorModelHex6 = new A.RgbColorModelHex()
            {
                Val = "FFC000"
            };

            accent4Color1.Append(rgbColorModelHex6);

            A.Accent5Color     accent5Color1     = new A.Accent5Color();
            A.RgbColorModelHex rgbColorModelHex7 = new A.RgbColorModelHex()
            {
                Val = "5B9BD5"
            };

            accent5Color1.Append(rgbColorModelHex7);

            A.Accent6Color     accent6Color1     = new A.Accent6Color();
            A.RgbColorModelHex rgbColorModelHex8 = new A.RgbColorModelHex()
            {
                Val = "70AD47"
            };

            accent6Color1.Append(rgbColorModelHex8);

            A.Hyperlink        hyperlink1        = new A.Hyperlink();
            A.RgbColorModelHex rgbColorModelHex9 = new A.RgbColorModelHex()
            {
                Val = "0563C1"
            };

            hyperlink1.Append(rgbColorModelHex9);

            A.FollowedHyperlinkColor followedHyperlinkColor1 = new A.FollowedHyperlinkColor();
            A.RgbColorModelHex       rgbColorModelHex10      = new A.RgbColorModelHex()
            {
                Val = "954F72"
            };

            followedHyperlinkColor1.Append(rgbColorModelHex10);

            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 fontScheme1 = new A.FontScheme()
            {
                Name = "Office テーマ"
            };

            A.MajorFont majorFont1  = new A.MajorFont();
            A.LatinFont latinFont20 = new A.LatinFont()
            {
                Typeface = "Calibri Light", Panose = "020F0302020204030204"
            };
            A.EastAsianFont eastAsianFont20 = new A.EastAsianFont()
            {
                Typeface = ""
            };
            A.ComplexScriptFont complexScriptFont20 = new A.ComplexScriptFont()
            {
                Typeface = ""
            };
            A.SupplementalFont supplementalFont1 = new A.SupplementalFont()
            {
                Script = "Jpan", Typeface = "游ゴシック Light"
            };
            A.SupplementalFont supplementalFont2 = new A.SupplementalFont()
            {
                Script = "Hang", Typeface = "맑은 고딕"
            };
            A.SupplementalFont supplementalFont3 = new A.SupplementalFont()
            {
                Script = "Hans", Typeface = "等线 Light"
            };
            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 = "Angsana New"
            };
            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"
            };
            A.SupplementalFont supplementalFont30 = new A.SupplementalFont()
            {
                Script = "Geor", Typeface = "Sylfaen"
            };

            majorFont1.Append(latinFont20);
            majorFont1.Append(eastAsianFont20);
            majorFont1.Append(complexScriptFont20);
            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);
            majorFont1.Append(supplementalFont30);

            A.MinorFont minorFont1  = new A.MinorFont();
            A.LatinFont latinFont21 = new A.LatinFont()
            {
                Typeface = "Calibri", Panose = "020F0502020204030204"
            };
            A.EastAsianFont eastAsianFont21 = new A.EastAsianFont()
            {
                Typeface = ""
            };
            A.ComplexScriptFont complexScriptFont21 = new A.ComplexScriptFont()
            {
                Typeface = ""
            };
            A.SupplementalFont supplementalFont31 = new A.SupplementalFont()
            {
                Script = "Jpan", Typeface = "游ゴシック"
            };
            A.SupplementalFont supplementalFont32 = new A.SupplementalFont()
            {
                Script = "Hang", Typeface = "맑은 고딕"
            };
            A.SupplementalFont supplementalFont33 = new A.SupplementalFont()
            {
                Script = "Hans", Typeface = "等线"
            };
            A.SupplementalFont supplementalFont34 = new A.SupplementalFont()
            {
                Script = "Hant", Typeface = "新細明體"
            };
            A.SupplementalFont supplementalFont35 = new A.SupplementalFont()
            {
                Script = "Arab", Typeface = "Arial"
            };
            A.SupplementalFont supplementalFont36 = new A.SupplementalFont()
            {
                Script = "Hebr", Typeface = "Arial"
            };
            A.SupplementalFont supplementalFont37 = new A.SupplementalFont()
            {
                Script = "Thai", Typeface = "Cordia New"
            };
            A.SupplementalFont supplementalFont38 = new A.SupplementalFont()
            {
                Script = "Ethi", Typeface = "Nyala"
            };
            A.SupplementalFont supplementalFont39 = new A.SupplementalFont()
            {
                Script = "Beng", Typeface = "Vrinda"
            };
            A.SupplementalFont supplementalFont40 = new A.SupplementalFont()
            {
                Script = "Gujr", Typeface = "Shruti"
            };
            A.SupplementalFont supplementalFont41 = new A.SupplementalFont()
            {
                Script = "Khmr", Typeface = "DaunPenh"
            };
            A.SupplementalFont supplementalFont42 = new A.SupplementalFont()
            {
                Script = "Knda", Typeface = "Tunga"
            };
            A.SupplementalFont supplementalFont43 = new A.SupplementalFont()
            {
                Script = "Guru", Typeface = "Raavi"
            };
            A.SupplementalFont supplementalFont44 = new A.SupplementalFont()
            {
                Script = "Cans", Typeface = "Euphemia"
            };
            A.SupplementalFont supplementalFont45 = new A.SupplementalFont()
            {
                Script = "Cher", Typeface = "Plantagenet Cherokee"
            };
            A.SupplementalFont supplementalFont46 = new A.SupplementalFont()
            {
                Script = "Yiii", Typeface = "Microsoft Yi Baiti"
            };
            A.SupplementalFont supplementalFont47 = new A.SupplementalFont()
            {
                Script = "Tibt", Typeface = "Microsoft Himalaya"
            };
            A.SupplementalFont supplementalFont48 = new A.SupplementalFont()
            {
                Script = "Thaa", Typeface = "MV Boli"
            };
            A.SupplementalFont supplementalFont49 = new A.SupplementalFont()
            {
                Script = "Deva", Typeface = "Mangal"
            };
            A.SupplementalFont supplementalFont50 = new A.SupplementalFont()
            {
                Script = "Telu", Typeface = "Gautami"
            };
            A.SupplementalFont supplementalFont51 = new A.SupplementalFont()
            {
                Script = "Taml", Typeface = "Latha"
            };
            A.SupplementalFont supplementalFont52 = new A.SupplementalFont()
            {
                Script = "Syrc", Typeface = "Estrangelo Edessa"
            };
            A.SupplementalFont supplementalFont53 = new A.SupplementalFont()
            {
                Script = "Orya", Typeface = "Kalinga"
            };
            A.SupplementalFont supplementalFont54 = new A.SupplementalFont()
            {
                Script = "Mlym", Typeface = "Kartika"
            };
            A.SupplementalFont supplementalFont55 = new A.SupplementalFont()
            {
                Script = "Laoo", Typeface = "DokChampa"
            };
            A.SupplementalFont supplementalFont56 = new A.SupplementalFont()
            {
                Script = "Sinh", Typeface = "Iskoola Pota"
            };
            A.SupplementalFont supplementalFont57 = new A.SupplementalFont()
            {
                Script = "Mong", Typeface = "Mongolian Baiti"
            };
            A.SupplementalFont supplementalFont58 = new A.SupplementalFont()
            {
                Script = "Viet", Typeface = "Arial"
            };
            A.SupplementalFont supplementalFont59 = new A.SupplementalFont()
            {
                Script = "Uigh", Typeface = "Microsoft Uighur"
            };
            A.SupplementalFont supplementalFont60 = new A.SupplementalFont()
            {
                Script = "Geor", Typeface = "Sylfaen"
            };

            minorFont1.Append(latinFont21);
            minorFont1.Append(eastAsianFont21);
            minorFont1.Append(complexScriptFont21);
            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);
            minorFont1.Append(supplementalFont59);
            minorFont1.Append(supplementalFont60);

            fontScheme1.Append(majorFont1);
            fontScheme1.Append(minorFont1);

            A.FormatScheme formatScheme1 = new A.FormatScheme()
            {
                Name = "Office テーマ"
            };

            A.FillStyleList fillStyleList1 = new A.FillStyleList();

            A.SolidFill   solidFill32   = new A.SolidFill();
            A.SchemeColor schemeColor33 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.PhColor
            };

            solidFill32.Append(schemeColor33);

            A.GradientFill gradientFill1 = new A.GradientFill()
            {
                RotateWithShape = true
            };

            A.GradientStopList gradientStopList1 = new A.GradientStopList();

            A.GradientStop gradientStop1 = new A.GradientStop()
            {
                Position = 0
            };

            A.SchemeColor schemeColor34 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.PhColor
            };
            A.LuminanceModulation luminanceModulation1 = new A.LuminanceModulation()
            {
                Val = 110000
            };
            A.SaturationModulation saturationModulation1 = new A.SaturationModulation()
            {
                Val = 105000
            };
            A.Tint tint12 = new A.Tint()
            {
                Val = 67000
            };

            schemeColor34.Append(luminanceModulation1);
            schemeColor34.Append(saturationModulation1);
            schemeColor34.Append(tint12);

            gradientStop1.Append(schemeColor34);

            A.GradientStop gradientStop2 = new A.GradientStop()
            {
                Position = 50000
            };

            A.SchemeColor schemeColor35 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.PhColor
            };
            A.LuminanceModulation luminanceModulation2 = new A.LuminanceModulation()
            {
                Val = 105000
            };
            A.SaturationModulation saturationModulation2 = new A.SaturationModulation()
            {
                Val = 103000
            };
            A.Tint tint13 = new A.Tint()
            {
                Val = 73000
            };

            schemeColor35.Append(luminanceModulation2);
            schemeColor35.Append(saturationModulation2);
            schemeColor35.Append(tint13);

            gradientStop2.Append(schemeColor35);

            A.GradientStop gradientStop3 = new A.GradientStop()
            {
                Position = 100000
            };

            A.SchemeColor schemeColor36 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.PhColor
            };
            A.LuminanceModulation luminanceModulation3 = new A.LuminanceModulation()
            {
                Val = 105000
            };
            A.SaturationModulation saturationModulation3 = new A.SaturationModulation()
            {
                Val = 109000
            };
            A.Tint tint14 = new A.Tint()
            {
                Val = 81000
            };

            schemeColor36.Append(luminanceModulation3);
            schemeColor36.Append(saturationModulation3);
            schemeColor36.Append(tint14);

            gradientStop3.Append(schemeColor36);

            gradientStopList1.Append(gradientStop1);
            gradientStopList1.Append(gradientStop2);
            gradientStopList1.Append(gradientStop3);
            A.LinearGradientFill linearGradientFill1 = new A.LinearGradientFill()
            {
                Angle = 5400000, Scaled = false
            };

            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 schemeColor37 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.PhColor
            };
            A.SaturationModulation saturationModulation4 = new A.SaturationModulation()
            {
                Val = 103000
            };
            A.LuminanceModulation luminanceModulation4 = new A.LuminanceModulation()
            {
                Val = 102000
            };
            A.Tint tint15 = new A.Tint()
            {
                Val = 94000
            };

            schemeColor37.Append(saturationModulation4);
            schemeColor37.Append(luminanceModulation4);
            schemeColor37.Append(tint15);

            gradientStop4.Append(schemeColor37);

            A.GradientStop gradientStop5 = new A.GradientStop()
            {
                Position = 50000
            };

            A.SchemeColor schemeColor38 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.PhColor
            };
            A.SaturationModulation saturationModulation5 = new A.SaturationModulation()
            {
                Val = 110000
            };
            A.LuminanceModulation luminanceModulation5 = new A.LuminanceModulation()
            {
                Val = 100000
            };
            A.Shade shade1 = new A.Shade()
            {
                Val = 100000
            };

            schemeColor38.Append(saturationModulation5);
            schemeColor38.Append(luminanceModulation5);
            schemeColor38.Append(shade1);

            gradientStop5.Append(schemeColor38);

            A.GradientStop gradientStop6 = new A.GradientStop()
            {
                Position = 100000
            };

            A.SchemeColor schemeColor39 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.PhColor
            };
            A.LuminanceModulation luminanceModulation6 = new A.LuminanceModulation()
            {
                Val = 99000
            };
            A.SaturationModulation saturationModulation6 = new A.SaturationModulation()
            {
                Val = 120000
            };
            A.Shade shade2 = new A.Shade()
            {
                Val = 78000
            };

            schemeColor39.Append(luminanceModulation6);
            schemeColor39.Append(saturationModulation6);
            schemeColor39.Append(shade2);

            gradientStop6.Append(schemeColor39);

            gradientStopList2.Append(gradientStop4);
            gradientStopList2.Append(gradientStop5);
            gradientStopList2.Append(gradientStop6);
            A.LinearGradientFill linearGradientFill2 = new A.LinearGradientFill()
            {
                Angle = 5400000, Scaled = false
            };

            gradientFill2.Append(gradientStopList2);
            gradientFill2.Append(linearGradientFill2);

            fillStyleList1.Append(solidFill32);
            fillStyleList1.Append(gradientFill1);
            fillStyleList1.Append(gradientFill2);

            A.LineStyleList lineStyleList1 = new A.LineStyleList();

            A.Outline outline1 = new A.Outline()
            {
                Width = 6350, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center
            };

            A.SolidFill   solidFill33   = new A.SolidFill();
            A.SchemeColor schemeColor40 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.PhColor
            };

            solidFill33.Append(schemeColor40);
            A.PresetDash presetDash1 = new A.PresetDash()
            {
                Val = A.PresetLineDashValues.Solid
            };
            A.Miter miter1 = new A.Miter()
            {
                Limit = 800000
            };

            outline1.Append(solidFill33);
            outline1.Append(presetDash1);
            outline1.Append(miter1);

            A.Outline outline2 = new A.Outline()
            {
                Width = 12700, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center
            };

            A.SolidFill   solidFill34   = new A.SolidFill();
            A.SchemeColor schemeColor41 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.PhColor
            };

            solidFill34.Append(schemeColor41);
            A.PresetDash presetDash2 = new A.PresetDash()
            {
                Val = A.PresetLineDashValues.Solid
            };
            A.Miter miter2 = new A.Miter()
            {
                Limit = 800000
            };

            outline2.Append(solidFill34);
            outline2.Append(presetDash2);
            outline2.Append(miter2);

            A.Outline outline3 = new A.Outline()
            {
                Width = 19050, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center
            };

            A.SolidFill   solidFill35   = new A.SolidFill();
            A.SchemeColor schemeColor42 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.PhColor
            };

            solidFill35.Append(schemeColor42);
            A.PresetDash presetDash3 = new A.PresetDash()
            {
                Val = A.PresetLineDashValues.Solid
            };
            A.Miter miter3 = new A.Miter()
            {
                Limit = 800000
            };

            outline3.Append(solidFill35);
            outline3.Append(presetDash3);
            outline3.Append(miter3);

            lineStyleList1.Append(outline1);
            lineStyleList1.Append(outline2);
            lineStyleList1.Append(outline3);

            A.EffectStyleList effectStyleList1 = new A.EffectStyleList();

            A.EffectStyle effectStyle1 = new A.EffectStyle();
            A.EffectList  effectList1  = new A.EffectList();

            effectStyle1.Append(effectList1);

            A.EffectStyle effectStyle2 = new A.EffectStyle();
            A.EffectList  effectList2  = new A.EffectList();

            effectStyle2.Append(effectList2);

            A.EffectStyle effectStyle3 = new A.EffectStyle();

            A.EffectList effectList3 = new A.EffectList();

            A.OuterShadow outerShadow1 = new A.OuterShadow()
            {
                BlurRadius = 57150L, Distance = 19050L, Direction = 5400000, Alignment = A.RectangleAlignmentValues.Center, RotateWithShape = false
            };

            A.RgbColorModelHex rgbColorModelHex11 = new A.RgbColorModelHex()
            {
                Val = "000000"
            };
            A.Alpha alpha1 = new A.Alpha()
            {
                Val = 63000
            };

            rgbColorModelHex11.Append(alpha1);

            outerShadow1.Append(rgbColorModelHex11);

            effectList3.Append(outerShadow1);

            effectStyle3.Append(effectList3);

            effectStyleList1.Append(effectStyle1);
            effectStyleList1.Append(effectStyle2);
            effectStyleList1.Append(effectStyle3);

            A.BackgroundFillStyleList backgroundFillStyleList1 = new A.BackgroundFillStyleList();

            A.SolidFill   solidFill36   = new A.SolidFill();
            A.SchemeColor schemeColor43 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.PhColor
            };

            solidFill36.Append(schemeColor43);

            A.SolidFill solidFill37 = new A.SolidFill();

            A.SchemeColor schemeColor44 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.PhColor
            };
            A.Tint tint16 = new A.Tint()
            {
                Val = 95000
            };
            A.SaturationModulation saturationModulation7 = new A.SaturationModulation()
            {
                Val = 170000
            };

            schemeColor44.Append(tint16);
            schemeColor44.Append(saturationModulation7);

            solidFill37.Append(schemeColor44);

            A.GradientFill gradientFill3 = new A.GradientFill()
            {
                RotateWithShape = true
            };

            A.GradientStopList gradientStopList3 = new A.GradientStopList();

            A.GradientStop gradientStop7 = new A.GradientStop()
            {
                Position = 0
            };

            A.SchemeColor schemeColor45 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.PhColor
            };
            A.Tint tint17 = new A.Tint()
            {
                Val = 93000
            };
            A.SaturationModulation saturationModulation8 = new A.SaturationModulation()
            {
                Val = 150000
            };
            A.Shade shade3 = new A.Shade()
            {
                Val = 98000
            };
            A.LuminanceModulation luminanceModulation7 = new A.LuminanceModulation()
            {
                Val = 102000
            };

            schemeColor45.Append(tint17);
            schemeColor45.Append(saturationModulation8);
            schemeColor45.Append(shade3);
            schemeColor45.Append(luminanceModulation7);

            gradientStop7.Append(schemeColor45);

            A.GradientStop gradientStop8 = new A.GradientStop()
            {
                Position = 50000
            };

            A.SchemeColor schemeColor46 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.PhColor
            };
            A.Tint tint18 = new A.Tint()
            {
                Val = 98000
            };
            A.SaturationModulation saturationModulation9 = new A.SaturationModulation()
            {
                Val = 130000
            };
            A.Shade shade4 = new A.Shade()
            {
                Val = 90000
            };
            A.LuminanceModulation luminanceModulation8 = new A.LuminanceModulation()
            {
                Val = 103000
            };

            schemeColor46.Append(tint18);
            schemeColor46.Append(saturationModulation9);
            schemeColor46.Append(shade4);
            schemeColor46.Append(luminanceModulation8);

            gradientStop8.Append(schemeColor46);

            A.GradientStop gradientStop9 = new A.GradientStop()
            {
                Position = 100000
            };

            A.SchemeColor schemeColor47 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.PhColor
            };
            A.Shade shade5 = new A.Shade()
            {
                Val = 63000
            };
            A.SaturationModulation saturationModulation10 = new A.SaturationModulation()
            {
                Val = 120000
            };

            schemeColor47.Append(shade5);
            schemeColor47.Append(saturationModulation10);

            gradientStop9.Append(schemeColor47);

            gradientStopList3.Append(gradientStop7);
            gradientStopList3.Append(gradientStop8);
            gradientStopList3.Append(gradientStop9);
            A.LinearGradientFill linearGradientFill3 = new A.LinearGradientFill()
            {
                Angle = 5400000, Scaled = false
            };

            gradientFill3.Append(gradientStopList3);
            gradientFill3.Append(linearGradientFill3);

            backgroundFillStyleList1.Append(solidFill36);
            backgroundFillStyleList1.Append(solidFill37);
            backgroundFillStyleList1.Append(gradientFill3);

            formatScheme1.Append(fillStyleList1);
            formatScheme1.Append(lineStyleList1);
            formatScheme1.Append(effectStyleList1);
            formatScheme1.Append(backgroundFillStyleList1);

            themeElements1.Append(colorScheme1);
            themeElements1.Append(fontScheme1);
            themeElements1.Append(formatScheme1);
            A.ObjectDefaults       objectDefaults1       = new A.ObjectDefaults();
            A.ExtraColorSchemeList extraColorSchemeList1 = new A.ExtraColorSchemeList();

            A.OfficeStyleSheetExtensionList officeStyleSheetExtensionList1 = new A.OfficeStyleSheetExtensionList();

            A.OfficeStyleSheetExtension officeStyleSheetExtension1 = new A.OfficeStyleSheetExtension()
            {
                Uri = "{05A4C25C-085E-4340-85A3-A5531E510DB2}"
            };

            Thm15.ThemeFamily themeFamily1 = new Thm15.ThemeFamily()
            {
                Name = "Office Theme", Id = "{62F939B6-93AF-4DB8-9C6B-D6C7DFDC589F}", Vid = "{4A3C46E8-61CC-4603-A589-7422A47A8E4A}"
            };
            themeFamily1.AddNamespaceDeclaration("thm15", "http://schemas.microsoft.com/office/thememl/2012/main");

            officeStyleSheetExtension1.Append(themeFamily1);

            officeStyleSheetExtensionList1.Append(officeStyleSheetExtension1);

            theme1.Append(themeElements1);
            theme1.Append(objectDefaults1);
            theme1.Append(extraColorSchemeList1);
            theme1.Append(officeStyleSheetExtensionList1);

            themePart1.Theme = theme1;
        }
        private void GenerateThemePartContent(ThemePart themePart)
        {
            var theme1 = new Theme {Name = "Office Theme"};
            theme1.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");

            var themeElements1 = new ThemeElements();

            var colorScheme1 = new ColorScheme {Name = "Office"};

            var dark1Color1 = new Dark1Color();
            var systemColor1 = new SystemColor
            {
                Val = SystemColorValues.WindowText,
                LastColor = Theme.Text1.Color.ToHex().Substring(2)
            };

            dark1Color1.AppendChild(systemColor1);

            var light1Color1 = new Light1Color();
            var systemColor2 = new SystemColor
            {
                Val = SystemColorValues.Window,
                LastColor = Theme.Background1.Color.ToHex().Substring(2)
            };

            light1Color1.AppendChild(systemColor2);

            var dark2Color1 = new Dark2Color();
            var rgbColorModelHex1 = new RgbColorModelHex {Val = Theme.Text2.Color.ToHex().Substring(2)};

            dark2Color1.AppendChild(rgbColorModelHex1);

            var light2Color1 = new Light2Color();
            var rgbColorModelHex2 = new RgbColorModelHex {Val = Theme.Background2.Color.ToHex().Substring(2)};

            light2Color1.AppendChild(rgbColorModelHex2);

            var accent1Color1 = new Accent1Color();
            var rgbColorModelHex3 = new RgbColorModelHex {Val = Theme.Accent1.Color.ToHex().Substring(2)};

            accent1Color1.AppendChild(rgbColorModelHex3);

            var accent2Color1 = new Accent2Color();
            var rgbColorModelHex4 = new RgbColorModelHex {Val = Theme.Accent2.Color.ToHex().Substring(2)};

            accent2Color1.AppendChild(rgbColorModelHex4);

            var accent3Color1 = new Accent3Color();
            var rgbColorModelHex5 = new RgbColorModelHex {Val = Theme.Accent3.Color.ToHex().Substring(2)};

            accent3Color1.AppendChild(rgbColorModelHex5);

            var accent4Color1 = new Accent4Color();
            var rgbColorModelHex6 = new RgbColorModelHex {Val = Theme.Accent4.Color.ToHex().Substring(2)};

            accent4Color1.AppendChild(rgbColorModelHex6);

            var accent5Color1 = new Accent5Color();
            var rgbColorModelHex7 = new RgbColorModelHex {Val = Theme.Accent5.Color.ToHex().Substring(2)};

            accent5Color1.AppendChild(rgbColorModelHex7);

            var accent6Color1 = new Accent6Color();
            var rgbColorModelHex8 = new RgbColorModelHex {Val = Theme.Accent6.Color.ToHex().Substring(2)};

            accent6Color1.AppendChild(rgbColorModelHex8);

            var hyperlink1 = new DocumentFormat.OpenXml.Drawing.Hyperlink();
            var rgbColorModelHex9 = new RgbColorModelHex {Val = Theme.Hyperlink.Color.ToHex().Substring(2)};

            hyperlink1.AppendChild(rgbColorModelHex9);

            var followedHyperlinkColor1 = new FollowedHyperlinkColor();
            var rgbColorModelHex10 = new RgbColorModelHex {Val = Theme.FollowedHyperlink.Color.ToHex().Substring(2)};

            followedHyperlinkColor1.AppendChild(rgbColorModelHex10);

            colorScheme1.AppendChild(dark1Color1);
            colorScheme1.AppendChild(light1Color1);
            colorScheme1.AppendChild(dark2Color1);
            colorScheme1.AppendChild(light2Color1);
            colorScheme1.AppendChild(accent1Color1);
            colorScheme1.AppendChild(accent2Color1);
            colorScheme1.AppendChild(accent3Color1);
            colorScheme1.AppendChild(accent4Color1);
            colorScheme1.AppendChild(accent5Color1);
            colorScheme1.AppendChild(accent6Color1);
            colorScheme1.AppendChild(hyperlink1);
            colorScheme1.AppendChild(followedHyperlinkColor1);

            var fontScheme2 = new FontScheme {Name = "Office"};

            var majorFont1 = new MajorFont();
            var latinFont1 = new LatinFont {Typeface = "Cambria"};
            var eastAsianFont1 = new EastAsianFont {Typeface = ""};
            var complexScriptFont1 = new ComplexScriptFont {Typeface = ""};
            var supplementalFont1 = new SupplementalFont {Script = "Jpan", Typeface = "MS Pゴシック"};
            var supplementalFont2 = new SupplementalFont {Script = "Hang", Typeface = "맑은 고딕"};
            var supplementalFont3 = new SupplementalFont {Script = "Hans", Typeface = "宋体"};
            var supplementalFont4 = new SupplementalFont {Script = "Hant", Typeface = "新細明體"};
            var supplementalFont5 = new SupplementalFont {Script = "Arab", Typeface = "Times New Roman"};
            var supplementalFont6 = new SupplementalFont {Script = "Hebr", Typeface = "Times New Roman"};
            var supplementalFont7 = new SupplementalFont {Script = "Thai", Typeface = "Tahoma"};
            var supplementalFont8 = new SupplementalFont {Script = "Ethi", Typeface = "Nyala"};
            var supplementalFont9 = new SupplementalFont {Script = "Beng", Typeface = "Vrinda"};
            var supplementalFont10 = new SupplementalFont {Script = "Gujr", Typeface = "Shruti"};
            var supplementalFont11 = new SupplementalFont {Script = "Khmr", Typeface = "MoolBoran"};
            var supplementalFont12 = new SupplementalFont {Script = "Knda", Typeface = "Tunga"};
            var supplementalFont13 = new SupplementalFont {Script = "Guru", Typeface = "Raavi"};
            var supplementalFont14 = new SupplementalFont {Script = "Cans", Typeface = "Euphemia"};
            var supplementalFont15 = new SupplementalFont {Script = "Cher", Typeface = "Plantagenet Cherokee"};
            var supplementalFont16 = new SupplementalFont {Script = "Yiii", Typeface = "Microsoft Yi Baiti"};
            var supplementalFont17 = new SupplementalFont {Script = "Tibt", Typeface = "Microsoft Himalaya"};
            var supplementalFont18 = new SupplementalFont {Script = "Thaa", Typeface = "MV Boli"};
            var supplementalFont19 = new SupplementalFont {Script = "Deva", Typeface = "Mangal"};
            var supplementalFont20 = new SupplementalFont {Script = "Telu", Typeface = "Gautami"};
            var supplementalFont21 = new SupplementalFont {Script = "Taml", Typeface = "Latha"};
            var supplementalFont22 = new SupplementalFont {Script = "Syrc", Typeface = "Estrangelo Edessa"};
            var supplementalFont23 = new SupplementalFont {Script = "Orya", Typeface = "Kalinga"};
            var supplementalFont24 = new SupplementalFont {Script = "Mlym", Typeface = "Kartika"};
            var supplementalFont25 = new SupplementalFont {Script = "Laoo", Typeface = "DokChampa"};
            var supplementalFont26 = new SupplementalFont {Script = "Sinh", Typeface = "Iskoola Pota"};
            var supplementalFont27 = new SupplementalFont {Script = "Mong", Typeface = "Mongolian Baiti"};
            var supplementalFont28 = new SupplementalFont {Script = "Viet", Typeface = "Times New Roman"};
            var supplementalFont29 = new SupplementalFont {Script = "Uigh", Typeface = "Microsoft Uighur"};

            majorFont1.AppendChild(latinFont1);
            majorFont1.AppendChild(eastAsianFont1);
            majorFont1.AppendChild(complexScriptFont1);
            majorFont1.AppendChild(supplementalFont1);
            majorFont1.AppendChild(supplementalFont2);
            majorFont1.AppendChild(supplementalFont3);
            majorFont1.AppendChild(supplementalFont4);
            majorFont1.AppendChild(supplementalFont5);
            majorFont1.AppendChild(supplementalFont6);
            majorFont1.AppendChild(supplementalFont7);
            majorFont1.AppendChild(supplementalFont8);
            majorFont1.AppendChild(supplementalFont9);
            majorFont1.AppendChild(supplementalFont10);
            majorFont1.AppendChild(supplementalFont11);
            majorFont1.AppendChild(supplementalFont12);
            majorFont1.AppendChild(supplementalFont13);
            majorFont1.AppendChild(supplementalFont14);
            majorFont1.AppendChild(supplementalFont15);
            majorFont1.AppendChild(supplementalFont16);
            majorFont1.AppendChild(supplementalFont17);
            majorFont1.AppendChild(supplementalFont18);
            majorFont1.AppendChild(supplementalFont19);
            majorFont1.AppendChild(supplementalFont20);
            majorFont1.AppendChild(supplementalFont21);
            majorFont1.AppendChild(supplementalFont22);
            majorFont1.AppendChild(supplementalFont23);
            majorFont1.AppendChild(supplementalFont24);
            majorFont1.AppendChild(supplementalFont25);
            majorFont1.AppendChild(supplementalFont26);
            majorFont1.AppendChild(supplementalFont27);
            majorFont1.AppendChild(supplementalFont28);
            majorFont1.AppendChild(supplementalFont29);

            var minorFont1 = new MinorFont();
            var latinFont2 = new LatinFont {Typeface = "Calibri"};
            var eastAsianFont2 = new EastAsianFont {Typeface = ""};
            var complexScriptFont2 = new ComplexScriptFont {Typeface = ""};
            var supplementalFont30 = new SupplementalFont {Script = "Jpan", Typeface = "MS Pゴシック"};
            var supplementalFont31 = new SupplementalFont {Script = "Hang", Typeface = "맑은 고딕"};
            var supplementalFont32 = new SupplementalFont {Script = "Hans", Typeface = "宋体"};
            var supplementalFont33 = new SupplementalFont {Script = "Hant", Typeface = "新細明體"};
            var supplementalFont34 = new SupplementalFont {Script = "Arab", Typeface = "Arial"};
            var supplementalFont35 = new SupplementalFont {Script = "Hebr", Typeface = "Arial"};
            var supplementalFont36 = new SupplementalFont {Script = "Thai", Typeface = "Tahoma"};
            var supplementalFont37 = new SupplementalFont {Script = "Ethi", Typeface = "Nyala"};
            var supplementalFont38 = new SupplementalFont {Script = "Beng", Typeface = "Vrinda"};
            var supplementalFont39 = new SupplementalFont {Script = "Gujr", Typeface = "Shruti"};
            var supplementalFont40 = new SupplementalFont {Script = "Khmr", Typeface = "DaunPenh"};
            var supplementalFont41 = new SupplementalFont {Script = "Knda", Typeface = "Tunga"};
            var supplementalFont42 = new SupplementalFont {Script = "Guru", Typeface = "Raavi"};
            var supplementalFont43 = new SupplementalFont {Script = "Cans", Typeface = "Euphemia"};
            var supplementalFont44 = new SupplementalFont {Script = "Cher", Typeface = "Plantagenet Cherokee"};
            var supplementalFont45 = new SupplementalFont {Script = "Yiii", Typeface = "Microsoft Yi Baiti"};
            var supplementalFont46 = new SupplementalFont {Script = "Tibt", Typeface = "Microsoft Himalaya"};
            var supplementalFont47 = new SupplementalFont {Script = "Thaa", Typeface = "MV Boli"};
            var supplementalFont48 = new SupplementalFont {Script = "Deva", Typeface = "Mangal"};
            var supplementalFont49 = new SupplementalFont {Script = "Telu", Typeface = "Gautami"};
            var supplementalFont50 = new SupplementalFont {Script = "Taml", Typeface = "Latha"};
            var supplementalFont51 = new SupplementalFont {Script = "Syrc", Typeface = "Estrangelo Edessa"};
            var supplementalFont52 = new SupplementalFont {Script = "Orya", Typeface = "Kalinga"};
            var supplementalFont53 = new SupplementalFont {Script = "Mlym", Typeface = "Kartika"};
            var supplementalFont54 = new SupplementalFont {Script = "Laoo", Typeface = "DokChampa"};
            var supplementalFont55 = new SupplementalFont {Script = "Sinh", Typeface = "Iskoola Pota"};
            var supplementalFont56 = new SupplementalFont {Script = "Mong", Typeface = "Mongolian Baiti"};
            var supplementalFont57 = new SupplementalFont {Script = "Viet", Typeface = "Arial"};
            var supplementalFont58 = new SupplementalFont {Script = "Uigh", Typeface = "Microsoft Uighur"};

            minorFont1.AppendChild(latinFont2);
            minorFont1.AppendChild(eastAsianFont2);
            minorFont1.AppendChild(complexScriptFont2);
            minorFont1.AppendChild(supplementalFont30);
            minorFont1.AppendChild(supplementalFont31);
            minorFont1.AppendChild(supplementalFont32);
            minorFont1.AppendChild(supplementalFont33);
            minorFont1.AppendChild(supplementalFont34);
            minorFont1.AppendChild(supplementalFont35);
            minorFont1.AppendChild(supplementalFont36);
            minorFont1.AppendChild(supplementalFont37);
            minorFont1.AppendChild(supplementalFont38);
            minorFont1.AppendChild(supplementalFont39);
            minorFont1.AppendChild(supplementalFont40);
            minorFont1.AppendChild(supplementalFont41);
            minorFont1.AppendChild(supplementalFont42);
            minorFont1.AppendChild(supplementalFont43);
            minorFont1.AppendChild(supplementalFont44);
            minorFont1.AppendChild(supplementalFont45);
            minorFont1.AppendChild(supplementalFont46);
            minorFont1.AppendChild(supplementalFont47);
            minorFont1.AppendChild(supplementalFont48);
            minorFont1.AppendChild(supplementalFont49);
            minorFont1.AppendChild(supplementalFont50);
            minorFont1.AppendChild(supplementalFont51);
            minorFont1.AppendChild(supplementalFont52);
            minorFont1.AppendChild(supplementalFont53);
            minorFont1.AppendChild(supplementalFont54);
            minorFont1.AppendChild(supplementalFont55);
            minorFont1.AppendChild(supplementalFont56);
            minorFont1.AppendChild(supplementalFont57);
            minorFont1.AppendChild(supplementalFont58);

            fontScheme2.AppendChild(majorFont1);
            fontScheme2.AppendChild(minorFont1);

            var formatScheme1 = new FormatScheme {Name = "Office"};

            var fillStyleList1 = new FillStyleList();

            var solidFill1 = new SolidFill();
            var schemeColor1 = new SchemeColor {Val = SchemeColorValues.PhColor};

            solidFill1.AppendChild(schemeColor1);

            var gradientFill1 = new GradientFill {RotateWithShape = true};

            var gradientStopList1 = new GradientStopList();

            var gradientStop1 = new GradientStop {Position = 0};

            var schemeColor2 = new SchemeColor {Val = SchemeColorValues.PhColor};
            var tint1 = new Tint {Val = 50000};
            var saturationModulation1 = new SaturationModulation {Val = 300000};

            schemeColor2.AppendChild(tint1);
            schemeColor2.AppendChild(saturationModulation1);

            gradientStop1.AppendChild(schemeColor2);

            var gradientStop2 = new GradientStop {Position = 35000};

            var schemeColor3 = new SchemeColor {Val = SchemeColorValues.PhColor};
            var tint2 = new Tint {Val = 37000};
            var saturationModulation2 = new SaturationModulation {Val = 300000};

            schemeColor3.AppendChild(tint2);
            schemeColor3.AppendChild(saturationModulation2);

            gradientStop2.AppendChild(schemeColor3);

            var gradientStop3 = new GradientStop {Position = 100000};

            var schemeColor4 = new SchemeColor {Val = SchemeColorValues.PhColor};
            var tint3 = new Tint {Val = 15000};
            var saturationModulation3 = new SaturationModulation {Val = 350000};

            schemeColor4.AppendChild(tint3);
            schemeColor4.AppendChild(saturationModulation3);

            gradientStop3.AppendChild(schemeColor4);

            gradientStopList1.AppendChild(gradientStop1);
            gradientStopList1.AppendChild(gradientStop2);
            gradientStopList1.AppendChild(gradientStop3);
            var linearGradientFill1 = new LinearGradientFill {Angle = 16200000, Scaled = true};

            gradientFill1.AppendChild(gradientStopList1);
            gradientFill1.AppendChild(linearGradientFill1);

            var gradientFill2 = new GradientFill {RotateWithShape = true};

            var gradientStopList2 = new GradientStopList();

            var gradientStop4 = new GradientStop {Position = 0};

            var schemeColor5 = new SchemeColor {Val = SchemeColorValues.PhColor};
            var shade1 = new Shade {Val = 51000};
            var saturationModulation4 = new SaturationModulation {Val = 130000};

            schemeColor5.AppendChild(shade1);
            schemeColor5.AppendChild(saturationModulation4);

            gradientStop4.AppendChild(schemeColor5);

            var gradientStop5 = new GradientStop {Position = 80000};

            var schemeColor6 = new SchemeColor {Val = SchemeColorValues.PhColor};
            var shade2 = new Shade {Val = 93000};
            var saturationModulation5 = new SaturationModulation {Val = 130000};

            schemeColor6.AppendChild(shade2);
            schemeColor6.AppendChild(saturationModulation5);

            gradientStop5.AppendChild(schemeColor6);

            var gradientStop6 = new GradientStop {Position = 100000};

            var schemeColor7 = new SchemeColor {Val = SchemeColorValues.PhColor};
            var shade3 = new Shade {Val = 94000};
            var saturationModulation6 = new SaturationModulation {Val = 135000};

            schemeColor7.AppendChild(shade3);
            schemeColor7.AppendChild(saturationModulation6);

            gradientStop6.AppendChild(schemeColor7);

            gradientStopList2.AppendChild(gradientStop4);
            gradientStopList2.AppendChild(gradientStop5);
            gradientStopList2.AppendChild(gradientStop6);
            var linearGradientFill2 = new LinearGradientFill {Angle = 16200000, Scaled = false};

            gradientFill2.AppendChild(gradientStopList2);
            gradientFill2.AppendChild(linearGradientFill2);

            fillStyleList1.AppendChild(solidFill1);
            fillStyleList1.AppendChild(gradientFill1);
            fillStyleList1.AppendChild(gradientFill2);

            var lineStyleList1 = new LineStyleList();

            var outline1 = new Outline
            {
                Width = 9525,
                CapType = LineCapValues.Flat,
                CompoundLineType = CompoundLineValues.Single,
                Alignment = PenAlignmentValues.Center
            };

            var solidFill2 = new SolidFill();

            var schemeColor8 = new SchemeColor {Val = SchemeColorValues.PhColor};
            var shade4 = new Shade {Val = 95000};
            var saturationModulation7 = new SaturationModulation {Val = 105000};

            schemeColor8.AppendChild(shade4);
            schemeColor8.AppendChild(saturationModulation7);

            solidFill2.AppendChild(schemeColor8);
            var presetDash1 = new PresetDash {Val = PresetLineDashValues.Solid};

            outline1.AppendChild(solidFill2);
            outline1.AppendChild(presetDash1);

            var outline2 = new Outline
            {
                Width = 25400,
                CapType = LineCapValues.Flat,
                CompoundLineType = CompoundLineValues.Single,
                Alignment = PenAlignmentValues.Center
            };

            var solidFill3 = new SolidFill();
            var schemeColor9 = new SchemeColor {Val = SchemeColorValues.PhColor};

            solidFill3.AppendChild(schemeColor9);
            var presetDash2 = new PresetDash {Val = PresetLineDashValues.Solid};

            outline2.AppendChild(solidFill3);
            outline2.AppendChild(presetDash2);

            var outline3 = new Outline
            {
                Width = 38100,
                CapType = LineCapValues.Flat,
                CompoundLineType = CompoundLineValues.Single,
                Alignment = PenAlignmentValues.Center
            };

            var solidFill4 = new SolidFill();
            var schemeColor10 = new SchemeColor {Val = SchemeColorValues.PhColor};

            solidFill4.AppendChild(schemeColor10);
            var presetDash3 = new PresetDash {Val = PresetLineDashValues.Solid};

            outline3.AppendChild(solidFill4);
            outline3.AppendChild(presetDash3);

            lineStyleList1.AppendChild(outline1);
            lineStyleList1.AppendChild(outline2);
            lineStyleList1.AppendChild(outline3);

            var effectStyleList1 = new EffectStyleList();

            var effectStyle1 = new EffectStyle();

            var effectList1 = new EffectList();

            var outerShadow1 = new OuterShadow
            {
                BlurRadius = 40000L,
                Distance = 20000L,
                Direction = 5400000,
                RotateWithShape = false
            };

            var rgbColorModelHex11 = new RgbColorModelHex {Val = "000000"};
            var alpha1 = new Alpha {Val = 38000};

            rgbColorModelHex11.AppendChild(alpha1);

            outerShadow1.AppendChild(rgbColorModelHex11);

            effectList1.AppendChild(outerShadow1);

            effectStyle1.AppendChild(effectList1);

            var effectStyle2 = new EffectStyle();

            var effectList2 = new EffectList();

            var outerShadow2 = new OuterShadow
            {
                BlurRadius = 40000L,
                Distance = 23000L,
                Direction = 5400000,
                RotateWithShape = false
            };

            var rgbColorModelHex12 = new RgbColorModelHex {Val = "000000"};
            var alpha2 = new Alpha {Val = 35000};

            rgbColorModelHex12.AppendChild(alpha2);

            outerShadow2.AppendChild(rgbColorModelHex12);

            effectList2.AppendChild(outerShadow2);

            effectStyle2.AppendChild(effectList2);

            var effectStyle3 = new EffectStyle();

            var effectList3 = new EffectList();

            var outerShadow3 = new OuterShadow
            {
                BlurRadius = 40000L,
                Distance = 23000L,
                Direction = 5400000,
                RotateWithShape = false
            };

            var rgbColorModelHex13 = new RgbColorModelHex {Val = "000000"};
            var alpha3 = new Alpha {Val = 35000};

            rgbColorModelHex13.AppendChild(alpha3);

            outerShadow3.AppendChild(rgbColorModelHex13);

            effectList3.AppendChild(outerShadow3);

            var scene3DType1 = new Scene3DType();

            var camera1 = new Camera {Preset = PresetCameraValues.OrthographicFront};
            var rotation1 = new Rotation {Latitude = 0, Longitude = 0, Revolution = 0};

            camera1.AppendChild(rotation1);

            var lightRig1 = new LightRig {Rig = LightRigValues.ThreePoints, Direction = LightRigDirectionValues.Top};
            var rotation2 = new Rotation {Latitude = 0, Longitude = 0, Revolution = 1200000};

            lightRig1.AppendChild(rotation2);

            scene3DType1.AppendChild(camera1);
            scene3DType1.AppendChild(lightRig1);

            var shape3DType1 = new Shape3DType();
            var bevelTop1 = new BevelTop {Width = 63500L, Height = 25400L};

            shape3DType1.AppendChild(bevelTop1);

            effectStyle3.AppendChild(effectList3);
            effectStyle3.AppendChild(scene3DType1);
            effectStyle3.AppendChild(shape3DType1);

            effectStyleList1.AppendChild(effectStyle1);
            effectStyleList1.AppendChild(effectStyle2);
            effectStyleList1.AppendChild(effectStyle3);

            var backgroundFillStyleList1 = new BackgroundFillStyleList();

            var solidFill5 = new SolidFill();
            var schemeColor11 = new SchemeColor {Val = SchemeColorValues.PhColor};

            solidFill5.AppendChild(schemeColor11);

            var gradientFill3 = new GradientFill {RotateWithShape = true};

            var gradientStopList3 = new GradientStopList();

            var gradientStop7 = new GradientStop {Position = 0};

            var schemeColor12 = new SchemeColor {Val = SchemeColorValues.PhColor};
            var tint4 = new Tint {Val = 40000};
            var saturationModulation8 = new SaturationModulation {Val = 350000};

            schemeColor12.AppendChild(tint4);
            schemeColor12.AppendChild(saturationModulation8);

            gradientStop7.AppendChild(schemeColor12);

            var gradientStop8 = new GradientStop {Position = 40000};

            var schemeColor13 = new SchemeColor {Val = SchemeColorValues.PhColor};
            var tint5 = new Tint {Val = 45000};
            var shade5 = new Shade {Val = 99000};
            var saturationModulation9 = new SaturationModulation {Val = 350000};

            schemeColor13.AppendChild(tint5);
            schemeColor13.AppendChild(shade5);
            schemeColor13.AppendChild(saturationModulation9);

            gradientStop8.AppendChild(schemeColor13);

            var gradientStop9 = new GradientStop {Position = 100000};

            var schemeColor14 = new SchemeColor {Val = SchemeColorValues.PhColor};
            var shade6 = new Shade {Val = 20000};
            var saturationModulation10 = new SaturationModulation {Val = 255000};

            schemeColor14.AppendChild(shade6);
            schemeColor14.AppendChild(saturationModulation10);

            gradientStop9.AppendChild(schemeColor14);

            gradientStopList3.AppendChild(gradientStop7);
            gradientStopList3.AppendChild(gradientStop8);
            gradientStopList3.AppendChild(gradientStop9);

            var pathGradientFill1 = new PathGradientFill {Path = PathShadeValues.Circle};
            var fillToRectangle1 = new FillToRectangle {Left = 50000, Top = -80000, Right = 50000, Bottom = 180000};

            pathGradientFill1.AppendChild(fillToRectangle1);

            gradientFill3.AppendChild(gradientStopList3);
            gradientFill3.AppendChild(pathGradientFill1);

            var gradientFill4 = new GradientFill {RotateWithShape = true};

            var gradientStopList4 = new GradientStopList();

            var gradientStop10 = new GradientStop {Position = 0};

            var schemeColor15 = new SchemeColor {Val = SchemeColorValues.PhColor};
            var tint6 = new Tint {Val = 80000};
            var saturationModulation11 = new SaturationModulation {Val = 300000};

            schemeColor15.AppendChild(tint6);
            schemeColor15.AppendChild(saturationModulation11);

            gradientStop10.AppendChild(schemeColor15);

            var gradientStop11 = new GradientStop {Position = 100000};

            var schemeColor16 = new SchemeColor {Val = SchemeColorValues.PhColor};
            var shade7 = new Shade {Val = 30000};
            var saturationModulation12 = new SaturationModulation {Val = 200000};

            schemeColor16.AppendChild(shade7);
            schemeColor16.AppendChild(saturationModulation12);

            gradientStop11.AppendChild(schemeColor16);

            gradientStopList4.AppendChild(gradientStop10);
            gradientStopList4.AppendChild(gradientStop11);

            var pathGradientFill2 = new PathGradientFill {Path = PathShadeValues.Circle};
            var fillToRectangle2 = new FillToRectangle {Left = 50000, Top = 50000, Right = 50000, Bottom = 50000};

            pathGradientFill2.AppendChild(fillToRectangle2);

            gradientFill4.AppendChild(gradientStopList4);
            gradientFill4.AppendChild(pathGradientFill2);

            backgroundFillStyleList1.AppendChild(solidFill5);
            backgroundFillStyleList1.AppendChild(gradientFill3);
            backgroundFillStyleList1.AppendChild(gradientFill4);

            formatScheme1.AppendChild(fillStyleList1);
            formatScheme1.AppendChild(lineStyleList1);
            formatScheme1.AppendChild(effectStyleList1);
            formatScheme1.AppendChild(backgroundFillStyleList1);

            themeElements1.AppendChild(colorScheme1);
            themeElements1.AppendChild(fontScheme2);
            themeElements1.AppendChild(formatScheme1);
            var objectDefaults1 = new ObjectDefaults();
            var extraColorSchemeList1 = new ExtraColorSchemeList();

            theme1.AppendChild(themeElements1);
            theme1.AppendChild(objectDefaults1);
            theme1.AppendChild(extraColorSchemeList1);

            themePart.Theme = theme1;
        }
Ejemplo n.º 28
0
        public void DrawCharacter(Wpg.WordprocessingGroup wordprocessingGroup1, AtomLabelCharacter alc)
        {
            Point characterPosition = new Point(alc.Position.X, alc.Position.Y);

            characterPosition.Offset(-_canvasExtents.Left, -_canvasExtents.Top);

            UInt32Value atomLabelId   = UInt32Value.FromUInt32((uint)_ooxmlId++);
            string      atomLabelName = "AtomLabel" + atomLabelId;

            Int64Value width  = OoXmlHelper.ScaleCsTtfToEmu(alc.Character.Width);
            Int64Value height = OoXmlHelper.ScaleCsTtfToEmu(alc.Character.Height);

            if (alc.IsSubScript)
            {
                width  = OoXmlHelper.ScaleCsTtfSubScriptToEmu(alc.Character.Width);
                height = OoXmlHelper.ScaleCsTtfSubScriptToEmu(alc.Character.Height);
            }
            Int64Value top  = OoXmlHelper.ScaleCmlToEmu(characterPosition.Y);
            Int64Value left = OoXmlHelper.ScaleCmlToEmu(characterPosition.X);

            // Set variable true to show bounding box of (every) character
            if (_options.ShowCharacterBoundingBoxes)
            {
                Rect boundingBox = new Rect(new Point(left, top), new Size(width, height));
                DrawCharacterBox(wordprocessingGroup1, boundingBox, "00ff00", 10);
            }

            Wps.WordprocessingShape        wordprocessingShape10        = new Wps.WordprocessingShape();
            Wps.NonVisualDrawingProperties nonVisualDrawingProperties10 = new Wps.NonVisualDrawingProperties()
            {
                Id = atomLabelId, Name = atomLabelName
            };
            Wps.NonVisualDrawingShapeProperties nonVisualDrawingShapeProperties10 = new Wps.NonVisualDrawingShapeProperties();

            Wps.ShapeProperties shapeProperties10 = new Wps.ShapeProperties();

            A.Transform2D transform2D10 = new A.Transform2D();
            A.Offset      offset11      = new A.Offset()
            {
                X = left, Y = top
            };
            A.Extents extents11 = new A.Extents()
            {
                Cx = width, Cy = height
            };

            transform2D10.Append(offset11);
            transform2D10.Append(extents11);

            A.CustomGeometry  customGeometry10  = new A.CustomGeometry();
            A.AdjustValueList adjustValueList10 = new A.AdjustValueList();
            A.Rectangle       rectangle10       = new A.Rectangle()
            {
                Left = "l", Top = "t", Right = "r", Bottom = "b"
            };

            A.PathList pathList10 = new A.PathList();

            A.Path path10 = new A.Path()
            {
                Width = width, Height = height
            };

            foreach (TtfContour contour in alc.Character.Contours)
            {
                int i = 0;
                while (i < contour.Points.Count)
                {
                    TtfPoint thisPoint = contour.Points[i];
                    TtfPoint nextPoint = null;
                    if (i < contour.Points.Count - 1)
                    {
                        nextPoint = contour.Points[i + 1];
                    }

                    switch (thisPoint.Type)
                    {
                    case TtfPoint.PointType.Start:
                        A.MoveTo moveTo1 = new A.MoveTo();
                        if (alc.IsSubScript)
                        {
                            A.Point point1 = new A.Point()
                            {
                                X = OoXmlHelper.ScaleCsTtfSubScriptToEmu(thisPoint.X - alc.Character.OriginX).ToString(),
                                Y = OoXmlHelper.ScaleCsTtfSubScriptToEmu(alc.Character.Height + thisPoint.Y - (alc.Character.Height + alc.Character.OriginY)).ToString()
                            };
                            moveTo1.Append(point1);
                            path10.Append(moveTo1);
                        }
                        else
                        {
                            A.Point point1 = new A.Point()
                            {
                                X = OoXmlHelper.ScaleCsTtfToEmu(thisPoint.X - alc.Character.OriginX).ToString(),
                                Y = OoXmlHelper.ScaleCsTtfToEmu(alc.Character.Height + thisPoint.Y - (alc.Character.Height + alc.Character.OriginY)).ToString()
                            };
                            moveTo1.Append(point1);
                            path10.Append(moveTo1);
                        }
                        i++;
                        break;

                    case TtfPoint.PointType.Line:
                        A.LineTo lineTo1 = new A.LineTo();
                        if (alc.IsSubScript)
                        {
                            A.Point point2 = new A.Point()
                            {
                                X = OoXmlHelper.ScaleCsTtfSubScriptToEmu(thisPoint.X - alc.Character.OriginX).ToString(),
                                Y = OoXmlHelper.ScaleCsTtfSubScriptToEmu(alc.Character.Height + thisPoint.Y - (alc.Character.Height + alc.Character.OriginY)).ToString()
                            };
                            lineTo1.Append(point2);
                            path10.Append(lineTo1);
                        }
                        else
                        {
                            A.Point point2 = new A.Point()
                            {
                                X = OoXmlHelper.ScaleCsTtfToEmu(thisPoint.X - alc.Character.OriginX).ToString(),
                                Y = OoXmlHelper.ScaleCsTtfToEmu(alc.Character.Height + thisPoint.Y - (alc.Character.Height + alc.Character.OriginY)).ToString()
                            };
                            lineTo1.Append(point2);
                            path10.Append(lineTo1);
                        }
                        i++;
                        break;

                    case TtfPoint.PointType.CurveOff:
                        A.QuadraticBezierCurveTo quadraticBezierCurveTo13 = new A.QuadraticBezierCurveTo();
                        if (alc.IsSubScript)
                        {
                            A.Point point3 = new A.Point()
                            {
                                X = OoXmlHelper.ScaleCsTtfSubScriptToEmu(thisPoint.X - alc.Character.OriginX).ToString(),
                                Y = OoXmlHelper.ScaleCsTtfSubScriptToEmu(alc.Character.Height + thisPoint.Y - (alc.Character.Height + alc.Character.OriginY)).ToString()
                            };
                            A.Point point4 = new A.Point()
                            {
                                X = OoXmlHelper.ScaleCsTtfSubScriptToEmu(nextPoint.X - alc.Character.OriginX).ToString(),
                                Y = OoXmlHelper.ScaleCsTtfSubScriptToEmu(alc.Character.Height + nextPoint.Y - (alc.Character.Height + alc.Character.OriginY)).ToString()
                            };
                            quadraticBezierCurveTo13.Append(point3);
                            quadraticBezierCurveTo13.Append(point4);
                            path10.Append(quadraticBezierCurveTo13);
                        }
                        else
                        {
                            A.Point point3 = new A.Point()
                            {
                                X = OoXmlHelper.ScaleCsTtfToEmu(thisPoint.X - alc.Character.OriginX).ToString(),
                                Y = OoXmlHelper.ScaleCsTtfToEmu(alc.Character.Height + thisPoint.Y - (alc.Character.Height + alc.Character.OriginY)).ToString()
                            };
                            A.Point point4 = new A.Point()
                            {
                                X = OoXmlHelper.ScaleCsTtfToEmu(nextPoint.X - alc.Character.OriginX).ToString(),
                                Y = OoXmlHelper.ScaleCsTtfToEmu(alc.Character.Height + nextPoint.Y - (alc.Character.Height + alc.Character.OriginY)).ToString()
                            };
                            quadraticBezierCurveTo13.Append(point3);
                            quadraticBezierCurveTo13.Append(point4);
                            path10.Append(quadraticBezierCurveTo13);
                        }
                        i++;
                        i++;
                        break;

                    case TtfPoint.PointType.CurveOn:
                        // Should never get here !
                        i++;
                        break;
                    }
                }

                A.CloseShapePath closeShapePath1 = new A.CloseShapePath();
                path10.Append(closeShapePath1);
            }

            pathList10.Append(path10);

            customGeometry10.Append(adjustValueList10);
            customGeometry10.Append(rectangle10);
            customGeometry10.Append(pathList10);

            A.SolidFill solidFill10 = new A.SolidFill();

            // Set Colour
            A.RgbColorModelHex rgbColorModelHex10 = new A.RgbColorModelHex()
            {
                Val = alc.Colour
            };
            solidFill10.Append(rgbColorModelHex10);

            shapeProperties10.Append(transform2D10);
            shapeProperties10.Append(customGeometry10);
            shapeProperties10.Append(solidFill10);

            Wps.ShapeStyle  shapeStyle10    = new Wps.ShapeStyle();
            A.LineReference lineReference10 = new A.LineReference()
            {
                Index = (UInt32Value)0U
            };
            A.FillReference fillReference10 = new A.FillReference()
            {
                Index = (UInt32Value)0U
            };
            A.EffectReference effectReference10 = new A.EffectReference()
            {
                Index = (UInt32Value)0U
            };
            A.FontReference fontReference10 = new A.FontReference()
            {
                Index = A.FontCollectionIndexValues.Minor
            };

            shapeStyle10.Append(lineReference10);
            shapeStyle10.Append(fillReference10);
            shapeStyle10.Append(effectReference10);
            shapeStyle10.Append(fontReference10);
            Wps.TextBodyProperties textBodyProperties10 = new Wps.TextBodyProperties();

            wordprocessingShape10.Append(nonVisualDrawingProperties10);
            wordprocessingShape10.Append(nonVisualDrawingShapeProperties10);
            wordprocessingShape10.Append(shapeProperties10);
            wordprocessingShape10.Append(shapeStyle10);
            wordprocessingShape10.Append(textBodyProperties10);

            wordprocessingGroup1.Append(wordprocessingShape10);
        }
Ejemplo n.º 29
0
        private static void GenerateChartPartContentPie(ChartPart chartPart1, string formulaCat, string formulaVal, string title)
        {
            C.ChartSpace chartSpace1 = new C.ChartSpace();
            chartSpace1.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");
            chartSpace1.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");
            chartSpace1.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            chartSpace1.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
            chartSpace1.AddNamespaceDeclaration("mv", "urn:schemas-microsoft-com:mac:vml");
            chartSpace1.AddNamespaceDeclaration("c14", "http://schemas.microsoft.com/office/drawing/2007/8/2/chart");



            C.Chart chart1 = new C.Chart();

            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()
            {
                Level = 0
            };
            A.DefaultRunProperties defaultRunProperties1 = new A.DefaultRunProperties()
            {
                Bold = false
            };

            paragraphProperties1.Append(defaultRunProperties1);

            A.Run  run1  = new A.Run();
            A.Text text1 = new A.Text();
            text1.Text = title;

            run1.Append(text1);

            paragraph1.Append(paragraphProperties1);
            paragraph1.Append(run1);

            richText1.Append(bodyProperties1);
            richText1.Append(listStyle1);
            richText1.Append(paragraph1);

            chartText1.Append(richText1);
            C.Overlay overlay1 = new C.Overlay()
            {
                Val = false
            };

            title1.Append(chartText1);
            title1.Append(overlay1);



            C.PlotArea plotArea1 = new C.PlotArea();
            C.Layout   layout1   = new C.Layout();


            C.PieChart   pieChart1   = new C.PieChart();
            C.VaryColors varyColors1 = new C.VaryColors()
            {
                Val = true
            };

            C.PieChartSeries pieChartSeries1 = new C.PieChartSeries();
            C.Index          index1          = new C.Index()
            {
                Val = (UInt32Value)0U
            };
            C.Order order1 = new C.Order()
            {
                Val = (UInt32Value)0U
            };

            C.DataLabels    dataLabels1    = new C.DataLabels();
            C.ShowLegendKey showLegendKey1 = new C.ShowLegendKey()
            {
                Val = false
            };
            C.ShowValue showValue1 = new C.ShowValue()
            {
                Val = false
            };
            C.ShowCategoryName showCategoryName1 = new C.ShowCategoryName()
            {
                Val = false
            };
            C.ShowSeriesName showSeriesName1 = new C.ShowSeriesName()
            {
                Val = false
            };
            C.ShowPercent showPercent1 = new C.ShowPercent()
            {
                Val = true
            };
            C.ShowBubbleSize showBubbleSize1 = new C.ShowBubbleSize()
            {
                Val = false
            };
            C.ShowLeaderLines showLeaderLines1 = new C.ShowLeaderLines()
            {
                Val = true
            };

            dataLabels1.Append(showLegendKey1);
            dataLabels1.Append(showValue1);
            dataLabels1.Append(showCategoryName1);
            dataLabels1.Append(showSeriesName1);
            dataLabels1.Append(showPercent1);
            dataLabels1.Append(showBubbleSize1);
            dataLabels1.Append(showLeaderLines1);

            C.CategoryAxisData categoryAxisData1 = new C.CategoryAxisData();

            C.StringReference stringReference1 = new C.StringReference();
            C.Formula         formula1         = new C.Formula();
            formula1.Text = formulaCat;

            stringReference1.Append(formula1);

            categoryAxisData1.Append(stringReference1);

            C.Values values1 = new C.Values();

            C.NumberReference numberReference1 = new C.NumberReference();
            C.Formula         formula2         = new C.Formula();
            formula2.Text = formulaVal;

            numberReference1.Append(formula2);

            values1.Append(numberReference1);

            pieChartSeries1.Append(index1);
            pieChartSeries1.Append(order1);
            pieChartSeries1.Append(dataLabels1);
            pieChartSeries1.Append(categoryAxisData1);
            pieChartSeries1.Append(values1);

            C.DataLabels    dataLabels2    = new C.DataLabels();
            C.ShowLegendKey showLegendKey2 = new C.ShowLegendKey()
            {
                Val = false
            };
            C.ShowValue showValue2 = new C.ShowValue()
            {
                Val = false
            };
            C.ShowCategoryName showCategoryName2 = new C.ShowCategoryName()
            {
                Val = false
            };
            C.ShowSeriesName showSeriesName2 = new C.ShowSeriesName()
            {
                Val = false
            };
            C.ShowPercent showPercent2 = new C.ShowPercent()
            {
                Val = true
            };
            C.ShowBubbleSize showBubbleSize2 = new C.ShowBubbleSize()
            {
                Val = false
            };

            dataLabels2.Append(showLegendKey2);
            dataLabels2.Append(showValue2);
            dataLabels2.Append(showCategoryName2);
            dataLabels2.Append(showSeriesName2);
            dataLabels2.Append(showPercent2);
            dataLabels2.Append(showBubbleSize2);
            C.FirstSliceAngle firstSliceAngle1 = new C.FirstSliceAngle()
            {
                Val = (UInt16Value)0U
            };

            pieChart1.Append(varyColors1);
            pieChart1.Append(pieChartSeries1);
            pieChart1.Append(dataLabels2);
            pieChart1.Append(firstSliceAngle1);

            C.ShapeProperties shapeProperties1 = new C.ShapeProperties();

            A.SolidFill        solidFill4        = new A.SolidFill();
            A.RgbColorModelHex rgbColorModelHex4 = new A.RgbColorModelHex()
            {
                Val = "FFFFFF"
            };

            solidFill4.Append(rgbColorModelHex4);

            shapeProperties1.Append(solidFill4);

            plotArea1.Append(layout1);
            plotArea1.Append(pieChart1);
            plotArea1.Append(shapeProperties1);

            C.Legend         legend1         = new C.Legend();
            C.LegendPosition legendPosition1 = new C.LegendPosition()
            {
                Val = C.LegendPositionValues.Right
            };
            C.Overlay overlay2 = new C.Overlay()
            {
                Val = false
            };

            legend1.Append(legendPosition1);
            legend1.Append(overlay2);
            C.PlotVisibleOnly plotVisibleOnly1 = new C.PlotVisibleOnly()
            {
                Val = true
            };

            chart1.Append(title1);
            chart1.Append(plotArea1);
            chart1.Append(legend1);
            chart1.Append(plotVisibleOnly1);

            chartSpace1.Append(chart1);

            chartPart1.ChartSpace = chartSpace1;
        }
Ejemplo n.º 30
0
        private void DrawCharacterBox(Wpg.WordprocessingGroup wordprocessingGroup, Rect boxExtents, string colour, double points)
        {
            UInt32Value id           = UInt32Value.FromUInt32((uint)_ooxmlId++);
            string      bondLineName = "char-diag-box-" + id;

            Int64Value width  = (Int64Value)boxExtents.Width;
            Int64Value height = (Int64Value)boxExtents.Height;
            Int64Value top    = (Int64Value)boxExtents.Top;
            Int64Value left   = (Int64Value)boxExtents.Left;

            Wps.WordprocessingShape        shape = new Wps.WordprocessingShape();
            Wps.NonVisualDrawingProperties nonVisualDrawingProperties = new Wps.NonVisualDrawingProperties()
            {
                Id   = id,
                Name = bondLineName
            };
            Wps.NonVisualDrawingShapeProperties nonVisualDrawingShapeProperties = new Wps.NonVisualDrawingShapeProperties();

            Wps.ShapeProperties shapeProperties = new Wps.ShapeProperties();

            A.Transform2D transform2D = new A.Transform2D();
            A.Offset      offset      = new A.Offset {
                X = left, Y = top
            };
            A.Extents extents = new A.Extents {
                Cx = width, Cy = height
            };

            transform2D.Append(offset);
            transform2D.Append(extents);

            A.CustomGeometry  customGeometry  = new A.CustomGeometry();
            A.AdjustValueList adjustValueList = new A.AdjustValueList();
            A.Rectangle       rectangle       = new A.Rectangle {
                Left = "l", Top = "t", Right = "r", Bottom = "b"
            };

            A.PathList pathList = new A.PathList();

            A.Path path = new A.Path {
                Width = width, Height = height
            };

            // Starting Point
            A.MoveTo moveTo = new A.MoveTo();
            A.Point  point1 = new A.Point {
                X = "0", Y = "0"
            };
            moveTo.Append(point1);

            // Mid Point
            A.LineTo lineTo1 = new A.LineTo();
            A.Point  point2  = new A.Point {
                X = boxExtents.Width.ToString("0"), Y = "0"
            };
            lineTo1.Append(point2);

            // Mid Point
            A.LineTo lineTo2 = new A.LineTo();
            A.Point  point3  = new A.Point {
                X = boxExtents.Width.ToString("0"), Y = boxExtents.Height.ToString("0")
            };
            lineTo2.Append(point3);

            // Last Point
            A.LineTo lineTo3 = new A.LineTo();
            A.Point  point4  = new A.Point {
                X = "0", Y = boxExtents.Height.ToString("0")
            };
            lineTo3.Append(point4);

            // Back to Start Point
            A.LineTo lineTo4 = new A.LineTo();
            A.Point  point5  = new A.Point {
                X = "0", Y = "0"
            };
            lineTo4.Append(point5);

            path.Append(moveTo);
            path.Append(lineTo1);
            path.Append(lineTo2);
            path.Append(lineTo3);
            path.Append(lineTo4);

            pathList.Append(path);

            customGeometry.Append(adjustValueList);
            customGeometry.Append(rectangle);
            customGeometry.Append(pathList);

            Int32Value emus = (Int32Value)(points * OoXmlHelper.EMUS_PER_WORD_POINT);

            A.Outline outline = new A.Outline {
                Width = emus, CapType = A.LineCapValues.Round
            };

            A.SolidFill solidFill = new A.SolidFill();

            A.RgbColorModelHex rgbColorModelHex = new A.RgbColorModelHex {
                Val = colour
            };
            solidFill.Append(rgbColorModelHex);

            outline.Append(solidFill);

            shapeProperties.Append(transform2D);
            shapeProperties.Append(customGeometry);
            shapeProperties.Append(outline);

            OoXmlHelper.AppendShapeStyle(shape, nonVisualDrawingProperties, nonVisualDrawingShapeProperties, shapeProperties);
            wordprocessingGroup.Append(shape);
        }
Ejemplo n.º 31
0
        // Generates content of slideLayoutPart1.
        private void GenerateSlideLayoutPart1Content(SlideLayoutPart slideLayoutPart1)
        {
            SlideLayout slideLayout1 = new SlideLayout(){ Type = SlideLayoutValues.Title, Preserve = true };
            slideLayout1.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");
            slideLayout1.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            slideLayout1.AddNamespaceDeclaration("p", "http://schemas.openxmlformats.org/presentationml/2006/main");

            CommonSlideData commonSlideData2 = new CommonSlideData(){ Name = "Title Slide" };

            ShapeTree shapeTree2 = new ShapeTree();

            NonVisualGroupShapeProperties nonVisualGroupShapeProperties2 = new NonVisualGroupShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties4 = new NonVisualDrawingProperties(){ Id = (UInt32Value)1U, Name = "" };
            NonVisualGroupShapeDrawingProperties nonVisualGroupShapeDrawingProperties2 = new NonVisualGroupShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties4 = new ApplicationNonVisualDrawingProperties();

            nonVisualGroupShapeProperties2.Append(nonVisualDrawingProperties4);
            nonVisualGroupShapeProperties2.Append(nonVisualGroupShapeDrawingProperties2);
            nonVisualGroupShapeProperties2.Append(applicationNonVisualDrawingProperties4);

            GroupShapeProperties groupShapeProperties2 = new GroupShapeProperties();

            A.TransformGroup transformGroup2 = new A.TransformGroup();
            A.Offset offset2 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents2 = new A.Extents(){ Cx = 0L, Cy = 0L };
            A.ChildOffset childOffset2 = new A.ChildOffset(){ X = 0L, Y = 0L };
            A.ChildExtents childExtents2 = new A.ChildExtents(){ Cx = 0L, Cy = 0L };

            transformGroup2.Append(offset2);
            transformGroup2.Append(extents2);
            transformGroup2.Append(childOffset2);
            transformGroup2.Append(childExtents2);

            groupShapeProperties2.Append(transformGroup2);

            Shape shape3 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties3 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties5 = new NonVisualDrawingProperties(){ Id = (UInt32Value)8U, Name = "Title 7" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties3 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks3 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties3.Append(shapeLocks3);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties5 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape3 = new PlaceholderShape(){ Type = PlaceholderValues.CenteredTitle };

            applicationNonVisualDrawingProperties5.Append(placeholderShape3);

            nonVisualShapeProperties3.Append(nonVisualDrawingProperties5);
            nonVisualShapeProperties3.Append(nonVisualShapeDrawingProperties3);
            nonVisualShapeProperties3.Append(applicationNonVisualDrawingProperties5);

            ShapeProperties shapeProperties3 = new ShapeProperties();

            A.Transform2D transform2D1 = new A.Transform2D();
            A.Offset offset3 = new A.Offset(){ X = 562707L, Y = 1371600L };
            A.Extents extents3 = new A.Extents(){ Cx = 10972800L, Cy = 1828800L };

            transform2D1.Append(offset3);
            transform2D1.Append(extents3);

            shapeProperties3.Append(transform2D1);

            TextBody textBody3 = new TextBody();

            A.BodyProperties bodyProperties3 = new A.BodyProperties(){ Vertical = A.TextVerticalValues.Horizontal, LeftInset = 45720, TopInset = 0, RightInset = 45720, BottomInset = 0, Anchor = A.TextAnchoringTypeValues.Bottom };
            A.NormalAutoFit normalAutoFit1 = new A.NormalAutoFit();

            A.Scene3DType scene3DType1 = new A.Scene3DType();
            A.Camera camera1 = new A.Camera(){ Preset = A.PresetCameraValues.OrthographicFront };

            A.LightRig lightRig1 = new A.LightRig(){ Rig = A.LightRigValues.Soft, Direction = A.LightRigDirectionValues.Top };
            A.Rotation rotation1 = new A.Rotation(){ Latitude = 0, Longitude = 0, Revolution = 17220000 };

            lightRig1.Append(rotation1);

            scene3DType1.Append(camera1);
            scene3DType1.Append(lightRig1);

            A.Shape3DType shape3DType1 = new A.Shape3DType(){ PresetMaterial = A.PresetMaterialTypeValues.SoftEdge };
            A.BevelTop bevelTop1 = new A.BevelTop(){ Width = 38100L, Height = 38100L };

            shape3DType1.Append(bevelTop1);

            bodyProperties3.Append(normalAutoFit1);
            bodyProperties3.Append(scene3DType1);
            bodyProperties3.Append(shape3DType1);

            A.ListStyle listStyle3 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties2 = new A.Level1ParagraphProperties();

            A.DefaultRunProperties defaultRunProperties11 = new A.DefaultRunProperties(){ FontSize = 4800, Bold = true, Capital = A.TextCapsValues.All, Baseline = 0 };

            A.Outline outline1 = new A.Outline(){ Width = 6350 };
            A.NoFill noFill1 = new A.NoFill();

            outline1.Append(noFill1);

            A.GradientFill gradientFill1 = new A.GradientFill();

            A.GradientStopList gradientStopList1 = new A.GradientStopList();

            A.GradientStop gradientStop1 = new A.GradientStop(){ Position = 0 };

            A.SchemeColor schemeColor10 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };
            A.Tint tint1 = new A.Tint(){ Val = 73000 };
            A.SaturationModulation saturationModulation1 = new A.SaturationModulation(){ Val = 145000 };

            schemeColor10.Append(tint1);
            schemeColor10.Append(saturationModulation1);

            gradientStop1.Append(schemeColor10);

            A.GradientStop gradientStop2 = new A.GradientStop(){ Position = 73000 };

            A.SchemeColor schemeColor11 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };
            A.Tint tint2 = new A.Tint(){ Val = 73000 };
            A.SaturationModulation saturationModulation2 = new A.SaturationModulation(){ Val = 145000 };

            schemeColor11.Append(tint2);
            schemeColor11.Append(saturationModulation2);

            gradientStop2.Append(schemeColor11);

            A.GradientStop gradientStop3 = new A.GradientStop(){ Position = 100000 };

            A.SchemeColor schemeColor12 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };
            A.Tint tint3 = new A.Tint(){ Val = 83000 };
            A.SaturationModulation saturationModulation3 = new A.SaturationModulation(){ Val = 143000 };

            schemeColor12.Append(tint3);
            schemeColor12.Append(saturationModulation3);

            gradientStop3.Append(schemeColor12);

            gradientStopList1.Append(gradientStop1);
            gradientStopList1.Append(gradientStop2);
            gradientStopList1.Append(gradientStop3);
            A.LinearGradientFill linearGradientFill1 = new A.LinearGradientFill(){ Angle = 4800000, Scaled = true };

            gradientFill1.Append(gradientStopList1);
            gradientFill1.Append(linearGradientFill1);

            A.EffectList effectList1 = new A.EffectList();

            A.OuterShadow outerShadow1 = new A.OuterShadow(){ BlurRadius = 127000L, Distance = 200000L, Direction = 2700000, Alignment = A.RectangleAlignmentValues.TopLeft, RotateWithShape = false };

            A.RgbColorModelHex rgbColorModelHex1 = new A.RgbColorModelHex(){ Val = "000000" };
            A.Alpha alpha1 = new A.Alpha(){ Val = 30000 };

            rgbColorModelHex1.Append(alpha1);

            outerShadow1.Append(rgbColorModelHex1);

            effectList1.Append(outerShadow1);

            defaultRunProperties11.Append(outline1);
            defaultRunProperties11.Append(gradientFill1);
            defaultRunProperties11.Append(effectList1);

            level1ParagraphProperties2.Append(defaultRunProperties11);

            listStyle3.Append(level1ParagraphProperties2);

            A.Paragraph paragraph3 = new A.Paragraph();

            A.Run run1 = new A.Run();

            A.RunProperties runProperties1 = new A.RunProperties(){ Kumimoji = false, Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties1.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text1 = new A.Text();
            text1.Text = "Click to edit Master title style";

            run1.Append(runProperties1);
            run1.Append(text1);
            A.EndParagraphRunProperties endParagraphRunProperties3 = new A.EndParagraphRunProperties(){ Kumimoji = false, Language = "en-US" };

            paragraph3.Append(run1);
            paragraph3.Append(endParagraphRunProperties3);

            textBody3.Append(bodyProperties3);
            textBody3.Append(listStyle3);
            textBody3.Append(paragraph3);

            shape3.Append(nonVisualShapeProperties3);
            shape3.Append(shapeProperties3);
            shape3.Append(textBody3);

            Shape shape4 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties4 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties6 = new NonVisualDrawingProperties(){ Id = (UInt32Value)28U, Name = "Date Placeholder 27" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties4 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks4 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties4.Append(shapeLocks4);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties6 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape4 = new PlaceholderShape(){ Type = PlaceholderValues.DateAndTime, Size = PlaceholderSizeValues.Half, Index = (UInt32Value)10U };

            applicationNonVisualDrawingProperties6.Append(placeholderShape4);

            nonVisualShapeProperties4.Append(nonVisualDrawingProperties6);
            nonVisualShapeProperties4.Append(nonVisualShapeDrawingProperties4);
            nonVisualShapeProperties4.Append(applicationNonVisualDrawingProperties6);
            ShapeProperties shapeProperties4 = new ShapeProperties();

            TextBody textBody4 = new TextBody();
            A.BodyProperties bodyProperties4 = new A.BodyProperties();
            A.ListStyle listStyle4 = new A.ListStyle();

            A.Paragraph paragraph4 = new A.Paragraph();

            A.Field field1 = new A.Field(){ Id = "{8263865E-5382-4BDD-A09E-2B63F38BCE59}", Type = "datetimeFigureOut" };

            A.RunProperties runProperties2 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties2.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text2 = new A.Text();
            text2.Text = "2012/10/3";

            field1.Append(runProperties2);
            field1.Append(text2);
            A.EndParagraphRunProperties endParagraphRunProperties4 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph4.Append(field1);
            paragraph4.Append(endParagraphRunProperties4);

            textBody4.Append(bodyProperties4);
            textBody4.Append(listStyle4);
            textBody4.Append(paragraph4);

            shape4.Append(nonVisualShapeProperties4);
            shape4.Append(shapeProperties4);
            shape4.Append(textBody4);

            Shape shape5 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties5 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties7 = new NonVisualDrawingProperties(){ Id = (UInt32Value)17U, Name = "Footer Placeholder 16" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties5 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks5 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties5.Append(shapeLocks5);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties7 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape5 = new PlaceholderShape(){ Type = PlaceholderValues.Footer, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)11U };

            applicationNonVisualDrawingProperties7.Append(placeholderShape5);

            nonVisualShapeProperties5.Append(nonVisualDrawingProperties7);
            nonVisualShapeProperties5.Append(nonVisualShapeDrawingProperties5);
            nonVisualShapeProperties5.Append(applicationNonVisualDrawingProperties7);
            ShapeProperties shapeProperties5 = new ShapeProperties();

            TextBody textBody5 = new TextBody();
            A.BodyProperties bodyProperties5 = new A.BodyProperties();
            A.ListStyle listStyle5 = new A.ListStyle();

            A.Paragraph paragraph5 = new A.Paragraph();
            A.EndParagraphRunProperties endParagraphRunProperties5 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph5.Append(endParagraphRunProperties5);

            textBody5.Append(bodyProperties5);
            textBody5.Append(listStyle5);
            textBody5.Append(paragraph5);

            shape5.Append(nonVisualShapeProperties5);
            shape5.Append(shapeProperties5);
            shape5.Append(textBody5);

            Shape shape6 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties6 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties8 = new NonVisualDrawingProperties(){ Id = (UInt32Value)29U, Name = "Slide Number Placeholder 28" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties6 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks6 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties6.Append(shapeLocks6);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties8 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape6 = new PlaceholderShape(){ Type = PlaceholderValues.SlideNumber, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)12U };

            applicationNonVisualDrawingProperties8.Append(placeholderShape6);

            nonVisualShapeProperties6.Append(nonVisualDrawingProperties8);
            nonVisualShapeProperties6.Append(nonVisualShapeDrawingProperties6);
            nonVisualShapeProperties6.Append(applicationNonVisualDrawingProperties8);
            ShapeProperties shapeProperties6 = new ShapeProperties();

            TextBody textBody6 = new TextBody();
            A.BodyProperties bodyProperties6 = new A.BodyProperties();
            A.ListStyle listStyle6 = new A.ListStyle();

            A.Paragraph paragraph6 = new A.Paragraph();

            A.Field field2 = new A.Field(){ Id = "{DF0B8B9E-EDC2-479A-B980-EDD8632819B1}", Type = "slidenum" };

            A.RunProperties runProperties3 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties3.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text3 = new A.Text();
            text3.Text = "‹#›";

            field2.Append(runProperties3);
            field2.Append(text3);
            A.EndParagraphRunProperties endParagraphRunProperties6 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph6.Append(field2);
            paragraph6.Append(endParagraphRunProperties6);

            textBody6.Append(bodyProperties6);
            textBody6.Append(listStyle6);
            textBody6.Append(paragraph6);

            shape6.Append(nonVisualShapeProperties6);
            shape6.Append(shapeProperties6);
            shape6.Append(textBody6);

            Shape shape7 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties7 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties9 = new NonVisualDrawingProperties(){ Id = (UInt32Value)9U, Name = "Subtitle 8" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties7 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks7 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties7.Append(shapeLocks7);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties9 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape7 = new PlaceholderShape(){ Type = PlaceholderValues.SubTitle, Index = (UInt32Value)1U };

            applicationNonVisualDrawingProperties9.Append(placeholderShape7);

            nonVisualShapeProperties7.Append(nonVisualDrawingProperties9);
            nonVisualShapeProperties7.Append(nonVisualShapeDrawingProperties7);
            nonVisualShapeProperties7.Append(applicationNonVisualDrawingProperties9);

            ShapeProperties shapeProperties7 = new ShapeProperties();

            A.Transform2D transform2D2 = new A.Transform2D();
            A.Offset offset4 = new A.Offset(){ X = 1828800L, Y = 3331698L };
            A.Extents extents4 = new A.Extents(){ Cx = 8534400L, Cy = 1752600L };

            transform2D2.Append(offset4);
            transform2D2.Append(extents4);

            shapeProperties7.Append(transform2D2);

            TextBody textBody7 = new TextBody();
            A.BodyProperties bodyProperties7 = new A.BodyProperties();

            A.ListStyle listStyle7 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties3 = new A.Level1ParagraphProperties(){ LeftMargin = 0, Indent = 0, Alignment = A.TextAlignmentTypeValues.Center };
            A.NoBullet noBullet1 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties12 = new A.DefaultRunProperties();

            A.SolidFill solidFill10 = new A.SolidFill();
            A.SchemeColor schemeColor13 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill10.Append(schemeColor13);

            defaultRunProperties12.Append(solidFill10);

            level1ParagraphProperties3.Append(noBullet1);
            level1ParagraphProperties3.Append(defaultRunProperties12);

            A.Level2ParagraphProperties level2ParagraphProperties2 = new A.Level2ParagraphProperties(){ LeftMargin = 457200, Indent = 0, Alignment = A.TextAlignmentTypeValues.Center };
            A.NoBullet noBullet2 = new A.NoBullet();

            level2ParagraphProperties2.Append(noBullet2);

            A.Level3ParagraphProperties level3ParagraphProperties2 = new A.Level3ParagraphProperties(){ LeftMargin = 914400, Indent = 0, Alignment = A.TextAlignmentTypeValues.Center };
            A.NoBullet noBullet3 = new A.NoBullet();

            level3ParagraphProperties2.Append(noBullet3);

            A.Level4ParagraphProperties level4ParagraphProperties2 = new A.Level4ParagraphProperties(){ LeftMargin = 1371600, Indent = 0, Alignment = A.TextAlignmentTypeValues.Center };
            A.NoBullet noBullet4 = new A.NoBullet();

            level4ParagraphProperties2.Append(noBullet4);

            A.Level5ParagraphProperties level5ParagraphProperties2 = new A.Level5ParagraphProperties(){ LeftMargin = 1828800, Indent = 0, Alignment = A.TextAlignmentTypeValues.Center };
            A.NoBullet noBullet5 = new A.NoBullet();

            level5ParagraphProperties2.Append(noBullet5);

            A.Level6ParagraphProperties level6ParagraphProperties2 = new A.Level6ParagraphProperties(){ LeftMargin = 2286000, Indent = 0, Alignment = A.TextAlignmentTypeValues.Center };
            A.NoBullet noBullet6 = new A.NoBullet();

            level6ParagraphProperties2.Append(noBullet6);

            A.Level7ParagraphProperties level7ParagraphProperties2 = new A.Level7ParagraphProperties(){ LeftMargin = 2743200, Indent = 0, Alignment = A.TextAlignmentTypeValues.Center };
            A.NoBullet noBullet7 = new A.NoBullet();

            level7ParagraphProperties2.Append(noBullet7);

            A.Level8ParagraphProperties level8ParagraphProperties2 = new A.Level8ParagraphProperties(){ LeftMargin = 3200400, Indent = 0, Alignment = A.TextAlignmentTypeValues.Center };
            A.NoBullet noBullet8 = new A.NoBullet();

            level8ParagraphProperties2.Append(noBullet8);

            A.Level9ParagraphProperties level9ParagraphProperties2 = new A.Level9ParagraphProperties(){ LeftMargin = 3657600, Indent = 0, Alignment = A.TextAlignmentTypeValues.Center };
            A.NoBullet noBullet9 = new A.NoBullet();

            level9ParagraphProperties2.Append(noBullet9);

            listStyle7.Append(level1ParagraphProperties3);
            listStyle7.Append(level2ParagraphProperties2);
            listStyle7.Append(level3ParagraphProperties2);
            listStyle7.Append(level4ParagraphProperties2);
            listStyle7.Append(level5ParagraphProperties2);
            listStyle7.Append(level6ParagraphProperties2);
            listStyle7.Append(level7ParagraphProperties2);
            listStyle7.Append(level8ParagraphProperties2);
            listStyle7.Append(level9ParagraphProperties2);

            A.Paragraph paragraph7 = new A.Paragraph();

            A.Run run2 = new A.Run();

            A.RunProperties runProperties4 = new A.RunProperties(){ Kumimoji = false, Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties4.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text4 = new A.Text();
            text4.Text = "Click to edit Master subtitle style";

            run2.Append(runProperties4);
            run2.Append(text4);
            A.EndParagraphRunProperties endParagraphRunProperties7 = new A.EndParagraphRunProperties(){ Kumimoji = false, Language = "en-US" };

            paragraph7.Append(run2);
            paragraph7.Append(endParagraphRunProperties7);

            textBody7.Append(bodyProperties7);
            textBody7.Append(listStyle7);
            textBody7.Append(paragraph7);

            shape7.Append(nonVisualShapeProperties7);
            shape7.Append(shapeProperties7);
            shape7.Append(textBody7);

            shapeTree2.Append(nonVisualGroupShapeProperties2);
            shapeTree2.Append(groupShapeProperties2);
            shapeTree2.Append(shape3);
            shapeTree2.Append(shape4);
            shapeTree2.Append(shape5);
            shapeTree2.Append(shape6);
            shapeTree2.Append(shape7);

            CommonSlideDataExtensionList commonSlideDataExtensionList2 = new CommonSlideDataExtensionList();

            CommonSlideDataExtension commonSlideDataExtension2 = new CommonSlideDataExtension(){ Uri = "{BB962C8B-B14F-4D97-AF65-F5344CB8AC3E}" };

            P14.CreationId creationId2 = new P14.CreationId(){ Val = (UInt32Value)1153735895U };
            creationId2.AddNamespaceDeclaration("p14", "http://schemas.microsoft.com/office/powerpoint/2010/main");

            commonSlideDataExtension2.Append(creationId2);

            commonSlideDataExtensionList2.Append(commonSlideDataExtension2);

            commonSlideData2.Append(shapeTree2);
            commonSlideData2.Append(commonSlideDataExtensionList2);

            ColorMapOverride colorMapOverride2 = new ColorMapOverride();
            A.MasterColorMapping masterColorMapping2 = new A.MasterColorMapping();

            colorMapOverride2.Append(masterColorMapping2);

            slideLayout1.Append(commonSlideData2);
            slideLayout1.Append(colorMapOverride2);

            slideLayoutPart1.SlideLayout = slideLayout1;
        }
Ejemplo n.º 32
0
        public void DrawCharacter(Wpg.WordprocessingGroup wordprocessingGroup, AtomLabelCharacter alc)
        {
            Point characterPosition = new Point(alc.Position.X, alc.Position.Y);

            characterPosition.Offset(-_canvasExtents.Left, -_canvasExtents.Top);

            UInt32Value id            = UInt32Value.FromUInt32((uint)_ooxmlId++);
            string      atomLabelName = "Atom " + alc.ParentAtom;

            Int64Value width  = OoXmlHelper.ScaleCsTtfToEmu(alc.Character.Width, _meanBondLength);
            Int64Value height = OoXmlHelper.ScaleCsTtfToEmu(alc.Character.Height, _meanBondLength);

            if (alc.IsSmaller)
            {
                width  = OoXmlHelper.ScaleCsTtfSubScriptToEmu(alc.Character.Width, _meanBondLength);
                height = OoXmlHelper.ScaleCsTtfSubScriptToEmu(alc.Character.Height, _meanBondLength);
            }
            Int64Value top  = OoXmlHelper.ScaleCmlToEmu(characterPosition.Y);
            Int64Value left = OoXmlHelper.ScaleCmlToEmu(characterPosition.X);

            // Set variable true to show bounding box of (every) character
            if (_options.ShowCharacterBoundingBoxes)
            {
                Rect boundingBox = new Rect(new Point(left, top), new Size(width, height));
                DrawCharacterBox(wordprocessingGroup, boundingBox, "00ff00", 0.25);
            }

            Wps.WordprocessingShape        shape = new Wps.WordprocessingShape();
            Wps.NonVisualDrawingProperties nonVisualDrawingProperties = new Wps.NonVisualDrawingProperties()
            {
                Id = id, Name = atomLabelName
            };
            Wps.NonVisualDrawingShapeProperties nonVisualDrawingShapeProperties = new Wps.NonVisualDrawingShapeProperties();

            Wps.ShapeProperties shapeProperties = new Wps.ShapeProperties();

            A.Transform2D transform2D = new A.Transform2D();
            A.Offset      offset      = new A.Offset {
                X = left, Y = top
            };
            A.Extents extents = new A.Extents {
                Cx = width, Cy = height
            };

            transform2D.Append(offset);
            transform2D.Append(extents);

            A.CustomGeometry  geometry        = new A.CustomGeometry();
            A.AdjustValueList adjustValueList = new A.AdjustValueList();
            A.Rectangle       rectangle       = new A.Rectangle {
                Left = "l", Top = "t", Right = "r", Bottom = "b"
            };

            A.PathList pathList = new A.PathList();

            A.Path path = new A.Path {
                Width = width, Height = height
            };

            foreach (TtfContour contour in alc.Character.Contours)
            {
                int i = 0;

                while (i < contour.Points.Count)
                {
                    TtfPoint thisPoint = contour.Points[i];
                    TtfPoint nextPoint = null;
                    if (i < contour.Points.Count - 1)
                    {
                        nextPoint = contour.Points[i + 1];
                    }

                    switch (thisPoint.Type)
                    {
                    case TtfPoint.PointType.Start:
                        A.MoveTo moveTo = new A.MoveTo();
                        if (alc.IsSmaller)
                        {
                            A.Point point = MakeSubscriptPoint(thisPoint);
                            moveTo.Append(point);
                            path.Append(moveTo);
                        }
                        else
                        {
                            A.Point point = MakeNormalPoint(thisPoint);
                            moveTo.Append(point);
                            path.Append(moveTo);
                        }
                        i++;
                        break;

                    case TtfPoint.PointType.Line:
                        A.LineTo lineTo = new A.LineTo();
                        if (alc.IsSmaller)
                        {
                            A.Point point = MakeSubscriptPoint(thisPoint);
                            lineTo.Append(point);
                            path.Append(lineTo);
                        }
                        else
                        {
                            A.Point point = MakeNormalPoint(thisPoint);
                            lineTo.Append(point);
                            path.Append(lineTo);
                        }
                        i++;
                        break;

                    case TtfPoint.PointType.CurveOff:
                        A.QuadraticBezierCurveTo quadraticBezierCurveTo = new A.QuadraticBezierCurveTo();
                        if (alc.IsSmaller)
                        {
                            A.Point pointA = MakeSubscriptPoint(thisPoint);
                            A.Point pointB = MakeSubscriptPoint(nextPoint);
                            quadraticBezierCurveTo.Append(pointA);
                            quadraticBezierCurveTo.Append(pointB);
                            path.Append(quadraticBezierCurveTo);
                        }
                        else
                        {
                            A.Point pointA = MakeNormalPoint(thisPoint);
                            A.Point pointB = MakeNormalPoint(nextPoint);
                            quadraticBezierCurveTo.Append(pointA);
                            quadraticBezierCurveTo.Append(pointB);
                            path.Append(quadraticBezierCurveTo);
                        }
                        i++;
                        i++;
                        break;

                    case TtfPoint.PointType.CurveOn:
                        // Should never get here !
                        i++;
                        break;
                    }
                }

                A.CloseShapePath closeShapePath = new A.CloseShapePath();
                path.Append(closeShapePath);
            }

            pathList.Append(path);

            geometry.Append(adjustValueList);
            geometry.Append(rectangle);
            geometry.Append(pathList);

            A.SolidFill solidFill = new A.SolidFill();

            // Set Colour
            A.RgbColorModelHex rgbColorModelHex = new A.RgbColorModelHex {
                Val = alc.Colour
            };
            solidFill.Append(rgbColorModelHex);

            shapeProperties.Append(transform2D);
            shapeProperties.Append(geometry);
            shapeProperties.Append(solidFill);

            OoXmlHelper.AppendShapeStyle(shape, nonVisualDrawingProperties, nonVisualDrawingShapeProperties, shapeProperties);
            wordprocessingGroup.Append(shape);

            // Local Functions
            A.Point MakeSubscriptPoint(TtfPoint ttfPoint)
            {
                A.Point pp = new A.Point
                {
                    X = $"{OoXmlHelper.ScaleCsTtfSubScriptToEmu(ttfPoint.X - alc.Character.OriginX, _meanBondLength)}",
                    Y = $"{OoXmlHelper.ScaleCsTtfSubScriptToEmu(alc.Character.Height + ttfPoint.Y - (alc.Character.Height + alc.Character.OriginY), _meanBondLength)}"
                };
                return(pp);
            }

            A.Point MakeNormalPoint(TtfPoint ttfPoint)
            {
                A.Point pp = new A.Point
                {
                    X = $"{OoXmlHelper.ScaleCsTtfToEmu(ttfPoint.X - alc.Character.OriginX, _meanBondLength)}",
                    Y = $"{OoXmlHelper.ScaleCsTtfToEmu(alc.Character.Height + ttfPoint.Y - (alc.Character.Height + alc.Character.OriginY), _meanBondLength)}"
                };
                return(pp);
            }
        }
        // Generates content of themePart1.
        private static void GenerateThemePart1Content(ThemePart themePart1)
        {
            var theme1 = new A.Theme {
                Name = "Larissa"
            };

            theme1.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");

            var themeElements1 = new A.ThemeElements();

            var colorScheme1 = new A.ColorScheme {
                Name = "Larissa"
            };

            var dark1Color1  = new A.Dark1Color();
            var systemColor1 = new A.SystemColor {
                Val = A.SystemColorValues.WindowText, LastColor = "000000"
            };

            dark1Color1.Append(systemColor1);

            var light1Color1 = new A.Light1Color();
            var systemColor2 = new A.SystemColor {
                Val = A.SystemColorValues.Window, LastColor = "FFFFFF"
            };

            light1Color1.Append(systemColor2);

            var dark2Color1       = new A.Dark2Color();
            var rgbColorModelHex1 = new A.RgbColorModelHex {
                Val = "1F497D"
            };

            dark2Color1.Append(rgbColorModelHex1);

            var light2Color1      = new A.Light2Color();
            var rgbColorModelHex2 = new A.RgbColorModelHex {
                Val = "EEECE1"
            };

            light2Color1.Append(rgbColorModelHex2);

            var accent1Color1     = new A.Accent1Color();
            var rgbColorModelHex3 = new A.RgbColorModelHex {
                Val = "4F81BD"
            };

            accent1Color1.Append(rgbColorModelHex3);

            var accent2Color1     = new A.Accent2Color();
            var rgbColorModelHex4 = new A.RgbColorModelHex {
                Val = "C0504D"
            };

            accent2Color1.Append(rgbColorModelHex4);

            var accent3Color1     = new A.Accent3Color();
            var rgbColorModelHex5 = new A.RgbColorModelHex {
                Val = "9BBB59"
            };

            accent3Color1.Append(rgbColorModelHex5);

            var accent4Color1     = new A.Accent4Color();
            var rgbColorModelHex6 = new A.RgbColorModelHex {
                Val = "8064A2"
            };

            accent4Color1.Append(rgbColorModelHex6);

            var accent5Color1     = new A.Accent5Color();
            var rgbColorModelHex7 = new A.RgbColorModelHex {
                Val = "4BACC6"
            };

            accent5Color1.Append(rgbColorModelHex7);

            var accent6Color1     = new A.Accent6Color();
            var rgbColorModelHex8 = new A.RgbColorModelHex {
                Val = "F79646"
            };

            accent6Color1.Append(rgbColorModelHex8);

            var hyperlink1        = new A.Hyperlink();
            var rgbColorModelHex9 = new A.RgbColorModelHex {
                Val = "0000FF"
            };

            hyperlink1.Append(rgbColorModelHex9);

            var followedHyperlinkColor1 = new A.FollowedHyperlinkColor();
            var rgbColorModelHex10      = new A.RgbColorModelHex {
                Val = "800080"
            };

            followedHyperlinkColor1.Append(rgbColorModelHex10);

            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);

            var fontScheme2 = new A.FontScheme {
                Name = "Larissa"
            };

            var majorFont1 = new A.MajorFont();
            var latinFont1 = new A.LatinFont {
                Typeface = "Cambria"
            };
            var eastAsianFont1 = new A.EastAsianFont {
                Typeface = ""
            };
            var complexScriptFont1 = new A.ComplexScriptFont {
                Typeface = ""
            };
            var supplementalFont1 = new A.SupplementalFont {
                Script = "Jpan", Typeface = "MS Pゴシック"
            };
            var supplementalFont2 = new A.SupplementalFont {
                Script = "Hang", Typeface = "맑은 고딕"
            };
            var supplementalFont3 = new A.SupplementalFont {
                Script = "Hans", Typeface = "宋体"
            };
            var supplementalFont4 = new A.SupplementalFont {
                Script = "Hant", Typeface = "新細明體"
            };
            var supplementalFont5 = new A.SupplementalFont {
                Script = "Arab", Typeface = "Times New Roman"
            };
            var supplementalFont6 = new A.SupplementalFont {
                Script = "Hebr", Typeface = "Times New Roman"
            };
            var supplementalFont7 = new A.SupplementalFont {
                Script = "Thai", Typeface = "Tahoma"
            };
            var supplementalFont8 = new A.SupplementalFont {
                Script = "Ethi", Typeface = "Nyala"
            };
            var supplementalFont9 = new A.SupplementalFont {
                Script = "Beng", Typeface = "Vrinda"
            };
            var supplementalFont10 = new A.SupplementalFont {
                Script = "Gujr", Typeface = "Shruti"
            };
            var supplementalFont11 = new A.SupplementalFont {
                Script = "Khmr", Typeface = "MoolBoran"
            };
            var supplementalFont12 = new A.SupplementalFont {
                Script = "Knda", Typeface = "Tunga"
            };
            var supplementalFont13 = new A.SupplementalFont {
                Script = "Guru", Typeface = "Raavi"
            };
            var supplementalFont14 = new A.SupplementalFont {
                Script = "Cans", Typeface = "Euphemia"
            };
            var supplementalFont15 = new A.SupplementalFont {
                Script = "Cher", Typeface = "Plantagenet Cherokee"
            };
            var supplementalFont16 = new A.SupplementalFont {
                Script = "Yiii", Typeface = "Microsoft Yi Baiti"
            };
            var supplementalFont17 = new A.SupplementalFont {
                Script = "Tibt", Typeface = "Microsoft Himalaya"
            };
            var supplementalFont18 = new A.SupplementalFont {
                Script = "Thaa", Typeface = "MV Boli"
            };
            var supplementalFont19 = new A.SupplementalFont {
                Script = "Deva", Typeface = "Mangal"
            };
            var supplementalFont20 = new A.SupplementalFont {
                Script = "Telu", Typeface = "Gautami"
            };
            var supplementalFont21 = new A.SupplementalFont {
                Script = "Taml", Typeface = "Latha"
            };
            var supplementalFont22 = new A.SupplementalFont {
                Script = "Syrc", Typeface = "Estrangelo Edessa"
            };
            var supplementalFont23 = new A.SupplementalFont {
                Script = "Orya", Typeface = "Kalinga"
            };
            var supplementalFont24 = new A.SupplementalFont {
                Script = "Mlym", Typeface = "Kartika"
            };
            var supplementalFont25 = new A.SupplementalFont {
                Script = "Laoo", Typeface = "DokChampa"
            };
            var supplementalFont26 = new A.SupplementalFont {
                Script = "Sinh", Typeface = "Iskoola Pota"
            };
            var supplementalFont27 = new A.SupplementalFont {
                Script = "Mong", Typeface = "Mongolian Baiti"
            };
            var supplementalFont28 = new A.SupplementalFont {
                Script = "Viet", Typeface = "Times New Roman"
            };
            var supplementalFont29 = new A.SupplementalFont {
                Script = "Uigh", Typeface = "Microsoft Uighur"
            };
            var supplementalFont30 = new A.SupplementalFont {
                Script = "Geor", Typeface = "Sylfaen"
            };

            majorFont1.Append(latinFont1);
            majorFont1.Append(eastAsianFont1);
            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);
            majorFont1.Append(supplementalFont30);

            var minorFont1 = new A.MinorFont();
            var latinFont2 = new A.LatinFont {
                Typeface = "Calibri"
            };
            var eastAsianFont2 = new A.EastAsianFont {
                Typeface = ""
            };
            var complexScriptFont2 = new A.ComplexScriptFont {
                Typeface = ""
            };
            var supplementalFont31 = new A.SupplementalFont {
                Script = "Jpan", Typeface = "MS Pゴシック"
            };
            var supplementalFont32 = new A.SupplementalFont {
                Script = "Hang", Typeface = "맑은 고딕"
            };
            var supplementalFont33 = new A.SupplementalFont {
                Script = "Hans", Typeface = "宋体"
            };
            var supplementalFont34 = new A.SupplementalFont {
                Script = "Hant", Typeface = "新細明體"
            };
            var supplementalFont35 = new A.SupplementalFont {
                Script = "Arab", Typeface = "Arial"
            };
            var supplementalFont36 = new A.SupplementalFont {
                Script = "Hebr", Typeface = "Arial"
            };
            var supplementalFont37 = new A.SupplementalFont {
                Script = "Thai", Typeface = "Tahoma"
            };
            var supplementalFont38 = new A.SupplementalFont {
                Script = "Ethi", Typeface = "Nyala"
            };
            var supplementalFont39 = new A.SupplementalFont {
                Script = "Beng", Typeface = "Vrinda"
            };
            var supplementalFont40 = new A.SupplementalFont {
                Script = "Gujr", Typeface = "Shruti"
            };
            var supplementalFont41 = new A.SupplementalFont {
                Script = "Khmr", Typeface = "DaunPenh"
            };
            var supplementalFont42 = new A.SupplementalFont {
                Script = "Knda", Typeface = "Tunga"
            };
            var supplementalFont43 = new A.SupplementalFont {
                Script = "Guru", Typeface = "Raavi"
            };
            var supplementalFont44 = new A.SupplementalFont {
                Script = "Cans", Typeface = "Euphemia"
            };
            var supplementalFont45 = new A.SupplementalFont {
                Script = "Cher", Typeface = "Plantagenet Cherokee"
            };
            var supplementalFont46 = new A.SupplementalFont {
                Script = "Yiii", Typeface = "Microsoft Yi Baiti"
            };
            var supplementalFont47 = new A.SupplementalFont {
                Script = "Tibt", Typeface = "Microsoft Himalaya"
            };
            var supplementalFont48 = new A.SupplementalFont {
                Script = "Thaa", Typeface = "MV Boli"
            };
            var supplementalFont49 = new A.SupplementalFont {
                Script = "Deva", Typeface = "Mangal"
            };
            var supplementalFont50 = new A.SupplementalFont {
                Script = "Telu", Typeface = "Gautami"
            };
            var supplementalFont51 = new A.SupplementalFont {
                Script = "Taml", Typeface = "Latha"
            };
            var supplementalFont52 = new A.SupplementalFont {
                Script = "Syrc", Typeface = "Estrangelo Edessa"
            };
            var supplementalFont53 = new A.SupplementalFont {
                Script = "Orya", Typeface = "Kalinga"
            };
            var supplementalFont54 = new A.SupplementalFont {
                Script = "Mlym", Typeface = "Kartika"
            };
            var supplementalFont55 = new A.SupplementalFont {
                Script = "Laoo", Typeface = "DokChampa"
            };
            var supplementalFont56 = new A.SupplementalFont {
                Script = "Sinh", Typeface = "Iskoola Pota"
            };
            var supplementalFont57 = new A.SupplementalFont {
                Script = "Mong", Typeface = "Mongolian Baiti"
            };
            var supplementalFont58 = new A.SupplementalFont {
                Script = "Viet", Typeface = "Arial"
            };
            var supplementalFont59 = new A.SupplementalFont {
                Script = "Uigh", Typeface = "Microsoft Uighur"
            };
            var supplementalFont60 = new A.SupplementalFont {
                Script = "Geor", Typeface = "Sylfaen"
            };

            minorFont1.Append(latinFont2);
            minorFont1.Append(eastAsianFont2);
            minorFont1.Append(complexScriptFont2);
            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);
            minorFont1.Append(supplementalFont59);
            minorFont1.Append(supplementalFont60);

            fontScheme2.Append(majorFont1);
            fontScheme2.Append(minorFont1);

            var formatScheme1 = new A.FormatScheme {
                Name = "Larissa"
            };

            var fillStyleList1 = new A.FillStyleList();

            var solidFill1   = new A.SolidFill();
            var schemeColor1 = new A.SchemeColor {
                Val = A.SchemeColorValues.PhColor
            };

            solidFill1.Append(schemeColor1);

            var gradientFill1 = new A.GradientFill {
                RotateWithShape = true
            };

            var gradientStopList1 = new A.GradientStopList();

            var gradientStop1 = new A.GradientStop {
                Position = 0
            };

            var schemeColor2 = new A.SchemeColor {
                Val = A.SchemeColorValues.PhColor
            };
            var tint1 = new A.Tint {
                Val = 50000
            };
            var saturationModulation1 = new A.SaturationModulation {
                Val = 300000
            };

            schemeColor2.Append(tint1);
            schemeColor2.Append(saturationModulation1);

            gradientStop1.Append(schemeColor2);

            var gradientStop2 = new A.GradientStop {
                Position = 35000
            };

            var schemeColor3 = new A.SchemeColor {
                Val = A.SchemeColorValues.PhColor
            };
            var tint2 = new A.Tint {
                Val = 37000
            };
            var saturationModulation2 = new A.SaturationModulation {
                Val = 300000
            };

            schemeColor3.Append(tint2);
            schemeColor3.Append(saturationModulation2);

            gradientStop2.Append(schemeColor3);

            var gradientStop3 = new A.GradientStop {
                Position = 100000
            };

            var schemeColor4 = new A.SchemeColor {
                Val = A.SchemeColorValues.PhColor
            };
            var tint3 = new A.Tint {
                Val = 15000
            };
            var saturationModulation3 = new A.SaturationModulation {
                Val = 350000
            };

            schemeColor4.Append(tint3);
            schemeColor4.Append(saturationModulation3);

            gradientStop3.Append(schemeColor4);

            gradientStopList1.Append(gradientStop1);
            gradientStopList1.Append(gradientStop2);
            gradientStopList1.Append(gradientStop3);
            var linearGradientFill1 = new A.LinearGradientFill {
                Angle = 16200000, Scaled = true
            };

            gradientFill1.Append(gradientStopList1);
            gradientFill1.Append(linearGradientFill1);

            var gradientFill2 = new A.GradientFill {
                RotateWithShape = true
            };

            var gradientStopList2 = new A.GradientStopList();

            var gradientStop4 = new A.GradientStop {
                Position = 0
            };

            var schemeColor5 = new A.SchemeColor {
                Val = A.SchemeColorValues.PhColor
            };
            var shade1 = new A.Shade {
                Val = 51000
            };
            var saturationModulation4 = new A.SaturationModulation {
                Val = 130000
            };

            schemeColor5.Append(shade1);
            schemeColor5.Append(saturationModulation4);

            gradientStop4.Append(schemeColor5);

            var gradientStop5 = new A.GradientStop {
                Position = 80000
            };

            var schemeColor6 = new A.SchemeColor {
                Val = A.SchemeColorValues.PhColor
            };
            var shade2 = new A.Shade {
                Val = 93000
            };
            var saturationModulation5 = new A.SaturationModulation {
                Val = 130000
            };

            schemeColor6.Append(shade2);
            schemeColor6.Append(saturationModulation5);

            gradientStop5.Append(schemeColor6);

            var gradientStop6 = new A.GradientStop {
                Position = 100000
            };

            var schemeColor7 = new A.SchemeColor {
                Val = A.SchemeColorValues.PhColor
            };
            var shade3 = new A.Shade {
                Val = 94000
            };
            var saturationModulation6 = new A.SaturationModulation {
                Val = 135000
            };

            schemeColor7.Append(shade3);
            schemeColor7.Append(saturationModulation6);

            gradientStop6.Append(schemeColor7);

            gradientStopList2.Append(gradientStop4);
            gradientStopList2.Append(gradientStop5);
            gradientStopList2.Append(gradientStop6);
            var linearGradientFill2 = new A.LinearGradientFill {
                Angle = 16200000, Scaled = false
            };

            gradientFill2.Append(gradientStopList2);
            gradientFill2.Append(linearGradientFill2);

            fillStyleList1.Append(solidFill1);
            fillStyleList1.Append(gradientFill1);
            fillStyleList1.Append(gradientFill2);

            var lineStyleList1 = new A.LineStyleList();

            var outline1 = new A.Outline {
                Width = 9525, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center
            };

            var solidFill2 = new A.SolidFill();

            var schemeColor8 = new A.SchemeColor {
                Val = A.SchemeColorValues.PhColor
            };
            var shade4 = new A.Shade {
                Val = 95000
            };
            var saturationModulation7 = new A.SaturationModulation {
                Val = 105000
            };

            schemeColor8.Append(shade4);
            schemeColor8.Append(saturationModulation7);

            solidFill2.Append(schemeColor8);
            var presetDash1 = new A.PresetDash {
                Val = A.PresetLineDashValues.Solid
            };

            outline1.Append(solidFill2);
            outline1.Append(presetDash1);

            var outline2 = new A.Outline {
                Width = 25400, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center
            };

            var solidFill3   = new A.SolidFill();
            var schemeColor9 = new A.SchemeColor {
                Val = A.SchemeColorValues.PhColor
            };

            solidFill3.Append(schemeColor9);
            var presetDash2 = new A.PresetDash {
                Val = A.PresetLineDashValues.Solid
            };

            outline2.Append(solidFill3);
            outline2.Append(presetDash2);

            var outline3 = new A.Outline {
                Width = 38100, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center
            };

            var solidFill4    = new A.SolidFill();
            var schemeColor10 = new A.SchemeColor {
                Val = A.SchemeColorValues.PhColor
            };

            solidFill4.Append(schemeColor10);
            var presetDash3 = new A.PresetDash {
                Val = A.PresetLineDashValues.Solid
            };

            outline3.Append(solidFill4);
            outline3.Append(presetDash3);

            lineStyleList1.Append(outline1);
            lineStyleList1.Append(outline2);
            lineStyleList1.Append(outline3);

            var effectStyleList1 = new A.EffectStyleList();

            var effectStyle1 = new A.EffectStyle();

            var effectList1 = new A.EffectList();

            var outerShadow1 = new A.OuterShadow {
                BlurRadius = 40000L, Distance = 20000L, Direction = 5400000, RotateWithShape = false
            };

            var rgbColorModelHex11 = new A.RgbColorModelHex {
                Val = "000000"
            };
            var alpha1 = new A.Alpha {
                Val = 38000
            };

            rgbColorModelHex11.Append(alpha1);

            outerShadow1.Append(rgbColorModelHex11);

            effectList1.Append(outerShadow1);

            effectStyle1.Append(effectList1);

            var effectStyle2 = new A.EffectStyle();

            var effectList2 = new A.EffectList();

            var outerShadow2 = new A.OuterShadow {
                BlurRadius = 40000L, Distance = 23000L, Direction = 5400000, RotateWithShape = false
            };

            var rgbColorModelHex12 = new A.RgbColorModelHex {
                Val = "000000"
            };
            var alpha2 = new A.Alpha {
                Val = 35000
            };

            rgbColorModelHex12.Append(alpha2);

            outerShadow2.Append(rgbColorModelHex12);

            effectList2.Append(outerShadow2);

            effectStyle2.Append(effectList2);

            var effectStyle3 = new A.EffectStyle();

            var effectList3 = new A.EffectList();

            var outerShadow3 = new A.OuterShadow {
                BlurRadius = 40000L, Distance = 23000L, Direction = 5400000, RotateWithShape = false
            };

            var rgbColorModelHex13 = new A.RgbColorModelHex {
                Val = "000000"
            };
            var alpha3 = new A.Alpha {
                Val = 35000
            };

            rgbColorModelHex13.Append(alpha3);

            outerShadow3.Append(rgbColorModelHex13);

            effectList3.Append(outerShadow3);

            var scene3DType1 = new A.Scene3DType();

            var camera1 = new A.Camera {
                Preset = A.PresetCameraValues.OrthographicFront
            };
            var rotation1 = new A.Rotation {
                Latitude = 0, Longitude = 0, Revolution = 0
            };

            camera1.Append(rotation1);

            var lightRig1 = new A.LightRig {
                Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top
            };
            var rotation2 = new A.Rotation {
                Latitude = 0, Longitude = 0, Revolution = 1200000
            };

            lightRig1.Append(rotation2);

            scene3DType1.Append(camera1);
            scene3DType1.Append(lightRig1);

            var shape3DType1 = new A.Shape3DType();
            var 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);

            var backgroundFillStyleList1 = new A.BackgroundFillStyleList();

            var solidFill5    = new A.SolidFill();
            var schemeColor11 = new A.SchemeColor {
                Val = A.SchemeColorValues.PhColor
            };

            solidFill5.Append(schemeColor11);

            var gradientFill3 = new A.GradientFill {
                RotateWithShape = true
            };

            var gradientStopList3 = new A.GradientStopList();

            var gradientStop7 = new A.GradientStop {
                Position = 0
            };

            var schemeColor12 = new A.SchemeColor {
                Val = A.SchemeColorValues.PhColor
            };
            var tint4 = new A.Tint {
                Val = 40000
            };
            var saturationModulation8 = new A.SaturationModulation {
                Val = 350000
            };

            schemeColor12.Append(tint4);
            schemeColor12.Append(saturationModulation8);

            gradientStop7.Append(schemeColor12);

            var gradientStop8 = new A.GradientStop {
                Position = 40000
            };

            var schemeColor13 = new A.SchemeColor {
                Val = A.SchemeColorValues.PhColor
            };
            var tint5 = new A.Tint {
                Val = 45000
            };
            var shade5 = new A.Shade {
                Val = 99000
            };
            var saturationModulation9 = new A.SaturationModulation {
                Val = 350000
            };

            schemeColor13.Append(tint5);
            schemeColor13.Append(shade5);
            schemeColor13.Append(saturationModulation9);

            gradientStop8.Append(schemeColor13);

            var gradientStop9 = new A.GradientStop {
                Position = 100000
            };

            var schemeColor14 = new A.SchemeColor {
                Val = A.SchemeColorValues.PhColor
            };
            var shade6 = new A.Shade {
                Val = 20000
            };
            var saturationModulation10 = new A.SaturationModulation {
                Val = 255000
            };

            schemeColor14.Append(shade6);
            schemeColor14.Append(saturationModulation10);

            gradientStop9.Append(schemeColor14);

            gradientStopList3.Append(gradientStop7);
            gradientStopList3.Append(gradientStop8);
            gradientStopList3.Append(gradientStop9);

            var pathGradientFill1 = new A.PathGradientFill {
                Path = A.PathShadeValues.Circle
            };
            var fillToRectangle1 = new A.FillToRectangle {
                Left = 50000, Top = -80000, Right = 50000, Bottom = 180000
            };

            pathGradientFill1.Append(fillToRectangle1);

            gradientFill3.Append(gradientStopList3);
            gradientFill3.Append(pathGradientFill1);

            var gradientFill4 = new A.GradientFill {
                RotateWithShape = true
            };

            var gradientStopList4 = new A.GradientStopList();

            var gradientStop10 = new A.GradientStop {
                Position = 0
            };

            var schemeColor15 = new A.SchemeColor {
                Val = A.SchemeColorValues.PhColor
            };
            var tint6 = new A.Tint {
                Val = 80000
            };
            var saturationModulation11 = new A.SaturationModulation {
                Val = 300000
            };

            schemeColor15.Append(tint6);
            schemeColor15.Append(saturationModulation11);

            gradientStop10.Append(schemeColor15);

            var gradientStop11 = new A.GradientStop {
                Position = 100000
            };

            var schemeColor16 = new A.SchemeColor {
                Val = A.SchemeColorValues.PhColor
            };
            var shade7 = new A.Shade {
                Val = 30000
            };
            var saturationModulation12 = new A.SaturationModulation {
                Val = 200000
            };

            schemeColor16.Append(shade7);
            schemeColor16.Append(saturationModulation12);

            gradientStop11.Append(schemeColor16);

            gradientStopList4.Append(gradientStop10);
            gradientStopList4.Append(gradientStop11);

            var pathGradientFill2 = new A.PathGradientFill {
                Path = A.PathShadeValues.Circle
            };
            var fillToRectangle2 = new A.FillToRectangle {
                Left = 50000, Top = 50000, Right = 50000, Bottom = 50000
            };

            pathGradientFill2.Append(fillToRectangle2);

            gradientFill4.Append(gradientStopList4);
            gradientFill4.Append(pathGradientFill2);

            backgroundFillStyleList1.Append(solidFill5);
            backgroundFillStyleList1.Append(gradientFill3);
            backgroundFillStyleList1.Append(gradientFill4);

            formatScheme1.Append(fillStyleList1);
            formatScheme1.Append(lineStyleList1);
            formatScheme1.Append(effectStyleList1);
            formatScheme1.Append(backgroundFillStyleList1);

            themeElements1.Append(colorScheme1);
            themeElements1.Append(fontScheme2);
            themeElements1.Append(formatScheme1);
            var objectDefaults1       = new A.ObjectDefaults();
            var extraColorSchemeList1 = new A.ExtraColorSchemeList();

            theme1.Append(themeElements1);
            theme1.Append(objectDefaults1);
            theme1.Append(extraColorSchemeList1);

            themePart1.Theme = theme1;
        }
Ejemplo n.º 34
0
        private void DrawShape(Wpg.WordprocessingGroup wordprocessingGroup1, Rect extents, A.ShapeTypeValues shape, string colour)
        {
            UInt32Value bondLineId   = UInt32Value.FromUInt32((uint)_ooxmlId++);
            string      bondLineName = "shape" + bondLineId;

            Int64Value width1  = OoXmlHelper.ScaleCmlToEmu(extents.Width);
            Int64Value height1 = OoXmlHelper.ScaleCmlToEmu(extents.Height);
            Int64Value top1    = OoXmlHelper.ScaleCmlToEmu(extents.Top);
            Int64Value left1   = OoXmlHelper.ScaleCmlToEmu(extents.Left);

            Point pp1 = new Point(left1, top1);
            Size  ss2 = new Size(width1, height1);

            pp1.Offset(OoXmlHelper.ScaleCmlToEmu(-_canvasExtents.Left), OoXmlHelper.ScaleCmlToEmu(-_canvasExtents.Top));
            Rect boundingBox = new Rect(pp1, ss2);

            Int64Value width  = (Int64Value)boundingBox.Width;
            Int64Value height = (Int64Value)boundingBox.Height;
            Int64Value top    = (Int64Value)boundingBox.Top;
            Int64Value left   = (Int64Value)boundingBox.Left;

            A.Extents        extents2        = null;
            A.PresetGeometry presetGeometry1 = null;
            extents2 = new A.Extents()
            {
                Cx = width, Cy = height
            };
            presetGeometry1 = new A.PresetGeometry()
            {
                Preset = shape
            };

            Wps.WordprocessingShape        wordprocessingShape1        = new Wps.WordprocessingShape();
            Wps.NonVisualDrawingProperties nonVisualDrawingProperties1 = new Wps.NonVisualDrawingProperties()
            {
                Id   = bondLineId,
                Name = bondLineName
            };

            Wps.NonVisualDrawingShapeProperties nonVisualDrawingShapeProperties1 = new Wps.NonVisualDrawingShapeProperties();
            Wps.ShapeProperties shapeProperties1 = new Wps.ShapeProperties();

            A.Transform2D transform2D1 = new A.Transform2D();
            A.Offset      offset2      = new A.Offset()
            {
                X = left, Y = top
            };

            transform2D1.Append(offset2);
            transform2D1.Append(extents2);

            A.AdjustValueList adjustValueList1 = new A.AdjustValueList();

            presetGeometry1.Append(adjustValueList1);
            A.SolidFill solidFill1 = new A.SolidFill();

            A.RgbColorModelHex rgbColorModelHex1 = new A.RgbColorModelHex()
            {
                Val = colour
            };
            A.Alpha alpha1 = new A.Alpha()
            {
                Val = new Int32Value()
                {
                    InnerText = "100%"
                }
            };
            solidFill1.Append(rgbColorModelHex1);

            shapeProperties1.Append(transform2D1);
            shapeProperties1.Append(presetGeometry1);
            shapeProperties1.Append(solidFill1);

            Wps.ShapeStyle  shapeStyle1    = new Wps.ShapeStyle();
            A.LineReference lineReference1 = new A.LineReference()
            {
                Index = (UInt32Value)0U
            };
            A.FillReference fillReference1 = new A.FillReference()
            {
                Index = (UInt32Value)0U
            };
            A.EffectReference effectReference1 = new A.EffectReference()
            {
                Index = (UInt32Value)0U
            };
            A.FontReference fontReference1 = new A.FontReference()
            {
                Index = A.FontCollectionIndexValues.Minor
            };

            shapeStyle1.Append(lineReference1);
            shapeStyle1.Append(fillReference1);
            shapeStyle1.Append(effectReference1);
            shapeStyle1.Append(fontReference1);
            Wps.TextBodyProperties textBodyProperties1 = new Wps.TextBodyProperties();

            wordprocessingShape1.Append(nonVisualDrawingProperties1);
            wordprocessingShape1.Append(nonVisualDrawingShapeProperties1);
            wordprocessingShape1.Append(shapeProperties1);
            wordprocessingShape1.Append(shapeStyle1);
            wordprocessingShape1.Append(textBodyProperties1);

            wordprocessingGroup1.Append(wordprocessingShape1);
        }
Ejemplo n.º 35
0
        private void DrawFilledTriangle(Wpg.WordprocessingGroup wordprocessingGroup1, List <Point> points)
        {
            UInt32Value atomLabelId   = UInt32Value.FromUInt32((uint)m_ooxmlId++);
            string      atomLabelName = "WedgeBond" + atomLabelId;

            double minX = double.MaxValue;
            double maxX = double.MinValue;
            double minY = double.MaxValue;
            double maxY = double.MinValue;

            foreach (Point p in points)
            {
                maxX = Math.Max(p.X, maxX);
                minX = Math.Min(p.X, minX);
                maxY = Math.Max(p.Y, maxY);
                minY = Math.Min(p.Y, minY);
            }

            Rect extents = new Rect(minX, minY, maxX - minX, maxY - minY);

            // Create modifyable Points
            Point p0 = new Point(points[0].X, points[0].Y);
            Point p1 = new Point(points[1].X, points[1].Y);
            Point p2 = new Point(points[2].X, points[2].Y);

            // Move Points to have 0,0 Top Left Reference within the drawing canvas
            p0.Offset(-m_canvasExtents.Left, -m_canvasExtents.Top);
            p1.Offset(-m_canvasExtents.Left, -m_canvasExtents.Top);
            p2.Offset(-m_canvasExtents.Left, -m_canvasExtents.Top);

            // Move shape's extents to correct place in drawing canvas
            extents.Offset(-m_canvasExtents.Left, -m_canvasExtents.Top);

            // Move points again to put them inside the shape's extents
            p0.Offset(-extents.Left, -extents.Top);
            p1.Offset(-extents.Left, -extents.Top);
            p2.Offset(-extents.Left, -extents.Top);

            Int64Value top    = OoXmlHelper.ScaleCmlToEmu(extents.Y);
            Int64Value left   = OoXmlHelper.ScaleCmlToEmu(extents.X);
            Int64Value width  = OoXmlHelper.ScaleCmlToEmu(extents.Width);
            Int64Value height = OoXmlHelper.ScaleCmlToEmu(extents.Height);

            Wps.WordprocessingShape        wordprocessingShape10        = new Wps.WordprocessingShape();
            Wps.NonVisualDrawingProperties nonVisualDrawingProperties10 = new Wps.NonVisualDrawingProperties()
            {
                Id = atomLabelId, Name = atomLabelName
            };
            Wps.NonVisualDrawingShapeProperties nonVisualDrawingShapeProperties10 = new Wps.NonVisualDrawingShapeProperties();

            Wps.ShapeProperties shapeProperties10 = new Wps.ShapeProperties();

            A.Transform2D transform2D10 = new A.Transform2D();
            A.Offset      offset11      = new A.Offset()
            {
                X = left, Y = top
            };
            A.Extents extents11 = new A.Extents()
            {
                Cx = width, Cy = height
            };

            transform2D10.Append(offset11);
            transform2D10.Append(extents11);

            A.CustomGeometry  customGeometry10  = new A.CustomGeometry();
            A.AdjustValueList adjustValueList10 = new A.AdjustValueList();
            A.Rectangle       rectangle10       = new A.Rectangle()
            {
                Left = "l", Top = "t", Right = "r", Bottom = "b"
            };

            A.PathList pathList10 = new A.PathList();

            A.Path path10 = new A.Path()
            {
                Width = width, Height = height
            };

            string xCoOrdinate = OoXmlHelper.ScaleCmlToEmu(p0.X).ToString();
            string yCoOrdinate = OoXmlHelper.ScaleCmlToEmu(p0.Y).ToString();

            A.MoveTo moveTo10 = new A.MoveTo();
            A.Point  point19  = new A.Point()
            {
                X = xCoOrdinate, Y = yCoOrdinate
            };
            moveTo10.Append(point19);
            path10.Append(moveTo10);

            xCoOrdinate = OoXmlHelper.ScaleCmlToEmu(p1.X).ToString();
            yCoOrdinate = OoXmlHelper.ScaleCmlToEmu(p1.Y).ToString();

            A.LineTo lineTo10 = new A.LineTo();
            A.Point  point20  = new A.Point()
            {
                X = xCoOrdinate, Y = yCoOrdinate
            };
            lineTo10.Append(point20);
            path10.Append(lineTo10);

            xCoOrdinate = OoXmlHelper.ScaleCmlToEmu(p2.X).ToString();
            yCoOrdinate = OoXmlHelper.ScaleCmlToEmu(p2.Y).ToString();

            A.LineTo lineTo19 = new A.LineTo();
            A.Point  point29  = new A.Point()
            {
                X = xCoOrdinate, Y = yCoOrdinate
            };
            lineTo19.Append(point29);
            path10.Append(lineTo19);
            A.CloseShapePath closeShapePath1 = new A.CloseShapePath();
            path10.Append(closeShapePath1);

            pathList10.Append(path10);

            customGeometry10.Append(adjustValueList10);
            customGeometry10.Append(rectangle10);
            customGeometry10.Append(pathList10);

            A.SolidFill solidFill10 = new A.SolidFill();

            A.RgbColorModelHex rgbColorModelHex10 = new A.RgbColorModelHex()
            {
                Val = "000000"
            };
            A.Alpha alpha10 = new A.Alpha()
            {
                Val = new Int32Value()
                {
                    InnerText = "100%"
                }
            };

            rgbColorModelHex10.Append(alpha10);

            solidFill10.Append(rgbColorModelHex10);

            shapeProperties10.Append(transform2D10);
            shapeProperties10.Append(customGeometry10);
            shapeProperties10.Append(solidFill10);

            Wps.ShapeStyle  shapeStyle10    = new Wps.ShapeStyle();
            A.LineReference lineReference10 = new A.LineReference()
            {
                Index = (UInt32Value)0U
            };
            A.FillReference fillReference10 = new A.FillReference()
            {
                Index = (UInt32Value)0U
            };
            A.EffectReference effectReference10 = new A.EffectReference()
            {
                Index = (UInt32Value)0U
            };
            A.FontReference fontReference10 = new A.FontReference()
            {
                Index = A.FontCollectionIndexValues.Minor
            };

            shapeStyle10.Append(lineReference10);
            shapeStyle10.Append(fillReference10);
            shapeStyle10.Append(effectReference10);
            shapeStyle10.Append(fontReference10);
            Wps.TextBodyProperties textBodyProperties10 = new Wps.TextBodyProperties();

            wordprocessingShape10.Append(nonVisualDrawingProperties10);
            wordprocessingShape10.Append(nonVisualDrawingShapeProperties10);
            wordprocessingShape10.Append(shapeProperties10);
            wordprocessingShape10.Append(shapeStyle10);
            wordprocessingShape10.Append(textBodyProperties10);

            wordprocessingGroup1.Append(wordprocessingShape10);
        }
Ejemplo n.º 36
0
        private void DrawBox(Wpg.WordprocessingGroup wordprocessingGroup1, Rect extents, string colour, int thick)
        {
            UInt32Value bondLineId   = UInt32Value.FromUInt32((uint)_ooxmlId++);
            string      bondLineName = "diag-box-" + bondLineId;

            Int64Value width1  = OoXmlHelper.ScaleCmlToEmu(extents.Width);
            Int64Value height1 = OoXmlHelper.ScaleCmlToEmu(extents.Height);
            Int64Value top1    = OoXmlHelper.ScaleCmlToEmu(extents.Top);
            Int64Value left1   = OoXmlHelper.ScaleCmlToEmu(extents.Left);

            Point pp1 = new Point(left1, top1);
            Size  ss2 = new Size(width1, height1);

            pp1.Offset(OoXmlHelper.ScaleCmlToEmu(-_canvasExtents.Left), OoXmlHelper.ScaleCmlToEmu(-_canvasExtents.Top));
            Rect boundingBox = new Rect(pp1, ss2);

            Int64Value width  = (Int64Value)boundingBox.Width;
            Int64Value height = (Int64Value)boundingBox.Height;
            Int64Value top    = (Int64Value)boundingBox.Top;
            Int64Value left   = (Int64Value)boundingBox.Left;

            Wps.WordprocessingShape        wordprocessingShape1        = new Wps.WordprocessingShape();
            Wps.NonVisualDrawingProperties nonVisualDrawingProperties1 = new Wps.NonVisualDrawingProperties()
            {
                Id   = bondLineId,
                Name = bondLineName
            };
            Wps.NonVisualDrawingShapeProperties nonVisualDrawingShapeProperties1 = new Wps.NonVisualDrawingShapeProperties();

            Wps.ShapeProperties shapeProperties1 = new Wps.ShapeProperties();

            A.Transform2D transform2D1 = new A.Transform2D();
            A.Offset      offset2      = new A.Offset()
            {
                X = left, Y = top
            };
            A.Extents extents2 = new A.Extents()
            {
                Cx = width, Cy = height
            };

            transform2D1.Append(offset2);
            transform2D1.Append(extents2);

            A.CustomGeometry  customGeometry1  = new A.CustomGeometry();
            A.AdjustValueList adjustValueList1 = new A.AdjustValueList();
            A.Rectangle       rectangle1       = new A.Rectangle()
            {
                Left = "l", Top = "t", Right = "r", Bottom = "b"
            };

            A.PathList pathList1 = new A.PathList();

            A.Path path1 = new A.Path()
            {
                Width = width, Height = height
            };

            // Starting Point
            A.MoveTo moveTo1 = new A.MoveTo();
            A.Point  point1  = new A.Point()
            {
                X = "0", Y = "0"
            };
            moveTo1.Append(point1);

            // Mid Point
            A.LineTo lineTo1 = new A.LineTo();
            A.Point  point2  = new A.Point()
            {
                X = boundingBox.Width.ToString("0"), Y = "0"
            };
            lineTo1.Append(point2);

            // Mid Point
            A.LineTo lineTo2 = new A.LineTo();
            A.Point  point3  = new A.Point()
            {
                X = boundingBox.Width.ToString("0"), Y = boundingBox.Height.ToString("0")
            };
            lineTo2.Append(point3);

            // Last Point
            A.LineTo lineTo3 = new A.LineTo();
            A.Point  point4  = new A.Point()
            {
                X = "0", Y = boundingBox.Height.ToString("0")
            };
            lineTo3.Append(point4);

            // Back to Start Point
            A.LineTo lineTo4 = new A.LineTo();
            A.Point  point5  = new A.Point()
            {
                X = "0", Y = "0"
            };
            lineTo4.Append(point5);

            path1.Append(moveTo1);
            path1.Append(lineTo1);
            path1.Append(lineTo2);
            path1.Append(lineTo3);
            path1.Append(lineTo4);

            pathList1.Append(path1);

            customGeometry1.Append(adjustValueList1);
            customGeometry1.Append(rectangle1);
            customGeometry1.Append(pathList1);

            A.Outline outline1 = new A.Outline()
            {
                Width = thick, CapType = A.LineCapValues.Round
            };

            A.SolidFill solidFill1 = new A.SolidFill();

            A.RgbColorModelHex rgbColorModelHex1 = new A.RgbColorModelHex()
            {
                Val = colour
            };
            A.Alpha alpha1 = new A.Alpha()
            {
                Val = new Int32Value()
                {
                    InnerText = "100%"
                }
            };

            rgbColorModelHex1.Append(alpha1);

            solidFill1.Append(rgbColorModelHex1);

            outline1.Append(solidFill1);

            shapeProperties1.Append(transform2D1);
            shapeProperties1.Append(customGeometry1);
            shapeProperties1.Append(outline1);

            Wps.ShapeStyle  shapeStyle1    = new Wps.ShapeStyle();
            A.LineReference lineReference1 = new A.LineReference()
            {
                Index = (UInt32Value)0U
            };
            A.FillReference fillReference1 = new A.FillReference()
            {
                Index = (UInt32Value)0U
            };
            A.EffectReference effectReference1 = new A.EffectReference()
            {
                Index = (UInt32Value)0U
            };
            A.FontReference fontReference1 = new A.FontReference()
            {
                Index = A.FontCollectionIndexValues.Minor
            };

            shapeStyle1.Append(lineReference1);
            shapeStyle1.Append(fillReference1);
            shapeStyle1.Append(effectReference1);
            shapeStyle1.Append(fontReference1);
            Wps.TextBodyProperties textBodyProperties1 = new Wps.TextBodyProperties();

            wordprocessingShape1.Append(nonVisualDrawingProperties1);
            wordprocessingShape1.Append(nonVisualDrawingShapeProperties1);
            wordprocessingShape1.Append(shapeProperties1);
            wordprocessingShape1.Append(shapeStyle1);
            wordprocessingShape1.Append(textBodyProperties1);

            wordprocessingGroup1.Append(wordprocessingShape1);
        }
Ejemplo n.º 37
0
        private void DrawWavyLine(Wpg.WordprocessingGroup wordprocessingGroup1, Rect extents, Point bondStart, Point bondEnd)
        {
            UInt32Value bondLineId   = UInt32Value.FromUInt32((uint)m_ooxmlId++);
            string      bondLineName = "WavyLine" + bondLineId;

            Vector bondVector  = bondEnd - bondStart;
            int    noOfWiggles = (int)Math.Ceiling(bondVector.Length / BondOffset());

            if (noOfWiggles < 1)
            {
                noOfWiggles = 1;
            }

            double wiggleLength = bondVector.Length / noOfWiggles;

            Debug.WriteLine($"v.Length: {bondVector.Length} noOfWiggles: {noOfWiggles}");

            Vector originalWigglePortion = bondVector;

            originalWigglePortion.Normalize();
            originalWigglePortion *= wiggleLength / 2;

            Matrix toLeft = new Matrix();

            toLeft.Rotate(-60);
            Matrix toRight = new Matrix();

            toRight.Rotate(60);
            Vector leftVector  = originalWigglePortion * toLeft;
            Vector rightVector = originalWigglePortion * toRight;

            List <Point>         allpoints    = new List <Point>();
            List <List <Point> > allTriangles = new List <List <Point> >();
            List <Point>         triangle     = new List <Point>();

            Point lastPoint = bondStart;

            allpoints.Add(lastPoint);
            triangle.Add(lastPoint);
            for (int i = 0; i < noOfWiggles; i++)
            {
                Point leftPoint = lastPoint + leftVector;
                allpoints.Add(leftPoint);
                triangle.Add(leftPoint);

                Point midPoint = lastPoint + originalWigglePortion;
                allpoints.Add(midPoint);
                triangle.Add(midPoint);
                allTriangles.Add(triangle);
                triangle = new List <Point>();
                triangle.Add(midPoint);

                Point rightPoint = lastPoint + originalWigglePortion + rightVector;
                allpoints.Add(rightPoint);
                triangle.Add(rightPoint);

                lastPoint += originalWigglePortion * 2;
                allpoints.Add(lastPoint);
                triangle.Add(lastPoint);
                allTriangles.Add(triangle);
                triangle = new List <Point>();
                triangle.Add(lastPoint);
            }

            double minX = double.MaxValue;
            double maxX = double.MinValue;
            double minY = double.MaxValue;
            double maxY = double.MinValue;

            foreach (Point p in allpoints)
            {
                maxX = Math.Max(p.X + extents.Left, maxX);
                minX = Math.Min(p.X + extents.Left, minX);
                maxY = Math.Max(p.Y + extents.Top, maxY);
                minY = Math.Min(p.Y + extents.Top, minY);
            }

            Rect   newExtents = new Rect(minX, minY, maxX - minX, maxY - minY);
            double xOffset    = extents.Left - newExtents.Left;
            double yOffset    = extents.Top - newExtents.Top;

            Int64Value width  = OoXmlHelper.ScaleCmlToEmu(newExtents.Width);
            Int64Value height = OoXmlHelper.ScaleCmlToEmu(newExtents.Height);
            Int64Value top    = OoXmlHelper.ScaleCmlToEmu(newExtents.Top);
            Int64Value left   = OoXmlHelper.ScaleCmlToEmu(newExtents.Left);

            Wps.WordprocessingShape        wordprocessingShape1        = new Wps.WordprocessingShape();
            Wps.NonVisualDrawingProperties nonVisualDrawingProperties1 = new Wps.NonVisualDrawingProperties()
            {
                Id = bondLineId, Name = bondLineName
            };
            Wps.NonVisualDrawingShapeProperties nonVisualDrawingShapeProperties1 = new Wps.NonVisualDrawingShapeProperties();

            Wps.ShapeProperties shapeProperties1 = new Wps.ShapeProperties();

            A.Transform2D transform2D1 = new A.Transform2D();
            A.Offset      offset2      = new A.Offset()
            {
                X = left, Y = top
            };
            A.Extents extents2 = new A.Extents()
            {
                Cx = width, Cy = height
            };

            transform2D1.Append(offset2);
            transform2D1.Append(extents2);

            A.CustomGeometry  customGeometry1  = new A.CustomGeometry();
            A.AdjustValueList adjustValueList1 = new A.AdjustValueList();
            A.Rectangle       rectangle1       = new A.Rectangle()
            {
                Left = "l", Top = "t", Right = "r", Bottom = "b"
            };

            A.PathList pathList1 = new A.PathList();

            A.Path path1 = new A.Path()
            {
                Width = width, Height = height
            };

            A.MoveTo moveTo1 = new A.MoveTo();
            A.Point  point1  = new A.Point()
            {
                X = OoXmlHelper.ScaleCmlToEmu(bondStart.X + xOffset).ToString(), Y = OoXmlHelper.ScaleCmlToEmu(bondStart.Y + yOffset).ToString()
            };
            moveTo1.Append(point1);
            path1.Append(moveTo1);

            //Curves
            foreach (var tri in allTriangles)
            {
                A.CubicBezierCurveTo cubicBezierCurveTo = new A.CubicBezierCurveTo();
                foreach (var p in tri)
                {
                    A.Point point = new A.Point()
                    {
                        X = OoXmlHelper.ScaleCmlToEmu(p.X + xOffset).ToString(), Y = OoXmlHelper.ScaleCmlToEmu(p.Y + yOffset).ToString()
                    };
                    cubicBezierCurveTo.Append(point);
                }
                path1.Append(cubicBezierCurveTo);
            }

            //// Straight Lines
            //foreach (var p in allpoints)
            //{
            //    A.LineTo lineTo = new A.LineTo();
            //    A.Point point = new A.Point() { X = OoXmlHelper.ScaleCmlToEmu(p.X + xOffset).ToString(), Y = OoXmlHelper.ScaleCmlToEmu(p.Y + yOffset).ToString() };
            //    lineTo.Append(point);
            //    path1.Append(lineTo);
            //}

            pathList1.Append(path1);

            customGeometry1.Append(adjustValueList1);
            customGeometry1.Append(rectangle1);
            customGeometry1.Append(pathList1);

            A.Outline outline1 = new A.Outline()
            {
                Width = 9525, CapType = A.LineCapValues.Round
            };

            A.SolidFill solidFill1 = new A.SolidFill();

            A.RgbColorModelHex rgbColorModelHex1 = new A.RgbColorModelHex()
            {
                Val = "000000"
            };
            A.Alpha alpha1 = new A.Alpha()
            {
                Val = new Int32Value()
                {
                    InnerText = "100%"
                }
            };

            rgbColorModelHex1.Append(alpha1);

            solidFill1.Append(rgbColorModelHex1);

            outline1.Append(solidFill1);

            shapeProperties1.Append(transform2D1);
            shapeProperties1.Append(customGeometry1);
            shapeProperties1.Append(outline1);

            Wps.ShapeStyle  shapeStyle1    = new Wps.ShapeStyle();
            A.LineReference lineReference1 = new A.LineReference()
            {
                Index = (UInt32Value)0U
            };
            A.FillReference fillReference1 = new A.FillReference()
            {
                Index = (UInt32Value)0U
            };
            A.EffectReference effectReference1 = new A.EffectReference()
            {
                Index = (UInt32Value)0U
            };
            A.FontReference fontReference1 = new A.FontReference()
            {
                Index = A.FontCollectionIndexValues.Minor
            };

            shapeStyle1.Append(lineReference1);
            shapeStyle1.Append(fillReference1);
            shapeStyle1.Append(effectReference1);
            shapeStyle1.Append(fontReference1);
            Wps.TextBodyProperties textBodyProperties1 = new Wps.TextBodyProperties();

            wordprocessingShape1.Append(nonVisualDrawingProperties1);
            wordprocessingShape1.Append(nonVisualDrawingShapeProperties1);
            wordprocessingShape1.Append(shapeProperties1);
            wordprocessingShape1.Append(shapeStyle1);
            wordprocessingShape1.Append(textBodyProperties1);

            wordprocessingGroup1.Append(wordprocessingShape1);
        }
Ejemplo n.º 38
0
        public static void GeneratePresentationPropertiesPart1Content(PresentationPropertiesPart presentationPropertiesPart1)
        {
            PresentationProperties presentationProperties1 = new PresentationProperties();

            presentationProperties1.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");
            presentationProperties1.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            presentationProperties1.AddNamespaceDeclaration("p", "http://schemas.openxmlformats.org/presentationml/2006/main");

            ShowProperties showProperties1 = new ShowProperties()
            {
                ShowNarration = true
            };
            PresenterSlideMode presenterSlideMode1 = new PresenterSlideMode();
            SlideAll           slideAll1           = new SlideAll();

            PenColor penColor1 = new PenColor();

            A.PresetColor presetColor6 = new A.PresetColor()
            {
                Val = A.PresetColorValues.Red
            };

            penColor1.Append(presetColor6);

            ShowPropertiesExtensionList showPropertiesExtensionList1 = new ShowPropertiesExtensionList();

            ShowPropertiesExtension showPropertiesExtension1 = new ShowPropertiesExtension()
            {
                Uri = "{EC167BDD-8182-4AB7-AECC-EB403E3ABB37}"
            };

            P14.LaserColor laserColor1 = new P14.LaserColor();
            laserColor1.AddNamespaceDeclaration("p14", "http://schemas.microsoft.com/office/powerpoint/2010/main");
            A.RgbColorModelHex rgbColorModelHex265 = new A.RgbColorModelHex()
            {
                Val = "FF0000"
            };

            laserColor1.Append(rgbColorModelHex265);

            showPropertiesExtension1.Append(laserColor1);

            ShowPropertiesExtension showPropertiesExtension2 = new ShowPropertiesExtension()
            {
                Uri = "{2FDB2607-1784-4EEB-B798-7EB5836EED8A}"
            };

            P14.ShowMediaControls showMediaControls1 = new P14.ShowMediaControls()
            {
                Val = true
            };
            showMediaControls1.AddNamespaceDeclaration("p14", "http://schemas.microsoft.com/office/powerpoint/2010/main");

            showPropertiesExtension2.Append(showMediaControls1);

            showPropertiesExtensionList1.Append(showPropertiesExtension1);
            showPropertiesExtensionList1.Append(showPropertiesExtension2);

            showProperties1.Append(presenterSlideMode1);
            showProperties1.Append(slideAll1);
            showProperties1.Append(penColor1);
            showProperties1.Append(showPropertiesExtensionList1);

            ColorMostRecentlyUsed colorMostRecentlyUsed1 = new ColorMostRecentlyUsed();

            A.RgbColorModelHex rgbColorModelHex266 = new A.RgbColorModelHex()
            {
                Val = "F15A29"
            };
            A.RgbColorModelHex rgbColorModelHex267 = new A.RgbColorModelHex()
            {
                Val = "9E1F63"
            };
            A.RgbColorModelHex rgbColorModelHex268 = new A.RgbColorModelHex()
            {
                Val = "262261"
            };
            A.RgbColorModelHex rgbColorModelHex269 = new A.RgbColorModelHex()
            {
                Val = "ED1C24"
            };
            A.RgbColorModelHex rgbColorModelHex270 = new A.RgbColorModelHex()
            {
                Val = "91278F"
            };
            A.RgbColorModelHex rgbColorModelHex271 = new A.RgbColorModelHex()
            {
                Val = "29AAE2"
            };
            A.RgbColorModelHex rgbColorModelHex272 = new A.RgbColorModelHex()
            {
                Val = "2E3192"
            };
            A.RgbColorModelHex rgbColorModelHex273 = new A.RgbColorModelHex()
            {
                Val = "BF1E2D"
            };

            colorMostRecentlyUsed1.Append(rgbColorModelHex266);
            colorMostRecentlyUsed1.Append(rgbColorModelHex267);
            colorMostRecentlyUsed1.Append(rgbColorModelHex268);
            colorMostRecentlyUsed1.Append(rgbColorModelHex269);
            colorMostRecentlyUsed1.Append(rgbColorModelHex270);
            colorMostRecentlyUsed1.Append(rgbColorModelHex271);
            colorMostRecentlyUsed1.Append(rgbColorModelHex272);
            colorMostRecentlyUsed1.Append(rgbColorModelHex273);

            PresentationPropertiesExtensionList presentationPropertiesExtensionList1 = new PresentationPropertiesExtensionList();

            PresentationPropertiesExtension presentationPropertiesExtension1 = new PresentationPropertiesExtension()
            {
                Uri = "{E76CE94A-603C-4142-B9EB-6D1370010A27}"
            };

            P14.DiscardImageEditData discardImageEditData1 = new P14.DiscardImageEditData()
            {
                Val = false
            };
            discardImageEditData1.AddNamespaceDeclaration("p14", "http://schemas.microsoft.com/office/powerpoint/2010/main");

            presentationPropertiesExtension1.Append(discardImageEditData1);

            PresentationPropertiesExtension presentationPropertiesExtension2 = new PresentationPropertiesExtension()
            {
                Uri = "{D31A062A-798A-4329-ABDD-BBA856620510}"
            };

            P14.DefaultImageDpi defaultImageDpi1 = new P14.DefaultImageDpi()
            {
                Val = (UInt32Value)220U
            };
            defaultImageDpi1.AddNamespaceDeclaration("p14", "http://schemas.microsoft.com/office/powerpoint/2010/main");

            presentationPropertiesExtension2.Append(defaultImageDpi1);

            PresentationPropertiesExtension presentationPropertiesExtension3 = new PresentationPropertiesExtension()
            {
                Uri = "{FD5EFAAD-0ECE-453E-9831-46B23BE46B34}"
            };

            P15.ChartTrackingReferenceBased chartTrackingReferenceBased1 = new P15.ChartTrackingReferenceBased()
            {
                Val = false
            };
            chartTrackingReferenceBased1.AddNamespaceDeclaration("p15", "http://schemas.microsoft.com/office/powerpoint/2012/main");

            presentationPropertiesExtension3.Append(chartTrackingReferenceBased1);

            presentationPropertiesExtensionList1.Append(presentationPropertiesExtension1);
            presentationPropertiesExtensionList1.Append(presentationPropertiesExtension2);
            presentationPropertiesExtensionList1.Append(presentationPropertiesExtension3);

            presentationProperties1.Append(showProperties1);
            presentationProperties1.Append(colorMostRecentlyUsed1);
            presentationProperties1.Append(presentationPropertiesExtensionList1);

            presentationPropertiesPart1.PresentationProperties = presentationProperties1;
        }
Ejemplo n.º 39
0
        private void DrawWedgeBond(Wpg.WordprocessingGroup wordprocessingGroup, List <Point> points)
        {
            UInt32Value id            = UInt32Value.FromUInt32((uint)m_ooxmlId++);
            string      atomLabelName = "WedgeBond" + id;

            Rect cmlExtents = new Rect(points[0], points[points.Count - 1]);

            for (int i = 0; i < points.Count - 1; i++)
            {
                cmlExtents.Union(new Rect(points[i], points[i + 1]));
            }

            // Move Extents to have 0,0 Top Left Reference
            cmlExtents.Offset(-m_canvasExtents.Left, -m_canvasExtents.Top);

            Int64Value top    = OoXmlHelper.ScaleCmlToEmu(cmlExtents.Y);
            Int64Value left   = OoXmlHelper.ScaleCmlToEmu(cmlExtents.X);
            Int64Value width  = OoXmlHelper.ScaleCmlToEmu(cmlExtents.Width);
            Int64Value height = OoXmlHelper.ScaleCmlToEmu(cmlExtents.Height);

            Wps.WordprocessingShape        shape = new Wps.WordprocessingShape();
            Wps.NonVisualDrawingProperties nonVisualDrawingProperties = new Wps.NonVisualDrawingProperties()
            {
                Id = id, Name = atomLabelName
            };
            Wps.NonVisualDrawingShapeProperties nonVisualDrawingShapeProperties = new Wps.NonVisualDrawingShapeProperties();

            Wps.ShapeProperties shapeProperties = new Wps.ShapeProperties();

            A.Transform2D transform2D = new A.Transform2D();
            A.Offset      offset      = new A.Offset {
                X = left, Y = top
            };
            A.Extents extents = new A.Extents {
                Cx = width, Cy = height
            };

            transform2D.Append(offset);
            transform2D.Append(extents);

            A.CustomGeometry  customGeometry  = new A.CustomGeometry();
            A.AdjustValueList adjustValueList = new A.AdjustValueList();
            A.Rectangle       rectangle       = new A.Rectangle {
                Left = "l", Top = "t", Right = "r", Bottom = "b"
            };

            A.PathList pathList = new A.PathList();

            A.Path path = new A.Path {
                Width = width, Height = height
            };

            A.MoveTo moveTo = new A.MoveTo();
            moveTo.Append(MakePoint(points[0]));
            path.Append(moveTo);

            for (int i = 1; i < points.Count; i++)
            {
                A.LineTo lineTo = new A.LineTo();
                lineTo.Append(MakePoint(points[i]));
                path.Append(lineTo);
            }

            A.CloseShapePath closeShapePath = new A.CloseShapePath();
            path.Append(closeShapePath);

            pathList.Append(path);

            customGeometry.Append(adjustValueList);
            customGeometry.Append(rectangle);
            customGeometry.Append(pathList);

            // Set shape fill colour
            A.SolidFill        solidFill1       = new A.SolidFill();
            A.RgbColorModelHex rgbColorModelHex = new A.RgbColorModelHex {
                Val = "000000"
            };
            solidFill1.Append(rgbColorModelHex);

            // Set shape outline colour
            A.Outline outline = new A.Outline {
                Width = OoXmlHelper.ACS_LINE_WIDTH_EMUS, CapType = A.LineCapValues.Round
            };
            A.RgbColorModelHex rgbColorModelHex2 = new A.RgbColorModelHex {
                Val = "000000"
            };
            A.SolidFill solidFill2 = new A.SolidFill();
            solidFill2.Append(rgbColorModelHex2);
            outline.Append(solidFill2);

            shapeProperties.Append(transform2D);
            shapeProperties.Append(customGeometry);
            shapeProperties.Append(solidFill1);
            shapeProperties.Append(outline);

            OoXmlHelper.AppendShapeStyle(shape, nonVisualDrawingProperties, nonVisualDrawingShapeProperties, shapeProperties);
            wordprocessingGroup.Append(shape);

            // Local Function
            A.Point MakePoint(Point pp)
            {
                pp.Offset(-m_canvasExtents.Left, -m_canvasExtents.Top);
                pp.Offset(-cmlExtents.Left, -cmlExtents.Top);
                return(new A.Point
                {
                    X = $"{OoXmlHelper.ScaleCmlToEmu(pp.X)}",
                    Y = $"{OoXmlHelper.ScaleCmlToEmu(pp.Y)}"
                });
            }
        }
Ejemplo n.º 40
0
        // Generates content of slideLayoutPart3.
        private void GenerateSlideLayoutPart3Content(SlideLayoutPart slideLayoutPart3)
        {
            SlideLayout slideLayout3 = new SlideLayout(){ Type = SlideLayoutValues.SectionHeader, Preserve = true };
            slideLayout3.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");
            slideLayout3.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            slideLayout3.AddNamespaceDeclaration("p", "http://schemas.openxmlformats.org/presentationml/2006/main");

            CommonSlideData commonSlideData5 = new CommonSlideData(){ Name = "Section Header" };

            Background background2 = new Background();

            BackgroundStyleReference backgroundStyleReference2 = new BackgroundStyleReference(){ Index = (UInt32Value)1003U };
            A.SchemeColor schemeColor49 = new A.SchemeColor(){ Val = A.SchemeColorValues.Background2 };

            backgroundStyleReference2.Append(schemeColor49);

            background2.Append(backgroundStyleReference2);

            ShapeTree shapeTree5 = new ShapeTree();

            NonVisualGroupShapeProperties nonVisualGroupShapeProperties5 = new NonVisualGroupShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties23 = new NonVisualDrawingProperties(){ Id = (UInt32Value)1U, Name = "" };
            NonVisualGroupShapeDrawingProperties nonVisualGroupShapeDrawingProperties5 = new NonVisualGroupShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties23 = new ApplicationNonVisualDrawingProperties();

            nonVisualGroupShapeProperties5.Append(nonVisualDrawingProperties23);
            nonVisualGroupShapeProperties5.Append(nonVisualGroupShapeDrawingProperties5);
            nonVisualGroupShapeProperties5.Append(applicationNonVisualDrawingProperties23);

            GroupShapeProperties groupShapeProperties5 = new GroupShapeProperties();

            A.TransformGroup transformGroup5 = new A.TransformGroup();
            A.Offset offset15 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents15 = new A.Extents(){ Cx = 0L, Cy = 0L };
            A.ChildOffset childOffset5 = new A.ChildOffset(){ X = 0L, Y = 0L };
            A.ChildExtents childExtents5 = new A.ChildExtents(){ Cx = 0L, Cy = 0L };

            transformGroup5.Append(offset15);
            transformGroup5.Append(extents15);
            transformGroup5.Append(childOffset5);
            transformGroup5.Append(childExtents5);

            groupShapeProperties5.Append(transformGroup5);

            Shape shape19 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties19 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties24 = new NonVisualDrawingProperties(){ Id = (UInt32Value)2U, Name = "Title 1" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties19 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks19 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties19.Append(shapeLocks19);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties24 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape19 = new PlaceholderShape(){ Type = PlaceholderValues.Title };

            applicationNonVisualDrawingProperties24.Append(placeholderShape19);

            nonVisualShapeProperties19.Append(nonVisualDrawingProperties24);
            nonVisualShapeProperties19.Append(nonVisualShapeDrawingProperties19);
            nonVisualShapeProperties19.Append(applicationNonVisualDrawingProperties24);

            ShapeProperties shapeProperties19 = new ShapeProperties();

            A.Transform2D transform2D11 = new A.Transform2D();
            A.Offset offset16 = new A.Offset(){ X = 2133600L, Y = 609600L };
            A.Extents extents16 = new A.Extents(){ Cx = 9448800L, Cy = 1828800L };

            transform2D11.Append(offset16);
            transform2D11.Append(extents16);

            shapeProperties19.Append(transform2D11);

            TextBody textBody19 = new TextBody();

            A.BodyProperties bodyProperties19 = new A.BodyProperties(){ Vertical = A.TextVerticalValues.Horizontal, BottomInset = 0, Anchor = A.TextAnchoringTypeValues.Bottom };
            A.NoAutoFit noAutoFit1 = new A.NoAutoFit();

            A.Scene3DType scene3DType3 = new A.Scene3DType();
            A.Camera camera3 = new A.Camera(){ Preset = A.PresetCameraValues.OrthographicFront };

            A.LightRig lightRig3 = new A.LightRig(){ Rig = A.LightRigValues.Soft, Direction = A.LightRigDirectionValues.Top };
            A.Rotation rotation3 = new A.Rotation(){ Latitude = 0, Longitude = 0, Revolution = 17220000 };

            lightRig3.Append(rotation3);

            scene3DType3.Append(camera3);
            scene3DType3.Append(lightRig3);

            A.Shape3DType shape3DType4 = new A.Shape3DType(){ PresetMaterial = A.PresetMaterialTypeValues.SoftEdge };
            A.BevelTop bevelTop3 = new A.BevelTop(){ Width = 38100L, Height = 38100L };

            A.ContourColor contourColor1 = new A.ContourColor();

            A.SchemeColor schemeColor50 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text2 };
            A.Shade shade5 = new A.Shade(){ Val = 50000 };

            schemeColor50.Append(shade5);

            contourColor1.Append(schemeColor50);

            shape3DType4.Append(bevelTop3);
            shape3DType4.Append(contourColor1);

            bodyProperties19.Append(noAutoFit1);
            bodyProperties19.Append(scene3DType3);
            bodyProperties19.Append(shape3DType4);

            A.ListStyle listStyle19 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties13 = new A.Level1ParagraphProperties(){ Alignment = A.TextAlignmentTypeValues.Left, RightToLeft = false };

            A.SpaceBefore spaceBefore11 = new A.SpaceBefore();
            A.SpacingPercent spacingPercent11 = new A.SpacingPercent(){ Val = 0 };

            spaceBefore11.Append(spacingPercent11);
            A.NoBullet noBullet17 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties46 = new A.DefaultRunProperties(){ FontSize = 4800, Bold = true, Capital = A.TextCapsValues.None, Baseline = 0 };

            A.Outline outline4 = new A.Outline(){ Width = 6350 };
            A.NoFill noFill4 = new A.NoFill();

            outline4.Append(noFill4);

            A.SolidFill solidFill33 = new A.SolidFill();

            A.SchemeColor schemeColor51 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };
            A.Tint tint8 = new A.Tint(){ Val = 90000 };
            A.SaturationModulation saturationModulation8 = new A.SaturationModulation(){ Val = 120000 };

            schemeColor51.Append(tint8);
            schemeColor51.Append(saturationModulation8);

            solidFill33.Append(schemeColor51);

            A.EffectList effectList3 = new A.EffectList();

            A.OuterShadow outerShadow3 = new A.OuterShadow(){ BlurRadius = 114300L, Distance = 101600L, Direction = 2700000, Alignment = A.RectangleAlignmentValues.TopLeft, RotateWithShape = false };

            A.RgbColorModelHex rgbColorModelHex3 = new A.RgbColorModelHex(){ Val = "000000" };
            A.Alpha alpha3 = new A.Alpha(){ Val = 40000 };

            rgbColorModelHex3.Append(alpha3);

            outerShadow3.Append(rgbColorModelHex3);

            effectList3.Append(outerShadow3);
            A.LatinFont latinFont29 = new A.LatinFont(){ Typeface = "+mj-lt" };
            A.EastAsianFont eastAsianFont29 = new A.EastAsianFont(){ Typeface = "+mj-ea" };
            A.ComplexScriptFont complexScriptFont29 = new A.ComplexScriptFont(){ Typeface = "+mj-cs" };

            defaultRunProperties46.Append(outline4);
            defaultRunProperties46.Append(solidFill33);
            defaultRunProperties46.Append(effectList3);
            defaultRunProperties46.Append(latinFont29);
            defaultRunProperties46.Append(eastAsianFont29);
            defaultRunProperties46.Append(complexScriptFont29);

            level1ParagraphProperties13.Append(spaceBefore11);
            level1ParagraphProperties13.Append(noBullet17);
            level1ParagraphProperties13.Append(defaultRunProperties46);

            listStyle19.Append(level1ParagraphProperties13);

            A.Paragraph paragraph27 = new A.Paragraph();

            A.Run run16 = new A.Run();

            A.RunProperties runProperties22 = new A.RunProperties(){ Kumimoji = false, Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties22.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text22 = new A.Text();
            text22.Text = "Click to edit Master title style";

            run16.Append(runProperties22);
            run16.Append(text22);
            A.EndParagraphRunProperties endParagraphRunProperties18 = new A.EndParagraphRunProperties(){ Kumimoji = false, Language = "en-US" };

            paragraph27.Append(run16);
            paragraph27.Append(endParagraphRunProperties18);

            textBody19.Append(bodyProperties19);
            textBody19.Append(listStyle19);
            textBody19.Append(paragraph27);

            shape19.Append(nonVisualShapeProperties19);
            shape19.Append(shapeProperties19);
            shape19.Append(textBody19);

            Shape shape20 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties20 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties25 = new NonVisualDrawingProperties(){ Id = (UInt32Value)3U, Name = "Text Placeholder 2" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties20 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks20 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties20.Append(shapeLocks20);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties25 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape20 = new PlaceholderShape(){ Type = PlaceholderValues.Body, Index = (UInt32Value)1U };

            applicationNonVisualDrawingProperties25.Append(placeholderShape20);

            nonVisualShapeProperties20.Append(nonVisualDrawingProperties25);
            nonVisualShapeProperties20.Append(nonVisualShapeDrawingProperties20);
            nonVisualShapeProperties20.Append(applicationNonVisualDrawingProperties25);

            ShapeProperties shapeProperties20 = new ShapeProperties();

            A.Transform2D transform2D12 = new A.Transform2D();
            A.Offset offset17 = new A.Offset(){ X = 2133600L, Y = 2507786L };
            A.Extents extents17 = new A.Extents(){ Cx = 9448800L, Cy = 1509712L };

            transform2D12.Append(offset17);
            transform2D12.Append(extents17);

            shapeProperties20.Append(transform2D12);

            TextBody textBody20 = new TextBody();
            A.BodyProperties bodyProperties20 = new A.BodyProperties(){ Anchor = A.TextAnchoringTypeValues.Top };

            A.ListStyle listStyle20 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties14 = new A.Level1ParagraphProperties(){ LeftMargin = 73152, Indent = 0, Alignment = A.TextAlignmentTypeValues.Left };
            A.NoBullet noBullet18 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties47 = new A.DefaultRunProperties(){ FontSize = 2000 };

            A.SolidFill solidFill34 = new A.SolidFill();
            A.SchemeColor schemeColor52 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill34.Append(schemeColor52);

            defaultRunProperties47.Append(solidFill34);

            level1ParagraphProperties14.Append(noBullet18);
            level1ParagraphProperties14.Append(defaultRunProperties47);

            A.Level2ParagraphProperties level2ParagraphProperties7 = new A.Level2ParagraphProperties();
            A.NoBullet noBullet19 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties48 = new A.DefaultRunProperties(){ FontSize = 1800 };

            A.SolidFill solidFill35 = new A.SolidFill();

            A.SchemeColor schemeColor53 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint9 = new A.Tint(){ Val = 75000 };

            schemeColor53.Append(tint9);

            solidFill35.Append(schemeColor53);

            defaultRunProperties48.Append(solidFill35);

            level2ParagraphProperties7.Append(noBullet19);
            level2ParagraphProperties7.Append(defaultRunProperties48);

            A.Level3ParagraphProperties level3ParagraphProperties7 = new A.Level3ParagraphProperties();
            A.NoBullet noBullet20 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties49 = new A.DefaultRunProperties(){ FontSize = 1600 };

            A.SolidFill solidFill36 = new A.SolidFill();

            A.SchemeColor schemeColor54 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint10 = new A.Tint(){ Val = 75000 };

            schemeColor54.Append(tint10);

            solidFill36.Append(schemeColor54);

            defaultRunProperties49.Append(solidFill36);

            level3ParagraphProperties7.Append(noBullet20);
            level3ParagraphProperties7.Append(defaultRunProperties49);

            A.Level4ParagraphProperties level4ParagraphProperties7 = new A.Level4ParagraphProperties();
            A.NoBullet noBullet21 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties50 = new A.DefaultRunProperties(){ FontSize = 1400 };

            A.SolidFill solidFill37 = new A.SolidFill();

            A.SchemeColor schemeColor55 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint11 = new A.Tint(){ Val = 75000 };

            schemeColor55.Append(tint11);

            solidFill37.Append(schemeColor55);

            defaultRunProperties50.Append(solidFill37);

            level4ParagraphProperties7.Append(noBullet21);
            level4ParagraphProperties7.Append(defaultRunProperties50);

            A.Level5ParagraphProperties level5ParagraphProperties7 = new A.Level5ParagraphProperties();
            A.NoBullet noBullet22 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties51 = new A.DefaultRunProperties(){ FontSize = 1400 };

            A.SolidFill solidFill38 = new A.SolidFill();

            A.SchemeColor schemeColor56 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Tint tint12 = new A.Tint(){ Val = 75000 };

            schemeColor56.Append(tint12);

            solidFill38.Append(schemeColor56);

            defaultRunProperties51.Append(solidFill38);

            level5ParagraphProperties7.Append(noBullet22);
            level5ParagraphProperties7.Append(defaultRunProperties51);

            listStyle20.Append(level1ParagraphProperties14);
            listStyle20.Append(level2ParagraphProperties7);
            listStyle20.Append(level3ParagraphProperties7);
            listStyle20.Append(level4ParagraphProperties7);
            listStyle20.Append(level5ParagraphProperties7);

            A.Paragraph paragraph28 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties12 = new A.ParagraphProperties(){ Level = 0, EastAsianLineBreak = true, LatinLineBreak = false, Height = true };

            A.Run run17 = new A.Run();

            A.RunProperties runProperties23 = new A.RunProperties(){ Kumimoji = false, Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties23.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text23 = new A.Text();
            text23.Text = "Click to edit Master text styles";

            run17.Append(runProperties23);
            run17.Append(text23);

            paragraph28.Append(paragraphProperties12);
            paragraph28.Append(run17);

            textBody20.Append(bodyProperties20);
            textBody20.Append(listStyle20);
            textBody20.Append(paragraph28);

            shape20.Append(nonVisualShapeProperties20);
            shape20.Append(shapeProperties20);
            shape20.Append(textBody20);

            Shape shape21 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties21 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties26 = new NonVisualDrawingProperties(){ Id = (UInt32Value)4U, Name = "Date Placeholder 3" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties21 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks21 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties21.Append(shapeLocks21);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties26 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape21 = new PlaceholderShape(){ Type = PlaceholderValues.DateAndTime, Size = PlaceholderSizeValues.Half, Index = (UInt32Value)10U };

            applicationNonVisualDrawingProperties26.Append(placeholderShape21);

            nonVisualShapeProperties21.Append(nonVisualDrawingProperties26);
            nonVisualShapeProperties21.Append(nonVisualShapeDrawingProperties21);
            nonVisualShapeProperties21.Append(applicationNonVisualDrawingProperties26);
            ShapeProperties shapeProperties21 = new ShapeProperties();

            TextBody textBody21 = new TextBody();
            A.BodyProperties bodyProperties21 = new A.BodyProperties();
            A.ListStyle listStyle21 = new A.ListStyle();

            A.Paragraph paragraph29 = new A.Paragraph();

            A.Field field7 = new A.Field(){ Id = "{8263865E-5382-4BDD-A09E-2B63F38BCE59}", Type = "datetimeFigureOut" };

            A.RunProperties runProperties24 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties24.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text24 = new A.Text();
            text24.Text = "2012/10/3";

            field7.Append(runProperties24);
            field7.Append(text24);
            A.EndParagraphRunProperties endParagraphRunProperties19 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph29.Append(field7);
            paragraph29.Append(endParagraphRunProperties19);

            textBody21.Append(bodyProperties21);
            textBody21.Append(listStyle21);
            textBody21.Append(paragraph29);

            shape21.Append(nonVisualShapeProperties21);
            shape21.Append(shapeProperties21);
            shape21.Append(textBody21);

            Shape shape22 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties22 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties27 = new NonVisualDrawingProperties(){ Id = (UInt32Value)5U, Name = "Footer Placeholder 4" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties22 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks22 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties22.Append(shapeLocks22);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties27 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape22 = new PlaceholderShape(){ Type = PlaceholderValues.Footer, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)11U };

            applicationNonVisualDrawingProperties27.Append(placeholderShape22);

            nonVisualShapeProperties22.Append(nonVisualDrawingProperties27);
            nonVisualShapeProperties22.Append(nonVisualShapeDrawingProperties22);
            nonVisualShapeProperties22.Append(applicationNonVisualDrawingProperties27);
            ShapeProperties shapeProperties22 = new ShapeProperties();

            TextBody textBody22 = new TextBody();
            A.BodyProperties bodyProperties22 = new A.BodyProperties();
            A.ListStyle listStyle22 = new A.ListStyle();

            A.Paragraph paragraph30 = new A.Paragraph();
            A.EndParagraphRunProperties endParagraphRunProperties20 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph30.Append(endParagraphRunProperties20);

            textBody22.Append(bodyProperties22);
            textBody22.Append(listStyle22);
            textBody22.Append(paragraph30);

            shape22.Append(nonVisualShapeProperties22);
            shape22.Append(shapeProperties22);
            shape22.Append(textBody22);

            Shape shape23 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties23 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties28 = new NonVisualDrawingProperties(){ Id = (UInt32Value)6U, Name = "Slide Number Placeholder 5" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties23 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks23 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties23.Append(shapeLocks23);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties28 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape23 = new PlaceholderShape(){ Type = PlaceholderValues.SlideNumber, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)12U };

            applicationNonVisualDrawingProperties28.Append(placeholderShape23);

            nonVisualShapeProperties23.Append(nonVisualDrawingProperties28);
            nonVisualShapeProperties23.Append(nonVisualShapeDrawingProperties23);
            nonVisualShapeProperties23.Append(applicationNonVisualDrawingProperties28);

            ShapeProperties shapeProperties23 = new ShapeProperties();

            A.Transform2D transform2D13 = new A.Transform2D();
            A.Offset offset18 = new A.Offset(){ X = 10566400L, Y = 6416676L };
            A.Extents extents18 = new A.Extents(){ Cx = 1016000L, Cy = 365125L };

            transform2D13.Append(offset18);
            transform2D13.Append(extents18);

            shapeProperties23.Append(transform2D13);

            TextBody textBody23 = new TextBody();
            A.BodyProperties bodyProperties23 = new A.BodyProperties();
            A.ListStyle listStyle23 = new A.ListStyle();

            A.Paragraph paragraph31 = new A.Paragraph();

            A.Field field8 = new A.Field(){ Id = "{DF0B8B9E-EDC2-479A-B980-EDD8632819B1}", Type = "slidenum" };

            A.RunProperties runProperties25 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties25.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text25 = new A.Text();
            text25.Text = "‹#›";

            field8.Append(runProperties25);
            field8.Append(text25);
            A.EndParagraphRunProperties endParagraphRunProperties21 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph31.Append(field8);
            paragraph31.Append(endParagraphRunProperties21);

            textBody23.Append(bodyProperties23);
            textBody23.Append(listStyle23);
            textBody23.Append(paragraph31);

            shape23.Append(nonVisualShapeProperties23);
            shape23.Append(shapeProperties23);
            shape23.Append(textBody23);

            shapeTree5.Append(nonVisualGroupShapeProperties5);
            shapeTree5.Append(groupShapeProperties5);
            shapeTree5.Append(shape19);
            shapeTree5.Append(shape20);
            shapeTree5.Append(shape21);
            shapeTree5.Append(shape22);
            shapeTree5.Append(shape23);

            CommonSlideDataExtensionList commonSlideDataExtensionList5 = new CommonSlideDataExtensionList();

            CommonSlideDataExtension commonSlideDataExtension5 = new CommonSlideDataExtension(){ Uri = "{BB962C8B-B14F-4D97-AF65-F5344CB8AC3E}" };

            P14.CreationId creationId5 = new P14.CreationId(){ Val = (UInt32Value)3491605924U };
            creationId5.AddNamespaceDeclaration("p14", "http://schemas.microsoft.com/office/powerpoint/2010/main");

            commonSlideDataExtension5.Append(creationId5);

            commonSlideDataExtensionList5.Append(commonSlideDataExtension5);

            commonSlideData5.Append(background2);
            commonSlideData5.Append(shapeTree5);
            commonSlideData5.Append(commonSlideDataExtensionList5);

            ColorMapOverride colorMapOverride4 = new ColorMapOverride();
            A.OverrideColorMapping overrideColorMapping1 = new A.OverrideColorMapping(){ Background1 = A.ColorSchemeIndexValues.Dark1, Text1 = A.ColorSchemeIndexValues.Light1, Background2 = A.ColorSchemeIndexValues.Dark2, Text2 = A.ColorSchemeIndexValues.Light2, Accent1 = A.ColorSchemeIndexValues.Accent1, Accent2 = A.ColorSchemeIndexValues.Accent2, Accent3 = A.ColorSchemeIndexValues.Accent3, Accent4 = A.ColorSchemeIndexValues.Accent4, Accent5 = A.ColorSchemeIndexValues.Accent5, Accent6 = A.ColorSchemeIndexValues.Accent6, Hyperlink = A.ColorSchemeIndexValues.Hyperlink, FollowedHyperlink = A.ColorSchemeIndexValues.FollowedHyperlink };

            colorMapOverride4.Append(overrideColorMapping1);

            slideLayout3.Append(commonSlideData5);
            slideLayout3.Append(colorMapOverride4);

            slideLayoutPart3.SlideLayout = slideLayout3;
        }
Ejemplo n.º 41
0
        private void DrawShape(Wpg.WordprocessingGroup wordprocessingGroup, Rect cmlExtents, A.ShapeTypeValues shape, string colour)
        {
            UInt32Value id           = UInt32Value.FromUInt32((uint)m_ooxmlId++);
            string      bondLineName = "shape" + id;

            Int64Value width  = OoXmlHelper.ScaleCmlToEmu(cmlExtents.Width);
            Int64Value height = OoXmlHelper.ScaleCmlToEmu(cmlExtents.Height);
            Int64Value top    = OoXmlHelper.ScaleCmlToEmu(cmlExtents.Top);
            Int64Value left   = OoXmlHelper.ScaleCmlToEmu(cmlExtents.Left);

            Point location = new Point(left, top);
            Size  size     = new Size(width, height);

            location.Offset(OoXmlHelper.ScaleCmlToEmu(-m_canvasExtents.Left), OoXmlHelper.ScaleCmlToEmu(-m_canvasExtents.Top));
            Rect boundingBox = new Rect(location, size);

            width  = (Int64Value)boundingBox.Width;
            height = (Int64Value)boundingBox.Height;
            top    = (Int64Value)boundingBox.Top;
            left   = (Int64Value)boundingBox.Left;

            A.PresetGeometry presetGeometry = null;
            A.Extents        extents        = new A.Extents {
                Cx = width, Cy = height
            };
            presetGeometry = new A.PresetGeometry()
            {
                Preset = shape
            };

            Wps.WordprocessingShape        wordprocessingShape        = new Wps.WordprocessingShape();
            Wps.NonVisualDrawingProperties nonVisualDrawingProperties = new Wps.NonVisualDrawingProperties()
            {
                Id   = id,
                Name = bondLineName
            };

            Wps.NonVisualDrawingShapeProperties nonVisualDrawingShapeProperties = new Wps.NonVisualDrawingShapeProperties();

            Wps.ShapeProperties shapeProperties = new Wps.ShapeProperties();

            A.Transform2D transform2D = new A.Transform2D();
            A.Offset      offset      = new A.Offset {
                X = left, Y = top
            };

            transform2D.Append(offset);
            transform2D.Append(extents);

            A.AdjustValueList adjustValueList = new A.AdjustValueList();

            presetGeometry.Append(adjustValueList);
            A.SolidFill solidFill = new A.SolidFill();

            A.RgbColorModelHex rgbColorModelHex = new A.RgbColorModelHex {
                Val = colour
            };
            solidFill.Append(rgbColorModelHex);

            shapeProperties.Append(transform2D);
            shapeProperties.Append(presetGeometry);
            shapeProperties.Append(solidFill);

            OoXmlHelper.AppendShapeStyle(wordprocessingShape, nonVisualDrawingProperties, nonVisualDrawingShapeProperties, shapeProperties);
            wordprocessingGroup.Append(wordprocessingShape);
        }
Ejemplo n.º 42
0
        /// <summary>
        /// Adding PresentationExtensionList element.
        /// </summary>
        /// <param name="filePath">Tartget file path</param>
        /// <param name="log">Logger</param>
        public void AddElement(string filePath, VerifiableLog log)
        {
            using (PresentationDocument package = PresentationDocument.Open(filePath, true))
            {
                //Adding Guide element
                A.RgbColorModelHex rgbColorModelHex1 = new A.RgbColorModelHex()
                {
                    Val = this.Color3
                };
                P15.ColorType     colorType1     = new P15.ColorType();
                P15.ExtendedGuide ExtendedGuide1 = new P15.ExtendedGuide()
                {
                    Id = this.Id3, Position = this.position3, Orientation = this.directionValues2
                };
                P15.SlideGuideList    slideGuideList         = new P15.SlideGuideList();
                PresentationExtension presentationExtension1 = new PresentationExtension()
                {
                    Uri = this.SldExtUri
                };
                PresentationExtensionList presentationExtensionList = new PresentationExtensionList();

                colorType1.AppendChild <A.RgbColorModelHex>(rgbColorModelHex1);
                log.Pass("Added RgbColorModelHex element. It SlideGuideList.");

                ExtendedGuide1.AppendChild <P15.ColorType>(colorType1);
                log.Pass("Added ColorType element. It SlideGuideList.");

                slideGuideList.AppendChild <P15.ExtendedGuide>(ExtendedGuide1);
                log.Pass("Added ExtendedGuide element. It SlideGuideList.");

                presentationExtension1.AppendChild <P15.SlideGuideList>(slideGuideList);
                log.Pass("Added SlideGuideList element. It SlideGuideList.");

                presentationExtensionList.AppendChild <PresentationExtension>(presentationExtension1);
                log.Pass("Added PresentationExtension element. It SlideGuideList.");

                //Adding NotesGuide element
                A.RgbColorModelHex rgbColorModelHex2 = new A.RgbColorModelHex()
                {
                    Val = this.Color4
                };
                P15.ColorType     colorType2     = new P15.ColorType();
                P15.ExtendedGuide ExtendedGuide2 = new P15.ExtendedGuide()
                {
                    Id = this.Id4, Position = this.position4, Orientation = this.directionValues2
                };
                P15.NotesGuideList    NotesGuideList         = new P15.NotesGuideList();
                PresentationExtension presentationExtension2 = new PresentationExtension()
                {
                    Uri = this.NotesExtUri
                };

                colorType2.AppendChild <A.RgbColorModelHex>(rgbColorModelHex2);
                log.Pass("Added RgbColorModelHex element. It SlideGuideList.");

                ExtendedGuide2.AppendChild <P15.ColorType>(colorType2);
                log.Pass("Added ColorType element. It SlideGuideList.");

                NotesGuideList.AppendChild <P15.ExtendedGuide>(ExtendedGuide2);
                log.Pass("Added ExtendedGuide element. It SlideGuideList.");

                presentationExtension2.AppendChild <P15.NotesGuideList>(NotesGuideList);
                log.Pass("Added SlideGuideList element. It SlideGuideList.");

                presentationExtensionList.AppendChild <PresentationExtension>(presentationExtension2);
                log.Pass("Added PresentationExtension element. It SlideGuideList.");

                package.PresentationPart.Presentation.Append(presentationExtensionList);
                log.Pass("Added PresentationExtensionList element. It SlideGuideList.");
            }
        }
Ejemplo n.º 43
0
        static TableCell CreateTextCell(string text,RunProperties runProperties, params System.Drawing.Color[] color)
        {
            try
            {
                Repository.Utility.WriteLog("CreateTextCell started ", System.Diagnostics.EventLogEntryType.Information);
                TableCellProperties tableCellProperty = new TableCellProperties();
                if (color.Length > 0)
                {

                    SolidFill solidFill1 = new SolidFill();
                    RgbColorModelHex rgbColorModelHex1 = new RgbColorModelHex() { Val = color[0].ToHexString() };
                    solidFill1.Append(rgbColorModelHex1);
                    tableCellProperty.Append(solidFill1);
                }
                TableCell tc = new TableCell(
                new TextBody(
                new BodyProperties(),
                new Paragraph(
                new Run(
                runProperties.Clone() as RunProperties,
                new Text(text)))),
                tableCellProperty);
                Repository.Utility.WriteLog("CreateTextCell completed successfully ", System.Diagnostics.EventLogEntryType.Information);
                return tc;
            }
            catch
            {
                return new TableCell();
            }
        }
Ejemplo n.º 44
0
        private A.RgbColorModelHex FormRgbColorModelHex(System.Drawing.Color RgbColor, decimal Transparency)
        {
            A.RgbColorModelHex rgbclr = new A.RgbColorModelHex();
            rgbclr.Val = new HexBinaryValue(string.Format("{0}{1}{2}", RgbColor.R.ToString("x2"), RgbColor.G.ToString("x2"), RgbColor.B.ToString("x2")));
            int iAlpha = SLDrawingTool.CalculateAlpha(Transparency);
            // if >= 100000, then transparency was 0 (or negative),
            // then we don't have to append the Alpha class
            if (iAlpha < 100000)
            {
                rgbclr.Append(new A.Alpha() { Val = iAlpha });
            }

            return rgbclr;
        }
        // Generates content of themePart1.
        private void GenerateThemePart1Content(ThemePart themePart1)
        {
            A.Theme theme1 = new A.Theme() { Name = "Tema de Office" };
            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 rgbColorModelHex1 = new A.RgbColorModelHex() { Val = "1F497D" };

            dark2Color1.Append(rgbColorModelHex1);

            A.Light2Color light2Color1 = new A.Light2Color();
            A.RgbColorModelHex rgbColorModelHex2 = new A.RgbColorModelHex() { Val = "EEECE1" };

            light2Color1.Append(rgbColorModelHex2);

            A.Accent1Color accent1Color1 = new A.Accent1Color();
            A.RgbColorModelHex rgbColorModelHex3 = new A.RgbColorModelHex() { Val = "4F81BD" };

            accent1Color1.Append(rgbColorModelHex3);

            A.Accent2Color accent2Color1 = new A.Accent2Color();
            A.RgbColorModelHex rgbColorModelHex4 = new A.RgbColorModelHex() { Val = "C0504D" };

            accent2Color1.Append(rgbColorModelHex4);

            A.Accent3Color accent3Color1 = new A.Accent3Color();
            A.RgbColorModelHex rgbColorModelHex5 = new A.RgbColorModelHex() { Val = "9BBB59" };

            accent3Color1.Append(rgbColorModelHex5);

            A.Accent4Color accent4Color1 = new A.Accent4Color();
            A.RgbColorModelHex rgbColorModelHex6 = new A.RgbColorModelHex() { Val = "8064A2" };

            accent4Color1.Append(rgbColorModelHex6);

            A.Accent5Color accent5Color1 = new A.Accent5Color();
            A.RgbColorModelHex rgbColorModelHex7 = new A.RgbColorModelHex() { Val = "4BACC6" };

            accent5Color1.Append(rgbColorModelHex7);

            A.Accent6Color accent6Color1 = new A.Accent6Color();
            A.RgbColorModelHex rgbColorModelHex8 = new A.RgbColorModelHex() { Val = "F79646" };

            accent6Color1.Append(rgbColorModelHex8);

            A.Hyperlink hyperlink1 = new A.Hyperlink();
            A.RgbColorModelHex rgbColorModelHex9 = new A.RgbColorModelHex() { Val = "0000FF" };

            hyperlink1.Append(rgbColorModelHex9);

            A.FollowedHyperlinkColor followedHyperlinkColor1 = new A.FollowedHyperlinkColor();
            A.RgbColorModelHex rgbColorModelHex10 = new A.RgbColorModelHex() { Val = "800080" };

            followedHyperlinkColor1.Append(rgbColorModelHex10);

            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 fontScheme1 = new A.FontScheme() { Name = "Office" };

            A.MajorFont majorFont1 = new A.MajorFont();
            A.LatinFont latinFont1 = new A.LatinFont() { Typeface = "Cambria" };
            A.EastAsianFont eastAsianFont1 = 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(latinFont1);
            majorFont1.Append(eastAsianFont1);
            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 latinFont2 = new A.LatinFont() { Typeface = "Calibri" };
            A.EastAsianFont eastAsianFont2 = 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(latinFont2);
            minorFont1.Append(eastAsianFont2);
            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);

            fontScheme1.Append(majorFont1);
            fontScheme1.Append(minorFont1);

            A.FormatScheme formatScheme1 = new A.FormatScheme() { Name = "Office" };

            A.FillStyleList fillStyleList1 = new A.FillStyleList();

            A.SolidFill solidFill1 = new A.SolidFill();
            A.SchemeColor schemeColor1 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };

            solidFill1.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(solidFill1);
            fillStyleList1.Append(gradientFill1);
            fillStyleList1.Append(gradientFill2);

            A.LineStyleList lineStyleList1 = new A.LineStyleList();

            A.Outline outline1 = new A.Outline() { Width = 9525, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill2 = 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);

            solidFill2.Append(schemeColor8);
            A.PresetDash presetDash1 = new A.PresetDash() { Val = A.PresetLineDashValues.Solid };

            outline1.Append(solidFill2);
            outline1.Append(presetDash1);

            A.Outline outline2 = new A.Outline() { Width = 25400, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill3 = new A.SolidFill();
            A.SchemeColor schemeColor9 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };

            solidFill3.Append(schemeColor9);
            A.PresetDash presetDash2 = new A.PresetDash() { Val = A.PresetLineDashValues.Solid };

            outline2.Append(solidFill3);
            outline2.Append(presetDash2);

            A.Outline outline3 = new A.Outline() { Width = 38100, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill4 = new A.SolidFill();
            A.SchemeColor schemeColor10 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };

            solidFill4.Append(schemeColor10);
            A.PresetDash presetDash3 = new A.PresetDash() { Val = A.PresetLineDashValues.Solid };

            outline3.Append(solidFill4);
            outline3.Append(presetDash3);

            lineStyleList1.Append(outline1);
            lineStyleList1.Append(outline2);
            lineStyleList1.Append(outline3);

            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 rgbColorModelHex11 = new A.RgbColorModelHex() { Val = "000000" };
            A.Alpha alpha1 = new A.Alpha() { Val = 38000 };

            rgbColorModelHex11.Append(alpha1);

            outerShadow1.Append(rgbColorModelHex11);

            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 rgbColorModelHex12 = new A.RgbColorModelHex() { Val = "000000" };
            A.Alpha alpha2 = new A.Alpha() { Val = 35000 };

            rgbColorModelHex12.Append(alpha2);

            outerShadow2.Append(rgbColorModelHex12);

            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 rgbColorModelHex13 = new A.RgbColorModelHex() { Val = "000000" };
            A.Alpha alpha3 = new A.Alpha() { Val = 35000 };

            rgbColorModelHex13.Append(alpha3);

            outerShadow3.Append(rgbColorModelHex13);

            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 solidFill5 = new A.SolidFill();
            A.SchemeColor schemeColor11 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };

            solidFill5.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(solidFill5);
            backgroundFillStyleList1.Append(gradientFill3);
            backgroundFillStyleList1.Append(gradientFill4);

            formatScheme1.Append(fillStyleList1);
            formatScheme1.Append(lineStyleList1);
            formatScheme1.Append(effectStyleList1);
            formatScheme1.Append(backgroundFillStyleList1);

            themeElements1.Append(colorScheme1);
            themeElements1.Append(fontScheme1);
            themeElements1.Append(formatScheme1);

            A.ObjectDefaults objectDefaults1 = new A.ObjectDefaults();

            A.ShapeDefault shapeDefault1 = new A.ShapeDefault();

            A.ShapeProperties shapeProperties1 = new A.ShapeProperties() { BlackWhiteMode = A.BlackWhiteModeValues.Auto };

            A.Transform2D transform2D1 = new A.Transform2D();
            A.Offset offset1 = new A.Offset() { X = 0L, Y = 0L };
            A.Extents extents1 = new A.Extents() { Cx = 1L, Cy = 1L };

            transform2D1.Append(offset1);
            transform2D1.Append(extents1);

            A.CustomGeometry customGeometry1 = new A.CustomGeometry();
            A.AdjustValueList adjustValueList1 = new A.AdjustValueList();
            A.ShapeGuideList shapeGuideList1 = new A.ShapeGuideList();
            A.AdjustHandleList adjustHandleList1 = new A.AdjustHandleList();
            A.ConnectionSiteList connectionSiteList1 = new A.ConnectionSiteList();
            A.Rectangle rectangle1 = new A.Rectangle() { Left = "0", Top = "0", Right = "0", Bottom = "0" };
            A.PathList pathList1 = new A.PathList();

            customGeometry1.Append(adjustValueList1);
            customGeometry1.Append(shapeGuideList1);
            customGeometry1.Append(adjustHandleList1);
            customGeometry1.Append(connectionSiteList1);
            customGeometry1.Append(rectangle1);
            customGeometry1.Append(pathList1);

            A.SolidFill solidFill6 = new A.SolidFill();
            A.RgbColorModelHex rgbColorModelHex14 = new A.RgbColorModelHex() { Val = "FFFFFF" };

            solidFill6.Append(rgbColorModelHex14);

            A.Outline outline4 = new A.Outline() { Width = 9525, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill7 = new A.SolidFill();
            A.RgbColorModelHex rgbColorModelHex15 = new A.RgbColorModelHex() { Val = "000000" };

            solidFill7.Append(rgbColorModelHex15);
            A.PresetDash presetDash4 = new A.PresetDash() { Val = A.PresetLineDashValues.Solid };
            A.Round round1 = new A.Round();
            A.HeadEnd headEnd1 = new A.HeadEnd() { Type = A.LineEndValues.None, Width = A.LineEndWidthValues.Medium, Length = A.LineEndLengthValues.Medium };
            A.TailEnd tailEnd1 = new A.TailEnd() { Type = A.LineEndValues.None, Width = A.LineEndWidthValues.Medium, Length = A.LineEndLengthValues.Medium };

            outline4.Append(solidFill7);
            outline4.Append(presetDash4);
            outline4.Append(round1);
            outline4.Append(headEnd1);
            outline4.Append(tailEnd1);
            A.EffectList effectList4 = new A.EffectList();

            shapeProperties1.Append(transform2D1);
            shapeProperties1.Append(customGeometry1);
            shapeProperties1.Append(solidFill6);
            shapeProperties1.Append(outline4);
            shapeProperties1.Append(effectList4);
            A.BodyProperties bodyProperties1 = new A.BodyProperties() { VerticalOverflow = A.TextVerticalOverflowValues.Clip, Wrap = A.TextWrappingValues.Square, LeftInset = 18288, TopInset = 0, RightInset = 0, BottomInset = 0, UpRight = true };
            A.ListStyle listStyle1 = new A.ListStyle();

            shapeDefault1.Append(shapeProperties1);
            shapeDefault1.Append(bodyProperties1);
            shapeDefault1.Append(listStyle1);

            A.LineDefault lineDefault1 = new A.LineDefault();

            A.ShapeProperties shapeProperties2 = new A.ShapeProperties() { BlackWhiteMode = A.BlackWhiteModeValues.Auto };

            A.Transform2D transform2D2 = new A.Transform2D();
            A.Offset offset2 = new A.Offset() { X = 0L, Y = 0L };
            A.Extents extents2 = new A.Extents() { Cx = 1L, Cy = 1L };

            transform2D2.Append(offset2);
            transform2D2.Append(extents2);

            A.CustomGeometry customGeometry2 = new A.CustomGeometry();
            A.AdjustValueList adjustValueList2 = new A.AdjustValueList();
            A.ShapeGuideList shapeGuideList2 = new A.ShapeGuideList();
            A.AdjustHandleList adjustHandleList2 = new A.AdjustHandleList();
            A.ConnectionSiteList connectionSiteList2 = new A.ConnectionSiteList();
            A.Rectangle rectangle2 = new A.Rectangle() { Left = "0", Top = "0", Right = "0", Bottom = "0" };
            A.PathList pathList2 = new A.PathList();

            customGeometry2.Append(adjustValueList2);
            customGeometry2.Append(shapeGuideList2);
            customGeometry2.Append(adjustHandleList2);
            customGeometry2.Append(connectionSiteList2);
            customGeometry2.Append(rectangle2);
            customGeometry2.Append(pathList2);

            A.SolidFill solidFill8 = new A.SolidFill();
            A.RgbColorModelHex rgbColorModelHex16 = new A.RgbColorModelHex() { Val = "FFFFFF" };

            solidFill8.Append(rgbColorModelHex16);

            A.Outline outline5 = new A.Outline() { Width = 9525, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill9 = new A.SolidFill();
            A.RgbColorModelHex rgbColorModelHex17 = new A.RgbColorModelHex() { Val = "000000" };

            solidFill9.Append(rgbColorModelHex17);
            A.PresetDash presetDash5 = new A.PresetDash() { Val = A.PresetLineDashValues.Solid };
            A.Round round2 = new A.Round();
            A.HeadEnd headEnd2 = new A.HeadEnd() { Type = A.LineEndValues.None, Width = A.LineEndWidthValues.Medium, Length = A.LineEndLengthValues.Medium };
            A.TailEnd tailEnd2 = new A.TailEnd() { Type = A.LineEndValues.None, Width = A.LineEndWidthValues.Medium, Length = A.LineEndLengthValues.Medium };

            outline5.Append(solidFill9);
            outline5.Append(presetDash5);
            outline5.Append(round2);
            outline5.Append(headEnd2);
            outline5.Append(tailEnd2);
            A.EffectList effectList5 = new A.EffectList();

            shapeProperties2.Append(transform2D2);
            shapeProperties2.Append(customGeometry2);
            shapeProperties2.Append(solidFill8);
            shapeProperties2.Append(outline5);
            shapeProperties2.Append(effectList5);
            A.BodyProperties bodyProperties2 = new A.BodyProperties() { VerticalOverflow = A.TextVerticalOverflowValues.Clip, Wrap = A.TextWrappingValues.Square, LeftInset = 18288, TopInset = 0, RightInset = 0, BottomInset = 0, UpRight = true };
            A.ListStyle listStyle2 = new A.ListStyle();

            lineDefault1.Append(shapeProperties2);
            lineDefault1.Append(bodyProperties2);
            lineDefault1.Append(listStyle2);

            objectDefaults1.Append(shapeDefault1);
            objectDefaults1.Append(lineDefault1);
            A.ExtraColorSchemeList extraColorSchemeList1 = new A.ExtraColorSchemeList();

            theme1.Append(themeElements1);
            theme1.Append(objectDefaults1);
            theme1.Append(extraColorSchemeList1);

            themePart1.Theme = theme1;
        }
Ejemplo n.º 46
0
        // Generates content of themePart2.
        private void GenerateThemePart2Content(ThemePart themePart2)
        {
            A.Theme theme2 = new A.Theme(){ Name = "Office Theme" };
            theme2.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");

            A.ThemeElements themeElements2 = new A.ThemeElements();

            A.ColorScheme colorScheme2 = new A.ColorScheme(){ Name = "Office" };

            A.Dark1Color dark1Color2 = new A.Dark1Color();
            A.SystemColor systemColor3 = new A.SystemColor(){ Val = A.SystemColorValues.WindowText, LastColor = "000000" };

            dark1Color2.Append(systemColor3);

            A.Light1Color light1Color2 = new A.Light1Color();
            A.SystemColor systemColor4 = new A.SystemColor(){ Val = A.SystemColorValues.Window, LastColor = "FFFFFF" };

            light1Color2.Append(systemColor4);

            A.Dark2Color dark2Color2 = new A.Dark2Color();
            A.RgbColorModelHex rgbColorModelHex18 = new A.RgbColorModelHex(){ Val = "1F497D" };

            dark2Color2.Append(rgbColorModelHex18);

            A.Light2Color light2Color2 = new A.Light2Color();
            A.RgbColorModelHex rgbColorModelHex19 = new A.RgbColorModelHex(){ Val = "EEECE1" };

            light2Color2.Append(rgbColorModelHex19);

            A.Accent1Color accent1Color2 = new A.Accent1Color();
            A.RgbColorModelHex rgbColorModelHex20 = new A.RgbColorModelHex(){ Val = "4F81BD" };

            accent1Color2.Append(rgbColorModelHex20);

            A.Accent2Color accent2Color2 = new A.Accent2Color();
            A.RgbColorModelHex rgbColorModelHex21 = new A.RgbColorModelHex(){ Val = "C0504D" };

            accent2Color2.Append(rgbColorModelHex21);

            A.Accent3Color accent3Color2 = new A.Accent3Color();
            A.RgbColorModelHex rgbColorModelHex22 = new A.RgbColorModelHex(){ Val = "9BBB59" };

            accent3Color2.Append(rgbColorModelHex22);

            A.Accent4Color accent4Color2 = new A.Accent4Color();
            A.RgbColorModelHex rgbColorModelHex23 = new A.RgbColorModelHex(){ Val = "8064A2" };

            accent4Color2.Append(rgbColorModelHex23);

            A.Accent5Color accent5Color2 = new A.Accent5Color();
            A.RgbColorModelHex rgbColorModelHex24 = new A.RgbColorModelHex(){ Val = "4BACC6" };

            accent5Color2.Append(rgbColorModelHex24);

            A.Accent6Color accent6Color2 = new A.Accent6Color();
            A.RgbColorModelHex rgbColorModelHex25 = new A.RgbColorModelHex(){ Val = "F79646" };

            accent6Color2.Append(rgbColorModelHex25);

            A.Hyperlink hyperlink2 = new A.Hyperlink();
            A.RgbColorModelHex rgbColorModelHex26 = new A.RgbColorModelHex(){ Val = "0000FF" };

            hyperlink2.Append(rgbColorModelHex26);

            A.FollowedHyperlinkColor followedHyperlinkColor2 = new A.FollowedHyperlinkColor();
            A.RgbColorModelHex rgbColorModelHex27 = new A.RgbColorModelHex(){ Val = "800080" };

            followedHyperlinkColor2.Append(rgbColorModelHex27);

            colorScheme2.Append(dark1Color2);
            colorScheme2.Append(light1Color2);
            colorScheme2.Append(dark2Color2);
            colorScheme2.Append(light2Color2);
            colorScheme2.Append(accent1Color2);
            colorScheme2.Append(accent2Color2);
            colorScheme2.Append(accent3Color2);
            colorScheme2.Append(accent4Color2);
            colorScheme2.Append(accent5Color2);
            colorScheme2.Append(accent6Color2);
            colorScheme2.Append(hyperlink2);
            colorScheme2.Append(followedHyperlinkColor2);

            A.FontScheme fontScheme2 = new A.FontScheme(){ Name = "Office" };

            A.MajorFont majorFont2 = new A.MajorFont();
            A.LatinFont latinFont40 = new A.LatinFont(){ Typeface = "Calibri" };
            A.EastAsianFont eastAsianFont40 = new A.EastAsianFont(){ Typeface = "" };
            A.ComplexScriptFont complexScriptFont40 = new A.ComplexScriptFont(){ Typeface = "" };
            A.SupplementalFont supplementalFont59 = new A.SupplementalFont(){ Script = "Jpan", Typeface = "MS Pゴシック" };
            A.SupplementalFont supplementalFont60 = new A.SupplementalFont(){ Script = "Hang", Typeface = "맑은 고딕" };
            A.SupplementalFont supplementalFont61 = new A.SupplementalFont(){ Script = "Hans", Typeface = "宋体" };
            A.SupplementalFont supplementalFont62 = new A.SupplementalFont(){ Script = "Hant", Typeface = "新細明體" };
            A.SupplementalFont supplementalFont63 = new A.SupplementalFont(){ Script = "Arab", Typeface = "Times New Roman" };
            A.SupplementalFont supplementalFont64 = new A.SupplementalFont(){ Script = "Hebr", Typeface = "Times New Roman" };
            A.SupplementalFont supplementalFont65 = new A.SupplementalFont(){ Script = "Thai", Typeface = "Angsana New" };
            A.SupplementalFont supplementalFont66 = new A.SupplementalFont(){ Script = "Ethi", Typeface = "Nyala" };
            A.SupplementalFont supplementalFont67 = new A.SupplementalFont(){ Script = "Beng", Typeface = "Vrinda" };
            A.SupplementalFont supplementalFont68 = new A.SupplementalFont(){ Script = "Gujr", Typeface = "Shruti" };
            A.SupplementalFont supplementalFont69 = new A.SupplementalFont(){ Script = "Khmr", Typeface = "MoolBoran" };
            A.SupplementalFont supplementalFont70 = new A.SupplementalFont(){ Script = "Knda", Typeface = "Tunga" };
            A.SupplementalFont supplementalFont71 = new A.SupplementalFont(){ Script = "Guru", Typeface = "Raavi" };
            A.SupplementalFont supplementalFont72 = new A.SupplementalFont(){ Script = "Cans", Typeface = "Euphemia" };
            A.SupplementalFont supplementalFont73 = new A.SupplementalFont(){ Script = "Cher", Typeface = "Plantagenet Cherokee" };
            A.SupplementalFont supplementalFont74 = new A.SupplementalFont(){ Script = "Yiii", Typeface = "Microsoft Yi Baiti" };
            A.SupplementalFont supplementalFont75 = new A.SupplementalFont(){ Script = "Tibt", Typeface = "Microsoft Himalaya" };
            A.SupplementalFont supplementalFont76 = new A.SupplementalFont(){ Script = "Thaa", Typeface = "MV Boli" };
            A.SupplementalFont supplementalFont77 = new A.SupplementalFont(){ Script = "Deva", Typeface = "Mangal" };
            A.SupplementalFont supplementalFont78 = new A.SupplementalFont(){ Script = "Telu", Typeface = "Gautami" };
            A.SupplementalFont supplementalFont79 = new A.SupplementalFont(){ Script = "Taml", Typeface = "Latha" };
            A.SupplementalFont supplementalFont80 = new A.SupplementalFont(){ Script = "Syrc", Typeface = "Estrangelo Edessa" };
            A.SupplementalFont supplementalFont81 = new A.SupplementalFont(){ Script = "Orya", Typeface = "Kalinga" };
            A.SupplementalFont supplementalFont82 = new A.SupplementalFont(){ Script = "Mlym", Typeface = "Kartika" };
            A.SupplementalFont supplementalFont83 = new A.SupplementalFont(){ Script = "Laoo", Typeface = "DokChampa" };
            A.SupplementalFont supplementalFont84 = new A.SupplementalFont(){ Script = "Sinh", Typeface = "Iskoola Pota" };
            A.SupplementalFont supplementalFont85 = new A.SupplementalFont(){ Script = "Mong", Typeface = "Mongolian Baiti" };
            A.SupplementalFont supplementalFont86 = new A.SupplementalFont(){ Script = "Viet", Typeface = "Times New Roman" };
            A.SupplementalFont supplementalFont87 = new A.SupplementalFont(){ Script = "Uigh", Typeface = "Microsoft Uighur" };

            majorFont2.Append(latinFont40);
            majorFont2.Append(eastAsianFont40);
            majorFont2.Append(complexScriptFont40);
            majorFont2.Append(supplementalFont59);
            majorFont2.Append(supplementalFont60);
            majorFont2.Append(supplementalFont61);
            majorFont2.Append(supplementalFont62);
            majorFont2.Append(supplementalFont63);
            majorFont2.Append(supplementalFont64);
            majorFont2.Append(supplementalFont65);
            majorFont2.Append(supplementalFont66);
            majorFont2.Append(supplementalFont67);
            majorFont2.Append(supplementalFont68);
            majorFont2.Append(supplementalFont69);
            majorFont2.Append(supplementalFont70);
            majorFont2.Append(supplementalFont71);
            majorFont2.Append(supplementalFont72);
            majorFont2.Append(supplementalFont73);
            majorFont2.Append(supplementalFont74);
            majorFont2.Append(supplementalFont75);
            majorFont2.Append(supplementalFont76);
            majorFont2.Append(supplementalFont77);
            majorFont2.Append(supplementalFont78);
            majorFont2.Append(supplementalFont79);
            majorFont2.Append(supplementalFont80);
            majorFont2.Append(supplementalFont81);
            majorFont2.Append(supplementalFont82);
            majorFont2.Append(supplementalFont83);
            majorFont2.Append(supplementalFont84);
            majorFont2.Append(supplementalFont85);
            majorFont2.Append(supplementalFont86);
            majorFont2.Append(supplementalFont87);

            A.MinorFont minorFont2 = new A.MinorFont();
            A.LatinFont latinFont41 = new A.LatinFont(){ Typeface = "Calibri" };
            A.EastAsianFont eastAsianFont41 = new A.EastAsianFont(){ Typeface = "" };
            A.ComplexScriptFont complexScriptFont41 = new A.ComplexScriptFont(){ Typeface = "" };
            A.SupplementalFont supplementalFont88 = new A.SupplementalFont(){ Script = "Jpan", Typeface = "MS Pゴシック" };
            A.SupplementalFont supplementalFont89 = new A.SupplementalFont(){ Script = "Hang", Typeface = "맑은 고딕" };
            A.SupplementalFont supplementalFont90 = new A.SupplementalFont(){ Script = "Hans", Typeface = "宋体" };
            A.SupplementalFont supplementalFont91 = new A.SupplementalFont(){ Script = "Hant", Typeface = "新細明體" };
            A.SupplementalFont supplementalFont92 = new A.SupplementalFont(){ Script = "Arab", Typeface = "Arial" };
            A.SupplementalFont supplementalFont93 = new A.SupplementalFont(){ Script = "Hebr", Typeface = "Arial" };
            A.SupplementalFont supplementalFont94 = new A.SupplementalFont(){ Script = "Thai", Typeface = "Cordia New" };
            A.SupplementalFont supplementalFont95 = new A.SupplementalFont(){ Script = "Ethi", Typeface = "Nyala" };
            A.SupplementalFont supplementalFont96 = new A.SupplementalFont(){ Script = "Beng", Typeface = "Vrinda" };
            A.SupplementalFont supplementalFont97 = new A.SupplementalFont(){ Script = "Gujr", Typeface = "Shruti" };
            A.SupplementalFont supplementalFont98 = new A.SupplementalFont(){ Script = "Khmr", Typeface = "DaunPenh" };
            A.SupplementalFont supplementalFont99 = new A.SupplementalFont(){ Script = "Knda", Typeface = "Tunga" };
            A.SupplementalFont supplementalFont100 = new A.SupplementalFont(){ Script = "Guru", Typeface = "Raavi" };
            A.SupplementalFont supplementalFont101 = new A.SupplementalFont(){ Script = "Cans", Typeface = "Euphemia" };
            A.SupplementalFont supplementalFont102 = new A.SupplementalFont(){ Script = "Cher", Typeface = "Plantagenet Cherokee" };
            A.SupplementalFont supplementalFont103 = new A.SupplementalFont(){ Script = "Yiii", Typeface = "Microsoft Yi Baiti" };
            A.SupplementalFont supplementalFont104 = new A.SupplementalFont(){ Script = "Tibt", Typeface = "Microsoft Himalaya" };
            A.SupplementalFont supplementalFont105 = new A.SupplementalFont(){ Script = "Thaa", Typeface = "MV Boli" };
            A.SupplementalFont supplementalFont106 = new A.SupplementalFont(){ Script = "Deva", Typeface = "Mangal" };
            A.SupplementalFont supplementalFont107 = new A.SupplementalFont(){ Script = "Telu", Typeface = "Gautami" };
            A.SupplementalFont supplementalFont108 = new A.SupplementalFont(){ Script = "Taml", Typeface = "Latha" };
            A.SupplementalFont supplementalFont109 = new A.SupplementalFont(){ Script = "Syrc", Typeface = "Estrangelo Edessa" };
            A.SupplementalFont supplementalFont110 = new A.SupplementalFont(){ Script = "Orya", Typeface = "Kalinga" };
            A.SupplementalFont supplementalFont111 = new A.SupplementalFont(){ Script = "Mlym", Typeface = "Kartika" };
            A.SupplementalFont supplementalFont112 = new A.SupplementalFont(){ Script = "Laoo", Typeface = "DokChampa" };
            A.SupplementalFont supplementalFont113 = new A.SupplementalFont(){ Script = "Sinh", Typeface = "Iskoola Pota" };
            A.SupplementalFont supplementalFont114 = new A.SupplementalFont(){ Script = "Mong", Typeface = "Mongolian Baiti" };
            A.SupplementalFont supplementalFont115 = new A.SupplementalFont(){ Script = "Viet", Typeface = "Arial" };
            A.SupplementalFont supplementalFont116 = new A.SupplementalFont(){ Script = "Uigh", Typeface = "Microsoft Uighur" };

            minorFont2.Append(latinFont41);
            minorFont2.Append(eastAsianFont41);
            minorFont2.Append(complexScriptFont41);
            minorFont2.Append(supplementalFont88);
            minorFont2.Append(supplementalFont89);
            minorFont2.Append(supplementalFont90);
            minorFont2.Append(supplementalFont91);
            minorFont2.Append(supplementalFont92);
            minorFont2.Append(supplementalFont93);
            minorFont2.Append(supplementalFont94);
            minorFont2.Append(supplementalFont95);
            minorFont2.Append(supplementalFont96);
            minorFont2.Append(supplementalFont97);
            minorFont2.Append(supplementalFont98);
            minorFont2.Append(supplementalFont99);
            minorFont2.Append(supplementalFont100);
            minorFont2.Append(supplementalFont101);
            minorFont2.Append(supplementalFont102);
            minorFont2.Append(supplementalFont103);
            minorFont2.Append(supplementalFont104);
            minorFont2.Append(supplementalFont105);
            minorFont2.Append(supplementalFont106);
            minorFont2.Append(supplementalFont107);
            minorFont2.Append(supplementalFont108);
            minorFont2.Append(supplementalFont109);
            minorFont2.Append(supplementalFont110);
            minorFont2.Append(supplementalFont111);
            minorFont2.Append(supplementalFont112);
            minorFont2.Append(supplementalFont113);
            minorFont2.Append(supplementalFont114);
            minorFont2.Append(supplementalFont115);
            minorFont2.Append(supplementalFont116);

            fontScheme2.Append(majorFont2);
            fontScheme2.Append(minorFont2);

            A.FormatScheme formatScheme2 = new A.FormatScheme(){ Name = "Office" };

            A.FillStyleList fillStyleList2 = new A.FillStyleList();

            A.SolidFill solidFill65 = new A.SolidFill();
            A.SchemeColor schemeColor77 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };

            solidFill65.Append(schemeColor77);

            A.GradientFill gradientFill5 = new A.GradientFill(){ RotateWithShape = true };

            A.GradientStopList gradientStopList5 = new A.GradientStopList();

            A.GradientStop gradientStop12 = new A.GradientStop(){ Position = 0 };

            A.SchemeColor schemeColor78 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint28 = new A.Tint(){ Val = 50000 };
            A.SaturationModulation saturationModulation13 = new A.SaturationModulation(){ Val = 300000 };

            schemeColor78.Append(tint28);
            schemeColor78.Append(saturationModulation13);

            gradientStop12.Append(schemeColor78);

            A.GradientStop gradientStop13 = new A.GradientStop(){ Position = 35000 };

            A.SchemeColor schemeColor79 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint29 = new A.Tint(){ Val = 37000 };
            A.SaturationModulation saturationModulation14 = new A.SaturationModulation(){ Val = 300000 };

            schemeColor79.Append(tint29);
            schemeColor79.Append(saturationModulation14);

            gradientStop13.Append(schemeColor79);

            A.GradientStop gradientStop14 = new A.GradientStop(){ Position = 100000 };

            A.SchemeColor schemeColor80 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint30 = new A.Tint(){ Val = 15000 };
            A.SaturationModulation saturationModulation15 = new A.SaturationModulation(){ Val = 350000 };

            schemeColor80.Append(tint30);
            schemeColor80.Append(saturationModulation15);

            gradientStop14.Append(schemeColor80);

            gradientStopList5.Append(gradientStop12);
            gradientStopList5.Append(gradientStop13);
            gradientStopList5.Append(gradientStop14);
            A.LinearGradientFill linearGradientFill3 = new A.LinearGradientFill(){ Angle = 16200000, Scaled = true };

            gradientFill5.Append(gradientStopList5);
            gradientFill5.Append(linearGradientFill3);

            A.GradientFill gradientFill6 = new A.GradientFill(){ RotateWithShape = true };

            A.GradientStopList gradientStopList6 = new A.GradientStopList();

            A.GradientStop gradientStop15 = new A.GradientStop(){ Position = 0 };

            A.SchemeColor schemeColor81 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Shade shade8 = new A.Shade(){ Val = 51000 };
            A.SaturationModulation saturationModulation16 = new A.SaturationModulation(){ Val = 130000 };

            schemeColor81.Append(shade8);
            schemeColor81.Append(saturationModulation16);

            gradientStop15.Append(schemeColor81);

            A.GradientStop gradientStop16 = new A.GradientStop(){ Position = 80000 };

            A.SchemeColor schemeColor82 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Shade shade9 = new A.Shade(){ Val = 93000 };
            A.SaturationModulation saturationModulation17 = new A.SaturationModulation(){ Val = 130000 };

            schemeColor82.Append(shade9);
            schemeColor82.Append(saturationModulation17);

            gradientStop16.Append(schemeColor82);

            A.GradientStop gradientStop17 = new A.GradientStop(){ Position = 100000 };

            A.SchemeColor schemeColor83 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Shade shade10 = new A.Shade(){ Val = 94000 };
            A.SaturationModulation saturationModulation18 = new A.SaturationModulation(){ Val = 135000 };

            schemeColor83.Append(shade10);
            schemeColor83.Append(saturationModulation18);

            gradientStop17.Append(schemeColor83);

            gradientStopList6.Append(gradientStop15);
            gradientStopList6.Append(gradientStop16);
            gradientStopList6.Append(gradientStop17);
            A.LinearGradientFill linearGradientFill4 = new A.LinearGradientFill(){ Angle = 16200000, Scaled = false };

            gradientFill6.Append(gradientStopList6);
            gradientFill6.Append(linearGradientFill4);

            fillStyleList2.Append(solidFill65);
            fillStyleList2.Append(gradientFill5);
            fillStyleList2.Append(gradientFill6);

            A.LineStyleList lineStyleList2 = new A.LineStyleList();

            A.Outline outline5 = new A.Outline(){ Width = 9525, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill66 = new A.SolidFill();

            A.SchemeColor schemeColor84 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Shade shade11 = new A.Shade(){ Val = 95000 };
            A.SaturationModulation saturationModulation19 = new A.SaturationModulation(){ Val = 105000 };

            schemeColor84.Append(shade11);
            schemeColor84.Append(saturationModulation19);

            solidFill66.Append(schemeColor84);
            A.PresetDash presetDash4 = new A.PresetDash(){ Val = A.PresetLineDashValues.Solid };

            outline5.Append(solidFill66);
            outline5.Append(presetDash4);

            A.Outline outline6 = new A.Outline(){ Width = 25400, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill67 = new A.SolidFill();
            A.SchemeColor schemeColor85 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };

            solidFill67.Append(schemeColor85);
            A.PresetDash presetDash5 = new A.PresetDash(){ Val = A.PresetLineDashValues.Solid };

            outline6.Append(solidFill67);
            outline6.Append(presetDash5);

            A.Outline outline7 = new A.Outline(){ Width = 38100, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill68 = new A.SolidFill();
            A.SchemeColor schemeColor86 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };

            solidFill68.Append(schemeColor86);
            A.PresetDash presetDash6 = new A.PresetDash(){ Val = A.PresetLineDashValues.Solid };

            outline7.Append(solidFill68);
            outline7.Append(presetDash6);

            lineStyleList2.Append(outline5);
            lineStyleList2.Append(outline6);
            lineStyleList2.Append(outline7);

            A.EffectStyleList effectStyleList2 = new A.EffectStyleList();

            A.EffectStyle effectStyle4 = new A.EffectStyle();

            A.EffectList effectList4 = new A.EffectList();

            A.OuterShadow outerShadow4 = new A.OuterShadow(){ BlurRadius = 40000L, Distance = 20000L, Direction = 5400000, RotateWithShape = false };

            A.RgbColorModelHex rgbColorModelHex28 = new A.RgbColorModelHex(){ Val = "000000" };
            A.Alpha alpha4 = new A.Alpha(){ Val = 38000 };

            rgbColorModelHex28.Append(alpha4);

            outerShadow4.Append(rgbColorModelHex28);

            effectList4.Append(outerShadow4);

            effectStyle4.Append(effectList4);

            A.EffectStyle effectStyle5 = new A.EffectStyle();

            A.EffectList effectList5 = new A.EffectList();

            A.OuterShadow outerShadow5 = new A.OuterShadow(){ BlurRadius = 40000L, Distance = 23000L, Direction = 5400000, RotateWithShape = false };

            A.RgbColorModelHex rgbColorModelHex29 = new A.RgbColorModelHex(){ Val = "000000" };
            A.Alpha alpha5 = new A.Alpha(){ Val = 35000 };

            rgbColorModelHex29.Append(alpha5);

            outerShadow5.Append(rgbColorModelHex29);

            effectList5.Append(outerShadow5);

            effectStyle5.Append(effectList5);

            A.EffectStyle effectStyle6 = new A.EffectStyle();

            A.EffectList effectList6 = new A.EffectList();

            A.OuterShadow outerShadow6 = new A.OuterShadow(){ BlurRadius = 40000L, Distance = 23000L, Direction = 5400000, RotateWithShape = false };

            A.RgbColorModelHex rgbColorModelHex30 = new A.RgbColorModelHex(){ Val = "000000" };
            A.Alpha alpha6 = new A.Alpha(){ Val = 35000 };

            rgbColorModelHex30.Append(alpha6);

            outerShadow6.Append(rgbColorModelHex30);

            effectList6.Append(outerShadow6);

            A.Scene3DType scene3DType2 = new A.Scene3DType();

            A.Camera camera2 = new A.Camera(){ Preset = A.PresetCameraValues.OrthographicFront };
            A.Rotation rotation3 = new A.Rotation(){ Latitude = 0, Longitude = 0, Revolution = 0 };

            camera2.Append(rotation3);

            A.LightRig lightRig2 = new A.LightRig(){ Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };
            A.Rotation rotation4 = new A.Rotation(){ Latitude = 0, Longitude = 0, Revolution = 1200000 };

            lightRig2.Append(rotation4);

            scene3DType2.Append(camera2);
            scene3DType2.Append(lightRig2);

            A.Shape3DType shape3DType2 = new A.Shape3DType();
            A.BevelTop bevelTop2 = new A.BevelTop(){ Width = 63500L, Height = 25400L };

            shape3DType2.Append(bevelTop2);

            effectStyle6.Append(effectList6);
            effectStyle6.Append(scene3DType2);
            effectStyle6.Append(shape3DType2);

            effectStyleList2.Append(effectStyle4);
            effectStyleList2.Append(effectStyle5);
            effectStyleList2.Append(effectStyle6);

            A.BackgroundFillStyleList backgroundFillStyleList2 = new A.BackgroundFillStyleList();

            A.SolidFill solidFill69 = new A.SolidFill();
            A.SchemeColor schemeColor87 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };

            solidFill69.Append(schemeColor87);

            A.GradientFill gradientFill7 = new A.GradientFill(){ RotateWithShape = true };

            A.GradientStopList gradientStopList7 = new A.GradientStopList();

            A.GradientStop gradientStop18 = new A.GradientStop(){ Position = 0 };

            A.SchemeColor schemeColor88 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint31 = new A.Tint(){ Val = 40000 };
            A.SaturationModulation saturationModulation20 = new A.SaturationModulation(){ Val = 350000 };

            schemeColor88.Append(tint31);
            schemeColor88.Append(saturationModulation20);

            gradientStop18.Append(schemeColor88);

            A.GradientStop gradientStop19 = new A.GradientStop(){ Position = 40000 };

            A.SchemeColor schemeColor89 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint32 = new A.Tint(){ Val = 45000 };
            A.Shade shade12 = new A.Shade(){ Val = 99000 };
            A.SaturationModulation saturationModulation21 = new A.SaturationModulation(){ Val = 350000 };

            schemeColor89.Append(tint32);
            schemeColor89.Append(shade12);
            schemeColor89.Append(saturationModulation21);

            gradientStop19.Append(schemeColor89);

            A.GradientStop gradientStop20 = new A.GradientStop(){ Position = 100000 };

            A.SchemeColor schemeColor90 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Shade shade13 = new A.Shade(){ Val = 20000 };
            A.SaturationModulation saturationModulation22 = new A.SaturationModulation(){ Val = 255000 };

            schemeColor90.Append(shade13);
            schemeColor90.Append(saturationModulation22);

            gradientStop20.Append(schemeColor90);

            gradientStopList7.Append(gradientStop18);
            gradientStopList7.Append(gradientStop19);
            gradientStopList7.Append(gradientStop20);

            A.PathGradientFill pathGradientFill3 = new A.PathGradientFill(){ Path = A.PathShadeValues.Circle };
            A.FillToRectangle fillToRectangle3 = new A.FillToRectangle(){ Left = 50000, Top = -80000, Right = 50000, Bottom = 180000 };

            pathGradientFill3.Append(fillToRectangle3);

            gradientFill7.Append(gradientStopList7);
            gradientFill7.Append(pathGradientFill3);

            A.GradientFill gradientFill8 = new A.GradientFill(){ RotateWithShape = true };

            A.GradientStopList gradientStopList8 = new A.GradientStopList();

            A.GradientStop gradientStop21 = new A.GradientStop(){ Position = 0 };

            A.SchemeColor schemeColor91 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint33 = new A.Tint(){ Val = 80000 };
            A.SaturationModulation saturationModulation23 = new A.SaturationModulation(){ Val = 300000 };

            schemeColor91.Append(tint33);
            schemeColor91.Append(saturationModulation23);

            gradientStop21.Append(schemeColor91);

            A.GradientStop gradientStop22 = new A.GradientStop(){ Position = 100000 };

            A.SchemeColor schemeColor92 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Shade shade14 = new A.Shade(){ Val = 30000 };
            A.SaturationModulation saturationModulation24 = new A.SaturationModulation(){ Val = 200000 };

            schemeColor92.Append(shade14);
            schemeColor92.Append(saturationModulation24);

            gradientStop22.Append(schemeColor92);

            gradientStopList8.Append(gradientStop21);
            gradientStopList8.Append(gradientStop22);

            A.PathGradientFill pathGradientFill4 = new A.PathGradientFill(){ Path = A.PathShadeValues.Circle };
            A.FillToRectangle fillToRectangle4 = new A.FillToRectangle(){ Left = 50000, Top = 50000, Right = 50000, Bottom = 50000 };

            pathGradientFill4.Append(fillToRectangle4);

            gradientFill8.Append(gradientStopList8);
            gradientFill8.Append(pathGradientFill4);

            backgroundFillStyleList2.Append(solidFill69);
            backgroundFillStyleList2.Append(gradientFill7);
            backgroundFillStyleList2.Append(gradientFill8);

            formatScheme2.Append(fillStyleList2);
            formatScheme2.Append(lineStyleList2);
            formatScheme2.Append(effectStyleList2);
            formatScheme2.Append(backgroundFillStyleList2);

            themeElements2.Append(colorScheme2);
            themeElements2.Append(fontScheme2);
            themeElements2.Append(formatScheme2);
            A.ObjectDefaults objectDefaults2 = new A.ObjectDefaults();
            A.ExtraColorSchemeList extraColorSchemeList2 = new A.ExtraColorSchemeList();

            theme2.Append(themeElements2);
            theme2.Append(objectDefaults2);
            theme2.Append(extraColorSchemeList2);

            themePart2.Theme = theme2;
        }
Ejemplo n.º 47
0
        // 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 = "Oriel" };

            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 rgbColorModelHex5 = new A.RgbColorModelHex(){ Val = "575F6D" };

            dark2Color1.Append(rgbColorModelHex5);

            A.Light2Color light2Color1 = new A.Light2Color();
            A.RgbColorModelHex rgbColorModelHex6 = new A.RgbColorModelHex(){ Val = "FFF39D" };

            light2Color1.Append(rgbColorModelHex6);

            A.Accent1Color accent1Color1 = new A.Accent1Color();
            A.RgbColorModelHex rgbColorModelHex7 = new A.RgbColorModelHex(){ Val = "FE8637" };

            accent1Color1.Append(rgbColorModelHex7);

            A.Accent2Color accent2Color1 = new A.Accent2Color();
            A.RgbColorModelHex rgbColorModelHex8 = new A.RgbColorModelHex(){ Val = "7598D9" };

            accent2Color1.Append(rgbColorModelHex8);

            A.Accent3Color accent3Color1 = new A.Accent3Color();
            A.RgbColorModelHex rgbColorModelHex9 = new A.RgbColorModelHex(){ Val = "B32C16" };

            accent3Color1.Append(rgbColorModelHex9);

            A.Accent4Color accent4Color1 = new A.Accent4Color();
            A.RgbColorModelHex rgbColorModelHex10 = new A.RgbColorModelHex(){ Val = "F5CD2D" };

            accent4Color1.Append(rgbColorModelHex10);

            A.Accent5Color accent5Color1 = new A.Accent5Color();
            A.RgbColorModelHex rgbColorModelHex11 = new A.RgbColorModelHex(){ Val = "AEBAD5" };

            accent5Color1.Append(rgbColorModelHex11);

            A.Accent6Color accent6Color1 = new A.Accent6Color();
            A.RgbColorModelHex rgbColorModelHex12 = new A.RgbColorModelHex(){ Val = "777C84" };

            accent6Color1.Append(rgbColorModelHex12);

            A.Hyperlink hyperlink1 = new A.Hyperlink();
            A.RgbColorModelHex rgbColorModelHex13 = new A.RgbColorModelHex(){ Val = "D2611C" };

            hyperlink1.Append(rgbColorModelHex13);

            A.FollowedHyperlinkColor followedHyperlinkColor1 = new A.FollowedHyperlinkColor();
            A.RgbColorModelHex rgbColorModelHex14 = new A.RgbColorModelHex(){ Val = "3B435B" };

            followedHyperlinkColor1.Append(rgbColorModelHex14);

            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 fontScheme1 = new A.FontScheme(){ Name = "Verve" };

            A.MajorFont majorFont1 = new A.MajorFont();
            A.LatinFont latinFont19 = new A.LatinFont(){ Typeface = "Century Gothic" };
            A.EastAsianFont eastAsianFont19 = new A.EastAsianFont(){ Typeface = "" };
            A.ComplexScriptFont complexScriptFont19 = new A.ComplexScriptFont(){ Typeface = "" };
            A.SupplementalFont supplementalFont1 = new A.SupplementalFont(){ Script = "Jpan", Typeface = "HGゴシックM" };
            A.SupplementalFont supplementalFont2 = new A.SupplementalFont(){ Script = "Hang", Typeface = "HY중고딕" };
            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 = "Tahoma" };
            A.SupplementalFont supplementalFont6 = new A.SupplementalFont(){ Script = "Hebr", Typeface = "Gisha" };
            A.SupplementalFont supplementalFont7 = new A.SupplementalFont(){ Script = "Thai", Typeface = "DilleniaUPC" };
            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 = "DaunPenh" };
            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 = "Tahoma" };
            A.SupplementalFont supplementalFont29 = new A.SupplementalFont(){ Script = "Uigh", Typeface = "Microsoft Uighur" };

            majorFont1.Append(latinFont19);
            majorFont1.Append(eastAsianFont19);
            majorFont1.Append(complexScriptFont19);
            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 latinFont20 = new A.LatinFont(){ Typeface = "Century Gothic" };
            A.EastAsianFont eastAsianFont20 = new A.EastAsianFont(){ Typeface = "" };
            A.ComplexScriptFont complexScriptFont20 = new A.ComplexScriptFont(){ Typeface = "" };
            A.SupplementalFont supplementalFont30 = new A.SupplementalFont(){ Script = "Jpan", Typeface = "MS ゴシック" };
            A.SupplementalFont supplementalFont31 = new A.SupplementalFont(){ Script = "Hang", Typeface = "HY중고딕" };
            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 = "Tahoma" };
            A.SupplementalFont supplementalFont35 = new A.SupplementalFont(){ Script = "Hebr", Typeface = "Gisha" };
            A.SupplementalFont supplementalFont36 = new A.SupplementalFont(){ Script = "Thai", Typeface = "DilleniaUPC" };
            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 = "Verdana" };
            A.SupplementalFont supplementalFont58 = new A.SupplementalFont(){ Script = "Uigh", Typeface = "Microsoft Uighur" };

            minorFont1.Append(latinFont20);
            minorFont1.Append(eastAsianFont20);
            minorFont1.Append(complexScriptFont20);
            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);

            fontScheme1.Append(majorFont1);
            fontScheme1.Append(minorFont1);

            A.FormatScheme formatScheme1 = new A.FormatScheme(){ Name = "Office" };

            A.FillStyleList fillStyleList1 = new A.FillStyleList();

            A.SolidFill solidFill20 = new A.SolidFill();
            A.SchemeColor schemeColor20 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };

            solidFill20.Append(schemeColor20);

            A.GradientFill gradientFill1 = new A.GradientFill(){ RotateWithShape = true };

            A.GradientStopList gradientStopList1 = new A.GradientStopList();

            A.GradientStop gradientStop1 = new A.GradientStop(){ Position = 0 };

            A.SchemeColor schemeColor21 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint1 = new A.Tint(){ Val = 50000 };
            A.SaturationModulation saturationModulation1 = new A.SaturationModulation(){ Val = 300000 };

            schemeColor21.Append(tint1);
            schemeColor21.Append(saturationModulation1);

            gradientStop1.Append(schemeColor21);

            A.GradientStop gradientStop2 = new A.GradientStop(){ Position = 35000 };

            A.SchemeColor schemeColor22 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint2 = new A.Tint(){ Val = 37000 };
            A.SaturationModulation saturationModulation2 = new A.SaturationModulation(){ Val = 300000 };

            schemeColor22.Append(tint2);
            schemeColor22.Append(saturationModulation2);

            gradientStop2.Append(schemeColor22);

            A.GradientStop gradientStop3 = new A.GradientStop(){ Position = 100000 };

            A.SchemeColor schemeColor23 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint3 = new A.Tint(){ Val = 15000 };
            A.SaturationModulation saturationModulation3 = new A.SaturationModulation(){ Val = 350000 };

            schemeColor23.Append(tint3);
            schemeColor23.Append(saturationModulation3);

            gradientStop3.Append(schemeColor23);

            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 schemeColor24 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Shade shade1 = new A.Shade(){ Val = 51000 };
            A.SaturationModulation saturationModulation4 = new A.SaturationModulation(){ Val = 130000 };

            schemeColor24.Append(shade1);
            schemeColor24.Append(saturationModulation4);

            gradientStop4.Append(schemeColor24);

            A.GradientStop gradientStop5 = new A.GradientStop(){ Position = 80000 };

            A.SchemeColor schemeColor25 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Shade shade2 = new A.Shade(){ Val = 93000 };
            A.SaturationModulation saturationModulation5 = new A.SaturationModulation(){ Val = 130000 };

            schemeColor25.Append(shade2);
            schemeColor25.Append(saturationModulation5);

            gradientStop5.Append(schemeColor25);

            A.GradientStop gradientStop6 = new A.GradientStop(){ Position = 100000 };

            A.SchemeColor schemeColor26 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Shade shade3 = new A.Shade(){ Val = 94000 };
            A.SaturationModulation saturationModulation6 = new A.SaturationModulation(){ Val = 135000 };

            schemeColor26.Append(shade3);
            schemeColor26.Append(saturationModulation6);

            gradientStop6.Append(schemeColor26);

            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(solidFill20);
            fillStyleList1.Append(gradientFill1);
            fillStyleList1.Append(gradientFill2);

            A.LineStyleList lineStyleList1 = new A.LineStyleList();

            A.Outline outline2 = new A.Outline(){ Width = 9525, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill21 = new A.SolidFill();

            A.SchemeColor schemeColor27 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Shade shade4 = new A.Shade(){ Val = 95000 };
            A.SaturationModulation saturationModulation7 = new A.SaturationModulation(){ Val = 105000 };

            schemeColor27.Append(shade4);
            schemeColor27.Append(saturationModulation7);

            solidFill21.Append(schemeColor27);
            A.PresetDash presetDash1 = new A.PresetDash(){ Val = A.PresetLineDashValues.Solid };

            outline2.Append(solidFill21);
            outline2.Append(presetDash1);

            A.Outline outline3 = new A.Outline(){ Width = 25400, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill22 = new A.SolidFill();
            A.SchemeColor schemeColor28 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };

            solidFill22.Append(schemeColor28);
            A.PresetDash presetDash2 = new A.PresetDash(){ Val = A.PresetLineDashValues.Solid };

            outline3.Append(solidFill22);
            outline3.Append(presetDash2);

            A.Outline outline4 = new A.Outline(){ Width = 38100, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill23 = new A.SolidFill();
            A.SchemeColor schemeColor29 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };

            solidFill23.Append(schemeColor29);
            A.PresetDash presetDash3 = new A.PresetDash(){ Val = A.PresetLineDashValues.Solid };

            outline4.Append(solidFill23);
            outline4.Append(presetDash3);

            lineStyleList1.Append(outline2);
            lineStyleList1.Append(outline3);
            lineStyleList1.Append(outline4);

            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 rgbColorModelHex15 = new A.RgbColorModelHex(){ Val = "000000" };
            A.Alpha alpha1 = new A.Alpha(){ Val = 38000 };

            rgbColorModelHex15.Append(alpha1);

            outerShadow1.Append(rgbColorModelHex15);

            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 rgbColorModelHex16 = new A.RgbColorModelHex(){ Val = "000000" };
            A.Alpha alpha2 = new A.Alpha(){ Val = 35000 };

            rgbColorModelHex16.Append(alpha2);

            outerShadow2.Append(rgbColorModelHex16);

            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 rgbColorModelHex17 = new A.RgbColorModelHex(){ Val = "000000" };
            A.Alpha alpha3 = new A.Alpha(){ Val = 35000 };

            rgbColorModelHex17.Append(alpha3);

            outerShadow3.Append(rgbColorModelHex17);

            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 solidFill24 = new A.SolidFill();
            A.SchemeColor schemeColor30 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };

            solidFill24.Append(schemeColor30);

            A.GradientFill gradientFill3 = new A.GradientFill(){ RotateWithShape = true };

            A.GradientStopList gradientStopList3 = new A.GradientStopList();

            A.GradientStop gradientStop7 = new A.GradientStop(){ Position = 0 };

            A.SchemeColor schemeColor31 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint4 = new A.Tint(){ Val = 40000 };
            A.SaturationModulation saturationModulation8 = new A.SaturationModulation(){ Val = 350000 };

            schemeColor31.Append(tint4);
            schemeColor31.Append(saturationModulation8);

            gradientStop7.Append(schemeColor31);

            A.GradientStop gradientStop8 = new A.GradientStop(){ Position = 40000 };

            A.SchemeColor schemeColor32 = 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 };

            schemeColor32.Append(tint5);
            schemeColor32.Append(shade5);
            schemeColor32.Append(saturationModulation9);

            gradientStop8.Append(schemeColor32);

            A.GradientStop gradientStop9 = new A.GradientStop(){ Position = 100000 };

            A.SchemeColor schemeColor33 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Shade shade6 = new A.Shade(){ Val = 20000 };
            A.SaturationModulation saturationModulation10 = new A.SaturationModulation(){ Val = 255000 };

            schemeColor33.Append(shade6);
            schemeColor33.Append(saturationModulation10);

            gradientStop9.Append(schemeColor33);

            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 schemeColor34 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint6 = new A.Tint(){ Val = 80000 };
            A.SaturationModulation saturationModulation11 = new A.SaturationModulation(){ Val = 300000 };

            schemeColor34.Append(tint6);
            schemeColor34.Append(saturationModulation11);

            gradientStop10.Append(schemeColor34);

            A.GradientStop gradientStop11 = new A.GradientStop(){ Position = 100000 };

            A.SchemeColor schemeColor35 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Shade shade7 = new A.Shade(){ Val = 30000 };
            A.SaturationModulation saturationModulation12 = new A.SaturationModulation(){ Val = 200000 };

            schemeColor35.Append(shade7);
            schemeColor35.Append(saturationModulation12);

            gradientStop11.Append(schemeColor35);

            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(solidFill24);
            backgroundFillStyleList1.Append(gradientFill3);
            backgroundFillStyleList1.Append(gradientFill4);

            formatScheme1.Append(fillStyleList1);
            formatScheme1.Append(lineStyleList1);
            formatScheme1.Append(effectStyleList1);
            formatScheme1.Append(backgroundFillStyleList1);

            themeElements1.Append(colorScheme1);
            themeElements1.Append(fontScheme1);
            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;
        }
Ejemplo n.º 48
0
        private static void GenerateChartPartContentLine(ChartPart part, string formulaCat, string formulaVal, string title)
        {
            C.ChartSpace chartSpace1 = new C.ChartSpace();
            chartSpace1.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");
            chartSpace1.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");
            chartSpace1.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            chartSpace1.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
            chartSpace1.AddNamespaceDeclaration("mv", "urn:schemas-microsoft-com:mac:vml");
            chartSpace1.AddNamespaceDeclaration("c14", "http://schemas.microsoft.com/office/drawing/2007/8/2/chart");

            C.Chart chart1 = new C.Chart();

            C.Title title1 = new C.Title();

            C.ChartText chartText1 = new C.ChartText();

            C.RichText       richText1       = new C.RichText();
            A.BodyProperties bodyProperties3 = new A.BodyProperties();
            A.ListStyle      listStyle3      = new A.ListStyle();

            A.Paragraph paragraph3 = new A.Paragraph();

            A.ParagraphProperties paragraphProperties3 = new A.ParagraphProperties()
            {
                Level = 0
            };
            A.DefaultRunProperties defaultRunProperties3 = new A.DefaultRunProperties()
            {
                Bold = false
            };

            paragraphProperties3.Append(defaultRunProperties3);

            A.Run  run1  = new A.Run();
            A.Text text1 = new A.Text();
            text1.Text = title;

            run1.Append(text1);

            paragraph3.Append(paragraphProperties3);
            paragraph3.Append(run1);

            richText1.Append(bodyProperties3);
            richText1.Append(listStyle3);
            richText1.Append(paragraph3);

            chartText1.Append(richText1);
            C.Overlay overlay1 = new C.Overlay()
            {
                Val = false
            };

            title1.Append(chartText1);
            title1.Append(overlay1);

            C.PlotArea plotArea1 = new C.PlotArea();
            C.Layout   layout1   = new C.Layout();

            C.LineChart  lineChart1  = new C.LineChart();
            C.VaryColors varyColors1 = new C.VaryColors()
            {
                Val = false
            };


            C.LineChartSeries lineChartSeries1 = new C.LineChartSeries();
            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 = 19050, CompoundLineType = A.CompoundLineValues.Single
            };

            A.SolidFill        solidFill1        = new A.SolidFill();
            A.RgbColorModelHex rgbColorModelHex1 = new A.RgbColorModelHex()
            {
                Val = "3366CC"
            };

            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.CategoryAxisData categoryAxisData1 = new C.CategoryAxisData();

            C.StringReference stringReference1 = new C.StringReference();
            C.Formula         formula1         = new C.Formula();
            formula1.Text = formulaCat;

            stringReference1.Append(formula1);

            categoryAxisData1.Append(stringReference1);

            C.Values values1 = new C.Values();

            C.NumberReference numberReference1 = new C.NumberReference();
            C.Formula         formula2         = new C.Formula();
            formula2.Text = formulaVal;

            numberReference1.Append(formula2);

            values1.Append(numberReference1);
            C.Smooth smooth1 = new C.Smooth()
            {
                Val = false
            };

            lineChartSeries1.Append(index1);
            lineChartSeries1.Append(order1);
            lineChartSeries1.Append(chartShapeProperties1);
            lineChartSeries1.Append(marker1);
            lineChartSeries1.Append(categoryAxisData1);
            lineChartSeries1.Append(values1);
            lineChartSeries1.Append(smooth1);
            C.AxisId axisId1 = new C.AxisId()
            {
                Val = (UInt32Value)1923141117U
            };
            C.AxisId axisId2 = new C.AxisId()
            {
                Val = (UInt32Value)2022561148U
            };

            lineChart1.Append(varyColors1);
            lineChart1.Append(lineChartSeries1);
            lineChart1.Append(axisId1);
            lineChart1.Append(axisId2);

            C.CategoryAxis categoryAxis1 = new C.CategoryAxis();
            C.AxisId       axisId3       = new C.AxisId()
            {
                Val = (UInt32Value)1923141117U
            };


            C.Scaling     scaling1     = new C.Scaling();
            C.Orientation orientation1 = new C.Orientation()
            {
                Val = C.OrientationValues.MinMax
            };

            scaling1.Append(orientation1);
            C.Delete delete1 = new C.Delete()
            {
                Val = false
            };
            C.AxisPosition axisPosition1 = new C.AxisPosition()
            {
                Val = C.AxisPositionValues.Bottom
            };

            C.TextProperties textProperties1 = new C.TextProperties();
            A.BodyProperties bodyProperties1 = new A.BodyProperties();
            A.ListStyle      listStyle1      = new A.ListStyle();

            A.Paragraph paragraph1 = new A.Paragraph();

            A.ParagraphProperties paragraphProperties1 = new A.ParagraphProperties()
            {
                Level = 0
            };
            A.DefaultRunProperties defaultRunProperties1 = new A.DefaultRunProperties()
            {
                Bold = false
            };

            paragraphProperties1.Append(defaultRunProperties1);

            paragraph1.Append(paragraphProperties1);

            textProperties1.Append(bodyProperties1);
            textProperties1.Append(listStyle1);
            textProperties1.Append(paragraph1);
            C.CrossingAxis crossingAxis1 = new C.CrossingAxis()
            {
                Val = (UInt32Value)2022561148U
            };

            categoryAxis1.Append(axisId3);
            categoryAxis1.Append(scaling1);
            categoryAxis1.Append(delete1);
            categoryAxis1.Append(axisPosition1);
            categoryAxis1.Append(textProperties1);
            categoryAxis1.Append(crossingAxis1);


            C.ValueAxis valueAxis1 = new C.ValueAxis();
            C.AxisId    axisId4    = new C.AxisId()
            {
                Val = (UInt32Value)2022561148U
            };

            C.Scaling     scaling2     = new C.Scaling();
            C.Orientation orientation2 = new C.Orientation()
            {
                Val = C.OrientationValues.MinMax
            };

            scaling2.Append(orientation2);
            C.Delete delete2 = new C.Delete()
            {
                Val = false
            };
            C.AxisPosition axisPosition2 = new C.AxisPosition()
            {
                Val = C.AxisPositionValues.Left
            };

            C.MajorGridlines majorGridlines1 = new C.MajorGridlines();

            C.ChartShapeProperties chartShapeProperties2 = new C.ChartShapeProperties();

            A.Outline outline2 = new A.Outline();

            A.SolidFill        solidFill2        = new A.SolidFill();
            A.RgbColorModelHex rgbColorModelHex2 = new A.RgbColorModelHex()
            {
                Val = "B7B7B7"
            };

            solidFill2.Append(rgbColorModelHex2);

            outline2.Append(solidFill2);

            chartShapeProperties2.Append(outline2);

            majorGridlines1.Append(chartShapeProperties2);
            C.NumberingFormat numberingFormat1 = new C.NumberingFormat()
            {
                FormatCode = "General", SourceLinked = true
            };
            C.TickLabelPosition tickLabelPosition1 = new C.TickLabelPosition()
            {
                Val = C.TickLabelPositionValues.NextTo
            };

            C.ChartShapeProperties chartShapeProperties3 = new C.ChartShapeProperties();

            A.Outline outline3 = new A.Outline()
            {
                Width = 47625
            };
            A.NoFill noFill1 = new A.NoFill();

            outline3.Append(noFill1);

            chartShapeProperties3.Append(outline3);

            C.TextProperties textProperties2 = new C.TextProperties();
            A.BodyProperties bodyProperties2 = new A.BodyProperties();
            A.ListStyle      listStyle2      = new A.ListStyle();

            A.Paragraph paragraph2 = new A.Paragraph();

            A.ParagraphProperties paragraphProperties2 = new A.ParagraphProperties()
            {
                Level = 0
            };
            A.DefaultRunProperties defaultRunProperties2 = new A.DefaultRunProperties()
            {
                Bold = false
            };

            paragraphProperties2.Append(defaultRunProperties2);

            paragraph2.Append(paragraphProperties2);

            textProperties2.Append(bodyProperties2);
            textProperties2.Append(listStyle2);
            textProperties2.Append(paragraph2);
            C.CrossingAxis crossingAxis2 = new C.CrossingAxis()
            {
                Val = (UInt32Value)1923141117U
            };

            valueAxis1.Append(axisId4);
            valueAxis1.Append(scaling2);
            valueAxis1.Append(delete2);
            valueAxis1.Append(axisPosition2);
            valueAxis1.Append(majorGridlines1);
            valueAxis1.Append(numberingFormat1);
            valueAxis1.Append(tickLabelPosition1);
            valueAxis1.Append(chartShapeProperties3);
            valueAxis1.Append(textProperties2);
            valueAxis1.Append(crossingAxis2);

            plotArea1.Append(layout1);
            plotArea1.Append(lineChart1);
            plotArea1.Append(categoryAxis1);
            plotArea1.Append(valueAxis1);

            C.Legend         legend1         = new C.Legend();
            C.LegendPosition legendPosition1 = new C.LegendPosition()
            {
                Val = C.LegendPositionValues.Right
            };
            C.Overlay overlay2 = new C.Overlay()
            {
                Val = false
            };

            legend1.Append(legendPosition1);
            legend1.Append(overlay2);
            C.PlotVisibleOnly plotVisibleOnly1 = new C.PlotVisibleOnly()
            {
                Val = true
            };

            chart1.Append(title1);
            chart1.Append(plotArea1);
            chart1.Append(legend1);
            chart1.Append(plotVisibleOnly1);

            chartSpace1.Append(chart1);

            part.ChartSpace = chartSpace1;
        }
Ejemplo n.º 49
0
        // Generates content of mainDocumentPart1.
        private void GenerateMainDocumentPart1Content(MainDocumentPart mainDocumentPart1)
        {
            Document document1 = new Document() { MCAttributes = new MarkupCompatibilityAttributes() { Ignorable = "w14 w15 w16se wp14" } };
            document1.AddNamespaceDeclaration("wpc", "http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas");
            document1.AddNamespaceDeclaration("cx", "http://schemas.microsoft.com/office/drawing/2014/chartex");
            document1.AddNamespaceDeclaration("cx1", "http://schemas.microsoft.com/office/drawing/2015/9/8/chartex");
            document1.AddNamespaceDeclaration("cx2", "http://schemas.microsoft.com/office/drawing/2015/10/21/chartex");
            document1.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
            document1.AddNamespaceDeclaration("o", "urn:schemas-microsoft-com:office:office");
            document1.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            document1.AddNamespaceDeclaration("m", "http://schemas.openxmlformats.org/officeDocument/2006/math");
            document1.AddNamespaceDeclaration("v", "urn:schemas-microsoft-com:vml");
            document1.AddNamespaceDeclaration("wp14", "http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing");
            document1.AddNamespaceDeclaration("wp", "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing");
            document1.AddNamespaceDeclaration("w10", "urn:schemas-microsoft-com:office:word");
            document1.AddNamespaceDeclaration("w", "http://schemas.openxmlformats.org/wordprocessingml/2006/main");
            document1.AddNamespaceDeclaration("w14", "http://schemas.microsoft.com/office/word/2010/wordml");
            document1.AddNamespaceDeclaration("w15", "http://schemas.microsoft.com/office/word/2012/wordml");
            document1.AddNamespaceDeclaration("w16se", "http://schemas.microsoft.com/office/word/2015/wordml/symex");
            document1.AddNamespaceDeclaration("wpg", "http://schemas.microsoft.com/office/word/2010/wordprocessingGroup");
            document1.AddNamespaceDeclaration("wpi", "http://schemas.microsoft.com/office/word/2010/wordprocessingInk");
            document1.AddNamespaceDeclaration("wne", "http://schemas.microsoft.com/office/word/2006/wordml");
            document1.AddNamespaceDeclaration("wps", "http://schemas.microsoft.com/office/word/2010/wordprocessingShape");

            Body body1 = new Body();

            Paragraph paragraph1 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "008129E8", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "001D0DE9", ParagraphId = "0AAC1914", TextId = "772958DA" };

            ParagraphProperties paragraphProperties1 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId1 = new ParagraphStyleId() { Val = "Title" };

            ParagraphMarkRunProperties paragraphMarkRunProperties1 = new ParagraphMarkRunProperties();
            Bold bold1 = new Bold() { Val = false };
            FontSize fontSize1 = new FontSize() { Val = "72" };

            paragraphMarkRunProperties1.Append(bold1);
            paragraphMarkRunProperties1.Append(fontSize1);

            paragraphProperties1.Append(paragraphStyleId1);
            paragraphProperties1.Append(paragraphMarkRunProperties1);
            BookmarkStart bookmarkStart1 = new BookmarkStart() { Name = "_GoBack", Id = "0" };
            BookmarkEnd bookmarkEnd1 = new BookmarkEnd() { Id = "0" };

            Run run1 = new Run();

            RunProperties runProperties1 = new RunProperties();
            FontSize fontSize2 = new FontSize() { Val = "72" };

            runProperties1.Append(fontSize2);
            Text text1 = new Text();
            text1.Text = "P";

            run1.Append(runProperties1);
            run1.Append(text1);

            Run run2 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "008129E8" };

            RunProperties runProperties2 = new RunProperties();
            FontSize fontSize3 = new FontSize() { Val = "72" };

            runProperties2.Append(fontSize3);
            Text text2 = new Text();
            text2.Text = "roject:";

            run2.Append(runProperties2);
            run2.Append(text2);

            paragraph1.Append(paragraphProperties1);
            paragraph1.Append(bookmarkStart1);
            paragraph1.Append(bookmarkEnd1);
            paragraph1.Append(run1);
            paragraph1.Append(run2);

            Paragraph paragraph2 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "008129E8", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "008129E8", ParagraphId = "0AAC1915", TextId = "5B14AE4B" };

            ParagraphProperties paragraphProperties2 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId2 = new ParagraphStyleId() { Val = "Title" };

            ParagraphMarkRunProperties paragraphMarkRunProperties2 = new ParagraphMarkRunProperties();
            Bold bold2 = new Bold() { Val = false };
            Color color1 = new Color() { Val = "FF0000" };
            FontSize fontSize4 = new FontSize() { Val = "72" };

            paragraphMarkRunProperties2.Append(bold2);
            paragraphMarkRunProperties2.Append(color1);
            paragraphMarkRunProperties2.Append(fontSize4);

            paragraphProperties2.Append(paragraphStyleId2);
            paragraphProperties2.Append(paragraphMarkRunProperties2);

            Run run3 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties3 = new RunProperties();
            Color color2 = new Color() { Val = "FF0000" };
            FontSize fontSize5 = new FontSize() { Val = "72" };

            runProperties3.Append(color2);
            runProperties3.Append(fontSize5);
            Text text3 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text3.Text = " ";

            run3.Append(runProperties3);
            run3.Append(text3);

            Run run4 = new Run() { RsidRunAddition = "00E113A4" };

            RunProperties runProperties4 = new RunProperties();
            Color color3 = new Color() { Val = "FF0000" };
            FontSize fontSize6 = new FontSize() { Val = "72" };

            runProperties4.Append(color3);
            runProperties4.Append(fontSize6);
            Text text4 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text4.Text = "EVERYTHING IN RED NEEDS TO BE MADE BLACK ";

            run4.Append(runProperties4);
            run4.Append(text4);

            Run run5 = new Run() { RsidRunAddition = "0057090B" };

            RunProperties runProperties5 = new RunProperties();
            Color color4 = new Color() { Val = "FF0000" };
            FontSize fontSize7 = new FontSize() { Val = "72" };

            runProperties5.Append(color4);
            runProperties5.Append(fontSize7);
            Text text5 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text5.Text = "OR REMOVED ";

            run5.Append(runProperties5);
            run5.Append(text5);

            Run run6 = new Run() { RsidRunAddition = "00E113A4" };

            RunProperties runProperties6 = new RunProperties();
            Color color5 = new Color() { Val = "FF0000" };
            FontSize fontSize8 = new FontSize() { Val = "72" };

            runProperties6.Append(color5);
            runProperties6.Append(fontSize8);
            Text text6 = new Text();
            text6.Text = "WHEN COMPLETE";

            run6.Append(runProperties6);
            run6.Append(text6);

            paragraph2.Append(paragraphProperties2);
            paragraph2.Append(run3);
            paragraph2.Append(run4);
            paragraph2.Append(run5);
            paragraph2.Append(run6);

            Paragraph paragraph3 = new Paragraph() { RsidParagraphAddition = "00116831", RsidParagraphProperties = "005244EE", RsidRunAdditionDefault = "00116831", ParagraphId = "0AAC1916", TextId = "77777777" };

            ParagraphProperties paragraphProperties3 = new ParagraphProperties();
            Justification justification1 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties3 = new ParagraphMarkRunProperties();
            RunFonts runFonts1 = new RunFonts() { Ascii = "Arial Black", HighAnsi = "Arial Black", ComplexScript = "Arial" };
            Bold bold3 = new Bold();
            FontSize fontSize9 = new FontSize() { Val = "56" };
            FontSizeComplexScript fontSizeComplexScript1 = new FontSizeComplexScript() { Val = "56" };

            paragraphMarkRunProperties3.Append(runFonts1);
            paragraphMarkRunProperties3.Append(bold3);
            paragraphMarkRunProperties3.Append(fontSize9);
            paragraphMarkRunProperties3.Append(fontSizeComplexScript1);

            paragraphProperties3.Append(justification1);
            paragraphProperties3.Append(paragraphMarkRunProperties3);

            paragraph3.Append(paragraphProperties3);

            Paragraph paragraph4 = new Paragraph() { RsidParagraphAddition = "001D0DE9", RsidParagraphProperties = "005244EE", RsidRunAdditionDefault = "001D0DE9", ParagraphId = "084293D1", TextId = "77777777" };

            ParagraphProperties paragraphProperties4 = new ParagraphProperties();
            Justification justification2 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties4 = new ParagraphMarkRunProperties();
            RunFonts runFonts2 = new RunFonts() { Ascii = "Arial Black", HighAnsi = "Arial Black", ComplexScript = "Arial" };
            Bold bold4 = new Bold();
            FontSize fontSize10 = new FontSize() { Val = "56" };
            FontSizeComplexScript fontSizeComplexScript2 = new FontSizeComplexScript() { Val = "56" };

            paragraphMarkRunProperties4.Append(runFonts2);
            paragraphMarkRunProperties4.Append(bold4);
            paragraphMarkRunProperties4.Append(fontSize10);
            paragraphMarkRunProperties4.Append(fontSizeComplexScript2);

            paragraphProperties4.Append(justification2);
            paragraphProperties4.Append(paragraphMarkRunProperties4);

            paragraph4.Append(paragraphProperties4);

            Paragraph paragraph5 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00842AF5", RsidParagraphProperties = "005244EE", RsidRunAdditionDefault = "003E56E7", ParagraphId = "0AAC1918", TextId = "2D5206F0" };

            ParagraphProperties paragraphProperties5 = new ParagraphProperties();
            Justification justification3 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties5 = new ParagraphMarkRunProperties();
            RunFonts runFonts3 = new RunFonts() { Ascii = "Arial Black", HighAnsi = "Arial Black", ComplexScript = "Arial" };
            Bold bold5 = new Bold();
            Color color6 = new Color() { Val = "FF0000" };
            FontSize fontSize11 = new FontSize() { Val = "40" };
            FontSizeComplexScript fontSizeComplexScript3 = new FontSizeComplexScript() { Val = "56" };

            paragraphMarkRunProperties5.Append(runFonts3);
            paragraphMarkRunProperties5.Append(bold5);
            paragraphMarkRunProperties5.Append(color6);
            paragraphMarkRunProperties5.Append(fontSize11);
            paragraphMarkRunProperties5.Append(fontSizeComplexScript3);

            paragraphProperties5.Append(justification3);
            paragraphProperties5.Append(paragraphMarkRunProperties5);

            Run run7 = new Run();

            RunProperties runProperties7 = new RunProperties();
            RunFonts runFonts4 = new RunFonts() { Ascii = "Arial Black", HighAnsi = "Arial Black", ComplexScript = "Arial" };
            Bold bold6 = new Bold();
            FontSize fontSize12 = new FontSize() { Val = "40" };
            FontSizeComplexScript fontSizeComplexScript4 = new FontSizeComplexScript() { Val = "56" };

            runProperties7.Append(runFonts4);
            runProperties7.Append(bold6);
            runProperties7.Append(fontSize12);
            runProperties7.Append(fontSizeComplexScript4);
            Text text7 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text7.Text = "Completed by: ";

            run7.Append(runProperties7);
            run7.Append(text7);

            Run run8 = new Run() { RsidRunAddition = "0057090B" };

            RunProperties runProperties8 = new RunProperties();
            RunFonts runFonts5 = new RunFonts() { Ascii = "Arial Black", HighAnsi = "Arial Black", ComplexScript = "Arial" };
            Bold bold7 = new Bold();
            Color color7 = new Color() { Val = "FF0000" };
            FontSize fontSize13 = new FontSize() { Val = "40" };
            FontSizeComplexScript fontSizeComplexScript5 = new FontSizeComplexScript() { Val = "56" };

            runProperties8.Append(runFonts5);
            runProperties8.Append(bold7);
            runProperties8.Append(color7);
            runProperties8.Append(fontSize13);
            runProperties8.Append(fontSizeComplexScript5);
            Text text8 = new Text();
            text8.Text = "JohnQ";

            run8.Append(runProperties8);
            run8.Append(text8);

            Run run9 = new Run();

            RunProperties runProperties9 = new RunProperties();
            RunFonts runFonts6 = new RunFonts() { Ascii = "Arial Black", HighAnsi = "Arial Black", ComplexScript = "Arial" };
            Bold bold8 = new Bold();
            Color color8 = new Color() { Val = "FF0000" };
            FontSize fontSize14 = new FontSize() { Val = "40" };
            FontSizeComplexScript fontSizeComplexScript6 = new FontSizeComplexScript() { Val = "56" };

            runProperties9.Append(runFonts6);
            runProperties9.Append(bold8);
            runProperties9.Append(color8);
            runProperties9.Append(fontSize14);
            runProperties9.Append(fontSizeComplexScript6);
            Text text9 = new Text();
            text9.Text = "Public";

            run9.Append(runProperties9);
            run9.Append(text9);

            paragraph5.Append(paragraphProperties5);
            paragraph5.Append(run7);
            paragraph5.Append(run8);
            paragraph5.Append(run9);

            Paragraph paragraph6 = new Paragraph() { RsidParagraphMarkRevision = "001A269D", RsidParagraphAddition = "008129E8", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "000C02D8", ParagraphId = "0AAC191B", TextId = "18BDDE3A" };

            ParagraphProperties paragraphProperties6 = new ParagraphProperties();
            Justification justification4 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties6 = new ParagraphMarkRunProperties();
            RunFonts runFonts7 = new RunFonts() { Ascii = "Arial Black", HighAnsi = "Arial Black", ComplexScript = "Arial" };
            Bold bold9 = new Bold();
            Color color9 = new Color() { Val = "FF0000" };
            FontSize fontSize15 = new FontSize() { Val = "36" };
            FontSizeComplexScript fontSizeComplexScript7 = new FontSizeComplexScript() { Val = "56" };

            paragraphMarkRunProperties6.Append(runFonts7);
            paragraphMarkRunProperties6.Append(bold9);
            paragraphMarkRunProperties6.Append(color9);
            paragraphMarkRunProperties6.Append(fontSize15);
            paragraphMarkRunProperties6.Append(fontSizeComplexScript7);

            paragraphProperties6.Append(justification4);
            paragraphProperties6.Append(paragraphMarkRunProperties6);

            Run run10 = new Run();

            RunProperties runProperties10 = new RunProperties();
            RunFonts runFonts8 = new RunFonts() { Ascii = "Arial Black", HighAnsi = "Arial Black", ComplexScript = "Arial" };
            Bold bold10 = new Bold();
            FontSize fontSize16 = new FontSize() { Val = "40" };
            FontSizeComplexScript fontSizeComplexScript8 = new FontSizeComplexScript() { Val = "56" };

            runProperties10.Append(runFonts8);
            runProperties10.Append(bold10);
            runProperties10.Append(fontSize16);
            runProperties10.Append(fontSizeComplexScript8);
            Text text10 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text10.Text = "Interview Start ";

            run10.Append(runProperties10);
            run10.Append(text10);

            Run run11 = new Run() { RsidRunAddition = "00116FA1" };

            RunProperties runProperties11 = new RunProperties();
            RunFonts runFonts9 = new RunFonts() { Ascii = "Arial Black", HighAnsi = "Arial Black", ComplexScript = "Arial" };
            Bold bold11 = new Bold();
            FontSize fontSize17 = new FontSize() { Val = "40" };
            FontSizeComplexScript fontSizeComplexScript9 = new FontSizeComplexScript() { Val = "56" };

            runProperties11.Append(runFonts9);
            runProperties11.Append(bold11);
            runProperties11.Append(fontSize17);
            runProperties11.Append(fontSizeComplexScript9);
            Text text11 = new Text();
            text11.Text = "D";

            run11.Append(runProperties11);
            run11.Append(text11);

            Run run12 = new Run();

            RunProperties runProperties12 = new RunProperties();
            RunFonts runFonts10 = new RunFonts() { Ascii = "Arial Black", HighAnsi = "Arial Black", ComplexScript = "Arial" };
            Bold bold12 = new Bold();
            FontSize fontSize18 = new FontSize() { Val = "40" };
            FontSizeComplexScript fontSizeComplexScript10 = new FontSizeComplexScript() { Val = "56" };

            runProperties12.Append(runFonts10);
            runProperties12.Append(bold12);
            runProperties12.Append(fontSize18);
            runProperties12.Append(fontSizeComplexScript10);
            Text text12 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text12.Text = "ate: ";

            run12.Append(runProperties12);
            run12.Append(text12);

            Run run13 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "003E56E7" };

            RunProperties runProperties13 = new RunProperties();
            RunFonts runFonts11 = new RunFonts() { Ascii = "Arial Black", HighAnsi = "Arial Black", ComplexScript = "Arial" };
            Bold bold13 = new Bold();
            Color color10 = new Color() { Val = "FF0000" };
            FontSize fontSize19 = new FontSize() { Val = "36" };
            FontSizeComplexScript fontSizeComplexScript11 = new FontSizeComplexScript() { Val = "56" };

            runProperties13.Append(runFonts11);
            runProperties13.Append(bold13);
            runProperties13.Append(color10);
            runProperties13.Append(fontSize19);
            runProperties13.Append(fontSizeComplexScript11);
            Text text13 = new Text();
            text13.Text = "xx/xx";

            run13.Append(runProperties13);
            run13.Append(text13);

            Run run14 = new Run() { RsidRunAddition = "00BC048A" };

            RunProperties runProperties14 = new RunProperties();
            RunFonts runFonts12 = new RunFonts() { Ascii = "Arial Black", HighAnsi = "Arial Black", ComplexScript = "Arial" };
            Bold bold14 = new Bold();
            Color color11 = new Color() { Val = "FF0000" };
            FontSize fontSize20 = new FontSize() { Val = "36" };
            FontSizeComplexScript fontSizeComplexScript12 = new FontSizeComplexScript() { Val = "56" };

            runProperties14.Append(runFonts12);
            runProperties14.Append(bold14);
            runProperties14.Append(color11);
            runProperties14.Append(fontSize20);
            runProperties14.Append(fontSizeComplexScript12);
            Text text14 = new Text();
            text14.Text = "/201";

            run14.Append(runProperties14);
            run14.Append(text14);

            Run run15 = new Run() { RsidRunAddition = "00FF18D7" };

            RunProperties runProperties15 = new RunProperties();
            RunFonts runFonts13 = new RunFonts() { Ascii = "Arial Black", HighAnsi = "Arial Black", ComplexScript = "Arial" };
            Bold bold15 = new Bold();
            Color color12 = new Color() { Val = "FF0000" };
            FontSize fontSize21 = new FontSize() { Val = "36" };
            FontSizeComplexScript fontSizeComplexScript13 = new FontSizeComplexScript() { Val = "56" };

            runProperties15.Append(runFonts13);
            runProperties15.Append(bold15);
            runProperties15.Append(color12);
            runProperties15.Append(fontSize21);
            runProperties15.Append(fontSizeComplexScript13);
            Text text15 = new Text();
            text15.Text = "5";

            run15.Append(runProperties15);
            run15.Append(text15);

            paragraph6.Append(paragraphProperties6);
            paragraph6.Append(run10);
            paragraph6.Append(run11);
            paragraph6.Append(run12);
            paragraph6.Append(run13);
            paragraph6.Append(run14);
            paragraph6.Append(run15);

            Paragraph paragraph7 = new Paragraph() { RsidParagraphAddition = "00116831", RsidParagraphProperties = "005244EE", RsidRunAdditionDefault = "00E801CE", ParagraphId = "0AAC191E", TextId = "58B17A74" };

            ParagraphProperties paragraphProperties7 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId3 = new ParagraphStyleId() { Val = "Heading1" };
            KeepLines keepLines1 = new KeepLines();

            ParagraphBorders paragraphBorders1 = new ParagraphBorders();
            TopBorder topBorder1 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)6U, Space = (UInt32Value)1U };
            BetweenBorder betweenBorder1 = new BetweenBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)6U, Space = (UInt32Value)1U };

            paragraphBorders1.Append(topBorder1);
            paragraphBorders1.Append(betweenBorder1);
            OverflowPunctuation overflowPunctuation1 = new OverflowPunctuation() { Val = false };
            AutoSpaceDE autoSpaceDE1 = new AutoSpaceDE() { Val = false };
            AutoSpaceDN autoSpaceDN1 = new AutoSpaceDN() { Val = false };
            AdjustRightIndent adjustRightIndent1 = new AdjustRightIndent() { Val = false };
            SpacingBetweenLines spacingBetweenLines1 = new SpacingBetweenLines() { Before = "360", After = "86" };
            Justification justification5 = new Justification() { Val = JustificationValues.Center };
            TextAlignment textAlignment1 = new TextAlignment() { Val = VerticalTextAlignmentValues.Baseline };

            ParagraphMarkRunProperties paragraphMarkRunProperties7 = new ParagraphMarkRunProperties();
            RunFonts runFonts14 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };

            paragraphMarkRunProperties7.Append(runFonts14);

            paragraphProperties7.Append(paragraphStyleId3);
            paragraphProperties7.Append(keepLines1);
            paragraphProperties7.Append(paragraphBorders1);
            paragraphProperties7.Append(overflowPunctuation1);
            paragraphProperties7.Append(autoSpaceDE1);
            paragraphProperties7.Append(autoSpaceDN1);
            paragraphProperties7.Append(adjustRightIndent1);
            paragraphProperties7.Append(spacingBetweenLines1);
            paragraphProperties7.Append(justification5);
            paragraphProperties7.Append(textAlignment1);
            paragraphProperties7.Append(paragraphMarkRunProperties7);

            Run run16 = new Run();

            RunProperties runProperties16 = new RunProperties();
            NoProof noProof1 = new NoProof();

            runProperties16.Append(noProof1);

            Drawing drawing1 = new Drawing();

            Wp.Anchor anchor1 = new Wp.Anchor() { DistanceFromTop = (UInt32Value)0U, DistanceFromBottom = (UInt32Value)0U, DistanceFromLeft = (UInt32Value)114300U, DistanceFromRight = (UInt32Value)114300U, SimplePos = false, RelativeHeight = (UInt32Value)251658240U, BehindDoc = false, Locked = false, LayoutInCell = true, AllowOverlap = true, EditId = "723217DF", AnchorId = "2BB3A3DC" };
            Wp.SimplePosition simplePosition1 = new Wp.SimplePosition() { X = 0L, Y = 0L };

            Wp.HorizontalPosition horizontalPosition1 = new Wp.HorizontalPosition() { RelativeFrom = Wp.HorizontalRelativePositionValues.Column };
            Wp.PositionOffset positionOffset1 = new Wp.PositionOffset();
            positionOffset1.Text = "2446020";

            horizontalPosition1.Append(positionOffset1);

            Wp.VerticalPosition verticalPosition1 = new Wp.VerticalPosition() { RelativeFrom = Wp.VerticalRelativePositionValues.Paragraph };
            Wp.PositionOffset positionOffset2 = new Wp.PositionOffset();
            positionOffset2.Text = "509270";

            verticalPosition1.Append(positionOffset2);
            Wp.Extent extent1 = new Wp.Extent() { Cx = 3333750L, Cy = 466725L };
            Wp.EffectExtent effectExtent1 = new Wp.EffectExtent() { LeftEdge = 19050L, TopEdge = 19050L, RightEdge = 19050L, BottomEdge = 28575L };
            Wp.WrapNone wrapNone1 = new Wp.WrapNone();
            Wp.DocProperties docProperties1 = new Wp.DocProperties() { Id = (UInt32Value)3U, Name = "Picture 3" };

            Wp.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties1 = new Wp.NonVisualGraphicFrameDrawingProperties();

            A.GraphicFrameLocks graphicFrameLocks1 = new A.GraphicFrameLocks() { NoChangeAspect = true };
            graphicFrameLocks1.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");

            nonVisualGraphicFrameDrawingProperties1.Append(graphicFrameLocks1);

            A.Graphic graphic1 = new A.Graphic();
            graphic1.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");

            A.GraphicData graphicData1 = new A.GraphicData() { Uri = "http://schemas.openxmlformats.org/drawingml/2006/picture" };

            Pic.Picture picture1 = new Pic.Picture();
            picture1.AddNamespaceDeclaration("pic", "http://schemas.openxmlformats.org/drawingml/2006/picture");

            Pic.NonVisualPictureProperties nonVisualPictureProperties1 = new Pic.NonVisualPictureProperties();
            Pic.NonVisualDrawingProperties nonVisualDrawingProperties1 = new Pic.NonVisualDrawingProperties() { Id = (UInt32Value)0U, Name = "Picture 3" };

            Pic.NonVisualPictureDrawingProperties nonVisualPictureDrawingProperties1 = new Pic.NonVisualPictureDrawingProperties();
            A.PictureLocks pictureLocks1 = new A.PictureLocks() { NoChangeAspect = true, NoChangeArrowheads = true };

            nonVisualPictureDrawingProperties1.Append(pictureLocks1);

            nonVisualPictureProperties1.Append(nonVisualDrawingProperties1);
            nonVisualPictureProperties1.Append(nonVisualPictureDrawingProperties1);

            Pic.BlipFill blipFill1 = new Pic.BlipFill();

            A.Blip blip1 = new A.Blip() { Embed = "rId11" };

            A.BlipExtensionList blipExtensionList1 = new A.BlipExtensionList();

            A.BlipExtension blipExtension1 = new A.BlipExtension() { Uri = "{28A0092B-C50C-407E-A947-70E740481C1C}" };

            A14.UseLocalDpi useLocalDpi1 = new A14.UseLocalDpi() { Val = false };
            useLocalDpi1.AddNamespaceDeclaration("a14", "http://schemas.microsoft.com/office/drawing/2010/main");

            blipExtension1.Append(useLocalDpi1);

            blipExtensionList1.Append(blipExtension1);

            blip1.Append(blipExtensionList1);
            A.SourceRectangle sourceRectangle1 = new A.SourceRectangle();

            A.Stretch stretch1 = new A.Stretch();
            A.FillRectangle fillRectangle1 = new A.FillRectangle();

            stretch1.Append(fillRectangle1);

            blipFill1.Append(blip1);
            blipFill1.Append(sourceRectangle1);
            blipFill1.Append(stretch1);

            Pic.ShapeProperties shapeProperties1 = new Pic.ShapeProperties() { BlackWhiteMode = A.BlackWhiteModeValues.Auto };

            A.Transform2D transform2D1 = new A.Transform2D();
            A.Offset offset1 = new A.Offset() { X = 0L, Y = 0L };
            A.Extents extents1 = new A.Extents() { Cx = 3333750L, Cy = 466725L };

            transform2D1.Append(offset1);
            transform2D1.Append(extents1);

            A.PresetGeometry presetGeometry1 = new A.PresetGeometry() { Preset = A.ShapeTypeValues.Rectangle };
            A.AdjustValueList adjustValueList1 = new A.AdjustValueList();

            presetGeometry1.Append(adjustValueList1);

            A.SolidFill solidFill1 = new A.SolidFill();
            A.RgbColorModelHex rgbColorModelHex1 = new A.RgbColorModelHex() { Val = "FFFFFF" };

            solidFill1.Append(rgbColorModelHex1);

            A.Outline outline1 = new A.Outline() { Width = 9525 };

            A.SolidFill solidFill2 = new A.SolidFill();
            A.RgbColorModelHex rgbColorModelHex2 = new A.RgbColorModelHex() { Val = "000000" };

            solidFill2.Append(rgbColorModelHex2);
            A.Miter miter1 = new A.Miter() { Limit = 800000 };
            A.HeadEnd headEnd1 = new A.HeadEnd();
            A.TailEnd tailEnd1 = new A.TailEnd();

            outline1.Append(solidFill2);
            outline1.Append(miter1);
            outline1.Append(headEnd1);
            outline1.Append(tailEnd1);

            shapeProperties1.Append(transform2D1);
            shapeProperties1.Append(presetGeometry1);
            shapeProperties1.Append(solidFill1);
            shapeProperties1.Append(outline1);

            picture1.Append(nonVisualPictureProperties1);
            picture1.Append(blipFill1);
            picture1.Append(shapeProperties1);

            graphicData1.Append(picture1);

            graphic1.Append(graphicData1);

            Wp14.RelativeWidth relativeWidth1 = new Wp14.RelativeWidth() { ObjectId = Wp14.SizeRelativeHorizontallyValues.Page };
            Wp14.PercentageWidth percentageWidth1 = new Wp14.PercentageWidth();
            percentageWidth1.Text = "0";

            relativeWidth1.Append(percentageWidth1);

            Wp14.RelativeHeight relativeHeight1 = new Wp14.RelativeHeight() { RelativeFrom = Wp14.SizeRelativeVerticallyValues.Page };
            Wp14.PercentageHeight percentageHeight1 = new Wp14.PercentageHeight();
            percentageHeight1.Text = "0";

            relativeHeight1.Append(percentageHeight1);

            anchor1.Append(simplePosition1);
            anchor1.Append(horizontalPosition1);
            anchor1.Append(verticalPosition1);
            anchor1.Append(extent1);
            anchor1.Append(effectExtent1);
            anchor1.Append(wrapNone1);
            anchor1.Append(docProperties1);
            anchor1.Append(nonVisualGraphicFrameDrawingProperties1);
            anchor1.Append(graphic1);
            anchor1.Append(relativeWidth1);
            anchor1.Append(relativeHeight1);

            drawing1.Append(anchor1);

            run16.Append(runProperties16);
            run16.Append(drawing1);

            paragraph7.Append(paragraphProperties7);
            paragraph7.Append(run16);

            Paragraph paragraph8 = new Paragraph() { RsidParagraphAddition = "008A2AF7", RsidRunAdditionDefault = "008A2AF7", ParagraphId = "4418252A", TextId = "0AE0F2E2" };

            ParagraphProperties paragraphProperties8 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties8 = new ParagraphMarkRunProperties();
            RunFonts runFonts15 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            Bold bold16 = new Bold();
            BoldComplexScript boldComplexScript1 = new BoldComplexScript();
            Italic italic1 = new Italic();
            ItalicComplexScript italicComplexScript1 = new ItalicComplexScript();
            FontSize fontSize22 = new FontSize() { Val = "28" };
            FontSizeComplexScript fontSizeComplexScript14 = new FontSizeComplexScript() { Val = "28" };

            paragraphMarkRunProperties8.Append(runFonts15);
            paragraphMarkRunProperties8.Append(bold16);
            paragraphMarkRunProperties8.Append(boldComplexScript1);
            paragraphMarkRunProperties8.Append(italic1);
            paragraphMarkRunProperties8.Append(italicComplexScript1);
            paragraphMarkRunProperties8.Append(fontSize22);
            paragraphMarkRunProperties8.Append(fontSizeComplexScript14);

            paragraphProperties8.Append(paragraphMarkRunProperties8);

            paragraph8.Append(paragraphProperties8);

            Paragraph paragraph9 = new Paragraph() { RsidParagraphAddition = "00E801CE", RsidParagraphProperties = "00E801CE", RsidRunAdditionDefault = "00E801CE", ParagraphId = "563C9B65", TextId = "77777777" };

            ParagraphProperties paragraphProperties9 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties9 = new ParagraphMarkRunProperties();
            RunFonts runFonts16 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            Bold bold17 = new Bold();
            BoldComplexScript boldComplexScript2 = new BoldComplexScript();
            Italic italic2 = new Italic();
            ItalicComplexScript italicComplexScript2 = new ItalicComplexScript();
            Color color13 = new Color() { Val = "0070C0" };
            FontSize fontSize23 = new FontSize() { Val = "40" };
            FontSizeComplexScript fontSizeComplexScript15 = new FontSizeComplexScript() { Val = "40" };

            paragraphMarkRunProperties9.Append(runFonts16);
            paragraphMarkRunProperties9.Append(bold17);
            paragraphMarkRunProperties9.Append(boldComplexScript2);
            paragraphMarkRunProperties9.Append(italic2);
            paragraphMarkRunProperties9.Append(italicComplexScript2);
            paragraphMarkRunProperties9.Append(color13);
            paragraphMarkRunProperties9.Append(fontSize23);
            paragraphMarkRunProperties9.Append(fontSizeComplexScript15);

            paragraphProperties9.Append(paragraphMarkRunProperties9);

            paragraph9.Append(paragraphProperties9);

            Paragraph paragraph10 = new Paragraph() { RsidParagraphAddition = "00E801CE", RsidParagraphProperties = "00E801CE", RsidRunAdditionDefault = "00717CC8", ParagraphId = "0C7272CA", TextId = "01C5B05E" };

            ParagraphProperties paragraphProperties10 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId4 = new ParagraphStyleId() { Val = "Heading2" };
            Justification justification6 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties10 = new ParagraphMarkRunProperties();
            Color color14 = new Color() { Val = "0070C0" };
            FontSize fontSize24 = new FontSize() { Val = "40" };
            FontSizeComplexScript fontSizeComplexScript16 = new FontSizeComplexScript() { Val = "40" };

            paragraphMarkRunProperties10.Append(color14);
            paragraphMarkRunProperties10.Append(fontSize24);
            paragraphMarkRunProperties10.Append(fontSizeComplexScript16);

            paragraphProperties10.Append(paragraphStyleId4);
            paragraphProperties10.Append(justification6);
            paragraphProperties10.Append(paragraphMarkRunProperties10);

            Run run17 = new Run();

            RunProperties runProperties17 = new RunProperties();
            Color color15 = new Color() { Val = "0070C0" };
            FontSize fontSize25 = new FontSize() { Val = "40" };
            FontSizeComplexScript fontSizeComplexScript17 = new FontSizeComplexScript() { Val = "40" };

            runProperties17.Append(color15);
            runProperties17.Append(fontSize25);
            runProperties17.Append(fontSizeComplexScript17);
            Text text16 = new Text();
            text16.Text = "Technical";

            run17.Append(runProperties17);
            run17.Append(text16);

            Run run18 = new Run() { RsidRunAddition = "00BC7E65" };

            RunProperties runProperties18 = new RunProperties();
            Color color16 = new Color() { Val = "0070C0" };
            FontSize fontSize26 = new FontSize() { Val = "40" };
            FontSizeComplexScript fontSizeComplexScript18 = new FontSizeComplexScript() { Val = "40" };

            runProperties18.Append(color16);
            runProperties18.Append(fontSize26);
            runProperties18.Append(fontSizeComplexScript18);
            Text text17 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text17.Text = " Design Package";

            run18.Append(runProperties18);
            run18.Append(text17);

            paragraph10.Append(paragraphProperties10);
            paragraph10.Append(run17);
            paragraph10.Append(run18);

            Paragraph paragraph11 = new Paragraph() { RsidParagraphAddition = "00E801CE", RsidRunAdditionDefault = "00E801CE", ParagraphId = "7F0AB2A9", TextId = "77777777" };

            Run run19 = new Run();
            Break break1 = new Break() { Type = BreakValues.Page };

            run19.Append(break1);

            paragraph11.Append(run19);

            Paragraph paragraph12 = new Paragraph() { RsidParagraphMarkRevision = "00E801CE", RsidParagraphAddition = "000E2AF5", RsidParagraphProperties = "00E801CE", RsidRunAdditionDefault = "00E518DD", ParagraphId = "0AAC1924", TextId = "06CAB2D0" };

            ParagraphProperties paragraphProperties11 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId5 = new ParagraphStyleId() { Val = "Heading2" };

            ParagraphMarkRunProperties paragraphMarkRunProperties11 = new ParagraphMarkRunProperties();
            Underline underline1 = new Underline() { Val = UnderlineValues.Single };

            paragraphMarkRunProperties11.Append(underline1);

            paragraphProperties11.Append(paragraphStyleId5);
            paragraphProperties11.Append(paragraphMarkRunProperties11);

            Run run20 = new Run();

            RunProperties runProperties19 = new RunProperties();
            Underline underline2 = new Underline() { Val = UnderlineValues.Single };

            runProperties19.Append(underline2);
            LastRenderedPageBreak lastRenderedPageBreak1 = new LastRenderedPageBreak();
            Text text18 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text18.Text = "1. ";

            run20.Append(runProperties19);
            run20.Append(lastRenderedPageBreak1);
            run20.Append(text18);

            Run run21 = new Run() { RsidRunProperties = "00E801CE", RsidRunAddition = "00F92C4E" };

            RunProperties runProperties20 = new RunProperties();
            Underline underline3 = new Underline() { Val = UnderlineValues.Single };

            runProperties20.Append(underline3);
            Text text19 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text19.Text = "Tech Interviewer ";

            run21.Append(runProperties20);
            run21.Append(text19);

            Run run22 = new Run() { RsidRunProperties = "00E801CE", RsidRunAddition = "00D778B7" };

            RunProperties runProperties21 = new RunProperties();
            Underline underline4 = new Underline() { Val = UnderlineValues.Single };

            runProperties21.Append(underline4);
            Text text20 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text20.Text = "Project ";

            run22.Append(runProperties21);
            run22.Append(text20);

            Run run23 = new Run() { RsidRunProperties = "00E801CE", RsidRunAddition = "00F92C4E" };

            RunProperties runProperties22 = new RunProperties();
            Underline underline5 = new Underline() { Val = UnderlineValues.Single };

            runProperties22.Append(underline5);
            Text text21 = new Text();
            text21.Text = "Synopsis";

            run23.Append(runProperties22);
            run23.Append(text21);

            paragraph12.Append(paragraphProperties11);
            paragraph12.Append(run20);
            paragraph12.Append(run21);
            paragraph12.Append(run22);
            paragraph12.Append(run23);

            Paragraph paragraph13 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "0002129C", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "003732FE", ParagraphId = "0AAC1925", TextId = "77777777" };

            ParagraphProperties paragraphProperties12 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties12 = new ParagraphMarkRunProperties();
            RunFonts runFonts17 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color17 = new Color() { Val = "00B050" };
            FontSize fontSize27 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript19 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties12.Append(runFonts17);
            paragraphMarkRunProperties12.Append(color17);
            paragraphMarkRunProperties12.Append(fontSize27);
            paragraphMarkRunProperties12.Append(fontSizeComplexScript19);

            paragraphProperties12.Append(paragraphMarkRunProperties12);

            Run run24 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties23 = new RunProperties();
            RunFonts runFonts18 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize28 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript20 = new FontSizeComplexScript() { Val = "22" };

            runProperties23.Append(runFonts18);
            runProperties23.Append(fontSize28);
            runProperties23.Append(fontSizeComplexScript20);
            Text text22 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text22.Text = "   ";

            run24.Append(runProperties23);
            run24.Append(text22);

            Run run25 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00D778B7" };

            RunProperties runProperties24 = new RunProperties();
            RunFonts runFonts19 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color18 = new Color() { Val = "FF0000" };
            FontSize fontSize29 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript21 = new FontSizeComplexScript() { Val = "22" };

            runProperties24.Append(runFonts19);
            runProperties24.Append(color18);
            runProperties24.Append(fontSize29);
            runProperties24.Append(fontSizeComplexScript21);
            Text text23 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text23.Text = "This project will be for ";

            run25.Append(runProperties24);
            run25.Append(text23);

            paragraph13.Append(paragraphProperties12);
            paragraph13.Append(run24);
            paragraph13.Append(run25);

            Paragraph paragraph14 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00D778B7", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00E518DD", ParagraphId = "0AAC1926", TextId = "09038E24" };

            ParagraphProperties paragraphProperties13 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId6 = new ParagraphStyleId() { Val = "Heading2" };

            ParagraphMarkRunProperties paragraphMarkRunProperties13 = new ParagraphMarkRunProperties();
            Bold bold18 = new Bold() { Val = false };
            Underline underline6 = new Underline() { Val = UnderlineValues.Single };

            paragraphMarkRunProperties13.Append(bold18);
            paragraphMarkRunProperties13.Append(underline6);

            paragraphProperties13.Append(paragraphStyleId6);
            paragraphProperties13.Append(paragraphMarkRunProperties13);

            Run run26 = new Run();

            RunProperties runProperties25 = new RunProperties();
            Underline underline7 = new Underline() { Val = UnderlineValues.Single };

            runProperties25.Append(underline7);
            Text text24 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text24.Text = "2. ";

            run26.Append(runProperties25);
            run26.Append(text24);

            Run run27 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "001D2D91" };

            RunProperties runProperties26 = new RunProperties();
            Underline underline8 = new Underline() { Val = UnderlineValues.Single };

            runProperties26.Append(underline8);
            Text text25 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text25.Text = "What are the technologies ";

            run27.Append(runProperties26);
            run27.Append(text25);

            Run run28 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00D778B7" };

            RunProperties runProperties27 = new RunProperties();
            Underline underline9 = new Underline() { Val = UnderlineValues.Single };

            runProperties27.Append(underline9);
            Text text26 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text26.Text = "applicable to this project? ";

            run28.Append(runProperties27);
            run28.Append(text26);

            paragraph14.Append(paragraphProperties13);
            paragraph14.Append(run26);
            paragraph14.Append(run27);
            paragraph14.Append(run28);

            Paragraph paragraph15 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00D778B7", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00A563A2", ParagraphId = "0AAC1927", TextId = "77777777" };

            ParagraphProperties paragraphProperties14 = new ParagraphProperties();
            Indentation indentation1 = new Indentation() { Start = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties14 = new ParagraphMarkRunProperties();
            RunFonts runFonts20 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize30 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript22 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties14.Append(runFonts20);
            paragraphMarkRunProperties14.Append(fontSize30);
            paragraphMarkRunProperties14.Append(fontSizeComplexScript22);

            paragraphProperties14.Append(indentation1);
            paragraphProperties14.Append(paragraphMarkRunProperties14);

            SdtRun sdtRun1 = new SdtRun();

            SdtProperties sdtProperties1 = new SdtProperties();

            RunProperties runProperties28 = new RunProperties();
            RunFonts runFonts21 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize31 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript23 = new FontSizeComplexScript() { Val = "22" };

            runProperties28.Append(runFonts21);
            runProperties28.Append(fontSize31);
            runProperties28.Append(fontSizeComplexScript23);
            SdtId sdtId1 = new SdtId() { Val = -564251075 };

            W14.SdtContentCheckBox sdtContentCheckBox1 = new W14.SdtContentCheckBox();
            W14.Checked checked1 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState1 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState1 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox1.Append(checked1);
            sdtContentCheckBox1.Append(checkedState1);
            sdtContentCheckBox1.Append(uncheckedState1);

            sdtProperties1.Append(runProperties28);
            sdtProperties1.Append(sdtId1);
            sdtProperties1.Append(sdtContentCheckBox1);
            SdtEndCharProperties sdtEndCharProperties1 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun1 = new SdtContentRun();

            Run run29 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "003E56E7" };

            RunProperties runProperties29 = new RunProperties();
            RunFonts runFonts22 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic" };
            FontSize fontSize32 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript24 = new FontSizeComplexScript() { Val = "22" };

            runProperties29.Append(runFonts22);
            runProperties29.Append(fontSize32);
            runProperties29.Append(fontSizeComplexScript24);
            Text text27 = new Text();
            text27.Text = "☐";

            run29.Append(runProperties29);
            run29.Append(text27);

            sdtContentRun1.Append(run29);

            sdtRun1.Append(sdtProperties1);
            sdtRun1.Append(sdtEndCharProperties1);
            sdtRun1.Append(sdtContentRun1);

            Run run30 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "007F6C8D" };

            RunProperties runProperties30 = new RunProperties();
            RunFonts runFonts23 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize33 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript25 = new FontSizeComplexScript() { Val = "22" };

            runProperties30.Append(runFonts23);
            runProperties30.Append(fontSize33);
            runProperties30.Append(fontSizeComplexScript25);
            Text text28 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text28.Text = " VMware";

            run30.Append(runProperties30);
            run30.Append(text28);

            paragraph15.Append(paragraphProperties14);
            paragraph15.Append(sdtRun1);
            paragraph15.Append(run30);

            Paragraph paragraph16 = new Paragraph() { RsidParagraphAddition = "007F6C8D", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00A563A2", ParagraphId = "0AAC1928", TextId = "77777777" };

            ParagraphProperties paragraphProperties15 = new ParagraphProperties();
            Indentation indentation2 = new Indentation() { Start = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties15 = new ParagraphMarkRunProperties();
            RunFonts runFonts24 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize34 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript26 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties15.Append(runFonts24);
            paragraphMarkRunProperties15.Append(fontSize34);
            paragraphMarkRunProperties15.Append(fontSizeComplexScript26);

            paragraphProperties15.Append(indentation2);
            paragraphProperties15.Append(paragraphMarkRunProperties15);

            SdtRun sdtRun2 = new SdtRun();

            SdtProperties sdtProperties2 = new SdtProperties();

            RunProperties runProperties31 = new RunProperties();
            RunFonts runFonts25 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize35 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript27 = new FontSizeComplexScript() { Val = "22" };

            runProperties31.Append(runFonts25);
            runProperties31.Append(fontSize35);
            runProperties31.Append(fontSizeComplexScript27);
            SdtId sdtId2 = new SdtId() { Val = -111438130 };

            W14.SdtContentCheckBox sdtContentCheckBox2 = new W14.SdtContentCheckBox();
            W14.Checked checked2 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState2 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState2 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox2.Append(checked2);
            sdtContentCheckBox2.Append(checkedState2);
            sdtContentCheckBox2.Append(uncheckedState2);

            sdtProperties2.Append(runProperties31);
            sdtProperties2.Append(sdtId2);
            sdtProperties2.Append(sdtContentCheckBox2);
            SdtEndCharProperties sdtEndCharProperties2 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun2 = new SdtContentRun();

            Run run31 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "000C02D8" };

            RunProperties runProperties32 = new RunProperties();
            RunFonts runFonts26 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic" };
            FontSize fontSize36 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript28 = new FontSizeComplexScript() { Val = "22" };

            runProperties32.Append(runFonts26);
            runProperties32.Append(fontSize36);
            runProperties32.Append(fontSizeComplexScript28);
            Text text29 = new Text();
            text29.Text = "☐";

            run31.Append(runProperties32);
            run31.Append(text29);

            sdtContentRun2.Append(run31);

            sdtRun2.Append(sdtProperties2);
            sdtRun2.Append(sdtEndCharProperties2);
            sdtRun2.Append(sdtContentRun2);

            Run run32 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "007F6C8D" };

            RunProperties runProperties33 = new RunProperties();
            RunFonts runFonts27 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize37 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript29 = new FontSizeComplexScript() { Val = "22" };

            runProperties33.Append(runFonts27);
            runProperties33.Append(fontSize37);
            runProperties33.Append(fontSizeComplexScript29);
            Text text30 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text30.Text = " ";

            run32.Append(runProperties33);
            run32.Append(text30);

            Run run33 = new Run() { RsidRunAddition = "000C02D8" };

            RunProperties runProperties34 = new RunProperties();
            RunFonts runFonts28 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize38 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript30 = new FontSizeComplexScript() { Val = "22" };

            runProperties34.Append(runFonts28);
            runProperties34.Append(fontSize38);
            runProperties34.Append(fontSizeComplexScript30);
            Text text31 = new Text();
            text31.Text = "Linux";

            run33.Append(runProperties34);
            run33.Append(text31);

            paragraph16.Append(paragraphProperties15);
            paragraph16.Append(sdtRun2);
            paragraph16.Append(run32);
            paragraph16.Append(run33);

            Paragraph paragraph17 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "000C02D8", RsidParagraphProperties = "000C02D8", RsidRunAdditionDefault = "000C02D8", ParagraphId = "0AAC1929", TextId = "760FB766" };

            ParagraphProperties paragraphProperties16 = new ParagraphProperties();
            Indentation indentation3 = new Indentation() { Start = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties16 = new ParagraphMarkRunProperties();
            RunFonts runFonts29 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize39 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript31 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties16.Append(runFonts29);
            paragraphMarkRunProperties16.Append(fontSize39);
            paragraphMarkRunProperties16.Append(fontSizeComplexScript31);

            paragraphProperties16.Append(indentation3);
            paragraphProperties16.Append(paragraphMarkRunProperties16);

            Run run34 = new Run();

            RunProperties runProperties35 = new RunProperties();
            RunFonts runFonts30 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize40 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript32 = new FontSizeComplexScript() { Val = "22" };

            runProperties35.Append(runFonts30);
            runProperties35.Append(fontSize40);
            runProperties35.Append(fontSizeComplexScript32);
            TabChar tabChar1 = new TabChar();

            run34.Append(runProperties35);
            run34.Append(tabChar1);

            SdtRun sdtRun3 = new SdtRun();

            SdtProperties sdtProperties3 = new SdtProperties();

            RunProperties runProperties36 = new RunProperties();
            RunFonts runFonts31 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize41 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript33 = new FontSizeComplexScript() { Val = "22" };

            runProperties36.Append(runFonts31);
            runProperties36.Append(fontSize41);
            runProperties36.Append(fontSizeComplexScript33);
            SdtId sdtId3 = new SdtId() { Val = -833838371 };

            W14.SdtContentCheckBox sdtContentCheckBox3 = new W14.SdtContentCheckBox();
            W14.Checked checked3 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState3 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState3 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox3.Append(checked3);
            sdtContentCheckBox3.Append(checkedState3);
            sdtContentCheckBox3.Append(uncheckedState3);

            sdtProperties3.Append(runProperties36);
            sdtProperties3.Append(sdtId3);
            sdtProperties3.Append(sdtContentCheckBox3);
            SdtEndCharProperties sdtEndCharProperties3 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun3 = new SdtContentRun();

            Run run35 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties37 = new RunProperties();
            RunFonts runFonts32 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize42 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript34 = new FontSizeComplexScript() { Val = "22" };

            runProperties37.Append(runFonts32);
            runProperties37.Append(fontSize42);
            runProperties37.Append(fontSizeComplexScript34);
            Text text32 = new Text();
            text32.Text = "☐";

            run35.Append(runProperties37);
            run35.Append(text32);

            sdtContentRun3.Append(run35);

            sdtRun3.Append(sdtProperties3);
            sdtRun3.Append(sdtEndCharProperties3);
            sdtRun3.Append(sdtContentRun3);

            Run run36 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties38 = new RunProperties();
            RunFonts runFonts33 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize43 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript35 = new FontSizeComplexScript() { Val = "22" };

            runProperties38.Append(runFonts33);
            runProperties38.Append(fontSize43);
            runProperties38.Append(fontSizeComplexScript35);
            Text text33 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text33.Text = " ";

            run36.Append(runProperties38);
            run36.Append(text33);

            Run run37 = new Run();

            RunProperties runProperties39 = new RunProperties();
            RunFonts runFonts34 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize44 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript36 = new FontSizeComplexScript() { Val = "22" };

            runProperties39.Append(runFonts34);
            runProperties39.Append(fontSize44);
            runProperties39.Append(fontSizeComplexScript36);
            Text text34 = new Text();
            text34.Text = "RHEL";

            run37.Append(runProperties39);
            run37.Append(text34);

            Run run38 = new Run();

            RunProperties runProperties40 = new RunProperties();
            RunFonts runFonts35 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize45 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript37 = new FontSizeComplexScript() { Val = "22" };

            runProperties40.Append(runFonts35);
            runProperties40.Append(fontSize45);
            runProperties40.Append(fontSizeComplexScript37);
            TabChar tabChar2 = new TabChar();

            run38.Append(runProperties40);
            run38.Append(tabChar2);

            SdtRun sdtRun4 = new SdtRun();

            SdtProperties sdtProperties4 = new SdtProperties();

            RunProperties runProperties41 = new RunProperties();
            RunFonts runFonts36 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize46 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript38 = new FontSizeComplexScript() { Val = "22" };

            runProperties41.Append(runFonts36);
            runProperties41.Append(fontSize46);
            runProperties41.Append(fontSizeComplexScript38);
            SdtId sdtId4 = new SdtId() { Val = -1173107735 };

            W14.SdtContentCheckBox sdtContentCheckBox4 = new W14.SdtContentCheckBox();
            W14.Checked checked4 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState4 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState4 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox4.Append(checked4);
            sdtContentCheckBox4.Append(checkedState4);
            sdtContentCheckBox4.Append(uncheckedState4);

            sdtProperties4.Append(runProperties41);
            sdtProperties4.Append(sdtId4);
            sdtProperties4.Append(sdtContentCheckBox4);
            SdtEndCharProperties sdtEndCharProperties4 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun4 = new SdtContentRun();

            Run run39 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties42 = new RunProperties();
            RunFonts runFonts37 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize47 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript39 = new FontSizeComplexScript() { Val = "22" };

            runProperties42.Append(runFonts37);
            runProperties42.Append(fontSize47);
            runProperties42.Append(fontSizeComplexScript39);
            Text text35 = new Text();
            text35.Text = "☐";

            run39.Append(runProperties42);
            run39.Append(text35);

            sdtContentRun4.Append(run39);

            sdtRun4.Append(sdtProperties4);
            sdtRun4.Append(sdtEndCharProperties4);
            sdtRun4.Append(sdtContentRun4);

            Run run40 = new Run();

            RunProperties runProperties43 = new RunProperties();
            RunFonts runFonts38 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize48 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript40 = new FontSizeComplexScript() { Val = "22" };

            runProperties43.Append(runFonts38);
            runProperties43.Append(fontSize48);
            runProperties43.Append(fontSizeComplexScript40);
            Text text36 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text36.Text = " CentOS (Test & Dev only)";

            run40.Append(runProperties43);
            run40.Append(text36);

            Run run41 = new Run() { RsidRunAddition = "006678EF" };

            RunProperties runProperties44 = new RunProperties();
            RunFonts runFonts39 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize49 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript41 = new FontSizeComplexScript() { Val = "22" };

            runProperties44.Append(runFonts39);
            runProperties44.Append(fontSize49);
            runProperties44.Append(fontSizeComplexScript41);
            TabChar tabChar3 = new TabChar();

            run41.Append(runProperties44);
            run41.Append(tabChar3);

            Run run42 = new Run() { RsidRunAddition = "006678EF" };

            RunProperties runProperties45 = new RunProperties();
            RunFonts runFonts40 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize50 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript42 = new FontSizeComplexScript() { Val = "22" };

            runProperties45.Append(runFonts40);
            runProperties45.Append(fontSize50);
            runProperties45.Append(fontSizeComplexScript42);
            TabChar tabChar4 = new TabChar();

            run42.Append(runProperties45);
            run42.Append(tabChar4);

            SdtRun sdtRun5 = new SdtRun();

            SdtProperties sdtProperties5 = new SdtProperties();

            RunProperties runProperties46 = new RunProperties();
            RunFonts runFonts41 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize51 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript43 = new FontSizeComplexScript() { Val = "22" };

            runProperties46.Append(runFonts41);
            runProperties46.Append(fontSize51);
            runProperties46.Append(fontSizeComplexScript43);
            SdtId sdtId5 = new SdtId() { Val = 1891685028 };

            W14.SdtContentCheckBox sdtContentCheckBox5 = new W14.SdtContentCheckBox();
            W14.Checked checked5 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState5 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState5 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox5.Append(checked5);
            sdtContentCheckBox5.Append(checkedState5);
            sdtContentCheckBox5.Append(uncheckedState5);

            sdtProperties5.Append(runProperties46);
            sdtProperties5.Append(sdtId5);
            sdtProperties5.Append(sdtContentCheckBox5);
            SdtEndCharProperties sdtEndCharProperties5 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun5 = new SdtContentRun();

            Run run43 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "006678EF" };

            RunProperties runProperties47 = new RunProperties();
            RunFonts runFonts42 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize52 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript44 = new FontSizeComplexScript() { Val = "22" };

            runProperties47.Append(runFonts42);
            runProperties47.Append(fontSize52);
            runProperties47.Append(fontSizeComplexScript44);
            Text text37 = new Text();
            text37.Text = "☐";

            run43.Append(runProperties47);
            run43.Append(text37);

            sdtContentRun5.Append(run43);

            sdtRun5.Append(sdtProperties5);
            sdtRun5.Append(sdtEndCharProperties5);
            sdtRun5.Append(sdtContentRun5);

            Run run44 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "006678EF" };

            RunProperties runProperties48 = new RunProperties();
            RunFonts runFonts43 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize53 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript45 = new FontSizeComplexScript() { Val = "22" };

            runProperties48.Append(runFonts43);
            runProperties48.Append(fontSize53);
            runProperties48.Append(fontSizeComplexScript45);
            Text text38 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text38.Text = " ";

            run44.Append(runProperties48);
            run44.Append(text38);

            Run run45 = new Run() { RsidRunAddition = "006678EF" };

            RunProperties runProperties49 = new RunProperties();
            RunFonts runFonts44 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize54 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript46 = new FontSizeComplexScript() { Val = "22" };

            runProperties49.Append(runFonts44);
            runProperties49.Append(fontSize54);
            runProperties49.Append(fontSizeComplexScript46);
            Text text39 = new Text();
            text39.Text = "SLES";

            run45.Append(runProperties49);
            run45.Append(text39);

            paragraph17.Append(paragraphProperties16);
            paragraph17.Append(run34);
            paragraph17.Append(sdtRun3);
            paragraph17.Append(run36);
            paragraph17.Append(run37);
            paragraph17.Append(run38);
            paragraph17.Append(sdtRun4);
            paragraph17.Append(run40);
            paragraph17.Append(run41);
            paragraph17.Append(run42);
            paragraph17.Append(sdtRun5);
            paragraph17.Append(run44);
            paragraph17.Append(run45);

            Paragraph paragraph18 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "000C02D8", RsidParagraphProperties = "000C02D8", RsidRunAdditionDefault = "00A563A2", ParagraphId = "0AAC192A", TextId = "77777777" };

            ParagraphProperties paragraphProperties17 = new ParagraphProperties();
            Indentation indentation4 = new Indentation() { Start = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties17 = new ParagraphMarkRunProperties();
            RunFonts runFonts45 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize55 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript47 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties17.Append(runFonts45);
            paragraphMarkRunProperties17.Append(fontSize55);
            paragraphMarkRunProperties17.Append(fontSizeComplexScript47);

            paragraphProperties17.Append(indentation4);
            paragraphProperties17.Append(paragraphMarkRunProperties17);

            SdtRun sdtRun6 = new SdtRun();

            SdtProperties sdtProperties6 = new SdtProperties();

            RunProperties runProperties50 = new RunProperties();
            RunFonts runFonts46 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize56 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript48 = new FontSizeComplexScript() { Val = "22" };

            runProperties50.Append(runFonts46);
            runProperties50.Append(fontSize56);
            runProperties50.Append(fontSizeComplexScript48);
            SdtId sdtId6 = new SdtId() { Val = -1196000807 };

            W14.SdtContentCheckBox sdtContentCheckBox6 = new W14.SdtContentCheckBox();
            W14.Checked checked6 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState6 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState6 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox6.Append(checked6);
            sdtContentCheckBox6.Append(checkedState6);
            sdtContentCheckBox6.Append(uncheckedState6);

            sdtProperties6.Append(runProperties50);
            sdtProperties6.Append(sdtId6);
            sdtProperties6.Append(sdtContentCheckBox6);
            SdtEndCharProperties sdtEndCharProperties6 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun6 = new SdtContentRun();

            Run run46 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "000E2AF5" };

            RunProperties runProperties51 = new RunProperties();
            RunFonts runFonts47 = new RunFonts() { Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize57 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript49 = new FontSizeComplexScript() { Val = "22" };

            runProperties51.Append(runFonts47);
            runProperties51.Append(fontSize57);
            runProperties51.Append(fontSizeComplexScript49);
            Text text40 = new Text();
            text40.Text = "☐";

            run46.Append(runProperties51);
            run46.Append(text40);

            sdtContentRun6.Append(run46);

            sdtRun6.Append(sdtProperties6);
            sdtRun6.Append(sdtEndCharProperties6);
            sdtRun6.Append(sdtContentRun6);

            Run run47 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "007F6C8D" };

            RunProperties runProperties52 = new RunProperties();
            RunFonts runFonts48 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize58 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript50 = new FontSizeComplexScript() { Val = "22" };

            runProperties52.Append(runFonts48);
            runProperties52.Append(fontSize58);
            runProperties52.Append(fontSizeComplexScript50);
            Text text41 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text41.Text = " Windows";

            run47.Append(runProperties52);
            run47.Append(text41);

            paragraph18.Append(paragraphProperties17);
            paragraph18.Append(sdtRun6);
            paragraph18.Append(run47);

            Paragraph paragraph19 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "007F6C8D", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00A563A2", ParagraphId = "0AAC192B", TextId = "2C9455A7" };

            ParagraphProperties paragraphProperties18 = new ParagraphProperties();
            Indentation indentation5 = new Indentation() { Start = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties18 = new ParagraphMarkRunProperties();
            RunFonts runFonts49 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize59 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript51 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties18.Append(runFonts49);
            paragraphMarkRunProperties18.Append(fontSize59);
            paragraphMarkRunProperties18.Append(fontSizeComplexScript51);

            paragraphProperties18.Append(indentation5);
            paragraphProperties18.Append(paragraphMarkRunProperties18);

            SdtRun sdtRun7 = new SdtRun();

            SdtProperties sdtProperties7 = new SdtProperties();

            RunProperties runProperties53 = new RunProperties();
            RunFonts runFonts50 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize60 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript52 = new FontSizeComplexScript() { Val = "22" };

            runProperties53.Append(runFonts50);
            runProperties53.Append(fontSize60);
            runProperties53.Append(fontSizeComplexScript52);
            SdtId sdtId7 = new SdtId() { Val = -2008430593 };

            W14.SdtContentCheckBox sdtContentCheckBox7 = new W14.SdtContentCheckBox();
            W14.Checked checked7 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState7 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState7 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox7.Append(checked7);
            sdtContentCheckBox7.Append(checkedState7);
            sdtContentCheckBox7.Append(uncheckedState7);

            sdtProperties7.Append(runProperties53);
            sdtProperties7.Append(sdtId7);
            sdtProperties7.Append(sdtContentCheckBox7);
            SdtEndCharProperties sdtEndCharProperties7 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun7 = new SdtContentRun();

            Run run48 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "005E53DA" };

            RunProperties runProperties54 = new RunProperties();
            RunFonts runFonts51 = new RunFonts() { Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize61 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript53 = new FontSizeComplexScript() { Val = "22" };

            runProperties54.Append(runFonts51);
            runProperties54.Append(fontSize61);
            runProperties54.Append(fontSizeComplexScript53);
            Text text42 = new Text();
            text42.Text = "☐";

            run48.Append(runProperties54);
            run48.Append(text42);

            sdtContentRun7.Append(run48);

            sdtRun7.Append(sdtProperties7);
            sdtRun7.Append(sdtEndCharProperties7);
            sdtRun7.Append(sdtContentRun7);

            Run run49 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "007F6C8D" };

            RunProperties runProperties55 = new RunProperties();
            RunFonts runFonts52 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize62 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript54 = new FontSizeComplexScript() { Val = "22" };

            runProperties55.Append(runFonts52);
            runProperties55.Append(fontSize62);
            runProperties55.Append(fontSizeComplexScript54);
            Text text43 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text43.Text = " LPAR";

            run49.Append(runProperties55);
            run49.Append(text43);

            Run run50 = new Run() { RsidRunAddition = "00697199" };

            RunProperties runProperties56 = new RunProperties();
            RunFonts runFonts53 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize63 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript55 = new FontSizeComplexScript() { Val = "22" };

            runProperties56.Append(runFonts53);
            runProperties56.Append(fontSize63);
            runProperties56.Append(fontSizeComplexScript55);
            Text text44 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text44.Text = " w/ AIX";

            run50.Append(runProperties56);
            run50.Append(text44);

            Run run51 = new Run() { RsidRunAddition = "00614197" };

            RunProperties runProperties57 = new RunProperties();
            RunFonts runFonts54 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize64 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript56 = new FontSizeComplexScript() { Val = "22" };

            runProperties57.Append(runFonts54);
            runProperties57.Append(fontSize64);
            runProperties57.Append(fontSizeComplexScript56);
            Text text45 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text45.Text = " ";

            run51.Append(runProperties57);
            run51.Append(text45);

            Run run52 = new Run() { RsidRunProperties = "0027287B", RsidRunAddition = "00614197" };

            RunProperties runProperties58 = new RunProperties();
            RunFonts runFonts55 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold19 = new Bold();
            Italic italic3 = new Italic();
            Color color19 = new Color() { Val = "FF0000" };
            FontSize fontSize65 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript57 = new FontSizeComplexScript() { Val = "22" };
            Underline underline10 = new Underline() { Val = UnderlineValues.Single };

            runProperties58.Append(runFonts55);
            runProperties58.Append(bold19);
            runProperties58.Append(italic3);
            runProperties58.Append(color19);
            runProperties58.Append(fontSize65);
            runProperties58.Append(fontSizeComplexScript57);
            runProperties58.Append(underline10);
            Text text46 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text46.Text = "require conversation with ";

            run52.Append(runProperties58);
            run52.Append(text46);

            Run run53 = new Run() { RsidRunAddition = "00614197" };

            RunProperties runProperties59 = new RunProperties();
            RunFonts runFonts56 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold20 = new Bold();
            Italic italic4 = new Italic();
            Color color20 = new Color() { Val = "FF0000" };
            FontSize fontSize66 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript58 = new FontSizeComplexScript() { Val = "22" };
            Underline underline11 = new Underline() { Val = UnderlineValues.Single };

            runProperties59.Append(runFonts56);
            runProperties59.Append(bold20);
            runProperties59.Append(italic4);
            runProperties59.Append(color20);
            runProperties59.Append(fontSize66);
            runProperties59.Append(fontSizeComplexScript58);
            runProperties59.Append(underline11);
            Text text47 = new Text();
            text47.Text = "OpenSystems";

            run53.Append(runProperties59);
            run53.Append(text47);

            paragraph19.Append(paragraphProperties18);
            paragraph19.Append(sdtRun7);
            paragraph19.Append(run49);
            paragraph19.Append(run50);
            paragraph19.Append(run51);
            paragraph19.Append(run52);
            paragraph19.Append(run53);

            Paragraph paragraph20 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00D778B7", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00A563A2", ParagraphId = "0AAC192C", TextId = "77777777" };

            ParagraphProperties paragraphProperties19 = new ParagraphProperties();
            Indentation indentation6 = new Indentation() { Start = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties19 = new ParagraphMarkRunProperties();
            RunFonts runFonts57 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize67 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript59 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties19.Append(runFonts57);
            paragraphMarkRunProperties19.Append(fontSize67);
            paragraphMarkRunProperties19.Append(fontSizeComplexScript59);

            paragraphProperties19.Append(indentation6);
            paragraphProperties19.Append(paragraphMarkRunProperties19);

            SdtRun sdtRun8 = new SdtRun();

            SdtProperties sdtProperties8 = new SdtProperties();

            RunProperties runProperties60 = new RunProperties();
            RunFonts runFonts58 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize68 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript60 = new FontSizeComplexScript() { Val = "22" };

            runProperties60.Append(runFonts58);
            runProperties60.Append(fontSize68);
            runProperties60.Append(fontSizeComplexScript60);
            SdtId sdtId8 = new SdtId() { Val = 1265414844 };

            W14.SdtContentCheckBox sdtContentCheckBox8 = new W14.SdtContentCheckBox();
            W14.Checked checked8 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState8 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState8 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox8.Append(checked8);
            sdtContentCheckBox8.Append(checkedState8);
            sdtContentCheckBox8.Append(uncheckedState8);

            sdtProperties8.Append(runProperties60);
            sdtProperties8.Append(sdtId8);
            sdtProperties8.Append(sdtContentCheckBox8);
            SdtEndCharProperties sdtEndCharProperties8 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun8 = new SdtContentRun();

            Run run54 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "005E53DA" };

            RunProperties runProperties61 = new RunProperties();
            RunFonts runFonts59 = new RunFonts() { Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize69 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript61 = new FontSizeComplexScript() { Val = "22" };

            runProperties61.Append(runFonts59);
            runProperties61.Append(fontSize69);
            runProperties61.Append(fontSizeComplexScript61);
            Text text48 = new Text();
            text48.Text = "☐";

            run54.Append(runProperties61);
            run54.Append(text48);

            sdtContentRun8.Append(run54);

            sdtRun8.Append(sdtProperties8);
            sdtRun8.Append(sdtEndCharProperties8);
            sdtRun8.Append(sdtContentRun8);

            Run run55 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "007F6C8D" };

            RunProperties runProperties62 = new RunProperties();
            RunFonts runFonts60 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize70 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript62 = new FontSizeComplexScript() { Val = "22" };

            runProperties62.Append(runFonts60);
            runProperties62.Append(fontSize70);
            runProperties62.Append(fontSizeComplexScript62);
            Text text49 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text49.Text = " Citrix";

            run55.Append(runProperties62);
            run55.Append(text49);

            paragraph20.Append(paragraphProperties19);
            paragraph20.Append(sdtRun8);
            paragraph20.Append(run55);

            Paragraph paragraph21 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00D778B7", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00A563A2", ParagraphId = "0AAC192D", TextId = "77777777" };

            ParagraphProperties paragraphProperties20 = new ParagraphProperties();
            Indentation indentation7 = new Indentation() { Start = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties20 = new ParagraphMarkRunProperties();
            RunFonts runFonts61 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize71 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript63 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties20.Append(runFonts61);
            paragraphMarkRunProperties20.Append(fontSize71);
            paragraphMarkRunProperties20.Append(fontSizeComplexScript63);

            paragraphProperties20.Append(indentation7);
            paragraphProperties20.Append(paragraphMarkRunProperties20);

            SdtRun sdtRun9 = new SdtRun();

            SdtProperties sdtProperties9 = new SdtProperties();

            RunProperties runProperties63 = new RunProperties();
            RunFonts runFonts62 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize72 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript64 = new FontSizeComplexScript() { Val = "22" };

            runProperties63.Append(runFonts62);
            runProperties63.Append(fontSize72);
            runProperties63.Append(fontSizeComplexScript64);
            SdtId sdtId9 = new SdtId() { Val = 1382521982 };

            W14.SdtContentCheckBox sdtContentCheckBox9 = new W14.SdtContentCheckBox();
            W14.Checked checked9 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState9 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState9 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox9.Append(checked9);
            sdtContentCheckBox9.Append(checkedState9);
            sdtContentCheckBox9.Append(uncheckedState9);

            sdtProperties9.Append(runProperties63);
            sdtProperties9.Append(sdtId9);
            sdtProperties9.Append(sdtContentCheckBox9);
            SdtEndCharProperties sdtEndCharProperties9 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun9 = new SdtContentRun();

            Run run56 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "000E2AF5" };

            RunProperties runProperties64 = new RunProperties();
            RunFonts runFonts63 = new RunFonts() { Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize73 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript65 = new FontSizeComplexScript() { Val = "22" };

            runProperties64.Append(runFonts63);
            runProperties64.Append(fontSize73);
            runProperties64.Append(fontSizeComplexScript65);
            Text text50 = new Text();
            text50.Text = "☐";

            run56.Append(runProperties64);
            run56.Append(text50);

            sdtContentRun9.Append(run56);

            sdtRun9.Append(sdtProperties9);
            sdtRun9.Append(sdtEndCharProperties9);
            sdtRun9.Append(sdtContentRun9);

            Run run57 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "007F6C8D" };

            RunProperties runProperties65 = new RunProperties();
            RunFonts runFonts64 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize74 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript66 = new FontSizeComplexScript() { Val = "22" };

            runProperties65.Append(runFonts64);
            runProperties65.Append(fontSize74);
            runProperties65.Append(fontSizeComplexScript66);
            Text text51 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text51.Text = " Clustering";

            run57.Append(runProperties65);
            run57.Append(text51);

            paragraph21.Append(paragraphProperties20);
            paragraph21.Append(sdtRun9);
            paragraph21.Append(run57);

            Paragraph paragraph22 = new Paragraph() { RsidParagraphAddition = "00D778B7", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00A563A2", ParagraphId = "0AAC192E", TextId = "77777777" };

            ParagraphProperties paragraphProperties21 = new ParagraphProperties();
            Indentation indentation8 = new Indentation() { Start = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties21 = new ParagraphMarkRunProperties();
            RunFonts runFonts65 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize75 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript67 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties21.Append(runFonts65);
            paragraphMarkRunProperties21.Append(fontSize75);
            paragraphMarkRunProperties21.Append(fontSizeComplexScript67);

            paragraphProperties21.Append(indentation8);
            paragraphProperties21.Append(paragraphMarkRunProperties21);

            SdtRun sdtRun10 = new SdtRun();

            SdtProperties sdtProperties10 = new SdtProperties();

            RunProperties runProperties66 = new RunProperties();
            RunFonts runFonts66 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize76 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript68 = new FontSizeComplexScript() { Val = "22" };

            runProperties66.Append(runFonts66);
            runProperties66.Append(fontSize76);
            runProperties66.Append(fontSizeComplexScript68);
            SdtId sdtId10 = new SdtId() { Val = 422846222 };

            W14.SdtContentCheckBox sdtContentCheckBox10 = new W14.SdtContentCheckBox();
            W14.Checked checked10 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState10 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState10 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox10.Append(checked10);
            sdtContentCheckBox10.Append(checkedState10);
            sdtContentCheckBox10.Append(uncheckedState10);

            sdtProperties10.Append(runProperties66);
            sdtProperties10.Append(sdtId10);
            sdtProperties10.Append(sdtContentCheckBox10);
            SdtEndCharProperties sdtEndCharProperties10 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun10 = new SdtContentRun();

            Run run58 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "000E2AF5" };

            RunProperties runProperties67 = new RunProperties();
            RunFonts runFonts67 = new RunFonts() { Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize77 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript69 = new FontSizeComplexScript() { Val = "22" };

            runProperties67.Append(runFonts67);
            runProperties67.Append(fontSize77);
            runProperties67.Append(fontSizeComplexScript69);
            Text text52 = new Text();
            text52.Text = "☐";

            run58.Append(runProperties67);
            run58.Append(text52);

            sdtContentRun10.Append(run58);

            sdtRun10.Append(sdtProperties10);
            sdtRun10.Append(sdtEndCharProperties10);
            sdtRun10.Append(sdtContentRun10);

            Run run59 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "007F6C8D" };

            RunProperties runProperties68 = new RunProperties();
            RunFonts runFonts68 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize78 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript70 = new FontSizeComplexScript() { Val = "22" };

            runProperties68.Append(runFonts68);
            runProperties68.Append(fontSize78);
            runProperties68.Append(fontSizeComplexScript70);
            Text text53 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text53.Text = " Database";

            run59.Append(runProperties68);
            run59.Append(text53);

            paragraph22.Append(paragraphProperties21);
            paragraph22.Append(sdtRun10);
            paragraph22.Append(run59);

            Paragraph paragraph23 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "000C02D8", RsidParagraphProperties = "000C02D8", RsidRunAdditionDefault = "000C02D8", ParagraphId = "0AAC192F", TextId = "77777777" };

            ParagraphProperties paragraphProperties22 = new ParagraphProperties();
            Indentation indentation9 = new Indentation() { Start = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties22 = new ParagraphMarkRunProperties();
            RunFonts runFonts69 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize79 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript71 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties22.Append(runFonts69);
            paragraphMarkRunProperties22.Append(fontSize79);
            paragraphMarkRunProperties22.Append(fontSizeComplexScript71);

            paragraphProperties22.Append(indentation9);
            paragraphProperties22.Append(paragraphMarkRunProperties22);

            Run run60 = new Run();

            RunProperties runProperties69 = new RunProperties();
            RunFonts runFonts70 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize80 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript72 = new FontSizeComplexScript() { Val = "22" };

            runProperties69.Append(runFonts70);
            runProperties69.Append(fontSize80);
            runProperties69.Append(fontSizeComplexScript72);
            TabChar tabChar5 = new TabChar();

            run60.Append(runProperties69);
            run60.Append(tabChar5);

            SdtRun sdtRun11 = new SdtRun();

            SdtProperties sdtProperties11 = new SdtProperties();

            RunProperties runProperties70 = new RunProperties();
            RunFonts runFonts71 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize81 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript73 = new FontSizeComplexScript() { Val = "22" };

            runProperties70.Append(runFonts71);
            runProperties70.Append(fontSize81);
            runProperties70.Append(fontSizeComplexScript73);
            SdtId sdtId11 = new SdtId() { Val = 1486361801 };

            W14.SdtContentCheckBox sdtContentCheckBox11 = new W14.SdtContentCheckBox();
            W14.Checked checked11 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState11 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState11 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox11.Append(checked11);
            sdtContentCheckBox11.Append(checkedState11);
            sdtContentCheckBox11.Append(uncheckedState11);

            sdtProperties11.Append(runProperties70);
            sdtProperties11.Append(sdtId11);
            sdtProperties11.Append(sdtContentCheckBox11);
            SdtEndCharProperties sdtEndCharProperties11 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun11 = new SdtContentRun();

            Run run61 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties71 = new RunProperties();
            RunFonts runFonts72 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize82 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript74 = new FontSizeComplexScript() { Val = "22" };

            runProperties71.Append(runFonts72);
            runProperties71.Append(fontSize82);
            runProperties71.Append(fontSizeComplexScript74);
            Text text54 = new Text();
            text54.Text = "☐";

            run61.Append(runProperties71);
            run61.Append(text54);

            sdtContentRun11.Append(run61);

            sdtRun11.Append(sdtProperties11);
            sdtRun11.Append(sdtEndCharProperties11);
            sdtRun11.Append(sdtContentRun11);

            Run run62 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties72 = new RunProperties();
            RunFonts runFonts73 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize83 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript75 = new FontSizeComplexScript() { Val = "22" };

            runProperties72.Append(runFonts73);
            runProperties72.Append(fontSize83);
            runProperties72.Append(fontSizeComplexScript75);
            Text text55 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text55.Text = " ";

            run62.Append(runProperties72);
            run62.Append(text55);

            Run run63 = new Run();

            RunProperties runProperties73 = new RunProperties();
            RunFonts runFonts74 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize84 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript76 = new FontSizeComplexScript() { Val = "22" };

            runProperties73.Append(runFonts74);
            runProperties73.Append(fontSize84);
            runProperties73.Append(fontSizeComplexScript76);
            Text text56 = new Text();
            text56.Text = "SQL";

            run63.Append(runProperties73);
            run63.Append(text56);

            Run run64 = new Run();

            RunProperties runProperties74 = new RunProperties();
            RunFonts runFonts75 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize85 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript77 = new FontSizeComplexScript() { Val = "22" };

            runProperties74.Append(runFonts75);
            runProperties74.Append(fontSize85);
            runProperties74.Append(fontSizeComplexScript77);
            TabChar tabChar6 = new TabChar();

            run64.Append(runProperties74);
            run64.Append(tabChar6);

            Run run65 = new Run();

            RunProperties runProperties75 = new RunProperties();
            RunFonts runFonts76 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize86 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript78 = new FontSizeComplexScript() { Val = "22" };

            runProperties75.Append(runFonts76);
            runProperties75.Append(fontSize86);
            runProperties75.Append(fontSizeComplexScript78);
            TabChar tabChar7 = new TabChar();

            run65.Append(runProperties75);
            run65.Append(tabChar7);

            SdtRun sdtRun12 = new SdtRun();

            SdtProperties sdtProperties12 = new SdtProperties();

            RunProperties runProperties76 = new RunProperties();
            RunFonts runFonts77 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize87 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript79 = new FontSizeComplexScript() { Val = "22" };

            runProperties76.Append(runFonts77);
            runProperties76.Append(fontSize87);
            runProperties76.Append(fontSizeComplexScript79);
            SdtId sdtId12 = new SdtId() { Val = 967241908 };

            W14.SdtContentCheckBox sdtContentCheckBox12 = new W14.SdtContentCheckBox();
            W14.Checked checked12 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState12 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState12 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox12.Append(checked12);
            sdtContentCheckBox12.Append(checkedState12);
            sdtContentCheckBox12.Append(uncheckedState12);

            sdtProperties12.Append(runProperties76);
            sdtProperties12.Append(sdtId12);
            sdtProperties12.Append(sdtContentCheckBox12);
            SdtEndCharProperties sdtEndCharProperties12 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun12 = new SdtContentRun();

            Run run66 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties77 = new RunProperties();
            RunFonts runFonts78 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize88 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript80 = new FontSizeComplexScript() { Val = "22" };

            runProperties77.Append(runFonts78);
            runProperties77.Append(fontSize88);
            runProperties77.Append(fontSizeComplexScript80);
            Text text57 = new Text();
            text57.Text = "☐";

            run66.Append(runProperties77);
            run66.Append(text57);

            sdtContentRun12.Append(run66);

            sdtRun12.Append(sdtProperties12);
            sdtRun12.Append(sdtEndCharProperties12);
            sdtRun12.Append(sdtContentRun12);

            Run run67 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties78 = new RunProperties();
            RunFonts runFonts79 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize89 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript81 = new FontSizeComplexScript() { Val = "22" };

            runProperties78.Append(runFonts79);
            runProperties78.Append(fontSize89);
            runProperties78.Append(fontSizeComplexScript81);
            Text text58 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text58.Text = " ";

            run67.Append(runProperties78);
            run67.Append(text58);

            Run run68 = new Run();

            RunProperties runProperties79 = new RunProperties();
            RunFonts runFonts80 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize90 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript82 = new FontSizeComplexScript() { Val = "22" };

            runProperties79.Append(runFonts80);
            runProperties79.Append(fontSize90);
            runProperties79.Append(fontSizeComplexScript82);
            Text text59 = new Text();
            text59.Text = "Oracle";

            run68.Append(runProperties79);
            run68.Append(text59);

            Run run69 = new Run();

            RunProperties runProperties80 = new RunProperties();
            RunFonts runFonts81 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize91 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript83 = new FontSizeComplexScript() { Val = "22" };

            runProperties80.Append(runFonts81);
            runProperties80.Append(fontSize91);
            runProperties80.Append(fontSizeComplexScript83);
            TabChar tabChar8 = new TabChar();

            run69.Append(runProperties80);
            run69.Append(tabChar8);

            SdtRun sdtRun13 = new SdtRun();

            SdtProperties sdtProperties13 = new SdtProperties();

            RunProperties runProperties81 = new RunProperties();
            RunFonts runFonts82 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize92 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript84 = new FontSizeComplexScript() { Val = "22" };

            runProperties81.Append(runFonts82);
            runProperties81.Append(fontSize92);
            runProperties81.Append(fontSizeComplexScript84);
            SdtId sdtId13 = new SdtId() { Val = -675188765 };

            W14.SdtContentCheckBox sdtContentCheckBox13 = new W14.SdtContentCheckBox();
            W14.Checked checked13 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState13 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState13 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox13.Append(checked13);
            sdtContentCheckBox13.Append(checkedState13);
            sdtContentCheckBox13.Append(uncheckedState13);

            sdtProperties13.Append(runProperties81);
            sdtProperties13.Append(sdtId13);
            sdtProperties13.Append(sdtContentCheckBox13);
            SdtEndCharProperties sdtEndCharProperties13 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun13 = new SdtContentRun();

            Run run70 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties82 = new RunProperties();
            RunFonts runFonts83 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize93 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript85 = new FontSizeComplexScript() { Val = "22" };

            runProperties82.Append(runFonts83);
            runProperties82.Append(fontSize93);
            runProperties82.Append(fontSizeComplexScript85);
            Text text60 = new Text();
            text60.Text = "☐";

            run70.Append(runProperties82);
            run70.Append(text60);

            sdtContentRun13.Append(run70);

            sdtRun13.Append(sdtProperties13);
            sdtRun13.Append(sdtEndCharProperties13);
            sdtRun13.Append(sdtContentRun13);

            Run run71 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties83 = new RunProperties();
            RunFonts runFonts84 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize94 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript86 = new FontSizeComplexScript() { Val = "22" };

            runProperties83.Append(runFonts84);
            runProperties83.Append(fontSize94);
            runProperties83.Append(fontSizeComplexScript86);
            Text text61 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text61.Text = " D";

            run71.Append(runProperties83);
            run71.Append(text61);

            Run run72 = new Run();

            RunProperties runProperties84 = new RunProperties();
            RunFonts runFonts85 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize95 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript87 = new FontSizeComplexScript() { Val = "22" };

            runProperties84.Append(runFonts85);
            runProperties84.Append(fontSize95);
            runProperties84.Append(fontSizeComplexScript87);
            Text text62 = new Text();
            text62.Text = "B2";

            run72.Append(runProperties84);
            run72.Append(text62);

            paragraph23.Append(paragraphProperties22);
            paragraph23.Append(run60);
            paragraph23.Append(sdtRun11);
            paragraph23.Append(run62);
            paragraph23.Append(run63);
            paragraph23.Append(run64);
            paragraph23.Append(run65);
            paragraph23.Append(sdtRun12);
            paragraph23.Append(run67);
            paragraph23.Append(run68);
            paragraph23.Append(run69);
            paragraph23.Append(sdtRun13);
            paragraph23.Append(run71);
            paragraph23.Append(run72);

            Paragraph paragraph24 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00D778B7", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00A563A2", ParagraphId = "0AAC1930", TextId = "77777777" };

            ParagraphProperties paragraphProperties23 = new ParagraphProperties();
            Indentation indentation10 = new Indentation() { Start = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties23 = new ParagraphMarkRunProperties();
            RunFonts runFonts86 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize96 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript88 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties23.Append(runFonts86);
            paragraphMarkRunProperties23.Append(fontSize96);
            paragraphMarkRunProperties23.Append(fontSizeComplexScript88);

            paragraphProperties23.Append(indentation10);
            paragraphProperties23.Append(paragraphMarkRunProperties23);

            SdtRun sdtRun14 = new SdtRun();

            SdtProperties sdtProperties14 = new SdtProperties();

            RunProperties runProperties85 = new RunProperties();
            RunFonts runFonts87 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize97 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript89 = new FontSizeComplexScript() { Val = "22" };

            runProperties85.Append(runFonts87);
            runProperties85.Append(fontSize97);
            runProperties85.Append(fontSizeComplexScript89);
            SdtId sdtId14 = new SdtId() { Val = 1294328987 };

            W14.SdtContentCheckBox sdtContentCheckBox14 = new W14.SdtContentCheckBox();
            W14.Checked checked14 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState14 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState14 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox14.Append(checked14);
            sdtContentCheckBox14.Append(checkedState14);
            sdtContentCheckBox14.Append(uncheckedState14);

            sdtProperties14.Append(runProperties85);
            sdtProperties14.Append(sdtId14);
            sdtProperties14.Append(sdtContentCheckBox14);
            SdtEndCharProperties sdtEndCharProperties14 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun14 = new SdtContentRun();

            Run run73 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "000E2AF5" };

            RunProperties runProperties86 = new RunProperties();
            RunFonts runFonts88 = new RunFonts() { Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize98 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript90 = new FontSizeComplexScript() { Val = "22" };

            runProperties86.Append(runFonts88);
            runProperties86.Append(fontSize98);
            runProperties86.Append(fontSizeComplexScript90);
            Text text63 = new Text();
            text63.Text = "☐";

            run73.Append(runProperties86);
            run73.Append(text63);

            sdtContentRun14.Append(run73);

            sdtRun14.Append(sdtProperties14);
            sdtRun14.Append(sdtEndCharProperties14);
            sdtRun14.Append(sdtContentRun14);

            Run run74 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "007F6C8D" };

            RunProperties runProperties87 = new RunProperties();
            RunFonts runFonts89 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize99 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript91 = new FontSizeComplexScript() { Val = "22" };

            runProperties87.Append(runFonts89);
            runProperties87.Append(fontSize99);
            runProperties87.Append(fontSizeComplexScript91);
            Text text64 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text64.Text = " Physical";

            run74.Append(runProperties87);
            run74.Append(text64);

            Run run75 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00D778B7" };

            RunProperties runProperties88 = new RunProperties();
            RunFonts runFonts90 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize100 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript92 = new FontSizeComplexScript() { Val = "22" };

            runProperties88.Append(runFonts90);
            runProperties88.Append(fontSize100);
            runProperties88.Append(fontSizeComplexScript92);
            Text text65 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text65.Text = " servers";

            run75.Append(runProperties88);
            run75.Append(text65);

            paragraph24.Append(paragraphProperties23);
            paragraph24.Append(sdtRun14);
            paragraph24.Append(run74);
            paragraph24.Append(run75);

            Paragraph paragraph25 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00D778B7", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00D778B7", ParagraphId = "0AAC1931", TextId = "77777777" };

            ParagraphProperties paragraphProperties24 = new ParagraphProperties();
            Indentation indentation11 = new Indentation() { Start = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties24 = new ParagraphMarkRunProperties();
            RunFonts runFonts91 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize101 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript93 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties24.Append(runFonts91);
            paragraphMarkRunProperties24.Append(fontSize101);
            paragraphMarkRunProperties24.Append(fontSizeComplexScript93);

            paragraphProperties24.Append(indentation11);
            paragraphProperties24.Append(paragraphMarkRunProperties24);

            Run run76 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties89 = new RunProperties();
            RunFonts runFonts92 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize102 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript94 = new FontSizeComplexScript() { Val = "22" };

            runProperties89.Append(runFonts92);
            runProperties89.Append(fontSize102);
            runProperties89.Append(fontSizeComplexScript94);
            TabChar tabChar9 = new TabChar();

            run76.Append(runProperties89);
            run76.Append(tabChar9);

            SdtRun sdtRun15 = new SdtRun();

            SdtProperties sdtProperties15 = new SdtProperties();

            RunProperties runProperties90 = new RunProperties();
            RunFonts runFonts93 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize103 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript95 = new FontSizeComplexScript() { Val = "22" };

            runProperties90.Append(runFonts93);
            runProperties90.Append(fontSize103);
            runProperties90.Append(fontSizeComplexScript95);
            SdtId sdtId15 = new SdtId() { Val = -2009973664 };

            W14.SdtContentCheckBox sdtContentCheckBox15 = new W14.SdtContentCheckBox();
            W14.Checked checked15 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState15 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState15 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox15.Append(checked15);
            sdtContentCheckBox15.Append(checkedState15);
            sdtContentCheckBox15.Append(uncheckedState15);

            sdtProperties15.Append(runProperties90);
            sdtProperties15.Append(sdtId15);
            sdtProperties15.Append(sdtContentCheckBox15);
            SdtEndCharProperties sdtEndCharProperties15 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun15 = new SdtContentRun();

            Run run77 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "005E53DA" };

            RunProperties runProperties91 = new RunProperties();
            RunFonts runFonts94 = new RunFonts() { Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize104 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript96 = new FontSizeComplexScript() { Val = "22" };

            runProperties91.Append(runFonts94);
            runProperties91.Append(fontSize104);
            runProperties91.Append(fontSizeComplexScript96);
            Text text66 = new Text();
            text66.Text = "☐";

            run77.Append(runProperties91);
            run77.Append(text66);

            sdtContentRun15.Append(run77);

            sdtRun15.Append(sdtProperties15);
            sdtRun15.Append(sdtEndCharProperties15);
            sdtRun15.Append(sdtContentRun15);

            Run run78 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties92 = new RunProperties();
            RunFonts runFonts95 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize105 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript97 = new FontSizeComplexScript() { Val = "22" };

            runProperties92.Append(runFonts95);
            runProperties92.Append(fontSize105);
            runProperties92.Append(fontSizeComplexScript97);
            Text text67 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text67.Text = " Internal Expansion card. Type:_______________ Model:____________";

            run78.Append(runProperties92);
            run78.Append(text67);

            paragraph25.Append(paragraphProperties24);
            paragraph25.Append(run76);
            paragraph25.Append(sdtRun15);
            paragraph25.Append(run78);

            Paragraph paragraph26 = new Paragraph() { RsidParagraphAddition = "000C02D8", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00A563A2", ParagraphId = "0AAC1932", TextId = "77777777" };

            ParagraphProperties paragraphProperties25 = new ParagraphProperties();
            Indentation indentation12 = new Indentation() { Start = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties25 = new ParagraphMarkRunProperties();
            RunFonts runFonts96 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize106 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript98 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties25.Append(runFonts96);
            paragraphMarkRunProperties25.Append(fontSize106);
            paragraphMarkRunProperties25.Append(fontSizeComplexScript98);

            paragraphProperties25.Append(indentation12);
            paragraphProperties25.Append(paragraphMarkRunProperties25);

            SdtRun sdtRun16 = new SdtRun();

            SdtProperties sdtProperties16 = new SdtProperties();

            RunProperties runProperties93 = new RunProperties();
            RunFonts runFonts97 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize107 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript99 = new FontSizeComplexScript() { Val = "22" };

            runProperties93.Append(runFonts97);
            runProperties93.Append(fontSize107);
            runProperties93.Append(fontSizeComplexScript99);
            SdtId sdtId16 = new SdtId() { Val = 676475862 };

            W14.SdtContentCheckBox sdtContentCheckBox16 = new W14.SdtContentCheckBox();
            W14.Checked checked16 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState16 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState16 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox16.Append(checked16);
            sdtContentCheckBox16.Append(checkedState16);
            sdtContentCheckBox16.Append(uncheckedState16);

            sdtProperties16.Append(runProperties93);
            sdtProperties16.Append(sdtId16);
            sdtProperties16.Append(sdtContentCheckBox16);
            SdtEndCharProperties sdtEndCharProperties16 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun16 = new SdtContentRun();

            Run run79 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "005E53DA" };

            RunProperties runProperties94 = new RunProperties();
            RunFonts runFonts98 = new RunFonts() { Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize108 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript100 = new FontSizeComplexScript() { Val = "22" };

            runProperties94.Append(runFonts98);
            runProperties94.Append(fontSize108);
            runProperties94.Append(fontSizeComplexScript100);
            Text text68 = new Text();
            text68.Text = "☐";

            run79.Append(runProperties94);
            run79.Append(text68);

            sdtContentRun16.Append(run79);

            sdtRun16.Append(sdtProperties16);
            sdtRun16.Append(sdtEndCharProperties16);
            sdtRun16.Append(sdtContentRun16);

            Run run80 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00692A84" };

            RunProperties runProperties95 = new RunProperties();
            RunFonts runFonts99 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize109 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript101 = new FontSizeComplexScript() { Val = "22" };

            runProperties95.Append(runFonts99);
            runProperties95.Append(fontSize109);
            runProperties95.Append(fontSizeComplexScript101);
            Text text69 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text69.Text = "  Network Load Balancers";

            run80.Append(runProperties95);
            run80.Append(text69);

            paragraph26.Append(paragraphProperties25);
            paragraph26.Append(sdtRun16);
            paragraph26.Append(run80);

            Paragraph paragraph27 = new Paragraph() { RsidParagraphAddition = "000C02D8", RsidParagraphProperties = "000C02D8", RsidRunAdditionDefault = "00A563A2", ParagraphId = "0AAC1933", TextId = "77777777" };

            ParagraphProperties paragraphProperties26 = new ParagraphProperties();
            Indentation indentation13 = new Indentation() { Start = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties26 = new ParagraphMarkRunProperties();
            RunFonts runFonts100 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize110 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript102 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties26.Append(runFonts100);
            paragraphMarkRunProperties26.Append(fontSize110);
            paragraphMarkRunProperties26.Append(fontSizeComplexScript102);

            paragraphProperties26.Append(indentation13);
            paragraphProperties26.Append(paragraphMarkRunProperties26);

            SdtRun sdtRun17 = new SdtRun();

            SdtProperties sdtProperties17 = new SdtProperties();

            RunProperties runProperties96 = new RunProperties();
            RunFonts runFonts101 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize111 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript103 = new FontSizeComplexScript() { Val = "22" };

            runProperties96.Append(runFonts101);
            runProperties96.Append(fontSize111);
            runProperties96.Append(fontSizeComplexScript103);
            SdtId sdtId17 = new SdtId() { Val = 1392776162 };

            W14.SdtContentCheckBox sdtContentCheckBox17 = new W14.SdtContentCheckBox();
            W14.Checked checked17 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState17 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState17 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox17.Append(checked17);
            sdtContentCheckBox17.Append(checkedState17);
            sdtContentCheckBox17.Append(uncheckedState17);

            sdtProperties17.Append(runProperties96);
            sdtProperties17.Append(sdtId17);
            sdtProperties17.Append(sdtContentCheckBox17);
            SdtEndCharProperties sdtEndCharProperties17 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun17 = new SdtContentRun();

            Run run81 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "000C02D8" };

            RunProperties runProperties97 = new RunProperties();
            RunFonts runFonts102 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize112 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript104 = new FontSizeComplexScript() { Val = "22" };

            runProperties97.Append(runFonts102);
            runProperties97.Append(fontSize112);
            runProperties97.Append(fontSizeComplexScript104);
            Text text70 = new Text();
            text70.Text = "☐";

            run81.Append(runProperties97);
            run81.Append(text70);

            sdtContentRun17.Append(run81);

            sdtRun17.Append(sdtProperties17);
            sdtRun17.Append(sdtEndCharProperties17);
            sdtRun17.Append(sdtContentRun17);

            Run run82 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "000C02D8" };

            RunProperties runProperties98 = new RunProperties();
            RunFonts runFonts103 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize113 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript105 = new FontSizeComplexScript() { Val = "22" };

            runProperties98.Append(runFonts103);
            runProperties98.Append(fontSize113);
            runProperties98.Append(fontSizeComplexScript105);
            Text text71 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text71.Text = " ";

            run82.Append(runProperties98);
            run82.Append(text71);

            Run run83 = new Run() { RsidRunAddition = "000C02D8" };

            RunProperties runProperties99 = new RunProperties();
            RunFonts runFonts104 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize114 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript106 = new FontSizeComplexScript() { Val = "22" };

            runProperties99.Append(runFonts104);
            runProperties99.Append(fontSize114);
            runProperties99.Append(fontSizeComplexScript106);
            Text text72 = new Text();
            text72.Text = "Multi-Site replication";

            run83.Append(runProperties99);
            run83.Append(text72);

            paragraph27.Append(paragraphProperties26);
            paragraph27.Append(sdtRun17);
            paragraph27.Append(run82);
            paragraph27.Append(run83);

            Paragraph paragraph28 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "0002129C", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "000C02D8", ParagraphId = "0AAC1934", TextId = "02A2E8F5" };

            ParagraphProperties paragraphProperties27 = new ParagraphProperties();
            Indentation indentation14 = new Indentation() { Start = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties27 = new ParagraphMarkRunProperties();
            RunFonts runFonts105 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize115 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript107 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties27.Append(runFonts105);
            paragraphMarkRunProperties27.Append(fontSize115);
            paragraphMarkRunProperties27.Append(fontSizeComplexScript107);

            paragraphProperties27.Append(indentation14);
            paragraphProperties27.Append(paragraphMarkRunProperties27);

            Run run84 = new Run();

            RunProperties runProperties100 = new RunProperties();
            RunFonts runFonts106 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize116 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript108 = new FontSizeComplexScript() { Val = "22" };

            runProperties100.Append(runFonts106);
            runProperties100.Append(fontSize116);
            runProperties100.Append(fontSizeComplexScript108);
            TabChar tabChar10 = new TabChar();

            run84.Append(runProperties100);
            run84.Append(tabChar10);

            SdtRun sdtRun18 = new SdtRun();

            SdtProperties sdtProperties18 = new SdtProperties();

            RunProperties runProperties101 = new RunProperties();
            RunFonts runFonts107 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize117 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript109 = new FontSizeComplexScript() { Val = "22" };

            runProperties101.Append(runFonts107);
            runProperties101.Append(fontSize117);
            runProperties101.Append(fontSizeComplexScript109);
            SdtId sdtId18 = new SdtId() { Val = 1394078720 };

            W14.SdtContentCheckBox sdtContentCheckBox18 = new W14.SdtContentCheckBox();
            W14.Checked checked18 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState18 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState18 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox18.Append(checked18);
            sdtContentCheckBox18.Append(checkedState18);
            sdtContentCheckBox18.Append(uncheckedState18);

            sdtProperties18.Append(runProperties101);
            sdtProperties18.Append(sdtId18);
            sdtProperties18.Append(sdtContentCheckBox18);
            SdtEndCharProperties sdtEndCharProperties18 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun18 = new SdtContentRun();

            Run run85 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties102 = new RunProperties();
            RunFonts runFonts108 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize118 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript110 = new FontSizeComplexScript() { Val = "22" };

            runProperties102.Append(runFonts108);
            runProperties102.Append(fontSize118);
            runProperties102.Append(fontSizeComplexScript110);
            Text text73 = new Text();
            text73.Text = "☐";

            run85.Append(runProperties102);
            run85.Append(text73);

            sdtContentRun18.Append(run85);

            sdtRun18.Append(sdtProperties18);
            sdtRun18.Append(sdtEndCharProperties18);
            sdtRun18.Append(sdtContentRun18);

            Run run86 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties103 = new RunProperties();
            RunFonts runFonts109 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize119 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript111 = new FontSizeComplexScript() { Val = "22" };

            runProperties103.Append(runFonts109);
            runProperties103.Append(fontSize119);
            runProperties103.Append(fontSizeComplexScript111);
            Text text74 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text74.Text = " ";

            run86.Append(runProperties103);
            run86.Append(text74);

            Run run87 = new Run();

            RunProperties runProperties104 = new RunProperties();
            RunFonts runFonts110 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize120 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript112 = new FontSizeComplexScript() { Val = "22" };

            runProperties104.Append(runFonts110);
            runProperties104.Append(fontSize120);
            runProperties104.Append(fontSizeComplexScript112);
            Text text75 = new Text();
            text75.Text = "SAN Mirror";

            run87.Append(runProperties104);
            run87.Append(text75);

            paragraph28.Append(paragraphProperties27);
            paragraph28.Append(run84);
            paragraph28.Append(sdtRun18);
            paragraph28.Append(run86);
            paragraph28.Append(run87);

            Paragraph paragraph29 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00692A84", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00E518DD", ParagraphId = "0AAC1935", TextId = "6870B6A5" };

            ParagraphProperties paragraphProperties28 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId7 = new ParagraphStyleId() { Val = "Heading2" };

            ParagraphMarkRunProperties paragraphMarkRunProperties28 = new ParagraphMarkRunProperties();
            Underline underline12 = new Underline() { Val = UnderlineValues.Single };

            paragraphMarkRunProperties28.Append(underline12);

            paragraphProperties28.Append(paragraphStyleId7);
            paragraphProperties28.Append(paragraphMarkRunProperties28);

            Run run88 = new Run();

            RunProperties runProperties105 = new RunProperties();
            Underline underline13 = new Underline() { Val = UnderlineValues.Single };

            runProperties105.Append(underline13);
            Text text76 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text76.Text = "3. ";

            run88.Append(runProperties105);
            run88.Append(text76);

            Run run89 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00692A84" };

            RunProperties runProperties106 = new RunProperties();
            Underline underline14 = new Underline() { Val = UnderlineValues.Single };

            runProperties106.Append(underline14);
            Text text77 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text77.Text = "MC Level ";

            run89.Append(runProperties106);
            run89.Append(text77);

            Run run90 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00F56485" };

            RunProperties runProperties107 = new RunProperties();
            Underline underline15 = new Underline() { Val = UnderlineValues.Single };

            runProperties107.Append(underline15);
            Text text78 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text78.Text = "/ DR ";

            run90.Append(runProperties107);
            run90.Append(text78);

            paragraph29.Append(paragraphProperties28);
            paragraph29.Append(run88);
            paragraph29.Append(run89);
            paragraph29.Append(run90);

            Paragraph paragraph30 = new Paragraph() { RsidParagraphAddition = "00273C84", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00F56485", ParagraphId = "0AAC1936", TextId = "35D2F443" };

            ParagraphProperties paragraphProperties29 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties29 = new ParagraphMarkRunProperties();
            RunFonts runFonts111 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color21 = new Color() { Val = "FF0000" };
            FontSize fontSize121 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript113 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties29.Append(runFonts111);
            paragraphMarkRunProperties29.Append(color21);
            paragraphMarkRunProperties29.Append(fontSize121);
            paragraphMarkRunProperties29.Append(fontSizeComplexScript113);

            paragraphProperties29.Append(paragraphMarkRunProperties29);

            Run run91 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties108 = new RunProperties();
            RunFonts runFonts112 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize122 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript114 = new FontSizeComplexScript() { Val = "22" };

            runProperties108.Append(runFonts112);
            runProperties108.Append(fontSize122);
            runProperties108.Append(fontSizeComplexScript114);
            Text text79 = new Text();
            text79.Text = "MC Level for this application";

            run91.Append(runProperties108);
            run91.Append(text79);

            Run run92 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00692A84" };

            RunProperties runProperties109 = new RunProperties();
            RunFonts runFonts113 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize123 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript115 = new FontSizeComplexScript() { Val = "22" };

            runProperties109.Append(runFonts113);
            runProperties109.Append(fontSize123);
            runProperties109.Append(fontSizeComplexScript115);
            Text text80 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text80.Text = " is:";

            run92.Append(runProperties109);
            run92.Append(text80);

            Run run93 = new Run() { RsidRunAddition = "000E2AF5" };

            RunProperties runProperties110 = new RunProperties();
            RunFonts runFonts114 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize124 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript116 = new FontSizeComplexScript() { Val = "22" };

            runProperties110.Append(runFonts114);
            runProperties110.Append(fontSize124);
            runProperties110.Append(fontSizeComplexScript116);
            Text text81 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text81.Text = "  ";

            run93.Append(runProperties110);
            run93.Append(text81);

            Run run94 = new Run() { RsidRunAddition = "00F40BA0" };

            RunProperties runProperties111 = new RunProperties();
            RunFonts runFonts115 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color22 = new Color() { Val = "FF0000" };
            FontSize fontSize125 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript117 = new FontSizeComplexScript() { Val = "22" };

            runProperties111.Append(runFonts115);
            runProperties111.Append(color22);
            runProperties111.Append(fontSize125);
            runProperties111.Append(fontSizeComplexScript117);
            Text text82 = new Text();
            text82.Text = "3";

            run94.Append(runProperties111);
            run94.Append(text82);

            paragraph30.Append(paragraphProperties29);
            paragraph30.Append(run91);
            paragraph30.Append(run92);
            paragraph30.Append(run93);
            paragraph30.Append(run94);

            Paragraph paragraph31 = new Paragraph() { RsidParagraphMarkRevision = "00273C84", RsidParagraphAddition = "00273C84", RsidParagraphProperties = "00273C84", RsidRunAdditionDefault = "00273C84", ParagraphId = "0AAC1937", TextId = "74728674" };

            ParagraphProperties paragraphProperties30 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties30 = new ParagraphMarkRunProperties();
            RunFonts runFonts116 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color23 = new Color() { Val = "FF0000" };
            FontSize fontSize126 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript118 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties30.Append(runFonts116);
            paragraphMarkRunProperties30.Append(color23);
            paragraphMarkRunProperties30.Append(fontSize126);
            paragraphMarkRunProperties30.Append(fontSizeComplexScript118);

            paragraphProperties30.Append(paragraphMarkRunProperties30);

            Run run95 = new Run();

            RunProperties runProperties112 = new RunProperties();
            RunFonts runFonts117 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color24 = new Color() { Val = "FF0000" };
            FontSize fontSize127 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript119 = new FontSizeComplexScript() { Val = "22" };

            runProperties112.Append(runFonts117);
            runProperties112.Append(color24);
            runProperties112.Append(fontSize127);
            runProperties112.Append(fontSizeComplexScript119);
            TabChar tabChar11 = new TabChar();

            run95.Append(runProperties112);
            run95.Append(tabChar11);

            Run run96 = new Run() { RsidRunAddition = "00CA7596" };

            RunProperties runProperties113 = new RunProperties();
            RunFonts runFonts118 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color25 = new Color() { Val = "FF0000" };
            FontSize fontSize128 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript120 = new FontSizeComplexScript() { Val = "22" };

            runProperties113.Append(runFonts118);
            runProperties113.Append(color25);
            runProperties113.Append(fontSize128);
            runProperties113.Append(fontSizeComplexScript120);
            Text text83 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text83.Text = "5 or 4 ";

            run96.Append(runProperties113);
            run96.Append(text83);

            Run run97 = new Run() { RsidRunProperties = "00273C84" };

            RunProperties runProperties114 = new RunProperties();
            RunFonts runFonts119 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color26 = new Color() { Val = "FF0000" };
            FontSize fontSize129 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript121 = new FontSizeComplexScript() { Val = "22" };

            runProperties114.Append(runFonts119);
            runProperties114.Append(color26);
            runProperties114.Append(fontSize129);
            runProperties114.Append(fontSizeComplexScript121);
            Text text84 = new Text();
            text84.Text = "make sure DR plan is in place";

            run97.Append(runProperties114);
            run97.Append(text84);

            Run run98 = new Run() { RsidRunAddition = "00CA7596" };

            RunProperties runProperties115 = new RunProperties();
            RunFonts runFonts120 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color27 = new Color() { Val = "FF0000" };
            FontSize fontSize130 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript122 = new FontSizeComplexScript() { Val = "22" };

            runProperties115.Append(runFonts120);
            runProperties115.Append(color27);
            runProperties115.Append(fontSize130);
            runProperties115.Append(fontSizeComplexScript122);
            Text text85 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text85.Text = " before proceeding";

            run98.Append(runProperties115);
            run98.Append(text85);

            paragraph31.Append(paragraphProperties30);
            paragraph31.Append(run95);
            paragraph31.Append(run96);
            paragraph31.Append(run97);
            paragraph31.Append(run98);

            Paragraph paragraph32 = new Paragraph() { RsidParagraphAddition = "00273C84", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00F56485", ParagraphId = "0AAC1938", TextId = "44F2BABC" };

            ParagraphProperties paragraphProperties31 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties31 = new ParagraphMarkRunProperties();
            RunFonts runFonts121 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color28 = new Color() { Val = "FF0000" };
            FontSize fontSize131 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript123 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties31.Append(runFonts121);
            paragraphMarkRunProperties31.Append(color28);
            paragraphMarkRunProperties31.Append(fontSize131);
            paragraphMarkRunProperties31.Append(fontSizeComplexScript123);

            paragraphProperties31.Append(paragraphMarkRunProperties31);

            Run run99 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties116 = new RunProperties();
            RunFonts runFonts122 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize132 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript124 = new FontSizeComplexScript() { Val = "22" };

            runProperties116.Append(runFonts122);
            runProperties116.Append(fontSize132);
            runProperties116.Append(fontSizeComplexScript124);
            Text text86 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text86.Text = "Has a LDRPS DR Plan been developed for this ";

            run99.Append(runProperties116);
            run99.Append(text86);

            Run run100 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00C22957" };

            RunProperties runProperties117 = new RunProperties();
            RunFonts runFonts123 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize133 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript125 = new FontSizeComplexScript() { Val = "22" };

            runProperties117.Append(runFonts123);
            runProperties117.Append(fontSize133);
            runProperties117.Append(fontSizeComplexScript125);
            Text text87 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text87.Text = "application? ";

            run100.Append(runProperties117);
            run100.Append(text87);

            Run run101 = new Run() { RsidRunAddition = "00F40BA0" };

            RunProperties runProperties118 = new RunProperties();
            RunFonts runFonts124 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color29 = new Color() { Val = "FF0000" };
            FontSize fontSize134 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript126 = new FontSizeComplexScript() { Val = "22" };

            runProperties118.Append(runFonts124);
            runProperties118.Append(color29);
            runProperties118.Append(fontSize134);
            runProperties118.Append(fontSizeComplexScript126);
            Text text88 = new Text();
            text88.Text = "No";

            run101.Append(runProperties118);
            run101.Append(text88);

            paragraph32.Append(paragraphProperties31);
            paragraph32.Append(run99);
            paragraph32.Append(run100);
            paragraph32.Append(run101);

            Paragraph paragraph33 = new Paragraph() { RsidParagraphMarkRevision = "00273C84", RsidParagraphAddition = "00273C84", RsidParagraphProperties = "00273C84", RsidRunAdditionDefault = "00273C84", ParagraphId = "0AAC1939", TextId = "3D97BF74" };

            ParagraphProperties paragraphProperties32 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties32 = new ParagraphMarkRunProperties();
            RunFonts runFonts125 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color30 = new Color() { Val = "FF0000" };
            FontSize fontSize135 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript127 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties32.Append(runFonts125);
            paragraphMarkRunProperties32.Append(color30);
            paragraphMarkRunProperties32.Append(fontSize135);
            paragraphMarkRunProperties32.Append(fontSizeComplexScript127);

            paragraphProperties32.Append(paragraphMarkRunProperties32);

            Run run102 = new Run();

            RunProperties runProperties119 = new RunProperties();
            RunFonts runFonts126 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color31 = new Color() { Val = "FF0000" };
            FontSize fontSize136 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript128 = new FontSizeComplexScript() { Val = "22" };

            runProperties119.Append(runFonts126);
            runProperties119.Append(color31);
            runProperties119.Append(fontSize136);
            runProperties119.Append(fontSizeComplexScript128);
            TabChar tabChar12 = new TabChar();

            run102.Append(runProperties119);
            run102.Append(tabChar12);

            Run run103 = new Run() { RsidRunProperties = "00273C84" };

            RunProperties runProperties120 = new RunProperties();
            RunFonts runFonts127 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color32 = new Color() { Val = "FF0000" };
            FontSize fontSize137 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript129 = new FontSizeComplexScript() { Val = "22" };

            runProperties120.Append(runFonts127);
            runProperties120.Append(color32);
            runProperties120.Append(fontSize137);
            runProperties120.Append(fontSizeComplexScript129);
            Text text89 = new Text();
            text89.Text = "If DR plan is not defined, contact business Continuity";

            run103.Append(runProperties120);
            run103.Append(text89);

            paragraph33.Append(paragraphProperties32);
            paragraph33.Append(run102);
            paragraph33.Append(run103);

            Paragraph paragraph34 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "0002129C", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00F56485", ParagraphId = "0AAC193A", TextId = "1B9A747E" };

            ParagraphProperties paragraphProperties33 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties33 = new ParagraphMarkRunProperties();
            RunFonts runFonts128 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize138 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript130 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties33.Append(runFonts128);
            paragraphMarkRunProperties33.Append(fontSize138);
            paragraphMarkRunProperties33.Append(fontSizeComplexScript130);

            paragraphProperties33.Append(paragraphMarkRunProperties33);

            Run run104 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties121 = new RunProperties();
            RunFonts runFonts129 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize139 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript131 = new FontSizeComplexScript() { Val = "22" };

            runProperties121.Append(runFonts129);
            runProperties121.Append(fontSize139);
            runProperties121.Append(fontSizeComplexScript131);
            Text text90 = new Text();
            text90.Text = "Will a";

            run104.Append(runProperties121);
            run104.Append(text90);

            Run run105 = new Run() { RsidRunAddition = "00273C84" };

            RunProperties runProperties122 = new RunProperties();
            RunFonts runFonts130 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize140 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript132 = new FontSizeComplexScript() { Val = "22" };

            runProperties122.Append(runFonts130);
            runProperties122.Append(fontSize140);
            runProperties122.Append(fontSizeComplexScript132);
            Text text91 = new Text();
            text91.Text = "n";

            run105.Append(runProperties122);
            run105.Append(text91);

            Run run106 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties123 = new RunProperties();
            RunFonts runFonts131 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize141 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript133 = new FontSizeComplexScript() { Val = "22" };

            runProperties123.Append(runFonts131);
            runProperties123.Append(fontSize141);
            runProperties123.Append(fontSizeComplexScript133);
            Text text92 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text92.Text = " update to LDRPS Plan needed due to this project changes? ";

            run106.Append(runProperties123);
            run106.Append(text92);

            Run run107 = new Run() { RsidRunAddition = "00F40BA0" };

            RunProperties runProperties124 = new RunProperties();
            RunFonts runFonts132 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color33 = new Color() { Val = "FF0000" };
            FontSize fontSize142 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript134 = new FontSizeComplexScript() { Val = "22" };

            runProperties124.Append(runFonts132);
            runProperties124.Append(color33);
            runProperties124.Append(fontSize142);
            runProperties124.Append(fontSizeComplexScript134);
            Text text93 = new Text();
            text93.Text = "No";

            run107.Append(runProperties124);
            run107.Append(text93);

            paragraph34.Append(paragraphProperties33);
            paragraph34.Append(run104);
            paragraph34.Append(run105);
            paragraph34.Append(run106);
            paragraph34.Append(run107);

            Paragraph paragraph35 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00116831", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00E518DD", ParagraphId = "0AAC193B", TextId = "471BC14A" };

            ParagraphProperties paragraphProperties34 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId8 = new ParagraphStyleId() { Val = "Heading2" };

            ParagraphMarkRunProperties paragraphMarkRunProperties34 = new ParagraphMarkRunProperties();
            Underline underline16 = new Underline() { Val = UnderlineValues.Single };

            paragraphMarkRunProperties34.Append(underline16);

            paragraphProperties34.Append(paragraphStyleId8);
            paragraphProperties34.Append(paragraphMarkRunProperties34);

            Run run108 = new Run();

            RunProperties runProperties125 = new RunProperties();
            Underline underline17 = new Underline() { Val = UnderlineValues.Single };

            runProperties125.Append(underline17);
            Text text94 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text94.Text = "4. ";

            run108.Append(runProperties125);
            run108.Append(text94);

            Run run109 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00D778B7" };

            RunProperties runProperties126 = new RunProperties();
            Underline underline18 = new Underline() { Val = UnderlineValues.Single };

            runProperties126.Append(underline18);
            Text text95 = new Text();
            text95.Text = "TimeLine";

            run109.Append(runProperties126);
            run109.Append(text95);

            paragraph35.Append(paragraphProperties34);
            paragraph35.Append(run108);
            paragraph35.Append(run109);

            Paragraph paragraph36 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00E3016A", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00E3016A", ParagraphId = "0AAC193C", TextId = "77777777" };

            ParagraphProperties paragraphProperties35 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties35 = new ParagraphMarkRunProperties();
            RunFonts runFonts133 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize143 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript135 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties35.Append(runFonts133);
            paragraphMarkRunProperties35.Append(fontSize143);
            paragraphMarkRunProperties35.Append(fontSizeComplexScript135);

            paragraphProperties35.Append(paragraphMarkRunProperties35);

            Run run110 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties127 = new RunProperties();
            RunFonts runFonts134 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize144 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript136 = new FontSizeComplexScript() { Val = "22" };

            runProperties127.Append(runFonts134);
            runProperties127.Append(fontSize144);
            runProperties127.Append(fontSizeComplexScript136);
            Text text96 = new Text();
            text96.Text = "*Please note that dates are not confirmed until appro";

            run110.Append(runProperties127);
            run110.Append(text96);

            Run run111 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "001D2D91" };

            RunProperties runProperties128 = new RunProperties();
            RunFonts runFonts135 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize145 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript137 = new FontSizeComplexScript() { Val = "22" };

            runProperties128.Append(runFonts135);
            runProperties128.Append(fontSize145);
            runProperties128.Append(fontSizeComplexScript137);
            Text text97 = new Text();
            text97.Text = "ved by technical management sign";

            run111.Append(runProperties128);
            run111.Append(text97);

            Run run112 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties129 = new RunProperties();
            RunFonts runFonts136 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize146 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript138 = new FontSizeComplexScript() { Val = "22" };

            runProperties129.Append(runFonts136);
            runProperties129.Append(fontSize146);
            runProperties129.Append(fontSizeComplexScript138);
            Text text98 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text98.Text = " off  ";

            run112.Append(runProperties129);
            run112.Append(text98);

            paragraph36.Append(paragraphProperties35);
            paragraph36.Append(run110);
            paragraph36.Append(run111);
            paragraph36.Append(run112);

            Paragraph paragraph37 = new Paragraph() { RsidParagraphAddition = "00F12AD5", RsidRunAdditionDefault = "007F295C", ParagraphId = "130A8903", TextId = "75B9CC04" };

            ParagraphProperties paragraphProperties36 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties36 = new ParagraphMarkRunProperties();
            RunFonts runFonts137 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            Bold bold21 = new Bold();
            BoldComplexScript boldComplexScript3 = new BoldComplexScript();
            Italic italic5 = new Italic();
            ItalicComplexScript italicComplexScript3 = new ItalicComplexScript();
            FontSize fontSize147 = new FontSize() { Val = "28" };
            FontSizeComplexScript fontSizeComplexScript139 = new FontSizeComplexScript() { Val = "28" };
            Underline underline19 = new Underline() { Val = UnderlineValues.Single };

            paragraphMarkRunProperties36.Append(runFonts137);
            paragraphMarkRunProperties36.Append(bold21);
            paragraphMarkRunProperties36.Append(boldComplexScript3);
            paragraphMarkRunProperties36.Append(italic5);
            paragraphMarkRunProperties36.Append(italicComplexScript3);
            paragraphMarkRunProperties36.Append(fontSize147);
            paragraphMarkRunProperties36.Append(fontSizeComplexScript139);
            paragraphMarkRunProperties36.Append(underline19);

            paragraphProperties36.Append(paragraphMarkRunProperties36);

            Run run113 = new Run();

            RunProperties runProperties130 = new RunProperties();
            RunFonts runFonts138 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold22 = new Bold();
            FontSize fontSize148 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript140 = new FontSizeComplexScript() { Val = "22" };

            runProperties130.Append(runFonts138);
            runProperties130.Append(bold22);
            runProperties130.Append(fontSize148);
            runProperties130.Append(fontSizeComplexScript140);
            Text text99 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text99.Text = "Proposed ";

            run113.Append(runProperties130);
            run113.Append(text99);

            Run run114 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00692A84" };

            RunProperties runProperties131 = new RunProperties();
            RunFonts runFonts139 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold23 = new Bold();
            FontSize fontSize149 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript141 = new FontSizeComplexScript() { Val = "22" };

            runProperties131.Append(runFonts139);
            runProperties131.Append(bold23);
            runProperties131.Append(fontSize149);
            runProperties131.Append(fontSizeComplexScript141);
            Text text100 = new Text();
            text100.Text = "Go Live Date";

            run114.Append(runProperties131);
            run114.Append(text100);

            Run run115 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00F56485" };

            RunProperties runProperties132 = new RunProperties();
            RunFonts runFonts140 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize150 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript142 = new FontSizeComplexScript() { Val = "22" };

            runProperties132.Append(runFonts140);
            runProperties132.Append(fontSize150);
            runProperties132.Append(fontSizeComplexScript142);
            Text text101 = new Text();
            text101.Text = "*";

            run115.Append(runProperties132);
            run115.Append(text101);

            Run run116 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00C22957" };

            RunProperties runProperties133 = new RunProperties();
            RunFonts runFonts141 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize151 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript143 = new FontSizeComplexScript() { Val = "22" };

            runProperties133.Append(runFonts141);
            runProperties133.Append(fontSize151);
            runProperties133.Append(fontSizeComplexScript143);
            Text text102 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text102.Text = " ";

            run116.Append(runProperties133);
            run116.Append(text102);

            Run run117 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "00273C84" };

            RunProperties runProperties134 = new RunProperties();
            RunFonts runFonts142 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color34 = new Color() { Val = "FF0000" };
            FontSize fontSize152 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript144 = new FontSizeComplexScript() { Val = "22" };

            runProperties134.Append(runFonts142);
            runProperties134.Append(color34);
            runProperties134.Append(fontSize152);
            runProperties134.Append(fontSizeComplexScript144);
            Text text103 = new Text();
            text103.Text = "00/00";

            run117.Append(runProperties134);
            run117.Append(text103);

            Run run118 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "00273C84" };

            RunProperties runProperties135 = new RunProperties();
            RunFonts runFonts143 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize153 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript145 = new FontSizeComplexScript() { Val = "22" };

            runProperties135.Append(runFonts143);
            runProperties135.Append(fontSize153);
            runProperties135.Append(fontSizeComplexScript145);
            Text text104 = new Text();
            text104.Text = "/";

            run118.Append(runProperties135);
            run118.Append(text104);

            Run run119 = new Run() { RsidRunAddition = "00273C84" };

            RunProperties runProperties136 = new RunProperties();
            RunFonts runFonts144 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize154 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript146 = new FontSizeComplexScript() { Val = "22" };

            runProperties136.Append(runFonts144);
            runProperties136.Append(fontSize154);
            runProperties136.Append(fontSizeComplexScript146);
            Text text105 = new Text();
            text105.Text = "20";

            run119.Append(runProperties136);
            run119.Append(text105);

            Run run120 = new Run() { RsidRunAddition = "00BC048A" };

            RunProperties runProperties137 = new RunProperties();
            RunFonts runFonts145 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize155 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript147 = new FontSizeComplexScript() { Val = "22" };

            runProperties137.Append(runFonts145);
            runProperties137.Append(fontSize155);
            runProperties137.Append(fontSizeComplexScript147);
            Text text106 = new Text();
            text106.Text = "1";

            run120.Append(runProperties137);
            run120.Append(text106);

            Run run121 = new Run() { RsidRunAddition = "00FF18D7" };

            RunProperties runProperties138 = new RunProperties();
            RunFonts runFonts146 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize156 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript148 = new FontSizeComplexScript() { Val = "22" };

            runProperties138.Append(runFonts146);
            runProperties138.Append(fontSize156);
            runProperties138.Append(fontSizeComplexScript148);
            Text text107 = new Text();
            text107.Text = "5";

            run121.Append(runProperties138);
            run121.Append(text107);

            paragraph37.Append(paragraphProperties36);
            paragraph37.Append(run113);
            paragraph37.Append(run114);
            paragraph37.Append(run115);
            paragraph37.Append(run116);
            paragraph37.Append(run117);
            paragraph37.Append(run118);
            paragraph37.Append(run119);
            paragraph37.Append(run120);
            paragraph37.Append(run121);

            Paragraph paragraph38 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C7F26", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00E518DD", ParagraphId = "0AAC1941", TextId = "73A81A6C" };

            ParagraphProperties paragraphProperties37 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId9 = new ParagraphStyleId() { Val = "Heading2" };

            ParagraphMarkRunProperties paragraphMarkRunProperties37 = new ParagraphMarkRunProperties();
            Underline underline20 = new Underline() { Val = UnderlineValues.Single };

            paragraphMarkRunProperties37.Append(underline20);

            paragraphProperties37.Append(paragraphStyleId9);
            paragraphProperties37.Append(paragraphMarkRunProperties37);

            Run run122 = new Run();

            RunProperties runProperties139 = new RunProperties();
            Underline underline21 = new Underline() { Val = UnderlineValues.Single };

            runProperties139.Append(underline21);
            LastRenderedPageBreak lastRenderedPageBreak2 = new LastRenderedPageBreak();
            Text text108 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text108.Text = "5. ";

            run122.Append(runProperties139);
            run122.Append(lastRenderedPageBreak2);
            run122.Append(text108);

            Run run123 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00D778B7" };

            RunProperties runProperties140 = new RunProperties();
            Underline underline22 = new Underline() { Val = UnderlineValues.Single };

            runProperties140.Append(underline22);
            Text text109 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text109.Text = "External Reference ";

            run123.Append(runProperties140);
            run123.Append(text109);

            Run run124 = new Run() { RsidRunAddition = "00116FA1" };

            RunProperties runProperties141 = new RunProperties();
            Underline underline23 = new Underline() { Val = UnderlineValues.Single };

            runProperties141.Append(underline23);
            Text text110 = new Text();
            text110.Text = "I";

            run124.Append(runProperties141);
            run124.Append(text110);

            Run run125 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00D778B7" };

            RunProperties runProperties142 = new RunProperties();
            Underline underline24 = new Underline() { Val = UnderlineValues.Single };

            runProperties142.Append(underline24);
            Text text111 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text111.Text = "nformation ";

            run125.Append(runProperties142);
            run125.Append(text111);

            paragraph38.Append(paragraphProperties37);
            paragraph38.Append(run122);
            paragraph38.Append(run123);
            paragraph38.Append(run124);
            paragraph38.Append(run125);

            Paragraph paragraph39 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C7F26", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00D778B7", ParagraphId = "0AAC1942", TextId = "77777777" };

            ParagraphProperties paragraphProperties38 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties38 = new ParagraphMarkRunProperties();
            RunFonts runFonts147 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color35 = new Color() { Val = "FF0000" };
            FontSize fontSize157 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript149 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties38.Append(runFonts147);
            paragraphMarkRunProperties38.Append(color35);
            paragraphMarkRunProperties38.Append(fontSize157);
            paragraphMarkRunProperties38.Append(fontSizeComplexScript149);

            paragraphProperties38.Append(paragraphMarkRunProperties38);

            Run run126 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties143 = new RunProperties();
            RunFonts runFonts148 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize158 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript150 = new FontSizeComplexScript() { Val = "22" };

            runProperties143.Append(runFonts148);
            runProperties143.Append(fontSize158);
            runProperties143.Append(fontSizeComplexScript150);
            Text text112 = new Text();
            text112.Text = "EA Number#";

            run126.Append(runProperties143);
            run126.Append(text112);

            Run run127 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00C22957" };

            RunProperties runProperties144 = new RunProperties();
            RunFonts runFonts149 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize159 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript151 = new FontSizeComplexScript() { Val = "22" };

            runProperties144.Append(runFonts149);
            runProperties144.Append(fontSize159);
            runProperties144.Append(fontSizeComplexScript151);
            Text text113 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text113.Text = " ";

            run127.Append(runProperties144);
            run127.Append(text113);

            Run run128 = new Run() { RsidRunAddition = "00273C84" };

            RunProperties runProperties145 = new RunProperties();
            RunFonts runFonts150 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color36 = new Color() { Val = "FF0000" };
            FontSize fontSize160 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript152 = new FontSizeComplexScript() { Val = "22" };

            runProperties145.Append(runFonts150);
            runProperties145.Append(color36);
            runProperties145.Append(fontSize160);
            runProperties145.Append(fontSizeComplexScript152);
            Text text114 = new Text();
            text114.Text = "xxxxxxxxxx";

            run128.Append(runProperties145);
            run128.Append(text114);

            paragraph39.Append(paragraphProperties38);
            paragraph39.Append(run126);
            paragraph39.Append(run127);
            paragraph39.Append(run128);

            Paragraph paragraph40 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00D778B7", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "003E56F4", ParagraphId = "0AAC1943", TextId = "4AEB31DD" };

            ParagraphProperties paragraphProperties39 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties39 = new ParagraphMarkRunProperties();
            RunFonts runFonts151 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize161 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript153 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties39.Append(runFonts151);
            paragraphMarkRunProperties39.Append(fontSize161);
            paragraphMarkRunProperties39.Append(fontSizeComplexScript153);

            paragraphProperties39.Append(paragraphMarkRunProperties39);

            Run run129 = new Run();

            RunProperties runProperties146 = new RunProperties();
            RunFonts runFonts152 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize162 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript154 = new FontSizeComplexScript() { Val = "22" };

            runProperties146.Append(runFonts152);
            runProperties146.Append(fontSize162);
            runProperties146.Append(fontSizeComplexScript154);
            Text text115 = new Text();
            text115.Text = "RITM";

            run129.Append(runProperties146);
            run129.Append(text115);

            Run run130 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00D778B7" };

            RunProperties runProperties147 = new RunProperties();
            RunFonts runFonts153 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize163 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript155 = new FontSizeComplexScript() { Val = "22" };

            runProperties147.Append(runFonts153);
            runProperties147.Append(fontSize163);
            runProperties147.Append(fontSizeComplexScript155);
            Text text116 = new Text();
            text116.Text = "#";

            run130.Append(runProperties147);
            run130.Append(text116);

            Run run131 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00C22957" };

            RunProperties runProperties148 = new RunProperties();
            RunFonts runFonts154 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize164 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript156 = new FontSizeComplexScript() { Val = "22" };

            runProperties148.Append(runFonts154);
            runProperties148.Append(fontSize164);
            runProperties148.Append(fontSizeComplexScript156);
            Text text117 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text117.Text = " ";

            run131.Append(runProperties148);
            run131.Append(text117);

            Run run132 = new Run() { RsidRunAddition = "00273C84" };

            RunProperties runProperties149 = new RunProperties();
            RunFonts runFonts155 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color37 = new Color() { Val = "FF0000" };
            FontSize fontSize165 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript157 = new FontSizeComplexScript() { Val = "22" };

            runProperties149.Append(runFonts155);
            runProperties149.Append(color37);
            runProperties149.Append(fontSize165);
            runProperties149.Append(fontSizeComplexScript157);
            Text text118 = new Text();
            text118.Text = "xxxxxx";

            run132.Append(runProperties149);
            run132.Append(text118);

            Run run133 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00C22957" };

            RunProperties runProperties150 = new RunProperties();
            RunFonts runFonts156 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize166 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript158 = new FontSizeComplexScript() { Val = "22" };

            runProperties150.Append(runFonts156);
            runProperties150.Append(fontSize166);
            runProperties150.Append(fontSizeComplexScript158);
            TabChar tabChar13 = new TabChar();

            run133.Append(runProperties150);
            run133.Append(tabChar13);

            paragraph40.Append(paragraphProperties39);
            paragraph40.Append(run129);
            paragraph40.Append(run130);
            paragraph40.Append(run131);
            paragraph40.Append(run132);
            paragraph40.Append(run133);

            Paragraph paragraph41 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00E052F2", RsidParagraphProperties = "00E052F2", RsidRunAdditionDefault = "00E052F2", ParagraphId = "25E57F3D", TextId = "14F12183" };

            ParagraphProperties paragraphProperties40 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties40 = new ParagraphMarkRunProperties();
            RunFonts runFonts157 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize167 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript159 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties40.Append(runFonts157);
            paragraphMarkRunProperties40.Append(fontSize167);
            paragraphMarkRunProperties40.Append(fontSizeComplexScript159);

            paragraphProperties40.Append(paragraphMarkRunProperties40);

            Run run134 = new Run();

            RunProperties runProperties151 = new RunProperties();
            RunFonts runFonts158 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize168 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript160 = new FontSizeComplexScript() { Val = "22" };

            runProperties151.Append(runFonts158);
            runProperties151.Append(fontSize168);
            runProperties151.Append(fontSizeComplexScript160);
            Text text119 = new Text();
            text119.Text = "REQ";

            run134.Append(runProperties151);
            run134.Append(text119);

            Run run135 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties152 = new RunProperties();
            RunFonts runFonts159 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize169 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript161 = new FontSizeComplexScript() { Val = "22" };

            runProperties152.Append(runFonts159);
            runProperties152.Append(fontSize169);
            runProperties152.Append(fontSizeComplexScript161);
            Text text120 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text120.Text = "# ";

            run135.Append(runProperties152);
            run135.Append(text120);

            Run run136 = new Run();

            RunProperties runProperties153 = new RunProperties();
            RunFonts runFonts160 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color38 = new Color() { Val = "FF0000" };
            FontSize fontSize170 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript162 = new FontSizeComplexScript() { Val = "22" };

            runProperties153.Append(runFonts160);
            runProperties153.Append(color38);
            runProperties153.Append(fontSize170);
            runProperties153.Append(fontSizeComplexScript162);
            Text text121 = new Text();
            text121.Text = "xxxxxx";

            run136.Append(runProperties153);
            run136.Append(text121);

            Run run137 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties154 = new RunProperties();
            RunFonts runFonts161 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize171 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript163 = new FontSizeComplexScript() { Val = "22" };

            runProperties154.Append(runFonts161);
            runProperties154.Append(fontSize171);
            runProperties154.Append(fontSizeComplexScript163);
            TabChar tabChar14 = new TabChar();

            run137.Append(runProperties154);
            run137.Append(tabChar14);

            paragraph41.Append(paragraphProperties40);
            paragraph41.Append(run134);
            paragraph41.Append(run135);
            paragraph41.Append(run136);
            paragraph41.Append(run137);

            Paragraph paragraph42 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00D778B7", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00D778B7", ParagraphId = "0AAC1944", TextId = "6B211ACA" };

            ParagraphProperties paragraphProperties41 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties41 = new ParagraphMarkRunProperties();
            RunFonts runFonts162 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color39 = new Color() { Val = "FF0000" };
            FontSize fontSize172 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript164 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties41.Append(runFonts162);
            paragraphMarkRunProperties41.Append(color39);
            paragraphMarkRunProperties41.Append(fontSize172);
            paragraphMarkRunProperties41.Append(fontSizeComplexScript164);

            paragraphProperties41.Append(paragraphMarkRunProperties41);

            Run run138 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties155 = new RunProperties();
            RunFonts runFonts163 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize173 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript165 = new FontSizeComplexScript() { Val = "22" };

            runProperties155.Append(runFonts163);
            runProperties155.Append(fontSize173);
            runProperties155.Append(fontSizeComplexScript165);
            Text text122 = new Text();
            text122.Text = "Clarity Project Name:";

            run138.Append(runProperties155);
            run138.Append(text122);

            Run run139 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00C22957" };

            RunProperties runProperties156 = new RunProperties();
            RunFonts runFonts164 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize174 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript166 = new FontSizeComplexScript() { Val = "22" };

            runProperties156.Append(runFonts164);
            runProperties156.Append(fontSize174);
            runProperties156.Append(fontSizeComplexScript166);
            Text text123 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text123.Text = " ";

            run139.Append(runProperties156);
            run139.Append(text123);

            Run run140 = new Run() { RsidRunProperties = "00BC048A", RsidRunAddition = "00C22957" };

            RunProperties runProperties157 = new RunProperties();
            RunFonts runFonts165 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color40 = new Color() { Val = "FF0000" };
            FontSize fontSize175 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript167 = new FontSizeComplexScript() { Val = "22" };

            runProperties157.Append(runFonts165);
            runProperties157.Append(color40);
            runProperties157.Append(fontSize175);
            runProperties157.Append(fontSizeComplexScript167);
            Text text124 = new Text();
            text124.Text = "C";

            run140.Append(runProperties157);
            run140.Append(text124);

            Run run141 = new Run() { RsidRunProperties = "00BC048A", RsidRunAddition = "00273C84" };

            RunProperties runProperties158 = new RunProperties();
            RunFonts runFonts166 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color41 = new Color() { Val = "FF0000" };
            FontSize fontSize176 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript168 = new FontSizeComplexScript() { Val = "22" };

            runProperties158.Append(runFonts166);
            runProperties158.Append(color41);
            runProperties158.Append(fontSize176);
            runProperties158.Append(fontSizeComplexScript168);
            Text text125 = new Text();
            text125.Text = "xx";

            run141.Append(runProperties158);
            run141.Append(text125);

            Run run142 = new Run() { RsidRunAddition = "00273C84" };

            RunProperties runProperties159 = new RunProperties();
            RunFonts runFonts167 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color42 = new Color() { Val = "FF0000" };
            FontSize fontSize177 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript169 = new FontSizeComplexScript() { Val = "22" };

            runProperties159.Append(runFonts167);
            runProperties159.Append(color42);
            runProperties159.Append(fontSize177);
            runProperties159.Append(fontSizeComplexScript169);
            Text text126 = new Text();
            text126.Text = "xxxx";

            run142.Append(runProperties159);
            run142.Append(text126);

            paragraph42.Append(paragraphProperties41);
            paragraph42.Append(run138);
            paragraph42.Append(run139);
            paragraph42.Append(run140);
            paragraph42.Append(run141);
            paragraph42.Append(run142);

            Paragraph paragraph43 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "003A7AC6", RsidParagraphProperties = "003A7AC6", RsidRunAdditionDefault = "003A7AC6", ParagraphId = "6BE0D1ED", TextId = "14A578CC" };

            ParagraphProperties paragraphProperties42 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties42 = new ParagraphMarkRunProperties();
            RunFonts runFonts168 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color43 = new Color() { Val = "FF0000" };
            FontSize fontSize178 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript170 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties42.Append(runFonts168);
            paragraphMarkRunProperties42.Append(color43);
            paragraphMarkRunProperties42.Append(fontSize178);
            paragraphMarkRunProperties42.Append(fontSizeComplexScript170);

            paragraphProperties42.Append(paragraphMarkRunProperties42);

            Run run143 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties160 = new RunProperties();
            RunFonts runFonts169 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize179 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript171 = new FontSizeComplexScript() { Val = "22" };

            runProperties160.Append(runFonts169);
            runProperties160.Append(fontSize179);
            runProperties160.Append(fontSizeComplexScript171);
            Text text127 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text127.Text = "Clarity ";

            run143.Append(runProperties160);
            run143.Append(text127);

            Run run144 = new Run();

            RunProperties runProperties161 = new RunProperties();
            RunFonts runFonts170 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize180 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript172 = new FontSizeComplexScript() { Val = "22" };

            runProperties161.Append(runFonts170);
            runProperties161.Append(fontSize180);
            runProperties161.Append(fontSizeComplexScript172);
            Text text128 = new Text();
            text128.Text = "ID";

            run144.Append(runProperties161);
            run144.Append(text128);

            Run run145 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties162 = new RunProperties();
            RunFonts runFonts171 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize181 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript173 = new FontSizeComplexScript() { Val = "22" };

            runProperties162.Append(runFonts171);
            runProperties162.Append(fontSize181);
            runProperties162.Append(fontSizeComplexScript173);
            Text text129 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text129.Text = ": ";

            run145.Append(runProperties162);
            run145.Append(text129);

            Run run146 = new Run();

            RunProperties runProperties163 = new RunProperties();
            RunFonts runFonts172 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color44 = new Color() { Val = "FF0000" };
            FontSize fontSize182 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript174 = new FontSizeComplexScript() { Val = "22" };

            runProperties163.Append(runFonts172);
            runProperties163.Append(color44);
            runProperties163.Append(fontSize182);
            runProperties163.Append(fontSizeComplexScript174);
            Text text130 = new Text();
            text130.Text = "xxxxxx";

            run146.Append(runProperties163);
            run146.Append(text130);

            paragraph43.Append(paragraphProperties42);
            paragraph43.Append(run143);
            paragraph43.Append(run144);
            paragraph43.Append(run145);
            paragraph43.Append(run146);

            Paragraph paragraph44 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "000C02D8", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00D778B7", ParagraphId = "0AAC1945", TextId = "01922929" };

            ParagraphProperties paragraphProperties43 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties43 = new ParagraphMarkRunProperties();
            RunFonts runFonts173 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize183 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript175 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties43.Append(runFonts173);
            paragraphMarkRunProperties43.Append(fontSize183);
            paragraphMarkRunProperties43.Append(fontSizeComplexScript175);

            paragraphProperties43.Append(paragraphMarkRunProperties43);

            Run run147 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties164 = new RunProperties();
            RunFonts runFonts174 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize184 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript176 = new FontSizeComplexScript() { Val = "22" };

            runProperties164.Append(runFonts174);
            runProperties164.Append(fontSize184);
            runProperties164.Append(fontSizeComplexScript176);
            Text text131 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text131.Text = "Project ";

            run147.Append(runProperties164);
            run147.Append(text131);

            Run run148 = new Run() { RsidRunAddition = "00116FA1" };

            RunProperties runProperties165 = new RunProperties();
            RunFonts runFonts175 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize185 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript177 = new FontSizeComplexScript() { Val = "22" };

            runProperties165.Append(runFonts175);
            runProperties165.Append(fontSize185);
            runProperties165.Append(fontSizeComplexScript177);
            Text text132 = new Text();
            text132.Text = "M";

            run148.Append(runProperties165);
            run148.Append(text132);

            Run run149 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties166 = new RunProperties();
            RunFonts runFonts176 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize186 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript178 = new FontSizeComplexScript() { Val = "22" };

            runProperties166.Append(runFonts176);
            runProperties166.Append(fontSize186);
            runProperties166.Append(fontSizeComplexScript178);
            Text text133 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text133.Text = "anager: ";

            run149.Append(runProperties166);
            run149.Append(text133);

            Run run150 = new Run() { RsidRunAddition = "00BC048A" };

            RunProperties runProperties167 = new RunProperties();
            RunFonts runFonts177 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color45 = new Color() { Val = "FF0000" };
            FontSize fontSize187 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript179 = new FontSizeComplexScript() { Val = "22" };

            runProperties167.Append(runFonts177);
            runProperties167.Append(color45);
            runProperties167.Append(fontSize187);
            runProperties167.Append(fontSizeComplexScript179);
            Text text134 = new Text();
            text134.Text = "JohnQ";

            run150.Append(runProperties167);
            run150.Append(text134);

            Run run151 = new Run() { RsidRunAddition = "00273C84" };

            RunProperties runProperties168 = new RunProperties();
            RunFonts runFonts178 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color46 = new Color() { Val = "FF0000" };
            FontSize fontSize188 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript180 = new FontSizeComplexScript() { Val = "22" };

            runProperties168.Append(runFonts178);
            runProperties168.Append(color46);
            runProperties168.Append(fontSize188);
            runProperties168.Append(fontSizeComplexScript180);
            Text text135 = new Text();
            text135.Text = "Public";

            run151.Append(runProperties168);
            run151.Append(text135);

            paragraph44.Append(paragraphProperties43);
            paragraph44.Append(run147);
            paragraph44.Append(run148);
            paragraph44.Append(run149);
            paragraph44.Append(run150);
            paragraph44.Append(run151);

            Paragraph paragraph45 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "000C02D8", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00E518DD", ParagraphId = "0AAC1946", TextId = "53FB6A45" };

            ParagraphProperties paragraphProperties44 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId10 = new ParagraphStyleId() { Val = "Heading2" };

            ParagraphMarkRunProperties paragraphMarkRunProperties44 = new ParagraphMarkRunProperties();
            Underline underline25 = new Underline() { Val = UnderlineValues.Single };

            paragraphMarkRunProperties44.Append(underline25);

            paragraphProperties44.Append(paragraphStyleId10);
            paragraphProperties44.Append(paragraphMarkRunProperties44);

            Run run152 = new Run();

            RunProperties runProperties169 = new RunProperties();
            Underline underline26 = new Underline() { Val = UnderlineValues.Single };

            runProperties169.Append(underline26);
            Text text136 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text136.Text = "6. ";

            run152.Append(runProperties169);
            run152.Append(text136);

            Run run153 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "000C02D8" };

            RunProperties runProperties170 = new RunProperties();
            Underline underline27 = new Underline() { Val = UnderlineValues.Single };

            runProperties170.Append(underline27);
            Text text137 = new Text();
            text137.Text = "Stakeholders";

            run153.Append(runProperties170);
            run153.Append(text137);

            paragraph45.Append(paragraphProperties44);
            paragraph45.Append(run152);
            paragraph45.Append(run153);

            Paragraph paragraph46 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "000C02D8", RsidParagraphProperties = "000C02D8", RsidRunAdditionDefault = "00697199", ParagraphId = "0AAC1947", TextId = "0A7C1152" };

            ParagraphProperties paragraphProperties45 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties45 = new ParagraphMarkRunProperties();
            RunFonts runFonts179 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize189 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript181 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties45.Append(runFonts179);
            paragraphMarkRunProperties45.Append(fontSize189);
            paragraphMarkRunProperties45.Append(fontSizeComplexScript181);

            paragraphProperties45.Append(paragraphMarkRunProperties45);

            Run run154 = new Run();

            RunProperties runProperties171 = new RunProperties();
            RunFonts runFonts180 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize190 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript182 = new FontSizeComplexScript() { Val = "22" };

            runProperties171.Append(runFonts180);
            runProperties171.Append(fontSize190);
            runProperties171.Append(fontSizeComplexScript182);
            Text text138 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text138.Text = "BJC IS ";

            run154.Append(runProperties171);
            run154.Append(text138);

            Run run155 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "000C02D8" };

            RunProperties runProperties172 = new RunProperties();
            RunFonts runFonts181 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize191 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript183 = new FontSizeComplexScript() { Val = "22" };

            runProperties172.Append(runFonts181);
            runProperties172.Append(fontSize191);
            runProperties172.Append(fontSizeComplexScript183);
            Text text139 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text139.Text = "Application ";

            run155.Append(runProperties172);
            run155.Append(text139);

            Run run156 = new Run() { RsidRunAddition = "003E56F4" };

            RunProperties runProperties173 = new RunProperties();
            RunFonts runFonts182 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize192 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript184 = new FontSizeComplexScript() { Val = "22" };

            runProperties173.Append(runFonts182);
            runProperties173.Append(fontSize192);
            runProperties173.Append(fontSizeComplexScript184);
            Text text140 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text140.Text = "Support ";

            run156.Append(runProperties173);
            run156.Append(text140);

            Run run157 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "000C02D8" };

            RunProperties runProperties174 = new RunProperties();
            RunFonts runFonts183 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize193 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript185 = new FontSizeComplexScript() { Val = "22" };

            runProperties174.Append(runFonts183);
            runProperties174.Append(fontSize193);
            runProperties174.Append(fontSizeComplexScript185);
            Text text141 = new Text();
            text141.Text = "Team";

            run157.Append(runProperties174);
            run157.Append(text141);

            paragraph46.Append(paragraphProperties45);
            paragraph46.Append(run154);
            paragraph46.Append(run155);
            paragraph46.Append(run156);
            paragraph46.Append(run157);

            Paragraph paragraph47 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "000C02D8", RsidParagraphProperties = "000C02D8", RsidRunAdditionDefault = "000C02D8", ParagraphId = "0AAC1948", TextId = "05D33DEE" };

            ParagraphProperties paragraphProperties46 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties46 = new ParagraphMarkRunProperties();
            RunFonts runFonts184 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize194 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript186 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties46.Append(runFonts184);
            paragraphMarkRunProperties46.Append(fontSize194);
            paragraphMarkRunProperties46.Append(fontSizeComplexScript186);

            paragraphProperties46.Append(paragraphMarkRunProperties46);

            Run run158 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties175 = new RunProperties();
            RunFonts runFonts185 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize195 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript187 = new FontSizeComplexScript() { Val = "22" };

            runProperties175.Append(runFonts185);
            runProperties175.Append(fontSize195);
            runProperties175.Append(fontSizeComplexScript187);
            TabChar tabChar15 = new TabChar();
            Text text142 = new Text();
            text142.Text = "Primary Contact:";

            run158.Append(runProperties175);
            run158.Append(tabChar15);
            run158.Append(text142);

            Run run159 = new Run();

            RunProperties runProperties176 = new RunProperties();
            RunFonts runFonts186 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize196 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript188 = new FontSizeComplexScript() { Val = "22" };

            runProperties176.Append(runFonts186);
            runProperties176.Append(fontSize196);
            runProperties176.Append(fontSizeComplexScript188);
            Text text143 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text143.Text = " ";

            run159.Append(runProperties176);
            run159.Append(text143);

            Run run160 = new Run() { RsidRunAddition = "006A5DD3" };

            RunProperties runProperties177 = new RunProperties();
            RunFonts runFonts187 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color47 = new Color() { Val = "FF0000" };
            FontSize fontSize197 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript189 = new FontSizeComplexScript() { Val = "22" };

            runProperties177.Append(runFonts187);
            runProperties177.Append(color47);
            runProperties177.Append(fontSize197);
            runProperties177.Append(fontSizeComplexScript189);
            Text text144 = new Text();
            text144.Text = "John";

            run160.Append(runProperties177);
            run160.Append(text144);

            Run run161 = new Run();

            RunProperties runProperties178 = new RunProperties();
            RunFonts runFonts188 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color48 = new Color() { Val = "FF0000" };
            FontSize fontSize198 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript190 = new FontSizeComplexScript() { Val = "22" };

            runProperties178.Append(runFonts188);
            runProperties178.Append(color48);
            runProperties178.Append(fontSize198);
            runProperties178.Append(fontSizeComplexScript190);
            Text text145 = new Text();
            text145.Text = "QPublic";

            run161.Append(runProperties178);
            run161.Append(text145);

            paragraph47.Append(paragraphProperties46);
            paragraph47.Append(run158);
            paragraph47.Append(run159);
            paragraph47.Append(run160);
            paragraph47.Append(run161);

            Paragraph paragraph48 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "000C02D8", RsidParagraphProperties = "000C02D8", RsidRunAdditionDefault = "000C02D8", ParagraphId = "0AAC1949", TextId = "30B4368C" };

            ParagraphProperties paragraphProperties47 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties47 = new ParagraphMarkRunProperties();
            RunFonts runFonts189 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize199 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript191 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties47.Append(runFonts189);
            paragraphMarkRunProperties47.Append(fontSize199);
            paragraphMarkRunProperties47.Append(fontSizeComplexScript191);

            paragraphProperties47.Append(paragraphMarkRunProperties47);

            Run run162 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties179 = new RunProperties();
            RunFonts runFonts190 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize200 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript192 = new FontSizeComplexScript() { Val = "22" };

            runProperties179.Append(runFonts190);
            runProperties179.Append(fontSize200);
            runProperties179.Append(fontSizeComplexScript192);
            TabChar tabChar16 = new TabChar();
            Text text146 = new Text();
            text146.Text = "Secondary Contact:";

            run162.Append(runProperties179);
            run162.Append(tabChar16);
            run162.Append(text146);

            Run run163 = new Run();

            RunProperties runProperties180 = new RunProperties();
            RunFonts runFonts191 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize201 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript193 = new FontSizeComplexScript() { Val = "22" };

            runProperties180.Append(runFonts191);
            runProperties180.Append(fontSize201);
            runProperties180.Append(fontSizeComplexScript193);
            Text text147 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text147.Text = " ";

            run163.Append(runProperties180);
            run163.Append(text147);

            Run run164 = new Run();

            RunProperties runProperties181 = new RunProperties();
            RunFonts runFonts192 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color49 = new Color() { Val = "FF0000" };
            FontSize fontSize202 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript194 = new FontSizeComplexScript() { Val = "22" };

            runProperties181.Append(runFonts192);
            runProperties181.Append(color49);
            runProperties181.Append(fontSize202);
            runProperties181.Append(fontSizeComplexScript194);
            Text text148 = new Text();
            text148.Text = "JohnQPublic";

            run164.Append(runProperties181);
            run164.Append(text148);

            paragraph48.Append(paragraphProperties47);
            paragraph48.Append(run162);
            paragraph48.Append(run163);
            paragraph48.Append(run164);

            Paragraph paragraph49 = new Paragraph() { RsidParagraphAddition = "000C02D8", RsidParagraphProperties = "000C02D8", RsidRunAdditionDefault = "003E56F4", ParagraphId = "0AAC194A", TextId = "6A77EAF7" };

            ParagraphProperties paragraphProperties48 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties48 = new ParagraphMarkRunProperties();
            RunFonts runFonts193 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color50 = new Color() { Val = "FF0000" };
            FontSize fontSize203 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript195 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties48.Append(runFonts193);
            paragraphMarkRunProperties48.Append(color50);
            paragraphMarkRunProperties48.Append(fontSize203);
            paragraphMarkRunProperties48.Append(fontSizeComplexScript195);

            paragraphProperties48.Append(paragraphMarkRunProperties48);

            Run run165 = new Run();

            RunProperties runProperties182 = new RunProperties();
            RunFonts runFonts194 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize204 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript196 = new FontSizeComplexScript() { Val = "22" };

            runProperties182.Append(runFonts194);
            runProperties182.Append(fontSize204);
            runProperties182.Append(fontSizeComplexScript196);
            TabChar tabChar17 = new TabChar();
            Text text149 = new Text();
            text149.Text = "T";

            run165.Append(runProperties182);
            run165.Append(tabChar17);
            run165.Append(text149);

            Run run166 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "000C02D8" };

            RunProperties runProperties183 = new RunProperties();
            RunFonts runFonts195 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize205 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript197 = new FontSizeComplexScript() { Val = "22" };

            runProperties183.Append(runFonts195);
            runProperties183.Append(fontSize205);
            runProperties183.Append(fontSizeComplexScript197);
            Text text150 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text150.Text = "eam name in ";

            run166.Append(runProperties183);
            run166.Append(text150);

            Run run167 = new Run();

            RunProperties runProperties184 = new RunProperties();
            RunFonts runFonts196 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize206 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript198 = new FontSizeComplexScript() { Val = "22" };

            runProperties184.Append(runFonts196);
            runProperties184.Append(fontSize206);
            runProperties184.Append(fontSizeComplexScript198);
            Text text151 = new Text();
            text151.Text = "ServiceNow";

            run167.Append(runProperties184);
            run167.Append(text151);

            Run run168 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "000C02D8" };

            RunProperties runProperties185 = new RunProperties();
            RunFonts runFonts197 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize207 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript199 = new FontSizeComplexScript() { Val = "22" };

            runProperties185.Append(runFonts197);
            runProperties185.Append(fontSize207);
            runProperties185.Append(fontSizeComplexScript199);
            Text text152 = new Text();
            text152.Text = ":";

            run168.Append(runProperties185);
            run168.Append(text152);

            Run run169 = new Run() { RsidRunAddition = "000C02D8" };

            RunProperties runProperties186 = new RunProperties();
            RunFonts runFonts198 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize208 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript200 = new FontSizeComplexScript() { Val = "22" };

            runProperties186.Append(runFonts198);
            runProperties186.Append(fontSize208);
            runProperties186.Append(fontSizeComplexScript200);
            Text text153 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text153.Text = " ";

            run169.Append(runProperties186);
            run169.Append(text153);

            Run run170 = new Run() { RsidRunAddition = "006A5DD3" };

            RunProperties runProperties187 = new RunProperties();
            RunFonts runFonts199 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color51 = new Color() { Val = "FF0000" };
            FontSize fontSize209 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript201 = new FontSizeComplexScript() { Val = "22" };

            runProperties187.Append(runFonts199);
            runProperties187.Append(color51);
            runProperties187.Append(fontSize209);
            runProperties187.Append(fontSizeComplexScript201);
            Text text154 = new Text();
            text154.Text = "xxxx";

            run170.Append(runProperties187);
            run170.Append(text154);

            paragraph49.Append(paragraphProperties48);
            paragraph49.Append(run165);
            paragraph49.Append(run166);
            paragraph49.Append(run167);
            paragraph49.Append(run168);
            paragraph49.Append(run169);
            paragraph49.Append(run170);

            Paragraph paragraph50 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "006A5DD3", RsidParagraphProperties = "000C02D8", RsidRunAdditionDefault = "006A5DD3", ParagraphId = "338D8FAB", TextId = "7B9F5065" };

            ParagraphProperties paragraphProperties49 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties49 = new ParagraphMarkRunProperties();
            RunFonts runFonts200 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize210 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript202 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties49.Append(runFonts200);
            paragraphMarkRunProperties49.Append(fontSize210);
            paragraphMarkRunProperties49.Append(fontSizeComplexScript202);

            paragraphProperties49.Append(paragraphMarkRunProperties49);

            Run run171 = new Run();

            RunProperties runProperties188 = new RunProperties();
            RunFonts runFonts201 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color52 = new Color() { Val = "FF0000" };
            FontSize fontSize211 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript203 = new FontSizeComplexScript() { Val = "22" };

            runProperties188.Append(runFonts201);
            runProperties188.Append(color52);
            runProperties188.Append(fontSize211);
            runProperties188.Append(fontSizeComplexScript203);
            TabChar tabChar18 = new TabChar();

            run171.Append(runProperties188);
            run171.Append(tabChar18);

            Run run172 = new Run() { RsidRunProperties = "006A5DD3" };

            RunProperties runProperties189 = new RunProperties();
            RunFonts runFonts202 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize212 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript204 = new FontSizeComplexScript() { Val = "22" };

            runProperties189.Append(runFonts202);
            runProperties189.Append(fontSize212);
            runProperties189.Append(fontSizeComplexScript204);
            Text text155 = new Text();
            text155.Text = "Application name in NSDB2:";

            run172.Append(runProperties189);
            run172.Append(text155);

            Run run173 = new Run();

            RunProperties runProperties190 = new RunProperties();
            RunFonts runFonts203 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color53 = new Color() { Val = "FF0000" };
            FontSize fontSize213 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript205 = new FontSizeComplexScript() { Val = "22" };

            runProperties190.Append(runFonts203);
            runProperties190.Append(color53);
            runProperties190.Append(fontSize213);
            runProperties190.Append(fontSizeComplexScript205);
            Text text156 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text156.Text = " ";

            run173.Append(runProperties190);
            run173.Append(text156);

            Run run174 = new Run() { RsidRunAddition = "00BC048A" };

            RunProperties runProperties191 = new RunProperties();
            RunFonts runFonts204 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color54 = new Color() { Val = "FF0000" };
            FontSize fontSize214 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript206 = new FontSizeComplexScript() { Val = "22" };

            runProperties191.Append(runFonts204);
            runProperties191.Append(color54);
            runProperties191.Append(fontSize214);
            runProperties191.Append(fontSizeComplexScript206);
            Text text157 = new Text();
            text157.Text = "xxxx";

            run174.Append(runProperties191);
            run174.Append(text157);

            paragraph50.Append(paragraphProperties49);
            paragraph50.Append(run171);
            paragraph50.Append(run172);
            paragraph50.Append(run173);
            paragraph50.Append(run174);

            Paragraph paragraph51 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00697199", RsidParagraphProperties = "00697199", RsidRunAdditionDefault = "00697199", ParagraphId = "53393EBD", TextId = "3A4C07D2" };

            ParagraphProperties paragraphProperties50 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties50 = new ParagraphMarkRunProperties();
            RunFonts runFonts205 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize215 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript207 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties50.Append(runFonts205);
            paragraphMarkRunProperties50.Append(fontSize215);
            paragraphMarkRunProperties50.Append(fontSizeComplexScript207);

            paragraphProperties50.Append(paragraphMarkRunProperties50);

            Run run175 = new Run();

            RunProperties runProperties192 = new RunProperties();
            RunFonts runFonts206 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize216 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript208 = new FontSizeComplexScript() { Val = "22" };

            runProperties192.Append(runFonts206);
            runProperties192.Append(fontSize216);
            runProperties192.Append(fontSizeComplexScript208);
            Text text158 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text158.Text = "BJC IS ";

            run175.Append(runProperties192);
            run175.Append(text158);

            Run run176 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties193 = new RunProperties();
            RunFonts runFonts207 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize217 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript209 = new FontSizeComplexScript() { Val = "22" };

            runProperties193.Append(runFonts207);
            runProperties193.Append(fontSize217);
            runProperties193.Append(fontSizeComplexScript209);
            Text text159 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text159.Text = "Application ";

            run176.Append(runProperties193);
            run176.Append(text159);

            Run run177 = new Run();

            RunProperties runProperties194 = new RunProperties();
            RunFonts runFonts208 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize218 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript210 = new FontSizeComplexScript() { Val = "22" };

            runProperties194.Append(runFonts208);
            runProperties194.Append(fontSize218);
            runProperties194.Append(fontSizeComplexScript210);
            Text text160 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text160.Text = "Implementation ";

            run177.Append(runProperties194);
            run177.Append(text160);

            Run run178 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties195 = new RunProperties();
            RunFonts runFonts209 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize219 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript211 = new FontSizeComplexScript() { Val = "22" };

            runProperties195.Append(runFonts209);
            runProperties195.Append(fontSize219);
            runProperties195.Append(fontSizeComplexScript211);
            Text text161 = new Text();
            text161.Text = "Team";

            run178.Append(runProperties195);
            run178.Append(text161);

            paragraph51.Append(paragraphProperties50);
            paragraph51.Append(run175);
            paragraph51.Append(run176);
            paragraph51.Append(run177);
            paragraph51.Append(run178);

            Paragraph paragraph52 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00697199", RsidParagraphProperties = "00697199", RsidRunAdditionDefault = "00697199", ParagraphId = "5628BF03", TextId = "77777777" };

            ParagraphProperties paragraphProperties51 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties51 = new ParagraphMarkRunProperties();
            RunFonts runFonts210 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize220 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript212 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties51.Append(runFonts210);
            paragraphMarkRunProperties51.Append(fontSize220);
            paragraphMarkRunProperties51.Append(fontSizeComplexScript212);

            paragraphProperties51.Append(paragraphMarkRunProperties51);

            Run run179 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties196 = new RunProperties();
            RunFonts runFonts211 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize221 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript213 = new FontSizeComplexScript() { Val = "22" };

            runProperties196.Append(runFonts211);
            runProperties196.Append(fontSize221);
            runProperties196.Append(fontSizeComplexScript213);
            TabChar tabChar19 = new TabChar();
            Text text162 = new Text();
            text162.Text = "Primary Contact:";

            run179.Append(runProperties196);
            run179.Append(tabChar19);
            run179.Append(text162);

            Run run180 = new Run();

            RunProperties runProperties197 = new RunProperties();
            RunFonts runFonts212 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize222 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript214 = new FontSizeComplexScript() { Val = "22" };

            runProperties197.Append(runFonts212);
            runProperties197.Append(fontSize222);
            runProperties197.Append(fontSizeComplexScript214);
            Text text163 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text163.Text = " ";

            run180.Append(runProperties197);
            run180.Append(text163);

            Run run181 = new Run();

            RunProperties runProperties198 = new RunProperties();
            RunFonts runFonts213 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color55 = new Color() { Val = "FF0000" };
            FontSize fontSize223 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript215 = new FontSizeComplexScript() { Val = "22" };

            runProperties198.Append(runFonts213);
            runProperties198.Append(color55);
            runProperties198.Append(fontSize223);
            runProperties198.Append(fontSizeComplexScript215);
            Text text164 = new Text();
            text164.Text = "JohnQPublic";

            run181.Append(runProperties198);
            run181.Append(text164);

            paragraph52.Append(paragraphProperties51);
            paragraph52.Append(run179);
            paragraph52.Append(run180);
            paragraph52.Append(run181);

            Paragraph paragraph53 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00697199", RsidParagraphProperties = "00697199", RsidRunAdditionDefault = "00697199", ParagraphId = "7434B492", TextId = "77777777" };

            ParagraphProperties paragraphProperties52 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties52 = new ParagraphMarkRunProperties();
            RunFonts runFonts214 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize224 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript216 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties52.Append(runFonts214);
            paragraphMarkRunProperties52.Append(fontSize224);
            paragraphMarkRunProperties52.Append(fontSizeComplexScript216);

            paragraphProperties52.Append(paragraphMarkRunProperties52);

            Run run182 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties199 = new RunProperties();
            RunFonts runFonts215 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize225 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript217 = new FontSizeComplexScript() { Val = "22" };

            runProperties199.Append(runFonts215);
            runProperties199.Append(fontSize225);
            runProperties199.Append(fontSizeComplexScript217);
            TabChar tabChar20 = new TabChar();
            Text text165 = new Text();
            text165.Text = "Secondary Contact:";

            run182.Append(runProperties199);
            run182.Append(tabChar20);
            run182.Append(text165);

            Run run183 = new Run();

            RunProperties runProperties200 = new RunProperties();
            RunFonts runFonts216 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize226 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript218 = new FontSizeComplexScript() { Val = "22" };

            runProperties200.Append(runFonts216);
            runProperties200.Append(fontSize226);
            runProperties200.Append(fontSizeComplexScript218);
            Text text166 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text166.Text = " ";

            run183.Append(runProperties200);
            run183.Append(text166);

            Run run184 = new Run();

            RunProperties runProperties201 = new RunProperties();
            RunFonts runFonts217 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color56 = new Color() { Val = "FF0000" };
            FontSize fontSize227 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript219 = new FontSizeComplexScript() { Val = "22" };

            runProperties201.Append(runFonts217);
            runProperties201.Append(color56);
            runProperties201.Append(fontSize227);
            runProperties201.Append(fontSizeComplexScript219);
            Text text167 = new Text();
            text167.Text = "JohnQPublic";

            run184.Append(runProperties201);
            run184.Append(text167);

            paragraph53.Append(paragraphProperties52);
            paragraph53.Append(run182);
            paragraph53.Append(run183);
            paragraph53.Append(run184);

            Paragraph paragraph54 = new Paragraph() { RsidParagraphAddition = "00697199", RsidParagraphProperties = "00697199", RsidRunAdditionDefault = "00697199", ParagraphId = "2500471E", TextId = "77777777" };

            ParagraphProperties paragraphProperties53 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties53 = new ParagraphMarkRunProperties();
            RunFonts runFonts218 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color57 = new Color() { Val = "FF0000" };
            FontSize fontSize228 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript220 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties53.Append(runFonts218);
            paragraphMarkRunProperties53.Append(color57);
            paragraphMarkRunProperties53.Append(fontSize228);
            paragraphMarkRunProperties53.Append(fontSizeComplexScript220);

            paragraphProperties53.Append(paragraphMarkRunProperties53);

            Run run185 = new Run();

            RunProperties runProperties202 = new RunProperties();
            RunFonts runFonts219 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize229 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript221 = new FontSizeComplexScript() { Val = "22" };

            runProperties202.Append(runFonts219);
            runProperties202.Append(fontSize229);
            runProperties202.Append(fontSizeComplexScript221);
            TabChar tabChar21 = new TabChar();
            Text text168 = new Text();
            text168.Text = "T";

            run185.Append(runProperties202);
            run185.Append(tabChar21);
            run185.Append(text168);

            Run run186 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties203 = new RunProperties();
            RunFonts runFonts220 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize230 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript222 = new FontSizeComplexScript() { Val = "22" };

            runProperties203.Append(runFonts220);
            runProperties203.Append(fontSize230);
            runProperties203.Append(fontSizeComplexScript222);
            Text text169 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text169.Text = "eam name in ";

            run186.Append(runProperties203);
            run186.Append(text169);

            Run run187 = new Run();

            RunProperties runProperties204 = new RunProperties();
            RunFonts runFonts221 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize231 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript223 = new FontSizeComplexScript() { Val = "22" };

            runProperties204.Append(runFonts221);
            runProperties204.Append(fontSize231);
            runProperties204.Append(fontSizeComplexScript223);
            Text text170 = new Text();
            text170.Text = "ServiceNow";

            run187.Append(runProperties204);
            run187.Append(text170);

            Run run188 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties205 = new RunProperties();
            RunFonts runFonts222 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize232 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript224 = new FontSizeComplexScript() { Val = "22" };

            runProperties205.Append(runFonts222);
            runProperties205.Append(fontSize232);
            runProperties205.Append(fontSizeComplexScript224);
            Text text171 = new Text();
            text171.Text = ":";

            run188.Append(runProperties205);
            run188.Append(text171);

            Run run189 = new Run();

            RunProperties runProperties206 = new RunProperties();
            RunFonts runFonts223 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize233 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript225 = new FontSizeComplexScript() { Val = "22" };

            runProperties206.Append(runFonts223);
            runProperties206.Append(fontSize233);
            runProperties206.Append(fontSizeComplexScript225);
            Text text172 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text172.Text = " ";

            run189.Append(runProperties206);
            run189.Append(text172);

            Run run190 = new Run();

            RunProperties runProperties207 = new RunProperties();
            RunFonts runFonts224 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color58 = new Color() { Val = "FF0000" };
            FontSize fontSize234 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript226 = new FontSizeComplexScript() { Val = "22" };

            runProperties207.Append(runFonts224);
            runProperties207.Append(color58);
            runProperties207.Append(fontSize234);
            runProperties207.Append(fontSizeComplexScript226);
            Text text173 = new Text();
            text173.Text = "xxxx";

            run190.Append(runProperties207);
            run190.Append(text173);

            paragraph54.Append(paragraphProperties53);
            paragraph54.Append(run185);
            paragraph54.Append(run186);
            paragraph54.Append(run187);
            paragraph54.Append(run188);
            paragraph54.Append(run189);
            paragraph54.Append(run190);

            Paragraph paragraph55 = new Paragraph() { RsidParagraphAddition = "00692A84", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "000C02D8", ParagraphId = "0AAC194B", TextId = "7C6BD176" };

            ParagraphProperties paragraphProperties54 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties54 = new ParagraphMarkRunProperties();
            RunFonts runFonts225 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color59 = new Color() { Val = "FF0000" };
            FontSize fontSize235 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript227 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties54.Append(runFonts225);
            paragraphMarkRunProperties54.Append(color59);
            paragraphMarkRunProperties54.Append(fontSize235);
            paragraphMarkRunProperties54.Append(fontSizeComplexScript227);

            paragraphProperties54.Append(paragraphMarkRunProperties54);

            Run run191 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties208 = new RunProperties();
            RunFonts runFonts226 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize236 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript228 = new FontSizeComplexScript() { Val = "22" };

            runProperties208.Append(runFonts226);
            runProperties208.Append(fontSize236);
            runProperties208.Append(fontSizeComplexScript228);
            Text text174 = new Text();
            text174.Text = "Vendor:";

            run191.Append(runProperties208);
            run191.Append(text174);

            Run run192 = new Run();

            RunProperties runProperties209 = new RunProperties();
            RunFonts runFonts227 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize237 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript229 = new FontSizeComplexScript() { Val = "22" };

            runProperties209.Append(runFonts227);
            runProperties209.Append(fontSize237);
            runProperties209.Append(fontSizeComplexScript229);
            Text text175 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text175.Text = " ";

            run192.Append(runProperties209);
            run192.Append(text175);

            Run run193 = new Run() { RsidRunAddition = "00BC048A" };

            RunProperties runProperties210 = new RunProperties();
            RunFonts runFonts228 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color60 = new Color() { Val = "FF0000" };
            FontSize fontSize238 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript230 = new FontSizeComplexScript() { Val = "22" };

            runProperties210.Append(runFonts228);
            runProperties210.Append(color60);
            runProperties210.Append(fontSize238);
            runProperties210.Append(fontSizeComplexScript230);
            Text text176 = new Text();
            text176.Text = "xxxx";

            run193.Append(runProperties210);
            run193.Append(text176);

            paragraph55.Append(paragraphProperties54);
            paragraph55.Append(run191);
            paragraph55.Append(run192);
            paragraph55.Append(run193);

            Paragraph paragraph56 = new Paragraph() { RsidParagraphAddition = "001A269D", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "001A269D", ParagraphId = "3B51146E", TextId = "42B0F3D3" };

            ParagraphProperties paragraphProperties55 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties55 = new ParagraphMarkRunProperties();
            RunFonts runFonts229 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color61 = new Color() { Val = "FF0000" };
            FontSize fontSize239 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript231 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties55.Append(runFonts229);
            paragraphMarkRunProperties55.Append(color61);
            paragraphMarkRunProperties55.Append(fontSize239);
            paragraphMarkRunProperties55.Append(fontSizeComplexScript231);

            paragraphProperties55.Append(paragraphMarkRunProperties55);

            Run run194 = new Run();

            RunProperties runProperties211 = new RunProperties();
            RunFonts runFonts230 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color62 = new Color() { Val = "FF0000" };
            FontSize fontSize240 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript232 = new FontSizeComplexScript() { Val = "22" };

            runProperties211.Append(runFonts230);
            runProperties211.Append(color62);
            runProperties211.Append(fontSize240);
            runProperties211.Append(fontSizeComplexScript232);
            TabChar tabChar22 = new TabChar();

            run194.Append(runProperties211);
            run194.Append(tabChar22);

            Run run195 = new Run();

            RunProperties runProperties212 = new RunProperties();
            RunFonts runFonts231 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize241 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript233 = new FontSizeComplexScript() { Val = "22" };

            runProperties212.Append(runFonts231);
            runProperties212.Append(fontSize241);
            runProperties212.Append(fontSizeComplexScript233);
            Text text177 = new Text();
            text177.Text = "Contact Information";

            run195.Append(runProperties212);
            run195.Append(text177);

            Run run196 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties213 = new RunProperties();
            RunFonts runFonts232 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize242 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript234 = new FontSizeComplexScript() { Val = "22" };

            runProperties213.Append(runFonts232);
            runProperties213.Append(fontSize242);
            runProperties213.Append(fontSizeComplexScript234);
            Text text178 = new Text();
            text178.Text = ":";

            run196.Append(runProperties213);
            run196.Append(text178);

            Run run197 = new Run();

            RunProperties runProperties214 = new RunProperties();
            RunFonts runFonts233 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize243 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript235 = new FontSizeComplexScript() { Val = "22" };

            runProperties214.Append(runFonts233);
            runProperties214.Append(fontSize243);
            runProperties214.Append(fontSizeComplexScript235);
            Text text179 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text179.Text = " ";

            run197.Append(runProperties214);
            run197.Append(text179);

            Run run198 = new Run();

            RunProperties runProperties215 = new RunProperties();
            RunFonts runFonts234 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color63 = new Color() { Val = "FF0000" };
            FontSize fontSize244 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript236 = new FontSizeComplexScript() { Val = "22" };

            runProperties215.Append(runFonts234);
            runProperties215.Append(color63);
            runProperties215.Append(fontSize244);
            runProperties215.Append(fontSizeComplexScript236);
            Text text180 = new Text();
            text180.Text = "Support phone number or e-mail";

            run198.Append(runProperties215);
            run198.Append(text180);

            paragraph56.Append(paragraphProperties55);
            paragraph56.Append(run194);
            paragraph56.Append(run195);
            paragraph56.Append(run196);
            paragraph56.Append(run197);
            paragraph56.Append(run198);

            Table table1 = new Table();

            TableProperties tableProperties1 = new TableProperties();
            TableWidth tableWidth1 = new TableWidth() { Width = "13055", Type = TableWidthUnitValues.Dxa };

            TableCellMarginDefault tableCellMarginDefault1 = new TableCellMarginDefault();
            TableCellLeftMargin tableCellLeftMargin1 = new TableCellLeftMargin() { Width = 0, Type = TableWidthValues.Dxa };
            TableCellRightMargin tableCellRightMargin1 = new TableCellRightMargin() { Width = 0, Type = TableWidthValues.Dxa };

            tableCellMarginDefault1.Append(tableCellLeftMargin1);
            tableCellMarginDefault1.Append(tableCellRightMargin1);
            TableLook tableLook1 = new TableLook() { Val = "04A0" };

            tableProperties1.Append(tableWidth1);
            tableProperties1.Append(tableCellMarginDefault1);
            tableProperties1.Append(tableLook1);

            TableGrid tableGrid1 = new TableGrid();
            GridColumn gridColumn1 = new GridColumn() { Width = "3065" };
            GridColumn gridColumn2 = new GridColumn() { Width = "9990" };

            tableGrid1.Append(gridColumn1);
            tableGrid1.Append(gridColumn2);

            TableRow tableRow1 = new TableRow() { RsidTableRowMarkRevision = "002C4440", RsidTableRowAddition = "003C2F92", RsidTableRowProperties = "002C4440", ParagraphId = "1F2D6614", TextId = "77777777" };

            TableRowProperties tableRowProperties1 = new TableRowProperties();
            TableRowHeight tableRowHeight1 = new TableRowHeight() { Val = (UInt32Value)255U };

            tableRowProperties1.Append(tableRowHeight1);

            TableCell tableCell1 = new TableCell();

            TableCellProperties tableCellProperties1 = new TableCellProperties();
            TableCellWidth tableCellWidth1 = new TableCellWidth() { Width = "3065", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders1 = new TableCellBorders();
            TopBorder topBorder2 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder1 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder1 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder1 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders1.Append(topBorder2);
            tableCellBorders1.Append(leftBorder1);
            tableCellBorders1.Append(bottomBorder1);
            tableCellBorders1.Append(rightBorder1);
            Shading shading1 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "FFFF00" };
            TableCellVerticalAlignment tableCellVerticalAlignment1 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark1 = new HideMark();

            tableCellProperties1.Append(tableCellWidth1);
            tableCellProperties1.Append(tableCellBorders1);
            tableCellProperties1.Append(shading1);
            tableCellProperties1.Append(tableCellVerticalAlignment1);
            tableCellProperties1.Append(hideMark1);

            Paragraph paragraph57 = new Paragraph() { RsidParagraphMarkRevision = "002C4440", RsidParagraphAddition = "003C2F92", RsidParagraphProperties = "003C2F92", RsidRunAdditionDefault = "003C2F92", ParagraphId = "4F1FF4C9", TextId = "64D41BB6" };

            ParagraphProperties paragraphProperties56 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties56 = new ParagraphMarkRunProperties();
            RunFonts runFonts235 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize245 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript237 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties56.Append(runFonts235);
            paragraphMarkRunProperties56.Append(fontSize245);
            paragraphMarkRunProperties56.Append(fontSizeComplexScript237);

            paragraphProperties56.Append(paragraphMarkRunProperties56);

            Run run199 = new Run() { RsidRunProperties = "002C4440" };

            RunProperties runProperties216 = new RunProperties();
            RunFonts runFonts236 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize246 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript238 = new FontSizeComplexScript() { Val = "22" };

            runProperties216.Append(runFonts236);
            runProperties216.Append(fontSize246);
            runProperties216.Append(fontSizeComplexScript238);
            Text text181 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text181.Text = "BJC IS Application ";

            run199.Append(runProperties216);
            run199.Append(text181);

            Run run200 = new Run() { RsidRunAddition = "002C4440" };

            RunProperties runProperties217 = new RunProperties();
            RunFonts runFonts237 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize247 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript239 = new FontSizeComplexScript() { Val = "22" };

            runProperties217.Append(runFonts237);
            runProperties217.Append(fontSize247);
            runProperties217.Append(fontSizeComplexScript239);
            Text text182 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text182.Text = "Support ";

            run200.Append(runProperties217);
            run200.Append(text182);

            Run run201 = new Run() { RsidRunProperties = "002C4440" };

            RunProperties runProperties218 = new RunProperties();
            RunFonts runFonts238 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize248 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript240 = new FontSizeComplexScript() { Val = "22" };

            runProperties218.Append(runFonts238);
            runProperties218.Append(fontSize248);
            runProperties218.Append(fontSizeComplexScript240);
            Text text183 = new Text();
            text183.Text = "Team";

            run201.Append(runProperties218);
            run201.Append(text183);

            paragraph57.Append(paragraphProperties56);
            paragraph57.Append(run199);
            paragraph57.Append(run200);
            paragraph57.Append(run201);

            tableCell1.Append(tableCellProperties1);
            tableCell1.Append(paragraph57);

            TableCell tableCell2 = new TableCell();

            TableCellProperties tableCellProperties2 = new TableCellProperties();
            TableCellWidth tableCellWidth2 = new TableCellWidth() { Width = "9990", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders2 = new TableCellBorders();
            TopBorder topBorder3 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder2 = new LeftBorder() { Val = BorderValues.Nil };
            BottomBorder bottomBorder2 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder2 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders2.Append(topBorder3);
            tableCellBorders2.Append(leftBorder2);
            tableCellBorders2.Append(bottomBorder2);
            tableCellBorders2.Append(rightBorder2);
            Shading shading2 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };
            TableCellVerticalAlignment tableCellVerticalAlignment2 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark2 = new HideMark();

            tableCellProperties2.Append(tableCellWidth2);
            tableCellProperties2.Append(tableCellBorders2);
            tableCellProperties2.Append(shading2);
            tableCellProperties2.Append(tableCellVerticalAlignment2);
            tableCellProperties2.Append(hideMark2);

            Paragraph paragraph58 = new Paragraph() { RsidParagraphMarkRevision = "002C4440", RsidParagraphAddition = "003C2F92", RsidParagraphProperties = "003C2F92", RsidRunAdditionDefault = "002C4440", ParagraphId = "17FEA5DA", TextId = "44556911" };

            ParagraphProperties paragraphProperties57 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties57 = new ParagraphMarkRunProperties();
            RunFonts runFonts239 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize249 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript241 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties57.Append(runFonts239);
            paragraphMarkRunProperties57.Append(fontSize249);
            paragraphMarkRunProperties57.Append(fontSizeComplexScript241);

            paragraphProperties57.Append(paragraphMarkRunProperties57);

            Run run202 = new Run();

            RunProperties runProperties219 = new RunProperties();
            RunFonts runFonts240 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize250 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript242 = new FontSizeComplexScript() { Val = "22" };

            runProperties219.Append(runFonts240);
            runProperties219.Append(fontSize250);
            runProperties219.Append(fontSizeComplexScript242);
            Text text184 = new Text();
            text184.Text = "W";

            run202.Append(runProperties219);
            run202.Append(text184);

            Run run203 = new Run() { RsidRunProperties = "002C4440", RsidRunAddition = "003C2F92" };

            RunProperties runProperties220 = new RunProperties();
            RunFonts runFonts241 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize251 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript243 = new FontSizeComplexScript() { Val = "22" };

            runProperties220.Append(runFonts241);
            runProperties220.Append(fontSize251);
            runProperties220.Append(fontSizeComplexScript243);
            Text text185 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text185.Text = "ill be the BJC IS Liaison between the vendor and BJC ";

            run203.Append(runProperties220);
            run203.Append(text185);

            paragraph58.Append(paragraphProperties57);
            paragraph58.Append(run202);
            paragraph58.Append(run203);

            tableCell2.Append(tableCellProperties2);
            tableCell2.Append(paragraph58);

            tableRow1.Append(tableRowProperties1);
            tableRow1.Append(tableCell1);
            tableRow1.Append(tableCell2);

            TableRow tableRow2 = new TableRow() { RsidTableRowMarkRevision = "002C4440", RsidTableRowAddition = "003C2F92", RsidTableRowProperties = "002C4440", ParagraphId = "6D33D696", TextId = "77777777" };

            TableRowProperties tableRowProperties2 = new TableRowProperties();
            TableRowHeight tableRowHeight2 = new TableRowHeight() { Val = (UInt32Value)255U };

            tableRowProperties2.Append(tableRowHeight2);

            TableCell tableCell3 = new TableCell();

            TableCellProperties tableCellProperties3 = new TableCellProperties();
            TableCellWidth tableCellWidth3 = new TableCellWidth() { Width = "3065", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders3 = new TableCellBorders();
            TopBorder topBorder4 = new TopBorder() { Val = BorderValues.Nil };
            LeftBorder leftBorder3 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder3 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder3 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders3.Append(topBorder4);
            tableCellBorders3.Append(leftBorder3);
            tableCellBorders3.Append(bottomBorder3);
            tableCellBorders3.Append(rightBorder3);
            Shading shading3 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "FFFF00" };
            TableCellVerticalAlignment tableCellVerticalAlignment3 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark3 = new HideMark();

            tableCellProperties3.Append(tableCellWidth3);
            tableCellProperties3.Append(tableCellBorders3);
            tableCellProperties3.Append(shading3);
            tableCellProperties3.Append(tableCellVerticalAlignment3);
            tableCellProperties3.Append(hideMark3);

            Paragraph paragraph59 = new Paragraph() { RsidParagraphMarkRevision = "002C4440", RsidParagraphAddition = "003C2F92", RsidParagraphProperties = "003C2F92", RsidRunAdditionDefault = "003C2F92", ParagraphId = "2BB1C47D", TextId = "4C758177" };

            ParagraphProperties paragraphProperties58 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties58 = new ParagraphMarkRunProperties();
            RunFonts runFonts242 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize252 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript244 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties58.Append(runFonts242);
            paragraphMarkRunProperties58.Append(fontSize252);
            paragraphMarkRunProperties58.Append(fontSizeComplexScript244);

            paragraphProperties58.Append(paragraphMarkRunProperties58);

            Run run204 = new Run() { RsidRunProperties = "002C4440" };

            RunProperties runProperties221 = new RunProperties();
            RunFonts runFonts243 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize253 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript245 = new FontSizeComplexScript() { Val = "22" };

            runProperties221.Append(runFonts243);
            runProperties221.Append(fontSize253);
            runProperties221.Append(fontSizeComplexScript245);
            Text text186 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text186.Text = "BJC IS Application ";

            run204.Append(runProperties221);
            run204.Append(text186);

            Run run205 = new Run() { RsidRunAddition = "002C4440" };

            RunProperties runProperties222 = new RunProperties();
            RunFonts runFonts244 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize254 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript246 = new FontSizeComplexScript() { Val = "22" };

            runProperties222.Append(runFonts244);
            runProperties222.Append(fontSize254);
            runProperties222.Append(fontSizeComplexScript246);
            Text text187 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text187.Text = "Support ";

            run205.Append(runProperties222);
            run205.Append(text187);

            Run run206 = new Run() { RsidRunProperties = "002C4440" };

            RunProperties runProperties223 = new RunProperties();
            RunFonts runFonts245 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize255 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript247 = new FontSizeComplexScript() { Val = "22" };

            runProperties223.Append(runFonts245);
            runProperties223.Append(fontSize255);
            runProperties223.Append(fontSizeComplexScript247);
            Text text188 = new Text();
            text188.Text = "Team";

            run206.Append(runProperties223);
            run206.Append(text188);

            paragraph59.Append(paragraphProperties58);
            paragraph59.Append(run204);
            paragraph59.Append(run205);
            paragraph59.Append(run206);

            tableCell3.Append(tableCellProperties3);
            tableCell3.Append(paragraph59);

            TableCell tableCell4 = new TableCell();

            TableCellProperties tableCellProperties4 = new TableCellProperties();
            TableCellWidth tableCellWidth4 = new TableCellWidth() { Width = "9990", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders4 = new TableCellBorders();
            TopBorder topBorder5 = new TopBorder() { Val = BorderValues.Nil };
            LeftBorder leftBorder4 = new LeftBorder() { Val = BorderValues.Nil };
            BottomBorder bottomBorder4 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder4 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders4.Append(topBorder5);
            tableCellBorders4.Append(leftBorder4);
            tableCellBorders4.Append(bottomBorder4);
            tableCellBorders4.Append(rightBorder4);
            Shading shading4 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };
            TableCellVerticalAlignment tableCellVerticalAlignment4 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark4 = new HideMark();

            tableCellProperties4.Append(tableCellWidth4);
            tableCellProperties4.Append(tableCellBorders4);
            tableCellProperties4.Append(shading4);
            tableCellProperties4.Append(tableCellVerticalAlignment4);
            tableCellProperties4.Append(hideMark4);

            Paragraph paragraph60 = new Paragraph() { RsidParagraphMarkRevision = "002C4440", RsidParagraphAddition = "003C2F92", RsidParagraphProperties = "003C2F92", RsidRunAdditionDefault = "002C4440", ParagraphId = "5DCBC43A", TextId = "1E5F05B4" };

            ParagraphProperties paragraphProperties59 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties59 = new ParagraphMarkRunProperties();
            RunFonts runFonts246 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize256 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript248 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties59.Append(runFonts246);
            paragraphMarkRunProperties59.Append(fontSize256);
            paragraphMarkRunProperties59.Append(fontSizeComplexScript248);

            paragraphProperties59.Append(paragraphMarkRunProperties59);

            Run run207 = new Run();

            RunProperties runProperties224 = new RunProperties();
            RunFonts runFonts247 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize257 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript249 = new FontSizeComplexScript() { Val = "22" };

            runProperties224.Append(runFonts247);
            runProperties224.Append(fontSize257);
            runProperties224.Append(fontSizeComplexScript249);
            Text text189 = new Text();
            text189.Text = "C";

            run207.Append(runProperties224);
            run207.Append(text189);

            Run run208 = new Run() { RsidRunProperties = "002C4440", RsidRunAddition = "003C2F92" };

            RunProperties runProperties225 = new RunProperties();
            RunFonts runFonts248 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize258 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript250 = new FontSizeComplexScript() { Val = "22" };

            runProperties225.Append(runFonts248);
            runProperties225.Append(fontSize258);
            runProperties225.Append(fontSizeComplexScript250);
            Text text190 = new Text();
            text190.Text = "ompletes necessary patching on the BJH monthly maintenance schedules";

            run208.Append(runProperties225);
            run208.Append(text190);

            paragraph60.Append(paragraphProperties59);
            paragraph60.Append(run207);
            paragraph60.Append(run208);

            tableCell4.Append(tableCellProperties4);
            tableCell4.Append(paragraph60);

            tableRow2.Append(tableRowProperties2);
            tableRow2.Append(tableCell3);
            tableRow2.Append(tableCell4);

            TableRow tableRow3 = new TableRow() { RsidTableRowMarkRevision = "002C4440", RsidTableRowAddition = "003C2F92", RsidTableRowProperties = "002C4440", ParagraphId = "3D99BE0B", TextId = "77777777" };

            TableRowProperties tableRowProperties3 = new TableRowProperties();
            TableRowHeight tableRowHeight3 = new TableRowHeight() { Val = (UInt32Value)255U };

            tableRowProperties3.Append(tableRowHeight3);

            TableCell tableCell5 = new TableCell();

            TableCellProperties tableCellProperties5 = new TableCellProperties();
            TableCellWidth tableCellWidth5 = new TableCellWidth() { Width = "3065", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders5 = new TableCellBorders();
            TopBorder topBorder6 = new TopBorder() { Val = BorderValues.Nil };
            LeftBorder leftBorder5 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder5 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder5 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders5.Append(topBorder6);
            tableCellBorders5.Append(leftBorder5);
            tableCellBorders5.Append(bottomBorder5);
            tableCellBorders5.Append(rightBorder5);
            Shading shading5 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "FFFF00" };
            TableCellVerticalAlignment tableCellVerticalAlignment5 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark5 = new HideMark();

            tableCellProperties5.Append(tableCellWidth5);
            tableCellProperties5.Append(tableCellBorders5);
            tableCellProperties5.Append(shading5);
            tableCellProperties5.Append(tableCellVerticalAlignment5);
            tableCellProperties5.Append(hideMark5);

            Paragraph paragraph61 = new Paragraph() { RsidParagraphMarkRevision = "002C4440", RsidParagraphAddition = "003C2F92", RsidParagraphProperties = "003C2F92", RsidRunAdditionDefault = "003C2F92", ParagraphId = "78BC1972", TextId = "52F4828E" };

            ParagraphProperties paragraphProperties60 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties60 = new ParagraphMarkRunProperties();
            RunFonts runFonts249 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize259 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript251 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties60.Append(runFonts249);
            paragraphMarkRunProperties60.Append(fontSize259);
            paragraphMarkRunProperties60.Append(fontSizeComplexScript251);

            paragraphProperties60.Append(paragraphMarkRunProperties60);

            Run run209 = new Run() { RsidRunProperties = "002C4440" };

            RunProperties runProperties226 = new RunProperties();
            RunFonts runFonts250 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize260 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript252 = new FontSizeComplexScript() { Val = "22" };

            runProperties226.Append(runFonts250);
            runProperties226.Append(fontSize260);
            runProperties226.Append(fontSizeComplexScript252);
            Text text191 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text191.Text = "BJC IS Application ";

            run209.Append(runProperties226);
            run209.Append(text191);

            Run run210 = new Run() { RsidRunAddition = "002C4440" };

            RunProperties runProperties227 = new RunProperties();
            RunFonts runFonts251 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize261 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript253 = new FontSizeComplexScript() { Val = "22" };

            runProperties227.Append(runFonts251);
            runProperties227.Append(fontSize261);
            runProperties227.Append(fontSizeComplexScript253);
            Text text192 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text192.Text = "Support ";

            run210.Append(runProperties227);
            run210.Append(text192);

            Run run211 = new Run() { RsidRunProperties = "002C4440" };

            RunProperties runProperties228 = new RunProperties();
            RunFonts runFonts252 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize262 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript254 = new FontSizeComplexScript() { Val = "22" };

            runProperties228.Append(runFonts252);
            runProperties228.Append(fontSize262);
            runProperties228.Append(fontSizeComplexScript254);
            Text text193 = new Text();
            text193.Text = "Team";

            run211.Append(runProperties228);
            run211.Append(text193);

            paragraph61.Append(paragraphProperties60);
            paragraph61.Append(run209);
            paragraph61.Append(run210);
            paragraph61.Append(run211);

            tableCell5.Append(tableCellProperties5);
            tableCell5.Append(paragraph61);

            TableCell tableCell6 = new TableCell();

            TableCellProperties tableCellProperties6 = new TableCellProperties();
            TableCellWidth tableCellWidth6 = new TableCellWidth() { Width = "9990", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders6 = new TableCellBorders();
            TopBorder topBorder7 = new TopBorder() { Val = BorderValues.Nil };
            LeftBorder leftBorder6 = new LeftBorder() { Val = BorderValues.Nil };
            BottomBorder bottomBorder6 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder6 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders6.Append(topBorder7);
            tableCellBorders6.Append(leftBorder6);
            tableCellBorders6.Append(bottomBorder6);
            tableCellBorders6.Append(rightBorder6);
            Shading shading6 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };
            TableCellVerticalAlignment tableCellVerticalAlignment6 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark6 = new HideMark();

            tableCellProperties6.Append(tableCellWidth6);
            tableCellProperties6.Append(tableCellBorders6);
            tableCellProperties6.Append(shading6);
            tableCellProperties6.Append(tableCellVerticalAlignment6);
            tableCellProperties6.Append(hideMark6);

            Paragraph paragraph62 = new Paragraph() { RsidParagraphMarkRevision = "002C4440", RsidParagraphAddition = "003C2F92", RsidParagraphProperties = "003C2F92", RsidRunAdditionDefault = "002C4440", ParagraphId = "63292C6A", TextId = "1956DDB3" };

            ParagraphProperties paragraphProperties61 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties61 = new ParagraphMarkRunProperties();
            RunFonts runFonts253 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize263 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript255 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties61.Append(runFonts253);
            paragraphMarkRunProperties61.Append(fontSize263);
            paragraphMarkRunProperties61.Append(fontSizeComplexScript255);

            paragraphProperties61.Append(paragraphMarkRunProperties61);

            Run run212 = new Run();

            RunProperties runProperties229 = new RunProperties();
            RunFonts runFonts254 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize264 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript256 = new FontSizeComplexScript() { Val = "22" };

            runProperties229.Append(runFonts254);
            runProperties229.Append(fontSize264);
            runProperties229.Append(fontSizeComplexScript256);
            Text text194 = new Text();
            text194.Text = "I";

            run212.Append(runProperties229);
            run212.Append(text194);

            Run run213 = new Run() { RsidRunProperties = "002C4440", RsidRunAddition = "003C2F92" };

            RunProperties runProperties230 = new RunProperties();
            RunFonts runFonts255 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize265 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript257 = new FontSizeComplexScript() { Val = "22" };

            runProperties230.Append(runFonts255);
            runProperties230.Append(fontSize265);
            runProperties230.Append(fontSizeComplexScript257);
            Text text195 = new Text();
            text195.Text = "s the first line of  support for the Server within BJC";

            run213.Append(runProperties230);
            run213.Append(text195);

            paragraph62.Append(paragraphProperties61);
            paragraph62.Append(run212);
            paragraph62.Append(run213);

            tableCell6.Append(tableCellProperties6);
            tableCell6.Append(paragraph62);

            tableRow3.Append(tableRowProperties3);
            tableRow3.Append(tableCell5);
            tableRow3.Append(tableCell6);

            TableRow tableRow4 = new TableRow() { RsidTableRowMarkRevision = "002C4440", RsidTableRowAddition = "003C2F92", RsidTableRowProperties = "002C4440", ParagraphId = "3A362CC0", TextId = "77777777" };

            TableRowProperties tableRowProperties4 = new TableRowProperties();
            TableRowHeight tableRowHeight4 = new TableRowHeight() { Val = (UInt32Value)255U };

            tableRowProperties4.Append(tableRowHeight4);

            TableCell tableCell7 = new TableCell();

            TableCellProperties tableCellProperties7 = new TableCellProperties();
            TableCellWidth tableCellWidth7 = new TableCellWidth() { Width = "3065", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders7 = new TableCellBorders();
            TopBorder topBorder8 = new TopBorder() { Val = BorderValues.Nil };
            LeftBorder leftBorder7 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder7 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder7 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders7.Append(topBorder8);
            tableCellBorders7.Append(leftBorder7);
            tableCellBorders7.Append(bottomBorder7);
            tableCellBorders7.Append(rightBorder7);
            Shading shading7 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "FFFF00" };
            TableCellVerticalAlignment tableCellVerticalAlignment7 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark7 = new HideMark();

            tableCellProperties7.Append(tableCellWidth7);
            tableCellProperties7.Append(tableCellBorders7);
            tableCellProperties7.Append(shading7);
            tableCellProperties7.Append(tableCellVerticalAlignment7);
            tableCellProperties7.Append(hideMark7);

            Paragraph paragraph63 = new Paragraph() { RsidParagraphMarkRevision = "002C4440", RsidParagraphAddition = "003C2F92", RsidParagraphProperties = "003C2F92", RsidRunAdditionDefault = "003C2F92", ParagraphId = "4E1C762D", TextId = "094150A4" };

            ParagraphProperties paragraphProperties62 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties62 = new ParagraphMarkRunProperties();
            RunFonts runFonts256 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize266 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript258 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties62.Append(runFonts256);
            paragraphMarkRunProperties62.Append(fontSize266);
            paragraphMarkRunProperties62.Append(fontSizeComplexScript258);

            paragraphProperties62.Append(paragraphMarkRunProperties62);

            Run run214 = new Run() { RsidRunProperties = "002C4440" };

            RunProperties runProperties231 = new RunProperties();
            RunFonts runFonts257 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize267 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript259 = new FontSizeComplexScript() { Val = "22" };

            runProperties231.Append(runFonts257);
            runProperties231.Append(fontSize267);
            runProperties231.Append(fontSizeComplexScript259);
            Text text196 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text196.Text = "BJC IS Application ";

            run214.Append(runProperties231);
            run214.Append(text196);

            Run run215 = new Run() { RsidRunAddition = "002C4440" };

            RunProperties runProperties232 = new RunProperties();
            RunFonts runFonts258 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize268 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript260 = new FontSizeComplexScript() { Val = "22" };

            runProperties232.Append(runFonts258);
            runProperties232.Append(fontSize268);
            runProperties232.Append(fontSizeComplexScript260);
            Text text197 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text197.Text = "Support ";

            run215.Append(runProperties232);
            run215.Append(text197);

            Run run216 = new Run() { RsidRunProperties = "002C4440" };

            RunProperties runProperties233 = new RunProperties();
            RunFonts runFonts259 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize269 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript261 = new FontSizeComplexScript() { Val = "22" };

            runProperties233.Append(runFonts259);
            runProperties233.Append(fontSize269);
            runProperties233.Append(fontSizeComplexScript261);
            Text text198 = new Text();
            text198.Text = "Team";

            run216.Append(runProperties233);
            run216.Append(text198);

            paragraph63.Append(paragraphProperties62);
            paragraph63.Append(run214);
            paragraph63.Append(run215);
            paragraph63.Append(run216);

            tableCell7.Append(tableCellProperties7);
            tableCell7.Append(paragraph63);

            TableCell tableCell8 = new TableCell();

            TableCellProperties tableCellProperties8 = new TableCellProperties();
            TableCellWidth tableCellWidth8 = new TableCellWidth() { Width = "9990", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders8 = new TableCellBorders();
            TopBorder topBorder9 = new TopBorder() { Val = BorderValues.Nil };
            LeftBorder leftBorder8 = new LeftBorder() { Val = BorderValues.Nil };
            BottomBorder bottomBorder8 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder8 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders8.Append(topBorder9);
            tableCellBorders8.Append(leftBorder8);
            tableCellBorders8.Append(bottomBorder8);
            tableCellBorders8.Append(rightBorder8);
            Shading shading8 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };
            TableCellVerticalAlignment tableCellVerticalAlignment8 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark8 = new HideMark();

            tableCellProperties8.Append(tableCellWidth8);
            tableCellProperties8.Append(tableCellBorders8);
            tableCellProperties8.Append(shading8);
            tableCellProperties8.Append(tableCellVerticalAlignment8);
            tableCellProperties8.Append(hideMark8);

            Paragraph paragraph64 = new Paragraph() { RsidParagraphMarkRevision = "002C4440", RsidParagraphAddition = "003C2F92", RsidParagraphProperties = "003C2F92", RsidRunAdditionDefault = "002C4440", ParagraphId = "34EE6F72", TextId = "401295A8" };

            ParagraphProperties paragraphProperties63 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties63 = new ParagraphMarkRunProperties();
            RunFonts runFonts260 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize270 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript262 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties63.Append(runFonts260);
            paragraphMarkRunProperties63.Append(fontSize270);
            paragraphMarkRunProperties63.Append(fontSizeComplexScript262);

            paragraphProperties63.Append(paragraphMarkRunProperties63);

            Run run217 = new Run();

            RunProperties runProperties234 = new RunProperties();
            RunFonts runFonts261 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize271 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript263 = new FontSizeComplexScript() { Val = "22" };

            runProperties234.Append(runFonts261);
            runProperties234.Append(fontSize271);
            runProperties234.Append(fontSizeComplexScript263);
            Text text199 = new Text();
            text199.Text = "C";

            run217.Append(runProperties234);
            run217.Append(text199);

            Run run218 = new Run() { RsidRunProperties = "002C4440", RsidRunAddition = "003C2F92" };

            RunProperties runProperties235 = new RunProperties();
            RunFonts runFonts262 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize272 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript264 = new FontSizeComplexScript() { Val = "22" };

            runProperties235.Append(runFonts262);
            runProperties235.Append(fontSize272);
            runProperties235.Append(fontSizeComplexScript264);
            Text text200 = new Text();
            text200.Text = "oordinates maintenance with customer as needed";

            run218.Append(runProperties235);
            run218.Append(text200);

            paragraph64.Append(paragraphProperties63);
            paragraph64.Append(run217);
            paragraph64.Append(run218);

            tableCell8.Append(tableCellProperties8);
            tableCell8.Append(paragraph64);

            tableRow4.Append(tableRowProperties4);
            tableRow4.Append(tableCell7);
            tableRow4.Append(tableCell8);

            TableRow tableRow5 = new TableRow() { RsidTableRowMarkRevision = "002C4440", RsidTableRowAddition = "003C2F92", RsidTableRowProperties = "002C4440", ParagraphId = "520464AD", TextId = "77777777" };

            TableRowProperties tableRowProperties5 = new TableRowProperties();
            TableRowHeight tableRowHeight5 = new TableRowHeight() { Val = (UInt32Value)255U };

            tableRowProperties5.Append(tableRowHeight5);

            TableCell tableCell9 = new TableCell();

            TableCellProperties tableCellProperties9 = new TableCellProperties();
            TableCellWidth tableCellWidth9 = new TableCellWidth() { Width = "3065", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders9 = new TableCellBorders();
            TopBorder topBorder10 = new TopBorder() { Val = BorderValues.Nil };
            LeftBorder leftBorder9 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder9 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder9 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders9.Append(topBorder10);
            tableCellBorders9.Append(leftBorder9);
            tableCellBorders9.Append(bottomBorder9);
            tableCellBorders9.Append(rightBorder9);
            Shading shading9 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "FFFF00" };
            TableCellVerticalAlignment tableCellVerticalAlignment9 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark9 = new HideMark();

            tableCellProperties9.Append(tableCellWidth9);
            tableCellProperties9.Append(tableCellBorders9);
            tableCellProperties9.Append(shading9);
            tableCellProperties9.Append(tableCellVerticalAlignment9);
            tableCellProperties9.Append(hideMark9);

            Paragraph paragraph65 = new Paragraph() { RsidParagraphMarkRevision = "002C4440", RsidParagraphAddition = "003C2F92", RsidParagraphProperties = "003C2F92", RsidRunAdditionDefault = "003C2F92", ParagraphId = "4B5F8E67", TextId = "29BF48E5" };

            ParagraphProperties paragraphProperties64 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties64 = new ParagraphMarkRunProperties();
            RunFonts runFonts263 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize273 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript265 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties64.Append(runFonts263);
            paragraphMarkRunProperties64.Append(fontSize273);
            paragraphMarkRunProperties64.Append(fontSizeComplexScript265);

            paragraphProperties64.Append(paragraphMarkRunProperties64);

            Run run219 = new Run() { RsidRunProperties = "002C4440" };

            RunProperties runProperties236 = new RunProperties();
            RunFonts runFonts264 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize274 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript266 = new FontSizeComplexScript() { Val = "22" };

            runProperties236.Append(runFonts264);
            runProperties236.Append(fontSize274);
            runProperties236.Append(fontSizeComplexScript266);
            Text text201 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text201.Text = "BJC IS Application ";

            run219.Append(runProperties236);
            run219.Append(text201);

            Run run220 = new Run() { RsidRunAddition = "002C4440" };

            RunProperties runProperties237 = new RunProperties();
            RunFonts runFonts265 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize275 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript267 = new FontSizeComplexScript() { Val = "22" };

            runProperties237.Append(runFonts265);
            runProperties237.Append(fontSize275);
            runProperties237.Append(fontSizeComplexScript267);
            Text text202 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text202.Text = "Support ";

            run220.Append(runProperties237);
            run220.Append(text202);

            Run run221 = new Run() { RsidRunProperties = "002C4440" };

            RunProperties runProperties238 = new RunProperties();
            RunFonts runFonts266 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize276 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript268 = new FontSizeComplexScript() { Val = "22" };

            runProperties238.Append(runFonts266);
            runProperties238.Append(fontSize276);
            runProperties238.Append(fontSizeComplexScript268);
            Text text203 = new Text();
            text203.Text = "Team";

            run221.Append(runProperties238);
            run221.Append(text203);

            paragraph65.Append(paragraphProperties64);
            paragraph65.Append(run219);
            paragraph65.Append(run220);
            paragraph65.Append(run221);

            tableCell9.Append(tableCellProperties9);
            tableCell9.Append(paragraph65);

            TableCell tableCell10 = new TableCell();

            TableCellProperties tableCellProperties10 = new TableCellProperties();
            TableCellWidth tableCellWidth10 = new TableCellWidth() { Width = "9990", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders10 = new TableCellBorders();
            TopBorder topBorder11 = new TopBorder() { Val = BorderValues.Nil };
            LeftBorder leftBorder10 = new LeftBorder() { Val = BorderValues.Nil };
            BottomBorder bottomBorder10 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder10 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders10.Append(topBorder11);
            tableCellBorders10.Append(leftBorder10);
            tableCellBorders10.Append(bottomBorder10);
            tableCellBorders10.Append(rightBorder10);
            Shading shading10 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };
            TableCellVerticalAlignment tableCellVerticalAlignment10 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark10 = new HideMark();

            tableCellProperties10.Append(tableCellWidth10);
            tableCellProperties10.Append(tableCellBorders10);
            tableCellProperties10.Append(shading10);
            tableCellProperties10.Append(tableCellVerticalAlignment10);
            tableCellProperties10.Append(hideMark10);

            Paragraph paragraph66 = new Paragraph() { RsidParagraphMarkRevision = "002C4440", RsidParagraphAddition = "003C2F92", RsidParagraphProperties = "003C2F92", RsidRunAdditionDefault = "002C4440", ParagraphId = "2BE6D84A", TextId = "4D217734" };

            ParagraphProperties paragraphProperties65 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties65 = new ParagraphMarkRunProperties();
            RunFonts runFonts267 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize277 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript269 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties65.Append(runFonts267);
            paragraphMarkRunProperties65.Append(fontSize277);
            paragraphMarkRunProperties65.Append(fontSizeComplexScript269);

            paragraphProperties65.Append(paragraphMarkRunProperties65);

            Run run222 = new Run();

            RunProperties runProperties239 = new RunProperties();
            RunFonts runFonts268 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize278 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript270 = new FontSizeComplexScript() { Val = "22" };

            runProperties239.Append(runFonts268);
            runProperties239.Append(fontSize278);
            runProperties239.Append(fontSizeComplexScript270);
            Text text204 = new Text();
            text204.Text = "W";

            run222.Append(runProperties239);
            run222.Append(text204);

            Run run223 = new Run() { RsidRunProperties = "002C4440", RsidRunAddition = "003C2F92" };

            RunProperties runProperties240 = new RunProperties();
            RunFonts runFonts269 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize279 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript271 = new FontSizeComplexScript() { Val = "22" };

            runProperties240.Append(runFonts269);
            runProperties240.Append(fontSize279);
            runProperties240.Append(fontSizeComplexScript271);
            Text text205 = new Text();
            text205.Text = "ill  act on over-threshold alerts (CPU, disk space, etc)?";

            run223.Append(runProperties240);
            run223.Append(text205);

            paragraph66.Append(paragraphProperties65);
            paragraph66.Append(run222);
            paragraph66.Append(run223);

            tableCell10.Append(tableCellProperties10);
            tableCell10.Append(paragraph66);

            tableRow5.Append(tableRowProperties5);
            tableRow5.Append(tableCell9);
            tableRow5.Append(tableCell10);

            TableRow tableRow6 = new TableRow() { RsidTableRowMarkRevision = "002C4440", RsidTableRowAddition = "003C2F92", RsidTableRowProperties = "002C4440", ParagraphId = "2C75E444", TextId = "77777777" };

            TableRowProperties tableRowProperties6 = new TableRowProperties();
            TableRowHeight tableRowHeight6 = new TableRowHeight() { Val = (UInt32Value)255U };

            tableRowProperties6.Append(tableRowHeight6);

            TableCell tableCell11 = new TableCell();

            TableCellProperties tableCellProperties11 = new TableCellProperties();
            TableCellWidth tableCellWidth11 = new TableCellWidth() { Width = "3065", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders11 = new TableCellBorders();
            TopBorder topBorder12 = new TopBorder() { Val = BorderValues.Nil };
            LeftBorder leftBorder11 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder11 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder11 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders11.Append(topBorder12);
            tableCellBorders11.Append(leftBorder11);
            tableCellBorders11.Append(bottomBorder11);
            tableCellBorders11.Append(rightBorder11);
            Shading shading11 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "FFFF00" };
            TableCellVerticalAlignment tableCellVerticalAlignment11 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark11 = new HideMark();

            tableCellProperties11.Append(tableCellWidth11);
            tableCellProperties11.Append(tableCellBorders11);
            tableCellProperties11.Append(shading11);
            tableCellProperties11.Append(tableCellVerticalAlignment11);
            tableCellProperties11.Append(hideMark11);

            Paragraph paragraph67 = new Paragraph() { RsidParagraphMarkRevision = "002C4440", RsidParagraphAddition = "003C2F92", RsidParagraphProperties = "003C2F92", RsidRunAdditionDefault = "003C2F92", ParagraphId = "0D9719DE", TextId = "77777777" };

            ParagraphProperties paragraphProperties66 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties66 = new ParagraphMarkRunProperties();
            RunFonts runFonts270 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize280 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript272 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties66.Append(runFonts270);
            paragraphMarkRunProperties66.Append(fontSize280);
            paragraphMarkRunProperties66.Append(fontSizeComplexScript272);

            paragraphProperties66.Append(paragraphMarkRunProperties66);

            Run run224 = new Run() { RsidRunProperties = "002C4440" };

            RunProperties runProperties241 = new RunProperties();
            RunFonts runFonts271 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize281 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript273 = new FontSizeComplexScript() { Val = "22" };

            runProperties241.Append(runFonts271);
            runProperties241.Append(fontSize281);
            runProperties241.Append(fontSizeComplexScript273);
            Text text206 = new Text();
            text206.Text = "Vendor";

            run224.Append(runProperties241);
            run224.Append(text206);

            paragraph67.Append(paragraphProperties66);
            paragraph67.Append(run224);

            tableCell11.Append(tableCellProperties11);
            tableCell11.Append(paragraph67);

            TableCell tableCell12 = new TableCell();

            TableCellProperties tableCellProperties12 = new TableCellProperties();
            TableCellWidth tableCellWidth12 = new TableCellWidth() { Width = "9990", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders12 = new TableCellBorders();
            TopBorder topBorder13 = new TopBorder() { Val = BorderValues.Nil };
            LeftBorder leftBorder12 = new LeftBorder() { Val = BorderValues.Nil };
            BottomBorder bottomBorder12 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder12 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders12.Append(topBorder13);
            tableCellBorders12.Append(leftBorder12);
            tableCellBorders12.Append(bottomBorder12);
            tableCellBorders12.Append(rightBorder12);
            Shading shading12 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };
            TableCellVerticalAlignment tableCellVerticalAlignment12 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark12 = new HideMark();

            tableCellProperties12.Append(tableCellWidth12);
            tableCellProperties12.Append(tableCellBorders12);
            tableCellProperties12.Append(shading12);
            tableCellProperties12.Append(tableCellVerticalAlignment12);
            tableCellProperties12.Append(hideMark12);

            Paragraph paragraph68 = new Paragraph() { RsidParagraphMarkRevision = "002C4440", RsidParagraphAddition = "003C2F92", RsidParagraphProperties = "003C2F92", RsidRunAdditionDefault = "002C4440", ParagraphId = "78C80507", TextId = "0E6FA2A1" };

            ParagraphProperties paragraphProperties67 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties67 = new ParagraphMarkRunProperties();
            RunFonts runFonts272 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize282 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript274 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties67.Append(runFonts272);
            paragraphMarkRunProperties67.Append(fontSize282);
            paragraphMarkRunProperties67.Append(fontSizeComplexScript274);

            paragraphProperties67.Append(paragraphMarkRunProperties67);

            Run run225 = new Run();

            RunProperties runProperties242 = new RunProperties();
            RunFonts runFonts273 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize283 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript275 = new FontSizeComplexScript() { Val = "22" };

            runProperties242.Append(runFonts273);
            runProperties242.Append(fontSize283);
            runProperties242.Append(fontSizeComplexScript275);
            Text text207 = new Text();
            text207.Text = "H";

            run225.Append(runProperties242);
            run225.Append(text207);

            Run run226 = new Run() { RsidRunProperties = "002C4440", RsidRunAddition = "003C2F92" };

            RunProperties runProperties243 = new RunProperties();
            RunFonts runFonts274 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize284 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript276 = new FontSizeComplexScript() { Val = "22" };

            runProperties243.Append(runFonts274);
            runProperties243.Append(fontSize284);
            runProperties243.Append(fontSizeComplexScript276);
            Text text208 = new Text();
            text208.Text = "as full support of the application on the server including the SQL database.  Vendor will install application and SQL.   No BJC SQL support.";

            run226.Append(runProperties243);
            run226.Append(text208);

            paragraph68.Append(paragraphProperties67);
            paragraph68.Append(run225);
            paragraph68.Append(run226);

            tableCell12.Append(tableCellProperties12);
            tableCell12.Append(paragraph68);

            tableRow6.Append(tableRowProperties6);
            tableRow6.Append(tableCell11);
            tableRow6.Append(tableCell12);

            TableRow tableRow7 = new TableRow() { RsidTableRowMarkRevision = "002C4440", RsidTableRowAddition = "003C2F92", RsidTableRowProperties = "002C4440", ParagraphId = "7DA0DDC0", TextId = "77777777" };

            TableRowProperties tableRowProperties7 = new TableRowProperties();
            TableRowHeight tableRowHeight7 = new TableRowHeight() { Val = (UInt32Value)255U };

            tableRowProperties7.Append(tableRowHeight7);

            TableCell tableCell13 = new TableCell();

            TableCellProperties tableCellProperties13 = new TableCellProperties();
            TableCellWidth tableCellWidth13 = new TableCellWidth() { Width = "3065", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders13 = new TableCellBorders();
            TopBorder topBorder14 = new TopBorder() { Val = BorderValues.Nil };
            LeftBorder leftBorder13 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder13 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder13 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders13.Append(topBorder14);
            tableCellBorders13.Append(leftBorder13);
            tableCellBorders13.Append(bottomBorder13);
            tableCellBorders13.Append(rightBorder13);
            Shading shading13 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "FFFF00" };
            TableCellVerticalAlignment tableCellVerticalAlignment13 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark13 = new HideMark();

            tableCellProperties13.Append(tableCellWidth13);
            tableCellProperties13.Append(tableCellBorders13);
            tableCellProperties13.Append(shading13);
            tableCellProperties13.Append(tableCellVerticalAlignment13);
            tableCellProperties13.Append(hideMark13);

            Paragraph paragraph69 = new Paragraph() { RsidParagraphMarkRevision = "002C4440", RsidParagraphAddition = "003C2F92", RsidParagraphProperties = "003C2F92", RsidRunAdditionDefault = "003C2F92", ParagraphId = "41C2CEF5", TextId = "77777777" };

            ParagraphProperties paragraphProperties68 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties68 = new ParagraphMarkRunProperties();
            RunFonts runFonts275 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize285 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript277 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties68.Append(runFonts275);
            paragraphMarkRunProperties68.Append(fontSize285);
            paragraphMarkRunProperties68.Append(fontSizeComplexScript277);

            paragraphProperties68.Append(paragraphMarkRunProperties68);

            Run run227 = new Run() { RsidRunProperties = "002C4440" };

            RunProperties runProperties244 = new RunProperties();
            RunFonts runFonts276 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize286 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript278 = new FontSizeComplexScript() { Val = "22" };

            runProperties244.Append(runFonts276);
            runProperties244.Append(fontSize286);
            runProperties244.Append(fontSizeComplexScript278);
            Text text209 = new Text();
            text209.Text = "Customer";

            run227.Append(runProperties244);
            run227.Append(text209);

            paragraph69.Append(paragraphProperties68);
            paragraph69.Append(run227);

            tableCell13.Append(tableCellProperties13);
            tableCell13.Append(paragraph69);

            TableCell tableCell14 = new TableCell();

            TableCellProperties tableCellProperties14 = new TableCellProperties();
            TableCellWidth tableCellWidth14 = new TableCellWidth() { Width = "9990", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders14 = new TableCellBorders();
            TopBorder topBorder15 = new TopBorder() { Val = BorderValues.Nil };
            LeftBorder leftBorder14 = new LeftBorder() { Val = BorderValues.Nil };
            BottomBorder bottomBorder14 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder14 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders14.Append(topBorder15);
            tableCellBorders14.Append(leftBorder14);
            tableCellBorders14.Append(bottomBorder14);
            tableCellBorders14.Append(rightBorder14);
            Shading shading14 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };
            TableCellVerticalAlignment tableCellVerticalAlignment14 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark14 = new HideMark();

            tableCellProperties14.Append(tableCellWidth14);
            tableCellProperties14.Append(tableCellBorders14);
            tableCellProperties14.Append(shading14);
            tableCellProperties14.Append(tableCellVerticalAlignment14);
            tableCellProperties14.Append(hideMark14);

            Paragraph paragraph70 = new Paragraph() { RsidParagraphMarkRevision = "002C4440", RsidParagraphAddition = "003C2F92", RsidParagraphProperties = "003C2F92", RsidRunAdditionDefault = "002C4440", ParagraphId = "698A6711", TextId = "0B1F45AF" };

            ParagraphProperties paragraphProperties69 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties69 = new ParagraphMarkRunProperties();
            RunFonts runFonts277 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize287 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript279 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties69.Append(runFonts277);
            paragraphMarkRunProperties69.Append(fontSize287);
            paragraphMarkRunProperties69.Append(fontSizeComplexScript279);

            paragraphProperties69.Append(paragraphMarkRunProperties69);

            Run run228 = new Run();

            RunProperties runProperties245 = new RunProperties();
            RunFonts runFonts278 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize288 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript280 = new FontSizeComplexScript() { Val = "22" };

            runProperties245.Append(runFonts278);
            runProperties245.Append(fontSize288);
            runProperties245.Append(fontSizeComplexScript280);
            Text text210 = new Text();
            text210.Text = "W";

            run228.Append(runProperties245);
            run228.Append(text210);

            Run run229 = new Run() { RsidRunProperties = "002C4440", RsidRunAddition = "003C2F92" };

            RunProperties runProperties246 = new RunProperties();
            RunFonts runFonts279 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize289 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript281 = new FontSizeComplexScript() { Val = "22" };

            runProperties246.Append(runFonts279);
            runProperties246.Append(fontSize289);
            runProperties246.Append(fontSizeComplexScript281);
            Text text211 = new Text();
            text211.Text = "ill call the vendor directly on issues with the product";

            run229.Append(runProperties246);
            run229.Append(text211);

            paragraph70.Append(paragraphProperties69);
            paragraph70.Append(run228);
            paragraph70.Append(run229);

            tableCell14.Append(tableCellProperties14);
            tableCell14.Append(paragraph70);

            tableRow7.Append(tableRowProperties7);
            tableRow7.Append(tableCell13);
            tableRow7.Append(tableCell14);

            TableRow tableRow8 = new TableRow() { RsidTableRowMarkRevision = "002C4440", RsidTableRowAddition = "003C2F92", RsidTableRowProperties = "002C4440", ParagraphId = "1495B327", TextId = "77777777" };

            TableRowProperties tableRowProperties8 = new TableRowProperties();
            TableRowHeight tableRowHeight8 = new TableRowHeight() { Val = (UInt32Value)255U };

            tableRowProperties8.Append(tableRowHeight8);

            TableCell tableCell15 = new TableCell();

            TableCellProperties tableCellProperties15 = new TableCellProperties();
            TableCellWidth tableCellWidth15 = new TableCellWidth() { Width = "3065", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders15 = new TableCellBorders();
            TopBorder topBorder16 = new TopBorder() { Val = BorderValues.Nil };
            LeftBorder leftBorder15 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder15 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder15 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders15.Append(topBorder16);
            tableCellBorders15.Append(leftBorder15);
            tableCellBorders15.Append(bottomBorder15);
            tableCellBorders15.Append(rightBorder15);
            Shading shading15 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "FFFF00" };
            TableCellVerticalAlignment tableCellVerticalAlignment15 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark15 = new HideMark();

            tableCellProperties15.Append(tableCellWidth15);
            tableCellProperties15.Append(tableCellBorders15);
            tableCellProperties15.Append(shading15);
            tableCellProperties15.Append(tableCellVerticalAlignment15);
            tableCellProperties15.Append(hideMark15);

            Paragraph paragraph71 = new Paragraph() { RsidParagraphMarkRevision = "002C4440", RsidParagraphAddition = "003C2F92", RsidParagraphProperties = "003C2F92", RsidRunAdditionDefault = "003C2F92", ParagraphId = "1F680224", TextId = "77777777" };

            ParagraphProperties paragraphProperties70 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties70 = new ParagraphMarkRunProperties();
            RunFonts runFonts280 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize290 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript282 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties70.Append(runFonts280);
            paragraphMarkRunProperties70.Append(fontSize290);
            paragraphMarkRunProperties70.Append(fontSizeComplexScript282);

            paragraphProperties70.Append(paragraphMarkRunProperties70);

            Run run230 = new Run() { RsidRunProperties = "002C4440" };

            RunProperties runProperties247 = new RunProperties();
            RunFonts runFonts281 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize291 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript283 = new FontSizeComplexScript() { Val = "22" };

            runProperties247.Append(runFonts281);
            runProperties247.Append(fontSize291);
            runProperties247.Append(fontSizeComplexScript283);
            Text text212 = new Text();
            text212.Text = "BJC Tech Services";

            run230.Append(runProperties247);
            run230.Append(text212);

            paragraph71.Append(paragraphProperties70);
            paragraph71.Append(run230);

            tableCell15.Append(tableCellProperties15);
            tableCell15.Append(paragraph71);

            TableCell tableCell16 = new TableCell();

            TableCellProperties tableCellProperties16 = new TableCellProperties();
            TableCellWidth tableCellWidth16 = new TableCellWidth() { Width = "9990", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders16 = new TableCellBorders();
            TopBorder topBorder17 = new TopBorder() { Val = BorderValues.Nil };
            LeftBorder leftBorder16 = new LeftBorder() { Val = BorderValues.Nil };
            BottomBorder bottomBorder16 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder16 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders16.Append(topBorder17);
            tableCellBorders16.Append(leftBorder16);
            tableCellBorders16.Append(bottomBorder16);
            tableCellBorders16.Append(rightBorder16);
            Shading shading16 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };
            TableCellVerticalAlignment tableCellVerticalAlignment16 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark16 = new HideMark();

            tableCellProperties16.Append(tableCellWidth16);
            tableCellProperties16.Append(tableCellBorders16);
            tableCellProperties16.Append(shading16);
            tableCellProperties16.Append(tableCellVerticalAlignment16);
            tableCellProperties16.Append(hideMark16);

            Paragraph paragraph72 = new Paragraph() { RsidParagraphMarkRevision = "002C4440", RsidParagraphAddition = "003C2F92", RsidParagraphProperties = "003C2F92", RsidRunAdditionDefault = "002C4440", ParagraphId = "7426EE6D", TextId = "0DC1F4AC" };

            ParagraphProperties paragraphProperties71 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties71 = new ParagraphMarkRunProperties();
            RunFonts runFonts282 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize292 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript284 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties71.Append(runFonts282);
            paragraphMarkRunProperties71.Append(fontSize292);
            paragraphMarkRunProperties71.Append(fontSizeComplexScript284);

            paragraphProperties71.Append(paragraphMarkRunProperties71);

            Run run231 = new Run();

            RunProperties runProperties248 = new RunProperties();
            RunFonts runFonts283 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize293 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript285 = new FontSizeComplexScript() { Val = "22" };

            runProperties248.Append(runFonts283);
            runProperties248.Append(fontSize293);
            runProperties248.Append(fontSizeComplexScript285);
            Text text213 = new Text();
            text213.Text = "W";

            run231.Append(runProperties248);
            run231.Append(text213);

            Run run232 = new Run() { RsidRunProperties = "002C4440", RsidRunAddition = "003C2F92" };

            RunProperties runProperties249 = new RunProperties();
            RunFonts runFonts284 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize294 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript286 = new FontSizeComplexScript() { Val = "22" };

            runProperties249.Append(runFonts284);
            runProperties249.Append(fontSize294);
            runProperties249.Append(fontSizeComplexScript286);
            Text text214 = new Text();
            text214.Text = "ill contact the app team as needed with incidents or issues with server.   App team will contact ISOC if initial OS/hardware troubleshooting is recommended by vendor.  ISOC will escalate to appropriate Tier 3 team as needed.";

            run232.Append(runProperties249);
            run232.Append(text214);

            paragraph72.Append(paragraphProperties71);
            paragraph72.Append(run231);
            paragraph72.Append(run232);

            tableCell16.Append(tableCellProperties16);
            tableCell16.Append(paragraph72);

            tableRow8.Append(tableRowProperties8);
            tableRow8.Append(tableCell15);
            tableRow8.Append(tableCell16);

            table1.Append(tableProperties1);
            table1.Append(tableGrid1);
            table1.Append(tableRow1);
            table1.Append(tableRow2);
            table1.Append(tableRow3);
            table1.Append(tableRow4);
            table1.Append(tableRow5);
            table1.Append(tableRow6);
            table1.Append(tableRow7);
            table1.Append(tableRow8);

            Paragraph paragraph73 = new Paragraph() { RsidParagraphAddition = "003C2F92", RsidParagraphProperties = "003C2F92", RsidRunAdditionDefault = "003C2F92", ParagraphId = "4E0693D8", TextId = "77777777" };

            ParagraphProperties paragraphProperties72 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties72 = new ParagraphMarkRunProperties();
            RunFonts runFonts285 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            FontSize fontSize295 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript287 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties72.Append(runFonts285);
            paragraphMarkRunProperties72.Append(fontSize295);
            paragraphMarkRunProperties72.Append(fontSizeComplexScript287);

            paragraphProperties72.Append(paragraphMarkRunProperties72);

            Run run233 = new Run() { RsidRunProperties = "003C2F92" };

            RunProperties runProperties250 = new RunProperties();
            RunFonts runFonts286 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            FontSize fontSize296 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript288 = new FontSizeComplexScript() { Val = "20" };

            runProperties250.Append(runFonts286);
            runProperties250.Append(fontSize296);
            runProperties250.Append(fontSizeComplexScript288);
            Text text215 = new Text();
            text215.Text = " ";

            run233.Append(runProperties250);
            run233.Append(text215);

            paragraph73.Append(paragraphProperties72);
            paragraph73.Append(run233);

            Paragraph paragraph74 = new Paragraph() { RsidParagraphMarkRevision = "002C4440", RsidParagraphAddition = "002C4440", RsidParagraphProperties = "003C2F92", RsidRunAdditionDefault = "002C4440", ParagraphId = "49DFF894", TextId = "18131B07" };

            ParagraphProperties paragraphProperties73 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties73 = new ParagraphMarkRunProperties();
            RunFonts runFonts287 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Bold bold24 = new Bold();
            Color color64 = new Color() { Val = "FF0000" };
            FontSizeComplexScript fontSizeComplexScript289 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties73.Append(runFonts287);
            paragraphMarkRunProperties73.Append(bold24);
            paragraphMarkRunProperties73.Append(color64);
            paragraphMarkRunProperties73.Append(fontSizeComplexScript289);

            paragraphProperties73.Append(paragraphMarkRunProperties73);

            Run run234 = new Run() { RsidRunProperties = "002C4440" };

            RunProperties runProperties251 = new RunProperties();
            RunFonts runFonts288 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Bold bold25 = new Bold();
            Color color65 = new Color() { Val = "FF0000" };
            FontSizeComplexScript fontSizeComplexScript290 = new FontSizeComplexScript() { Val = "20" };

            runProperties251.Append(runFonts288);
            runProperties251.Append(bold25);
            runProperties251.Append(color65);
            runProperties251.Append(fontSizeComplexScript290);
            Text text216 = new Text();
            text216.Text = "Approved by Application Support Stakeholder:  Name___________  Date________________";

            run234.Append(runProperties251);
            run234.Append(text216);

            paragraph74.Append(paragraphProperties73);
            paragraph74.Append(run234);

            Paragraph paragraph75 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C7F26", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00E518DD", ParagraphId = "0AAC194C", TextId = "6F28CE7A" };

            ParagraphProperties paragraphProperties74 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId11 = new ParagraphStyleId() { Val = "Heading2" };

            ParagraphMarkRunProperties paragraphMarkRunProperties74 = new ParagraphMarkRunProperties();
            Underline underline28 = new Underline() { Val = UnderlineValues.Single };

            paragraphMarkRunProperties74.Append(underline28);

            paragraphProperties74.Append(paragraphStyleId11);
            paragraphProperties74.Append(paragraphMarkRunProperties74);

            Run run235 = new Run();

            RunProperties runProperties252 = new RunProperties();
            Underline underline29 = new Underline() { Val = UnderlineValues.Single };

            runProperties252.Append(underline29);
            Text text217 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text217.Text = "7. ";

            run235.Append(runProperties252);
            run235.Append(text217);

            Run run236 = new Run() { RsidRunAddition = "003B7064" };

            RunProperties runProperties253 = new RunProperties();
            Underline underline30 = new Underline() { Val = UnderlineValues.Single };

            runProperties253.Append(underline30);
            Text text218 = new Text();
            text218.Text = "Special Circumstances Notes";

            run236.Append(runProperties253);
            run236.Append(text218);

            Run run237 = new Run() { RsidRunProperties = "0057090B", RsidRunAddition = "003B7064" };

            RunProperties runProperties254 = new RunProperties();
            Color color66 = new Color() { Val = "FF0000" };
            Underline underline31 = new Underline() { Val = UnderlineValues.Single };

            runProperties254.Append(color66);
            runProperties254.Append(underline31);
            Text text219 = new Text();
            text219.Text = ": N/A";

            run237.Append(runProperties254);
            run237.Append(text219);

            paragraph75.Append(paragraphProperties74);
            paragraph75.Append(run235);
            paragraph75.Append(run236);
            paragraph75.Append(run237);

            Paragraph paragraph76 = new Paragraph() { RsidParagraphAddition = "00CC0FC7", RsidParagraphProperties = "00CC0FC7", RsidRunAdditionDefault = "00CC0FC7", ParagraphId = "68CC729C", TextId = "7FEA18B5" };

            ParagraphProperties paragraphProperties75 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties75 = new ParagraphMarkRunProperties();
            RunFonts runFonts289 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color67 = new Color() { Val = "FF0000" };
            FontSize fontSize297 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript291 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties75.Append(runFonts289);
            paragraphMarkRunProperties75.Append(color67);
            paragraphMarkRunProperties75.Append(fontSize297);
            paragraphMarkRunProperties75.Append(fontSizeComplexScript291);

            paragraphProperties75.Append(paragraphMarkRunProperties75);

            Run run238 = new Run() { RsidRunProperties = "00CC0FC7" };

            RunProperties runProperties255 = new RunProperties();
            Bold bold26 = new Bold();

            runProperties255.Append(bold26);
            Text text220 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text220.Text = "Server to duplicate settings of: ";

            run238.Append(runProperties255);
            run238.Append(text220);

            Run run239 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties256 = new RunProperties();
            RunFonts runFonts290 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color68 = new Color() { Val = "FF0000" };
            FontSize fontSize298 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript292 = new FontSizeComplexScript() { Val = "22" };

            runProperties256.Append(runFonts290);
            runProperties256.Append(color68);
            runProperties256.Append(fontSize298);
            runProperties256.Append(fontSizeComplexScript292);
            Text text221 = new Text();
            text221.Text = "BJCxxxxxxxx";

            run239.Append(runProperties256);
            run239.Append(text221);

            paragraph76.Append(paragraphProperties75);
            paragraph76.Append(run238);
            paragraph76.Append(run239);

            Paragraph paragraph77 = new Paragraph() { RsidParagraphAddition = "00BC048A", RsidParagraphProperties = "00CC0FC7", RsidRunAdditionDefault = "00BC048A", ParagraphId = "00210A38", TextId = "0E04CF99" };

            ParagraphProperties paragraphProperties76 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties76 = new ParagraphMarkRunProperties();
            RunFonts runFonts291 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize299 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript293 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties76.Append(runFonts291);
            paragraphMarkRunProperties76.Append(fontSize299);
            paragraphMarkRunProperties76.Append(fontSizeComplexScript293);

            paragraphProperties76.Append(paragraphMarkRunProperties76);

            Run run240 = new Run() { RsidRunProperties = "00BC048A" };

            RunProperties runProperties257 = new RunProperties();
            RunFonts runFonts292 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize300 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript294 = new FontSizeComplexScript() { Val = "22" };

            runProperties257.Append(runFonts292);
            runProperties257.Append(fontSize300);
            runProperties257.Append(fontSizeComplexScript294);
            Text text222 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text222.Text = "Administrators Group: ";

            run240.Append(runProperties257);
            run240.Append(text222);

            Run run241 = new Run() { RsidRunProperties = "00116FA1" };

            RunProperties runProperties258 = new RunProperties();
            RunFonts runFonts293 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color69 = new Color() { Val = "FF0000" };
            FontSize fontSize301 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript295 = new FontSizeComplexScript() { Val = "22" };

            runProperties258.Append(runFonts293);
            runProperties258.Append(color69);
            runProperties258.Append(fontSize301);
            runProperties258.Append(fontSizeComplexScript295);
            Text text223 = new Text();
            text223.Text = "BJC-NT\\";

            run241.Append(runProperties258);
            run241.Append(text223);

            Run run242 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties259 = new RunProperties();
            RunFonts runFonts294 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color70 = new Color() { Val = "FF0000" };
            FontSize fontSize302 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript296 = new FontSizeComplexScript() { Val = "22" };

            runProperties259.Append(runFonts294);
            runProperties259.Append(color70);
            runProperties259.Append(fontSize302);
            runProperties259.Append(fontSizeComplexScript296);
            Text text224 = new Text();
            text224.Text = "xxx";

            run242.Append(runProperties259);
            run242.Append(text224);

            paragraph77.Append(paragraphProperties76);
            paragraph77.Append(run240);
            paragraph77.Append(run241);
            paragraph77.Append(run242);

            Paragraph paragraph78 = new Paragraph() { RsidParagraphMarkRevision = "00BC048A", RsidParagraphAddition = "00BC048A", RsidParagraphProperties = "00CC0FC7", RsidRunAdditionDefault = "00BC048A", ParagraphId = "212FB4D7", TextId = "61AB3CEA" };

            ParagraphProperties paragraphProperties77 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties77 = new ParagraphMarkRunProperties();
            RunFonts runFonts295 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize303 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript297 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties77.Append(runFonts295);
            paragraphMarkRunProperties77.Append(fontSize303);
            paragraphMarkRunProperties77.Append(fontSizeComplexScript297);

            paragraphProperties77.Append(paragraphMarkRunProperties77);

            Run run243 = new Run();

            RunProperties runProperties260 = new RunProperties();
            RunFonts runFonts296 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize304 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript298 = new FontSizeComplexScript() { Val = "22" };

            runProperties260.Append(runFonts296);
            runProperties260.Append(fontSize304);
            runProperties260.Append(fontSizeComplexScript298);
            LastRenderedPageBreak lastRenderedPageBreak3 = new LastRenderedPageBreak();
            Text text225 = new Text();
            text225.Text = "WSP group";

            run243.Append(runProperties260);
            run243.Append(lastRenderedPageBreak3);
            run243.Append(text225);

            Run run244 = new Run() { RsidRunAddition = "003C2F92" };

            RunProperties runProperties261 = new RunProperties();
            RunFonts runFonts297 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize305 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript299 = new FontSizeComplexScript() { Val = "22" };

            runProperties261.Append(runFonts297);
            runProperties261.Append(fontSize305);
            runProperties261.Append(fontSizeComplexScript299);
            Text text226 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text226.Text = " (for monthly Windows patches)";

            run244.Append(runProperties261);
            run244.Append(text226);

            Run run245 = new Run();

            RunProperties runProperties262 = new RunProperties();
            RunFonts runFonts298 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize306 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript300 = new FontSizeComplexScript() { Val = "22" };

            runProperties262.Append(runFonts298);
            runProperties262.Append(fontSize306);
            runProperties262.Append(fontSizeComplexScript300);
            Text text227 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text227.Text = ": ";

            run245.Append(runProperties262);
            run245.Append(text227);

            Run run246 = new Run() { RsidRunAddition = "007F295C" };

            RunProperties runProperties263 = new RunProperties();
            RunFonts runFonts299 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color71 = new Color() { Val = "FF0000" };
            FontSize fontSize307 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript301 = new FontSizeComplexScript() { Val = "22" };

            runProperties263.Append(runFonts299);
            runProperties263.Append(color71);
            runProperties263.Append(fontSize307);
            runProperties263.Append(fontSizeComplexScript301);
            Text text228 = new Text();
            text228.Text = "WSP-";

            run246.Append(runProperties263);
            run246.Append(text228);

            Run run247 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties264 = new RunProperties();
            RunFonts runFonts300 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color72 = new Color() { Val = "FF0000" };
            FontSize fontSize308 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript302 = new FontSizeComplexScript() { Val = "22" };

            runProperties264.Append(runFonts300);
            runProperties264.Append(color72);
            runProperties264.Append(fontSize308);
            runProperties264.Append(fontSizeComplexScript302);
            Text text229 = new Text();
            text229.Text = "xx";

            run247.Append(runProperties264);
            run247.Append(text229);

            paragraph78.Append(paragraphProperties77);
            paragraph78.Append(run243);
            paragraph78.Append(run244);
            paragraph78.Append(run245);
            paragraph78.Append(run246);
            paragraph78.Append(run247);

            Paragraph paragraph79 = new Paragraph() { RsidParagraphAddition = "001A269D", RsidParagraphProperties = "00DE0CB0", RsidRunAdditionDefault = "001A269D", ParagraphId = "3F91A3EE", TextId = "7C137BAD" };

            ParagraphProperties paragraphProperties78 = new ParagraphProperties();
            Indentation indentation15 = new Indentation() { FirstLine = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties78 = new ParagraphMarkRunProperties();
            RunFonts runFonts301 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color73 = new Color() { Val = "FF0000" };
            FontSize fontSize309 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript303 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties78.Append(runFonts301);
            paragraphMarkRunProperties78.Append(color73);
            paragraphMarkRunProperties78.Append(fontSize309);
            paragraphMarkRunProperties78.Append(fontSizeComplexScript303);

            paragraphProperties78.Append(indentation15);
            paragraphProperties78.Append(paragraphMarkRunProperties78);

            Run run248 = new Run();

            RunProperties runProperties265 = new RunProperties();
            RunFonts runFonts302 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color74 = new Color() { Val = "FF0000" };
            FontSize fontSize310 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript304 = new FontSizeComplexScript() { Val = "22" };

            runProperties265.Append(runFonts302);
            runProperties265.Append(color74);
            runProperties265.Append(fontSize310);
            runProperties265.Append(fontSizeComplexScript304);
            Text text230 = new Text();
            text230.Text = "More than 2TB of SAN needed?";

            run248.Append(runProperties265);
            run248.Append(text230);

            paragraph79.Append(paragraphProperties78);
            paragraph79.Append(run248);

            Paragraph paragraph80 = new Paragraph() { RsidParagraphAddition = "00624202", RsidParagraphProperties = "00DE0CB0", RsidRunAdditionDefault = "00624202", ParagraphId = "18D54D05", TextId = "66F1BC07" };

            ParagraphProperties paragraphProperties79 = new ParagraphProperties();
            Indentation indentation16 = new Indentation() { FirstLine = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties79 = new ParagraphMarkRunProperties();
            RunFonts runFonts303 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color75 = new Color() { Val = "FF0000" };
            FontSize fontSize311 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript305 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties79.Append(runFonts303);
            paragraphMarkRunProperties79.Append(color75);
            paragraphMarkRunProperties79.Append(fontSize311);
            paragraphMarkRunProperties79.Append(fontSizeComplexScript305);

            paragraphProperties79.Append(indentation16);
            paragraphProperties79.Append(paragraphMarkRunProperties79);

            Run run249 = new Run();

            RunProperties runProperties266 = new RunProperties();
            RunFonts runFonts304 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color76 = new Color() { Val = "FF0000" };
            FontSize fontSize312 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript306 = new FontSizeComplexScript() { Val = "22" };

            runProperties266.Append(runFonts304);
            runProperties266.Append(color76);
            runProperties266.Append(fontSize312);
            runProperties266.Append(fontSizeComplexScript306);
            Text text231 = new Text();
            text231.Text = "If not utilizing 64bit OS";

            run249.Append(runProperties266);
            run249.Append(text231);

            Run run250 = new Run() { RsidRunAddition = "00797265" };

            RunProperties runProperties267 = new RunProperties();
            RunFonts runFonts305 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color77 = new Color() { Val = "FF0000" };
            FontSize fontSize313 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript307 = new FontSizeComplexScript() { Val = "22" };

            runProperties267.Append(runFonts305);
            runProperties267.Append(color77);
            runProperties267.Append(fontSize313);
            runProperties267.Append(fontSizeComplexScript307);
            Text text232 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text232.Text = " and/or requests for older than 2008";

            run250.Append(runProperties267);
            run250.Append(text232);

            Run run251 = new Run();

            RunProperties runProperties268 = new RunProperties();
            RunFonts runFonts306 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color78 = new Color() { Val = "FF0000" };
            FontSize fontSize314 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript308 = new FontSizeComplexScript() { Val = "22" };

            runProperties268.Append(runFonts306);
            runProperties268.Append(color78);
            runProperties268.Append(fontSize314);
            runProperties268.Append(fontSizeComplexScript308);
            Text text233 = new Text();
            text233.Text = ", a conversation will need to occur with Standards";

            run251.Append(runProperties268);
            run251.Append(text233);

            paragraph80.Append(paragraphProperties79);
            paragraph80.Append(run249);
            paragraph80.Append(run250);
            paragraph80.Append(run251);

            Paragraph paragraph81 = new Paragraph() { RsidParagraphMarkRevision = "00747E89", RsidParagraphAddition = "00F12AD5", RsidParagraphProperties = "00747E89", RsidRunAdditionDefault = "006678EF", ParagraphId = "26B04B2D", TextId = "218D7EF2" };

            ParagraphProperties paragraphProperties80 = new ParagraphProperties();
            Indentation indentation17 = new Indentation() { FirstLine = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties80 = new ParagraphMarkRunProperties();
            Bold bold27 = new Bold();

            paragraphMarkRunProperties80.Append(bold27);

            paragraphProperties80.Append(indentation17);
            paragraphProperties80.Append(paragraphMarkRunProperties80);

            Run run252 = new Run();

            RunProperties runProperties269 = new RunProperties();
            RunFonts runFonts307 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color79 = new Color() { Val = "FF0000" };
            FontSize fontSize315 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript309 = new FontSizeComplexScript() { Val = "22" };

            runProperties269.Append(runFonts307);
            runProperties269.Append(color79);
            runProperties269.Append(fontSize315);
            runProperties269.Append(fontSizeComplexScript309);
            Text text234 = new Text();
            text234.Text = "Non-Standard tools/software needed from Technical Management?";

            run252.Append(runProperties269);
            run252.Append(text234);
            BookmarkStart bookmarkStart2 = new BookmarkStart() { Name = "_Toc316382779", Id = "1" };

            paragraph81.Append(paragraphProperties80);
            paragraph81.Append(run252);
            paragraph81.Append(bookmarkStart2);

            Paragraph paragraph82 = new Paragraph() { RsidParagraphAddition = "009E06D4", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00E518DD", ParagraphId = "0AAC194E", TextId = "4FFFE2E5" };

            ParagraphProperties paragraphProperties81 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId12 = new ParagraphStyleId() { Val = "Heading2" };

            ParagraphMarkRunProperties paragraphMarkRunProperties81 = new ParagraphMarkRunProperties();
            Color color80 = new Color() { Val = "FF0000" };
            Underline underline32 = new Underline() { Val = UnderlineValues.Single };

            paragraphMarkRunProperties81.Append(color80);
            paragraphMarkRunProperties81.Append(underline32);

            paragraphProperties81.Append(paragraphStyleId12);
            paragraphProperties81.Append(paragraphMarkRunProperties81);

            Run run253 = new Run();

            RunProperties runProperties270 = new RunProperties();
            Underline underline33 = new Underline() { Val = UnderlineValues.Single };

            runProperties270.Append(underline33);
            Text text235 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text235.Text = "8. ";

            run253.Append(runProperties270);
            run253.Append(text235);

            Run run254 = new Run() { RsidRunProperties = "001A269D", RsidRunAddition = "00116831" };

            RunProperties runProperties271 = new RunProperties();
            Underline underline34 = new Underline() { Val = UnderlineValues.Single };

            runProperties271.Append(underline34);
            Text text236 = new Text();
            text236.Text = "Physical Servers";

            run254.Append(runProperties271);
            run254.Append(text236);

            Run run255 = new Run() { RsidRunProperties = "0057090B", RsidRunAddition = "0057090B" };

            RunProperties runProperties272 = new RunProperties();
            Color color81 = new Color() { Val = "FF0000" };
            Underline underline35 = new Underline() { Val = UnderlineValues.Single };

            runProperties272.Append(color81);
            runProperties272.Append(underline35);
            Text text237 = new Text();
            text237.Text = ": N/A";

            run255.Append(runProperties272);
            run255.Append(text237);

            paragraph82.Append(paragraphProperties81);
            paragraph82.Append(run253);
            paragraph82.Append(run254);
            paragraph82.Append(run255);

            Paragraph paragraph83 = new Paragraph() { RsidParagraphMarkRevision = "00624202", RsidParagraphAddition = "002B0580", RsidParagraphProperties = "002B0580", RsidRunAdditionDefault = "002B0580", ParagraphId = "67254CF7", TextId = "7A51D1CB" };

            ParagraphProperties paragraphProperties82 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties82 = new ParagraphMarkRunProperties();
            Color color82 = new Color() { Val = "FF0000" };

            paragraphMarkRunProperties82.Append(color82);

            paragraphProperties82.Append(paragraphMarkRunProperties82);

            Run run256 = new Run();
            TabChar tabChar23 = new TabChar();

            run256.Append(tabChar23);

            Run run257 = new Run() { RsidRunProperties = "00624202", RsidRunAddition = "00624202" };

            RunProperties runProperties273 = new RunProperties();
            Bold bold28 = new Bold();

            runProperties273.Append(bold28);
            Text text238 = new Text();
            text238.Text = "Notes";

            run257.Append(runProperties273);
            run257.Append(text238);

            Run run258 = new Run() { RsidRunAddition = "00624202" };
            Text text239 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text239.Text = ": ";

            run258.Append(text239);

            Run run259 = new Run() { RsidRunAddition = "00624202" };

            RunProperties runProperties274 = new RunProperties();
            Color color83 = new Color() { Val = "FF0000" };

            runProperties274.Append(color83);
            Text text240 = new Text();
            text240.Text = "List non-standard hardware configurations (memory, disk, etc)";

            run259.Append(runProperties274);
            run259.Append(text240);

            paragraph83.Append(paragraphProperties82);
            paragraph83.Append(run256);
            paragraph83.Append(run257);
            paragraph83.Append(run258);
            paragraph83.Append(run259);

            Table table2 = new Table();

            TableProperties tableProperties2 = new TableProperties();
            TableWidth tableWidth2 = new TableWidth() { Width = "5000", Type = TableWidthUnitValues.Pct };

            TableBorders tableBorders1 = new TableBorders();
            TopBorder topBorder18 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder17 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder17 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder17 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder1 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder1 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableBorders1.Append(topBorder18);
            tableBorders1.Append(leftBorder17);
            tableBorders1.Append(bottomBorder17);
            tableBorders1.Append(rightBorder17);
            tableBorders1.Append(insideHorizontalBorder1);
            tableBorders1.Append(insideVerticalBorder1);
            TableLayout tableLayout1 = new TableLayout() { Type = TableLayoutValues.Fixed };
            TableLook tableLook2 = new TableLook() { Val = "00A0" };

            tableProperties2.Append(tableWidth2);
            tableProperties2.Append(tableBorders1);
            tableProperties2.Append(tableLayout1);
            tableProperties2.Append(tableLook2);

            TableGrid tableGrid2 = new TableGrid();
            GridColumn gridColumn3 = new GridColumn() { Width = "1787" };
            GridColumn gridColumn4 = new GridColumn() { Width = "971" };
            GridColumn gridColumn5 = new GridColumn() { Width = "1241" };
            GridColumn gridColumn6 = new GridColumn() { Width = "1150" };
            GridColumn gridColumn7 = new GridColumn() { Width = "883" };
            GridColumn gridColumn8 = new GridColumn() { Width = "710" };
            GridColumn gridColumn9 = new GridColumn() { Width = "1590" };
            GridColumn gridColumn10 = new GridColumn() { Width = "1150" };
            GridColumn gridColumn11 = new GridColumn() { Width = "1150" };
            GridColumn gridColumn12 = new GridColumn() { Width = "798" };
            GridColumn gridColumn13 = new GridColumn() { Width = "1520" };

            tableGrid2.Append(gridColumn3);
            tableGrid2.Append(gridColumn4);
            tableGrid2.Append(gridColumn5);
            tableGrid2.Append(gridColumn6);
            tableGrid2.Append(gridColumn7);
            tableGrid2.Append(gridColumn8);
            tableGrid2.Append(gridColumn9);
            tableGrid2.Append(gridColumn10);
            tableGrid2.Append(gridColumn11);
            tableGrid2.Append(gridColumn12);
            tableGrid2.Append(gridColumn13);

            TableRow tableRow9 = new TableRow() { RsidTableRowMarkRevision = "00BC2F6B", RsidTableRowAddition = "00BC048A", RsidTableRowProperties = "00624202", ParagraphId = "0AAC195F", TextId = "77777777" };

            TableRowProperties tableRowProperties9 = new TableRowProperties();
            TableRowHeight tableRowHeight9 = new TableRowHeight() { Val = (UInt32Value)576U };

            tableRowProperties9.Append(tableRowHeight9);

            TableCell tableCell17 = new TableCell();

            TableCellProperties tableCellProperties17 = new TableCellProperties();
            TableCellWidth tableCellWidth17 = new TableCellWidth() { Width = "690", Type = TableWidthUnitValues.Pct };

            tableCellProperties17.Append(tableCellWidth17);

            Paragraph paragraph84 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "004C118E", ParagraphId = "0AAC194F", TextId = "77777777" };

            ParagraphProperties paragraphProperties83 = new ParagraphProperties();
            Justification justification7 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties83 = new ParagraphMarkRunProperties();
            RunFonts runFonts308 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold29 = new Bold();
            FontSize fontSize316 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript310 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties83.Append(runFonts308);
            paragraphMarkRunProperties83.Append(bold29);
            paragraphMarkRunProperties83.Append(fontSize316);
            paragraphMarkRunProperties83.Append(fontSizeComplexScript310);

            paragraphProperties83.Append(justification7);
            paragraphProperties83.Append(paragraphMarkRunProperties83);

            Run run260 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties275 = new RunProperties();
            RunFonts runFonts309 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold30 = new Bold();
            FontSize fontSize317 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript311 = new FontSizeComplexScript() { Val = "22" };

            runProperties275.Append(runFonts309);
            runProperties275.Append(bold30);
            runProperties275.Append(fontSize317);
            runProperties275.Append(fontSizeComplexScript311);
            Text text241 = new Text();
            text241.Text = "Name";

            run260.Append(runProperties275);
            run260.Append(text241);

            paragraph84.Append(paragraphProperties83);
            paragraph84.Append(run260);

            tableCell17.Append(tableCellProperties17);
            tableCell17.Append(paragraph84);

            TableCell tableCell18 = new TableCell();

            TableCellProperties tableCellProperties18 = new TableCellProperties();
            TableCellWidth tableCellWidth18 = new TableCellWidth() { Width = "375", Type = TableWidthUnitValues.Pct };

            tableCellProperties18.Append(tableCellWidth18);

            Paragraph paragraph85 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "004C118E", ParagraphId = "0AAC1950", TextId = "77777777" };

            ParagraphProperties paragraphProperties84 = new ParagraphProperties();
            Justification justification8 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties84 = new ParagraphMarkRunProperties();
            RunFonts runFonts310 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold31 = new Bold();
            FontSize fontSize318 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript312 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties84.Append(runFonts310);
            paragraphMarkRunProperties84.Append(bold31);
            paragraphMarkRunProperties84.Append(fontSize318);
            paragraphMarkRunProperties84.Append(fontSizeComplexScript312);

            paragraphProperties84.Append(justification8);
            paragraphProperties84.Append(paragraphMarkRunProperties84);

            Run run261 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties276 = new RunProperties();
            RunFonts runFonts311 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold32 = new Bold();
            FontSize fontSize319 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript313 = new FontSizeComplexScript() { Val = "22" };

            runProperties276.Append(runFonts311);
            runProperties276.Append(bold32);
            runProperties276.Append(fontSize319);
            runProperties276.Append(fontSizeComplexScript313);
            Text text242 = new Text();
            text242.Text = "Model";

            run261.Append(runProperties276);
            run261.Append(text242);

            paragraph85.Append(paragraphProperties84);
            paragraph85.Append(run261);

            tableCell18.Append(tableCellProperties18);
            tableCell18.Append(paragraph85);

            TableCell tableCell19 = new TableCell();

            TableCellProperties tableCellProperties19 = new TableCellProperties();
            TableCellWidth tableCellWidth19 = new TableCellWidth() { Width = "479", Type = TableWidthUnitValues.Pct };

            tableCellProperties19.Append(tableCellWidth19);

            Paragraph paragraph86 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "004C118E", ParagraphId = "0AAC1951", TextId = "77777777" };

            ParagraphProperties paragraphProperties85 = new ParagraphProperties();
            Justification justification9 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties85 = new ParagraphMarkRunProperties();
            RunFonts runFonts312 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold33 = new Bold();
            FontSize fontSize320 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript314 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties85.Append(runFonts312);
            paragraphMarkRunProperties85.Append(bold33);
            paragraphMarkRunProperties85.Append(fontSize320);
            paragraphMarkRunProperties85.Append(fontSizeComplexScript314);

            paragraphProperties85.Append(justification9);
            paragraphProperties85.Append(paragraphMarkRunProperties85);

            Run run262 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties277 = new RunProperties();
            RunFonts runFonts313 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold34 = new Bold();
            FontSize fontSize321 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript315 = new FontSizeComplexScript() { Val = "22" };

            runProperties277.Append(runFonts313);
            runProperties277.Append(bold34);
            runProperties277.Append(fontSize321);
            runProperties277.Append(fontSizeComplexScript315);
            Text text243 = new Text();
            text243.Text = "CPU";

            run262.Append(runProperties277);
            run262.Append(text243);

            paragraph86.Append(paragraphProperties85);
            paragraph86.Append(run262);

            Paragraph paragraph87 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "004C118E", ParagraphId = "0AAC1952", TextId = "77777777" };

            ParagraphProperties paragraphProperties86 = new ParagraphProperties();
            Justification justification10 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties86 = new ParagraphMarkRunProperties();
            RunFonts runFonts314 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold35 = new Bold();
            FontSize fontSize322 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript316 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties86.Append(runFonts314);
            paragraphMarkRunProperties86.Append(bold35);
            paragraphMarkRunProperties86.Append(fontSize322);
            paragraphMarkRunProperties86.Append(fontSizeComplexScript316);

            paragraphProperties86.Append(justification10);
            paragraphProperties86.Append(paragraphMarkRunProperties86);

            Run run263 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties278 = new RunProperties();
            RunFonts runFonts315 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold36 = new Bold();
            FontSize fontSize323 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript317 = new FontSizeComplexScript() { Val = "22" };

            runProperties278.Append(runFonts315);
            runProperties278.Append(bold36);
            runProperties278.Append(fontSize323);
            runProperties278.Append(fontSizeComplexScript317);
            Text text244 = new Text();
            text244.Text = "Count";

            run263.Append(runProperties278);
            run263.Append(text244);

            paragraph87.Append(paragraphProperties86);
            paragraph87.Append(run263);

            tableCell19.Append(tableCellProperties19);
            tableCell19.Append(paragraph86);
            tableCell19.Append(paragraph87);

            TableCell tableCell20 = new TableCell();

            TableCellProperties tableCellProperties20 = new TableCellProperties();
            TableCellWidth tableCellWidth20 = new TableCellWidth() { Width = "444", Type = TableWidthUnitValues.Pct };

            tableCellProperties20.Append(tableCellWidth20);

            Paragraph paragraph88 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "004C118E", ParagraphId = "0AAC1954", TextId = "77777777" };

            ParagraphProperties paragraphProperties87 = new ParagraphProperties();
            Justification justification11 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties87 = new ParagraphMarkRunProperties();
            RunFonts runFonts316 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold37 = new Bold();
            FontSize fontSize324 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript318 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties87.Append(runFonts316);
            paragraphMarkRunProperties87.Append(bold37);
            paragraphMarkRunProperties87.Append(fontSize324);
            paragraphMarkRunProperties87.Append(fontSizeComplexScript318);

            paragraphProperties87.Append(justification11);
            paragraphProperties87.Append(paragraphMarkRunProperties87);

            Run run264 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties279 = new RunProperties();
            RunFonts runFonts317 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold38 = new Bold();
            FontSize fontSize325 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript319 = new FontSizeComplexScript() { Val = "22" };

            runProperties279.Append(runFonts317);
            runProperties279.Append(bold38);
            runProperties279.Append(fontSize325);
            runProperties279.Append(fontSizeComplexScript319);
            Text text245 = new Text();
            text245.Text = "OS";

            run264.Append(runProperties279);
            run264.Append(text245);

            paragraph88.Append(paragraphProperties87);
            paragraph88.Append(run264);

            tableCell20.Append(tableCellProperties20);
            tableCell20.Append(paragraph88);

            TableCell tableCell21 = new TableCell();

            TableCellProperties tableCellProperties21 = new TableCellProperties();
            TableCellWidth tableCellWidth21 = new TableCellWidth() { Width = "341", Type = TableWidthUnitValues.Pct };

            tableCellProperties21.Append(tableCellWidth21);

            Paragraph paragraph89 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "00BC2F6B", ParagraphId = "0AAC1955", TextId = "77777777" };

            ParagraphProperties paragraphProperties88 = new ParagraphProperties();
            Justification justification12 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties88 = new ParagraphMarkRunProperties();
            RunFonts runFonts318 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold39 = new Bold();
            FontSize fontSize326 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript320 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties88.Append(runFonts318);
            paragraphMarkRunProperties88.Append(bold39);
            paragraphMarkRunProperties88.Append(fontSize326);
            paragraphMarkRunProperties88.Append(fontSizeComplexScript320);

            paragraphProperties88.Append(justification12);
            paragraphProperties88.Append(paragraphMarkRunProperties88);

            Run run265 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties280 = new RunProperties();
            RunFonts runFonts319 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold40 = new Bold();
            FontSize fontSize327 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript321 = new FontSizeComplexScript() { Val = "22" };

            runProperties280.Append(runFonts319);
            runProperties280.Append(bold40);
            runProperties280.Append(fontSize327);
            runProperties280.Append(fontSizeComplexScript321);
            Text text246 = new Text();
            text246.Text = "RAM";

            run265.Append(runProperties280);
            run265.Append(text246);

            paragraph89.Append(paragraphProperties88);
            paragraph89.Append(run265);

            tableCell21.Append(tableCellProperties21);
            tableCell21.Append(paragraph89);

            TableCell tableCell22 = new TableCell();

            TableCellProperties tableCellProperties22 = new TableCellProperties();
            TableCellWidth tableCellWidth22 = new TableCellWidth() { Width = "274", Type = TableWidthUnitValues.Pct };

            tableCellProperties22.Append(tableCellWidth22);

            Paragraph paragraph90 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "004C118E", ParagraphId = "0AAC1956", TextId = "77777777" };

            ParagraphProperties paragraphProperties89 = new ParagraphProperties();
            Justification justification13 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties89 = new ParagraphMarkRunProperties();
            RunFonts runFonts320 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold41 = new Bold();
            FontSize fontSize328 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript322 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties89.Append(runFonts320);
            paragraphMarkRunProperties89.Append(bold41);
            paragraphMarkRunProperties89.Append(fontSize328);
            paragraphMarkRunProperties89.Append(fontSizeComplexScript322);

            paragraphProperties89.Append(justification13);
            paragraphProperties89.Append(paragraphMarkRunProperties89);

            Run run266 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties281 = new RunProperties();
            RunFonts runFonts321 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold42 = new Bold();
            FontSize fontSize329 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript323 = new FontSizeComplexScript() { Val = "22" };

            runProperties281.Append(runFonts321);
            runProperties281.Append(bold42);
            runProperties281.Append(fontSize329);
            runProperties281.Append(fontSizeComplexScript323);
            Text text247 = new Text();
            text247.Text = "SAN";

            run266.Append(runProperties281);
            run266.Append(text247);

            paragraph90.Append(paragraphProperties89);
            paragraph90.Append(run266);

            Paragraph paragraph91 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "004C118E", ParagraphId = "0AAC1957", TextId = "77777777" };

            ParagraphProperties paragraphProperties90 = new ParagraphProperties();
            Justification justification14 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties90 = new ParagraphMarkRunProperties();
            RunFonts runFonts322 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold43 = new Bold();
            FontSize fontSize330 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript324 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties90.Append(runFonts322);
            paragraphMarkRunProperties90.Append(bold43);
            paragraphMarkRunProperties90.Append(fontSize330);
            paragraphMarkRunProperties90.Append(fontSizeComplexScript324);

            paragraphProperties90.Append(justification14);
            paragraphProperties90.Append(paragraphMarkRunProperties90);

            Run run267 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties282 = new RunProperties();
            RunFonts runFonts323 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold44 = new Bold();
            FontSize fontSize331 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript325 = new FontSizeComplexScript() { Val = "22" };

            runProperties282.Append(runFonts323);
            runProperties282.Append(bold44);
            runProperties282.Append(fontSize331);
            runProperties282.Append(fontSizeComplexScript325);
            Text text248 = new Text();
            text248.Text = "Y/N";

            run267.Append(runProperties282);
            run267.Append(text248);

            paragraph91.Append(paragraphProperties90);
            paragraph91.Append(run267);

            tableCell22.Append(tableCellProperties22);
            tableCell22.Append(paragraph90);
            tableCell22.Append(paragraph91);

            TableCell tableCell23 = new TableCell();

            TableCellProperties tableCellProperties23 = new TableCellProperties();
            TableCellWidth tableCellWidth23 = new TableCellWidth() { Width = "614", Type = TableWidthUnitValues.Pct };

            tableCellProperties23.Append(tableCellWidth23);

            Paragraph paragraph92 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "004C118E", ParagraphId = "0AAC1958", TextId = "77777777" };

            ParagraphProperties paragraphProperties91 = new ParagraphProperties();
            Justification justification15 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties91 = new ParagraphMarkRunProperties();
            RunFonts runFonts324 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold45 = new Bold();
            FontSize fontSize332 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript326 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties91.Append(runFonts324);
            paragraphMarkRunProperties91.Append(bold45);
            paragraphMarkRunProperties91.Append(fontSize332);
            paragraphMarkRunProperties91.Append(fontSizeComplexScript326);

            paragraphProperties91.Append(justification15);
            paragraphProperties91.Append(paragraphMarkRunProperties91);

            Run run268 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties283 = new RunProperties();
            RunFonts runFonts325 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold46 = new Bold();
            FontSize fontSize333 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript327 = new FontSizeComplexScript() { Val = "22" };

            runProperties283.Append(runFonts325);
            runProperties283.Append(bold46);
            runProperties283.Append(fontSize333);
            runProperties283.Append(fontSizeComplexScript327);
            Text text249 = new Text();
            text249.Text = "Disk Layout";

            run268.Append(runProperties283);
            run268.Append(text249);

            paragraph92.Append(paragraphProperties91);
            paragraph92.Append(run268);

            tableCell23.Append(tableCellProperties23);
            tableCell23.Append(paragraph92);

            TableCell tableCell24 = new TableCell();

            TableCellProperties tableCellProperties24 = new TableCellProperties();
            TableCellWidth tableCellWidth24 = new TableCellWidth() { Width = "444", Type = TableWidthUnitValues.Pct };

            tableCellProperties24.Append(tableCellWidth24);

            Paragraph paragraph93 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00624202", RsidRunAdditionDefault = "00BC048A", ParagraphId = "0AAC195A", TextId = "48D9A817" };

            ParagraphProperties paragraphProperties92 = new ParagraphProperties();
            Justification justification16 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties92 = new ParagraphMarkRunProperties();
            RunFonts runFonts326 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold47 = new Bold();
            FontSize fontSize334 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript328 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties92.Append(runFonts326);
            paragraphMarkRunProperties92.Append(bold47);
            paragraphMarkRunProperties92.Append(fontSize334);
            paragraphMarkRunProperties92.Append(fontSizeComplexScript328);

            paragraphProperties92.Append(justification16);
            paragraphProperties92.Append(paragraphMarkRunProperties92);

            Run run269 = new Run();

            RunProperties runProperties284 = new RunProperties();
            RunFonts runFonts327 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold48 = new Bold();
            FontSize fontSize335 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript329 = new FontSizeComplexScript() { Val = "22" };

            runProperties284.Append(runFonts327);
            runProperties284.Append(bold48);
            runProperties284.Append(fontSize335);
            runProperties284.Append(fontSizeComplexScript329);
            Text text250 = new Text();
            text250.Text = "Cluster";

            run269.Append(runProperties284);
            run269.Append(text250);

            Run run270 = new Run() { RsidRunAddition = "00624202" };

            RunProperties runProperties285 = new RunProperties();
            RunFonts runFonts328 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold49 = new Bold();
            FontSize fontSize336 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript330 = new FontSizeComplexScript() { Val = "22" };

            runProperties285.Append(runFonts328);
            runProperties285.Append(bold49);
            runProperties285.Append(fontSize336);
            runProperties285.Append(fontSizeComplexScript330);
            Text text251 = new Text();
            text251.Text = "* or SQL version";

            run270.Append(runProperties285);
            run270.Append(text251);

            paragraph93.Append(paragraphProperties92);
            paragraph93.Append(run269);
            paragraph93.Append(run270);

            tableCell24.Append(tableCellProperties24);
            tableCell24.Append(paragraph93);

            TableCell tableCell25 = new TableCell();

            TableCellProperties tableCellProperties25 = new TableCellProperties();
            TableCellWidth tableCellWidth25 = new TableCellWidth() { Width = "444", Type = TableWidthUnitValues.Pct };

            tableCellProperties25.Append(tableCellWidth25);

            Paragraph paragraph94 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "004C118E", ParagraphId = "0AAC195B", TextId = "7788A509" };

            ParagraphProperties paragraphProperties93 = new ParagraphProperties();
            Justification justification17 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties93 = new ParagraphMarkRunProperties();
            RunFonts runFonts329 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold50 = new Bold();
            FontSize fontSize337 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript331 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties93.Append(runFonts329);
            paragraphMarkRunProperties93.Append(bold50);
            paragraphMarkRunProperties93.Append(fontSize337);
            paragraphMarkRunProperties93.Append(fontSizeComplexScript331);

            paragraphProperties93.Append(justification17);
            paragraphProperties93.Append(paragraphMarkRunProperties93);

            Run run271 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties286 = new RunProperties();
            RunFonts runFonts330 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold51 = new Bold();
            FontSize fontSize338 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript332 = new FontSizeComplexScript() { Val = "22" };

            runProperties286.Append(runFonts330);
            runProperties286.Append(bold51);
            runProperties286.Append(fontSize338);
            runProperties286.Append(fontSizeComplexScript332);
            Text text252 = new Text();
            text252.Text = "D";

            run271.Append(runProperties286);
            run271.Append(text252);

            Run run272 = new Run() { RsidRunAddition = "00116FA1" };

            RunProperties runProperties287 = new RunProperties();
            RunFonts runFonts331 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold52 = new Bold();
            FontSize fontSize339 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript333 = new FontSizeComplexScript() { Val = "22" };

            runProperties287.Append(runFonts331);
            runProperties287.Append(bold52);
            runProperties287.Append(fontSize339);
            runProperties287.Append(fontSizeComplexScript333);
            Text text253 = new Text();
            text253.Text = "R";

            run272.Append(runProperties287);
            run272.Append(text253);

            Run run273 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties288 = new RunProperties();
            RunFonts runFonts332 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold53 = new Bold();
            FontSize fontSize340 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript334 = new FontSizeComplexScript() { Val = "22" };

            runProperties288.Append(runFonts332);
            runProperties288.Append(bold53);
            runProperties288.Append(fontSize340);
            runProperties288.Append(fontSizeComplexScript334);
            Text text254 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text254.Text = " / Prod";

            run273.Append(runProperties288);
            run273.Append(text254);

            paragraph94.Append(paragraphProperties93);
            paragraph94.Append(run271);
            paragraph94.Append(run272);
            paragraph94.Append(run273);

            Paragraph paragraph95 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "004C118E", ParagraphId = "0AAC195C", TextId = "77777777" };

            ParagraphProperties paragraphProperties94 = new ParagraphProperties();
            Justification justification18 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties94 = new ParagraphMarkRunProperties();
            RunFonts runFonts333 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold54 = new Bold();
            FontSize fontSize341 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript335 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties94.Append(runFonts333);
            paragraphMarkRunProperties94.Append(bold54);
            paragraphMarkRunProperties94.Append(fontSize341);
            paragraphMarkRunProperties94.Append(fontSizeComplexScript335);

            paragraphProperties94.Append(justification18);
            paragraphProperties94.Append(paragraphMarkRunProperties94);

            Run run274 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties289 = new RunProperties();
            RunFonts runFonts334 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold55 = new Bold();
            FontSize fontSize342 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript336 = new FontSizeComplexScript() { Val = "22" };

            runProperties289.Append(runFonts334);
            runProperties289.Append(bold55);
            runProperties289.Append(fontSize342);
            runProperties289.Append(fontSizeComplexScript336);
            Text text255 = new Text();
            text255.Text = "/Test";

            run274.Append(runProperties289);
            run274.Append(text255);

            paragraph95.Append(paragraphProperties94);
            paragraph95.Append(run274);

            tableCell25.Append(tableCellProperties25);
            tableCell25.Append(paragraph94);
            tableCell25.Append(paragraph95);

            TableCell tableCell26 = new TableCell();

            TableCellProperties tableCellProperties26 = new TableCellProperties();
            TableCellWidth tableCellWidth26 = new TableCellWidth() { Width = "308", Type = TableWidthUnitValues.Pct };

            tableCellProperties26.Append(tableCellWidth26);

            Paragraph paragraph96 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "00BC2F6B", ParagraphId = "0AAC195D", TextId = "77777777" };

            ParagraphProperties paragraphProperties95 = new ParagraphProperties();
            Justification justification19 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties95 = new ParagraphMarkRunProperties();
            RunFonts runFonts335 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold56 = new Bold();
            FontSize fontSize343 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript337 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties95.Append(runFonts335);
            paragraphMarkRunProperties95.Append(bold56);
            paragraphMarkRunProperties95.Append(fontSize343);
            paragraphMarkRunProperties95.Append(fontSizeComplexScript337);

            paragraphProperties95.Append(justification19);
            paragraphProperties95.Append(paragraphMarkRunProperties95);

            Run run275 = new Run();

            RunProperties runProperties290 = new RunProperties();
            RunFonts runFonts336 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold57 = new Bold();
            FontSize fontSize344 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript338 = new FontSizeComplexScript() { Val = "22" };

            runProperties290.Append(runFonts336);
            runProperties290.Append(bold57);
            runProperties290.Append(fontSize344);
            runProperties290.Append(fontSizeComplexScript338);
            Text text256 = new Text();
            text256.Text = "TSM or DD";

            run275.Append(runProperties290);
            run275.Append(text256);

            paragraph96.Append(paragraphProperties95);
            paragraph96.Append(run275);

            tableCell26.Append(tableCellProperties26);
            tableCell26.Append(paragraph96);

            TableCell tableCell27 = new TableCell();

            TableCellProperties tableCellProperties27 = new TableCellProperties();
            TableCellWidth tableCellWidth27 = new TableCellWidth() { Width = "587", Type = TableWidthUnitValues.Pct };

            tableCellProperties27.Append(tableCellWidth27);

            Paragraph paragraph97 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "00BC2F6B", ParagraphId = "0AAC195E", TextId = "77777777" };

            ParagraphProperties paragraphProperties96 = new ParagraphProperties();
            Justification justification20 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties96 = new ParagraphMarkRunProperties();
            RunFonts runFonts337 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold58 = new Bold();
            FontSize fontSize345 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript339 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties96.Append(runFonts337);
            paragraphMarkRunProperties96.Append(bold58);
            paragraphMarkRunProperties96.Append(fontSize345);
            paragraphMarkRunProperties96.Append(fontSizeComplexScript339);

            paragraphProperties96.Append(justification20);
            paragraphProperties96.Append(paragraphMarkRunProperties96);

            Run run276 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties291 = new RunProperties();
            RunFonts runFonts338 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold59 = new Bold();
            FontSize fontSize346 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript340 = new FontSizeComplexScript() { Val = "22" };

            runProperties291.Append(runFonts338);
            runProperties291.Append(bold59);
            runProperties291.Append(fontSize346);
            runProperties291.Append(fontSizeComplexScript340);
            Text text257 = new Text();
            text257.Text = "DC";

            run276.Append(runProperties291);
            run276.Append(text257);

            paragraph97.Append(paragraphProperties96);
            paragraph97.Append(run276);

            tableCell27.Append(tableCellProperties27);
            tableCell27.Append(paragraph97);

            tableRow9.Append(tableRowProperties9);
            tableRow9.Append(tableCell17);
            tableRow9.Append(tableCell18);
            tableRow9.Append(tableCell19);
            tableRow9.Append(tableCell20);
            tableRow9.Append(tableCell21);
            tableRow9.Append(tableCell22);
            tableRow9.Append(tableCell23);
            tableRow9.Append(tableCell24);
            tableRow9.Append(tableCell25);
            tableRow9.Append(tableCell26);
            tableRow9.Append(tableCell27);

            TableRow tableRow10 = new TableRow() { RsidTableRowMarkRevision = "00BC2F6B", RsidTableRowAddition = "00BC048A", RsidTableRowProperties = "00624202", ParagraphId = "0AAC196C", TextId = "77777777" };

            TableRowProperties tableRowProperties10 = new TableRowProperties();
            TableRowHeight tableRowHeight10 = new TableRowHeight() { Val = (UInt32Value)576U };

            tableRowProperties10.Append(tableRowHeight10);

            TableCell tableCell28 = new TableCell();

            TableCellProperties tableCellProperties28 = new TableCellProperties();
            TableCellWidth tableCellWidth28 = new TableCellWidth() { Width = "690", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment17 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties28.Append(tableCellWidth28);
            tableCellProperties28.Append(tableCellVerticalAlignment17);

            Paragraph paragraph98 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "00BC2F6B", ParagraphId = "0AAC1960", TextId = "77777777" };

            ParagraphProperties paragraphProperties97 = new ParagraphProperties();
            Justification justification21 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties97 = new ParagraphMarkRunProperties();
            RunFonts runFonts339 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color84 = new Color() { Val = "FF0000" };
            FontSize fontSize347 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript341 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties97.Append(runFonts339);
            paragraphMarkRunProperties97.Append(color84);
            paragraphMarkRunProperties97.Append(fontSize347);
            paragraphMarkRunProperties97.Append(fontSizeComplexScript341);

            paragraphProperties97.Append(justification21);
            paragraphProperties97.Append(paragraphMarkRunProperties97);

            Run run277 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties292 = new RunProperties();
            RunFonts runFonts340 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color85 = new Color() { Val = "FF0000" };
            FontSize fontSize348 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript342 = new FontSizeComplexScript() { Val = "22" };

            runProperties292.Append(runFonts340);
            runProperties292.Append(color85);
            runProperties292.Append(fontSize348);
            runProperties292.Append(fontSizeComplexScript342);
            Text text258 = new Text();
            text258.Text = "BJCxxxxCN01";

            run277.Append(runProperties292);
            run277.Append(text258);

            paragraph98.Append(paragraphProperties97);
            paragraph98.Append(run277);

            tableCell28.Append(tableCellProperties28);
            tableCell28.Append(paragraph98);

            TableCell tableCell29 = new TableCell();

            TableCellProperties tableCellProperties29 = new TableCellProperties();
            TableCellWidth tableCellWidth29 = new TableCellWidth() { Width = "375", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment18 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties29.Append(tableCellWidth29);
            tableCellProperties29.Append(tableCellVerticalAlignment18);

            Paragraph paragraph99 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00BC2F6B", ParagraphId = "0AAC1961", TextId = "77777777" };

            ParagraphProperties paragraphProperties98 = new ParagraphProperties();
            Justification justification22 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties98 = new ParagraphMarkRunProperties();
            RunFonts runFonts341 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color86 = new Color() { Val = "FF0000" };
            FontSize fontSize349 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript343 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties98.Append(runFonts341);
            paragraphMarkRunProperties98.Append(color86);
            paragraphMarkRunProperties98.Append(fontSize349);
            paragraphMarkRunProperties98.Append(fontSizeComplexScript343);

            paragraphProperties98.Append(justification22);
            paragraphProperties98.Append(paragraphMarkRunProperties98);

            Run run278 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties293 = new RunProperties();
            RunFonts runFonts342 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color87 = new Color() { Val = "FF0000" };
            FontSize fontSize350 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript344 = new FontSizeComplexScript() { Val = "22" };

            runProperties293.Append(runFonts342);
            runProperties293.Append(color87);
            runProperties293.Append(fontSize350);
            runProperties293.Append(fontSizeComplexScript344);
            Text text259 = new Text();
            text259.Text = "HS23";

            run278.Append(runProperties293);
            run278.Append(text259);

            paragraph99.Append(paragraphProperties98);
            paragraph99.Append(run278);

            tableCell29.Append(tableCellProperties29);
            tableCell29.Append(paragraph99);

            TableCell tableCell30 = new TableCell();

            TableCellProperties tableCellProperties30 = new TableCellProperties();
            TableCellWidth tableCellWidth30 = new TableCellWidth() { Width = "479", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment19 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties30.Append(tableCellWidth30);
            tableCellProperties30.Append(tableCellVerticalAlignment19);

            Paragraph paragraph100 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "00BC2F6B", ParagraphId = "0AAC1962", TextId = "77777777" };

            ParagraphProperties paragraphProperties99 = new ParagraphProperties();
            Justification justification23 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties99 = new ParagraphMarkRunProperties();
            RunFonts runFonts343 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color88 = new Color() { Val = "FF0000" };
            FontSize fontSize351 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript345 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties99.Append(runFonts343);
            paragraphMarkRunProperties99.Append(color88);
            paragraphMarkRunProperties99.Append(fontSize351);
            paragraphMarkRunProperties99.Append(fontSizeComplexScript345);

            paragraphProperties99.Append(justification23);
            paragraphProperties99.Append(paragraphMarkRunProperties99);

            Run run279 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties294 = new RunProperties();
            RunFonts runFonts344 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color89 = new Color() { Val = "FF0000" };
            FontSize fontSize352 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript346 = new FontSizeComplexScript() { Val = "22" };

            runProperties294.Append(runFonts344);
            runProperties294.Append(color89);
            runProperties294.Append(fontSize352);
            runProperties294.Append(fontSizeComplexScript346);
            Text text260 = new Text();
            text260.Text = "2 @ 2.0ghz (8core per proc)";

            run279.Append(runProperties294);
            run279.Append(text260);

            paragraph100.Append(paragraphProperties99);
            paragraph100.Append(run279);

            tableCell30.Append(tableCellProperties30);
            tableCell30.Append(paragraph100);

            TableCell tableCell31 = new TableCell();

            TableCellProperties tableCellProperties31 = new TableCellProperties();
            TableCellWidth tableCellWidth31 = new TableCellWidth() { Width = "444", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment20 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties31.Append(tableCellWidth31);
            tableCellProperties31.Append(tableCellVerticalAlignment20);

            Paragraph paragraph101 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "00BC2F6B", ParagraphId = "0AAC1963", TextId = "77777777" };

            ParagraphProperties paragraphProperties100 = new ParagraphProperties();
            Justification justification24 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties100 = new ParagraphMarkRunProperties();
            RunFonts runFonts345 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color90 = new Color() { Val = "FF0000" };
            FontSize fontSize353 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript347 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties100.Append(runFonts345);
            paragraphMarkRunProperties100.Append(color90);
            paragraphMarkRunProperties100.Append(fontSize353);
            paragraphMarkRunProperties100.Append(fontSizeComplexScript347);

            paragraphProperties100.Append(justification24);
            paragraphProperties100.Append(paragraphMarkRunProperties100);

            Run run280 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties295 = new RunProperties();
            RunFonts runFonts346 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color91 = new Color() { Val = "FF0000" };
            FontSize fontSize354 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript348 = new FontSizeComplexScript() { Val = "22" };

            runProperties295.Append(runFonts346);
            runProperties295.Append(color91);
            runProperties295.Append(fontSize354);
            runProperties295.Append(fontSizeComplexScript348);
            Text text261 = new Text();
            text261.Text = "W2K8r2 Std x64";

            run280.Append(runProperties295);
            run280.Append(text261);

            paragraph101.Append(paragraphProperties100);
            paragraph101.Append(run280);

            tableCell31.Append(tableCellProperties31);
            tableCell31.Append(paragraph101);

            TableCell tableCell32 = new TableCell();

            TableCellProperties tableCellProperties32 = new TableCellProperties();
            TableCellWidth tableCellWidth32 = new TableCellWidth() { Width = "341", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment21 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties32.Append(tableCellWidth32);
            tableCellProperties32.Append(tableCellVerticalAlignment21);

            Paragraph paragraph102 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "00BC2F6B", ParagraphId = "0AAC1964", TextId = "77777777" };

            ParagraphProperties paragraphProperties101 = new ParagraphProperties();
            Justification justification25 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties101 = new ParagraphMarkRunProperties();
            RunFonts runFonts347 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color92 = new Color() { Val = "FF0000" };
            FontSize fontSize355 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript349 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties101.Append(runFonts347);
            paragraphMarkRunProperties101.Append(color92);
            paragraphMarkRunProperties101.Append(fontSize355);
            paragraphMarkRunProperties101.Append(fontSizeComplexScript349);

            paragraphProperties101.Append(justification25);
            paragraphProperties101.Append(paragraphMarkRunProperties101);

            Run run281 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties296 = new RunProperties();
            RunFonts runFonts348 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color93 = new Color() { Val = "FF0000" };
            FontSize fontSize356 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript350 = new FontSizeComplexScript() { Val = "22" };

            runProperties296.Append(runFonts348);
            runProperties296.Append(color93);
            runProperties296.Append(fontSize356);
            runProperties296.Append(fontSizeComplexScript350);
            Text text262 = new Text();
            text262.Text = "8 @ 4gb";

            run281.Append(runProperties296);
            run281.Append(text262);

            paragraph102.Append(paragraphProperties101);
            paragraph102.Append(run281);

            tableCell32.Append(tableCellProperties32);
            tableCell32.Append(paragraph102);

            TableCell tableCell33 = new TableCell();

            TableCellProperties tableCellProperties33 = new TableCellProperties();
            TableCellWidth tableCellWidth33 = new TableCellWidth() { Width = "274", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment22 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties33.Append(tableCellWidth33);
            tableCellProperties33.Append(tableCellVerticalAlignment22);

            Paragraph paragraph103 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "004C118E", ParagraphId = "0AAC1965", TextId = "77777777" };

            ParagraphProperties paragraphProperties102 = new ParagraphProperties();
            Justification justification26 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties102 = new ParagraphMarkRunProperties();
            RunFonts runFonts349 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color94 = new Color() { Val = "FF0000" };
            FontSize fontSize357 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript351 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties102.Append(runFonts349);
            paragraphMarkRunProperties102.Append(color94);
            paragraphMarkRunProperties102.Append(fontSize357);
            paragraphMarkRunProperties102.Append(fontSizeComplexScript351);

            paragraphProperties102.Append(justification26);
            paragraphProperties102.Append(paragraphMarkRunProperties102);

            Run run282 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties297 = new RunProperties();
            RunFonts runFonts350 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color95 = new Color() { Val = "FF0000" };
            FontSize fontSize358 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript352 = new FontSizeComplexScript() { Val = "22" };

            runProperties297.Append(runFonts350);
            runProperties297.Append(color95);
            runProperties297.Append(fontSize358);
            runProperties297.Append(fontSizeComplexScript352);
            Text text263 = new Text();
            text263.Text = "Y";

            run282.Append(runProperties297);
            run282.Append(text263);

            paragraph103.Append(paragraphProperties102);
            paragraph103.Append(run282);

            tableCell33.Append(tableCellProperties33);
            tableCell33.Append(paragraph103);

            TableCell tableCell34 = new TableCell();

            TableCellProperties tableCellProperties34 = new TableCellProperties();
            TableCellWidth tableCellWidth34 = new TableCellWidth() { Width = "614", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment23 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties34.Append(tableCellWidth34);
            tableCellProperties34.Append(tableCellVerticalAlignment23);

            Paragraph paragraph104 = new Paragraph() { RsidParagraphAddition = "00BC048A", RsidParagraphProperties = "008841D9", RsidRunAdditionDefault = "00BC048A", ParagraphId = "790D65E5", TextId = "77777777" };

            ParagraphProperties paragraphProperties103 = new ParagraphProperties();
            Justification justification27 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties103 = new ParagraphMarkRunProperties();
            RunFonts runFonts351 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color96 = new Color() { Val = "FF0000" };
            FontSize fontSize359 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript353 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties103.Append(runFonts351);
            paragraphMarkRunProperties103.Append(color96);
            paragraphMarkRunProperties103.Append(fontSize359);
            paragraphMarkRunProperties103.Append(fontSizeComplexScript353);

            paragraphProperties103.Append(justification27);
            paragraphProperties103.Append(paragraphMarkRunProperties103);

            Run run283 = new Run();

            RunProperties runProperties298 = new RunProperties();
            RunFonts runFonts352 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color97 = new Color() { Val = "FF0000" };
            FontSize fontSize360 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript354 = new FontSizeComplexScript() { Val = "22" };

            runProperties298.Append(runFonts352);
            runProperties298.Append(color97);
            runProperties298.Append(fontSize360);
            runProperties298.Append(fontSizeComplexScript354);
            Text text264 = new Text();
            text264.Text = "C=146gb (RAID1)";

            run283.Append(runProperties298);
            run283.Append(text264);

            paragraph104.Append(paragraphProperties103);
            paragraph104.Append(run283);

            Paragraph paragraph105 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "008841D9", RsidParagraphProperties = "00BC048A", RsidRunAdditionDefault = "00747E89", ParagraphId = "0AAC1967", TextId = "18C3BB5F" };

            ParagraphProperties paragraphProperties104 = new ParagraphProperties();
            Justification justification28 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties104 = new ParagraphMarkRunProperties();
            RunFonts runFonts353 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color98 = new Color() { Val = "FF0000" };
            FontSize fontSize361 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript355 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties104.Append(runFonts353);
            paragraphMarkRunProperties104.Append(color98);
            paragraphMarkRunProperties104.Append(fontSize361);
            paragraphMarkRunProperties104.Append(fontSizeComplexScript355);

            paragraphProperties104.Append(justification28);
            paragraphProperties104.Append(paragraphMarkRunProperties104);

            Run run284 = new Run();

            RunProperties runProperties299 = new RunProperties();
            RunFonts runFonts354 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color99 = new Color() { Val = "FF0000" };
            FontSize fontSize362 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript356 = new FontSizeComplexScript() { Val = "22" };

            runProperties299.Append(runFonts354);
            runProperties299.Append(color99);
            runProperties299.Append(fontSize362);
            runProperties299.Append(fontSizeComplexScript356);
            Text text265 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text265.Text = "Or ";

            run284.Append(runProperties299);
            run284.Append(text265);

            Run run285 = new Run() { RsidRunAddition = "00BC048A" };

            RunProperties runProperties300 = new RunProperties();
            RunFonts runFonts355 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color100 = new Color() { Val = "FF0000" };
            FontSize fontSize363 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript357 = new FontSizeComplexScript() { Val = "22" };

            runProperties300.Append(runFonts355);
            runProperties300.Append(color100);
            runProperties300.Append(fontSize363);
            runProperties300.Append(fontSizeComplexScript357);
            Text text266 = new Text();
            text266.Text = "See Drive Layouts & Size";

            run285.Append(runProperties300);
            run285.Append(text266);

            paragraph105.Append(paragraphProperties104);
            paragraph105.Append(run284);
            paragraph105.Append(run285);

            tableCell34.Append(tableCellProperties34);
            tableCell34.Append(paragraph104);
            tableCell34.Append(paragraph105);

            TableCell tableCell35 = new TableCell();

            TableCellProperties tableCellProperties35 = new TableCellProperties();
            TableCellWidth tableCellWidth35 = new TableCellWidth() { Width = "444", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment24 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties35.Append(tableCellWidth35);
            tableCellProperties35.Append(tableCellVerticalAlignment24);

            Paragraph paragraph106 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "008841D9", ParagraphId = "0AAC1968", TextId = "6112649A" };

            ParagraphProperties paragraphProperties105 = new ParagraphProperties();
            Justification justification29 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties105 = new ParagraphMarkRunProperties();
            RunFonts runFonts356 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color101 = new Color() { Val = "FF0000" };
            FontSize fontSize364 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript358 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties105.Append(runFonts356);
            paragraphMarkRunProperties105.Append(color101);
            paragraphMarkRunProperties105.Append(fontSize364);
            paragraphMarkRunProperties105.Append(fontSizeComplexScript358);

            paragraphProperties105.Append(justification29);
            paragraphProperties105.Append(paragraphMarkRunProperties105);

            Run run286 = new Run();

            RunProperties runProperties301 = new RunProperties();
            RunFonts runFonts357 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color102 = new Color() { Val = "FF0000" };
            FontSize fontSize365 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript359 = new FontSizeComplexScript() { Val = "22" };

            runProperties301.Append(runFonts357);
            runProperties301.Append(color102);
            runProperties301.Append(fontSize365);
            runProperties301.Append(fontSizeComplexScript359);
            Text text267 = new Text();
            text267.Text = "N";

            run286.Append(runProperties301);
            run286.Append(text267);

            Run run287 = new Run() { RsidRunAddition = "00624202" };

            RunProperties runProperties302 = new RunProperties();
            RunFonts runFonts358 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color103 = new Color() { Val = "FF0000" };
            FontSize fontSize366 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript360 = new FontSizeComplexScript() { Val = "22" };

            runProperties302.Append(runFonts358);
            runProperties302.Append(color103);
            runProperties302.Append(fontSize366);
            runProperties302.Append(fontSizeComplexScript360);
            Text text268 = new Text();
            text268.Text = "/A";

            run287.Append(runProperties302);
            run287.Append(text268);

            paragraph106.Append(paragraphProperties105);
            paragraph106.Append(run286);
            paragraph106.Append(run287);

            tableCell35.Append(tableCellProperties35);
            tableCell35.Append(paragraph106);

            TableCell tableCell36 = new TableCell();

            TableCellProperties tableCellProperties36 = new TableCellProperties();
            TableCellWidth tableCellWidth36 = new TableCellWidth() { Width = "444", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment25 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties36.Append(tableCellWidth36);
            tableCellProperties36.Append(tableCellVerticalAlignment25);

            Paragraph paragraph107 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "004C118E", ParagraphId = "0AAC1969", TextId = "77777777" };

            ParagraphProperties paragraphProperties106 = new ParagraphProperties();
            Justification justification30 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties106 = new ParagraphMarkRunProperties();
            RunFonts runFonts359 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color104 = new Color() { Val = "FF0000" };
            FontSize fontSize367 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript361 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties106.Append(runFonts359);
            paragraphMarkRunProperties106.Append(color104);
            paragraphMarkRunProperties106.Append(fontSize367);
            paragraphMarkRunProperties106.Append(fontSizeComplexScript361);

            paragraphProperties106.Append(justification30);
            paragraphProperties106.Append(paragraphMarkRunProperties106);

            Run run288 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties303 = new RunProperties();
            RunFonts runFonts360 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color105 = new Color() { Val = "FF0000" };
            FontSize fontSize368 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript362 = new FontSizeComplexScript() { Val = "22" };

            runProperties303.Append(runFonts360);
            runProperties303.Append(color105);
            runProperties303.Append(fontSize368);
            runProperties303.Append(fontSizeComplexScript362);
            Text text269 = new Text();
            text269.Text = "Prod";

            run288.Append(runProperties303);
            run288.Append(text269);

            paragraph107.Append(paragraphProperties106);
            paragraph107.Append(run288);

            tableCell36.Append(tableCellProperties36);
            tableCell36.Append(paragraph107);

            TableCell tableCell37 = new TableCell();

            TableCellProperties tableCellProperties37 = new TableCellProperties();
            TableCellWidth tableCellWidth37 = new TableCellWidth() { Width = "308", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment26 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties37.Append(tableCellWidth37);
            tableCellProperties37.Append(tableCellVerticalAlignment26);

            Paragraph paragraph108 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "008841D9", RsidRunAdditionDefault = "008841D9", ParagraphId = "0AAC196A", TextId = "77777777" };

            ParagraphProperties paragraphProperties107 = new ParagraphProperties();
            Justification justification31 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties107 = new ParagraphMarkRunProperties();
            RunFonts runFonts361 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color106 = new Color() { Val = "FF0000" };
            FontSize fontSize369 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript363 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties107.Append(runFonts361);
            paragraphMarkRunProperties107.Append(color106);
            paragraphMarkRunProperties107.Append(fontSize369);
            paragraphMarkRunProperties107.Append(fontSizeComplexScript363);

            paragraphProperties107.Append(justification31);
            paragraphProperties107.Append(paragraphMarkRunProperties107);

            Run run289 = new Run();

            RunProperties runProperties304 = new RunProperties();
            RunFonts runFonts362 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color107 = new Color() { Val = "FF0000" };
            FontSize fontSize370 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript364 = new FontSizeComplexScript() { Val = "22" };

            runProperties304.Append(runFonts362);
            runProperties304.Append(color107);
            runProperties304.Append(fontSize370);
            runProperties304.Append(fontSizeComplexScript364);
            Text text270 = new Text();
            text270.Text = "TSM";

            run289.Append(runProperties304);
            run289.Append(text270);

            paragraph108.Append(paragraphProperties107);
            paragraph108.Append(run289);

            tableCell37.Append(tableCellProperties37);
            tableCell37.Append(paragraph108);

            TableCell tableCell38 = new TableCell();

            TableCellProperties tableCellProperties38 = new TableCellProperties();
            TableCellWidth tableCellWidth38 = new TableCellWidth() { Width = "587", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment27 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties38.Append(tableCellWidth38);
            tableCellProperties38.Append(tableCellVerticalAlignment27);

            Paragraph paragraph109 = new Paragraph() { RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "004C118E", ParagraphId = "3B8A878B", TextId = "77777777" };

            ParagraphProperties paragraphProperties108 = new ParagraphProperties();
            Justification justification32 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties108 = new ParagraphMarkRunProperties();
            RunFonts runFonts363 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color108 = new Color() { Val = "FF0000" };
            FontSize fontSize371 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript365 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties108.Append(runFonts363);
            paragraphMarkRunProperties108.Append(color108);
            paragraphMarkRunProperties108.Append(fontSize371);
            paragraphMarkRunProperties108.Append(fontSizeComplexScript365);

            paragraphProperties108.Append(justification32);
            paragraphProperties108.Append(paragraphMarkRunProperties108);

            Run run290 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties305 = new RunProperties();
            RunFonts runFonts364 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color109 = new Color() { Val = "FF0000" };
            FontSize fontSize372 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript366 = new FontSizeComplexScript() { Val = "22" };

            runProperties305.Append(runFonts364);
            runProperties305.Append(color109);
            runProperties305.Append(fontSize372);
            runProperties305.Append(fontSizeComplexScript366);
            Text text271 = new Text();
            text271.Text = "PDC";

            run290.Append(runProperties305);
            run290.Append(text271);

            paragraph109.Append(paragraphProperties108);
            paragraph109.Append(run290);

            Paragraph paragraph110 = new Paragraph() { RsidParagraphMarkRevision = "00BC048A", RsidParagraphAddition = "00BC048A", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "00BC048A", ParagraphId = "4C7EBEBB", TextId = "77777777" };

            ParagraphProperties paragraphProperties109 = new ParagraphProperties();
            Justification justification33 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties109 = new ParagraphMarkRunProperties();
            RunFonts runFonts365 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color110 = new Color() { Val = "7030A0" };
            FontSize fontSize373 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript367 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties109.Append(runFonts365);
            paragraphMarkRunProperties109.Append(color110);
            paragraphMarkRunProperties109.Append(fontSize373);
            paragraphMarkRunProperties109.Append(fontSizeComplexScript367);

            paragraphProperties109.Append(justification33);
            paragraphProperties109.Append(paragraphMarkRunProperties109);

            Run run291 = new Run() { RsidRunProperties = "00BC048A" };

            RunProperties runProperties306 = new RunProperties();
            RunFonts runFonts366 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color111 = new Color() { Val = "7030A0" };
            FontSize fontSize374 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript368 = new FontSizeComplexScript() { Val = "22" };

            runProperties306.Append(runFonts366);
            runProperties306.Append(color111);
            runProperties306.Append(fontSize374);
            runProperties306.Append(fontSizeComplexScript368);
            Text text272 = new Text();
            text272.Text = "BJCBLADEx0";

            run291.Append(runProperties306);
            run291.Append(text272);

            paragraph110.Append(paragraphProperties109);
            paragraph110.Append(run291);

            Paragraph paragraph111 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00BC048A", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "00BC048A", ParagraphId = "0AAC196B", TextId = "6D205786" };

            ParagraphProperties paragraphProperties110 = new ParagraphProperties();
            Justification justification34 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties110 = new ParagraphMarkRunProperties();
            RunFonts runFonts367 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color112 = new Color() { Val = "FF0000" };
            FontSize fontSize375 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript369 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties110.Append(runFonts367);
            paragraphMarkRunProperties110.Append(color112);
            paragraphMarkRunProperties110.Append(fontSize375);
            paragraphMarkRunProperties110.Append(fontSizeComplexScript369);

            paragraphProperties110.Append(justification34);
            paragraphProperties110.Append(paragraphMarkRunProperties110);

            Run run292 = new Run() { RsidRunProperties = "00BC048A" };

            RunProperties runProperties307 = new RunProperties();
            RunFonts runFonts368 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color113 = new Color() { Val = "7030A0" };
            FontSize fontSize376 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript370 = new FontSizeComplexScript() { Val = "22" };

            runProperties307.Append(runFonts368);
            runProperties307.Append(color113);
            runProperties307.Append(fontSize376);
            runProperties307.Append(fontSizeComplexScript370);
            Text text273 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text273.Text = "Slot ";

            run292.Append(runProperties307);
            run292.Append(text273);

            paragraph111.Append(paragraphProperties110);
            paragraph111.Append(run292);

            tableCell38.Append(tableCellProperties38);
            tableCell38.Append(paragraph109);
            tableCell38.Append(paragraph110);
            tableCell38.Append(paragraph111);

            tableRow10.Append(tableRowProperties10);
            tableRow10.Append(tableCell28);
            tableRow10.Append(tableCell29);
            tableRow10.Append(tableCell30);
            tableRow10.Append(tableCell31);
            tableRow10.Append(tableCell32);
            tableRow10.Append(tableCell33);
            tableRow10.Append(tableCell34);
            tableRow10.Append(tableCell35);
            tableRow10.Append(tableCell36);
            tableRow10.Append(tableCell37);
            tableRow10.Append(tableCell38);

            TableRow tableRow11 = new TableRow() { RsidTableRowMarkRevision = "004C118E", RsidTableRowAddition = "00BC048A", RsidTableRowProperties = "00624202", ParagraphId = "0AAC1978", TextId = "77777777" };

            TableRowProperties tableRowProperties11 = new TableRowProperties();
            TableRowHeight tableRowHeight11 = new TableRowHeight() { Val = (UInt32Value)576U };

            tableRowProperties11.Append(tableRowHeight11);

            TableCell tableCell39 = new TableCell();

            TableCellProperties tableCellProperties39 = new TableCellProperties();
            TableCellWidth tableCellWidth39 = new TableCellWidth() { Width = "690", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment28 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties39.Append(tableCellWidth39);
            tableCellProperties39.Append(tableCellVerticalAlignment28);

            Paragraph paragraph112 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "004C118E", ParagraphId = "0AAC196D", TextId = "120AF98E" };

            ParagraphProperties paragraphProperties111 = new ParagraphProperties();
            Justification justification35 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties111 = new ParagraphMarkRunProperties();
            RunFonts runFonts369 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize377 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript371 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties111.Append(runFonts369);
            paragraphMarkRunProperties111.Append(fontSize377);
            paragraphMarkRunProperties111.Append(fontSizeComplexScript371);

            paragraphProperties111.Append(justification35);
            paragraphProperties111.Append(paragraphMarkRunProperties111);

            paragraph112.Append(paragraphProperties111);

            tableCell39.Append(tableCellProperties39);
            tableCell39.Append(paragraph112);

            TableCell tableCell40 = new TableCell();

            TableCellProperties tableCellProperties40 = new TableCellProperties();
            TableCellWidth tableCellWidth40 = new TableCellWidth() { Width = "375", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment29 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties40.Append(tableCellWidth40);
            tableCellProperties40.Append(tableCellVerticalAlignment29);

            Paragraph paragraph113 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "004C118E", ParagraphId = "0AAC196E", TextId = "77777777" };

            ParagraphProperties paragraphProperties112 = new ParagraphProperties();
            Justification justification36 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties112 = new ParagraphMarkRunProperties();
            RunFonts runFonts370 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize378 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript372 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties112.Append(runFonts370);
            paragraphMarkRunProperties112.Append(fontSize378);
            paragraphMarkRunProperties112.Append(fontSizeComplexScript372);

            paragraphProperties112.Append(justification36);
            paragraphProperties112.Append(paragraphMarkRunProperties112);

            paragraph113.Append(paragraphProperties112);

            tableCell40.Append(tableCellProperties40);
            tableCell40.Append(paragraph113);

            TableCell tableCell41 = new TableCell();

            TableCellProperties tableCellProperties41 = new TableCellProperties();
            TableCellWidth tableCellWidth41 = new TableCellWidth() { Width = "479", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment30 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties41.Append(tableCellWidth41);
            tableCellProperties41.Append(tableCellVerticalAlignment30);

            Paragraph paragraph114 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "004C118E", ParagraphId = "0AAC196F", TextId = "77777777" };

            ParagraphProperties paragraphProperties113 = new ParagraphProperties();
            Justification justification37 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties113 = new ParagraphMarkRunProperties();
            RunFonts runFonts371 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize379 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript373 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties113.Append(runFonts371);
            paragraphMarkRunProperties113.Append(fontSize379);
            paragraphMarkRunProperties113.Append(fontSizeComplexScript373);

            paragraphProperties113.Append(justification37);
            paragraphProperties113.Append(paragraphMarkRunProperties113);

            paragraph114.Append(paragraphProperties113);

            tableCell41.Append(tableCellProperties41);
            tableCell41.Append(paragraph114);

            TableCell tableCell42 = new TableCell();

            TableCellProperties tableCellProperties42 = new TableCellProperties();
            TableCellWidth tableCellWidth42 = new TableCellWidth() { Width = "444", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment31 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties42.Append(tableCellWidth42);
            tableCellProperties42.Append(tableCellVerticalAlignment31);

            Paragraph paragraph115 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "004C118E", ParagraphId = "0AAC1970", TextId = "77777777" };

            ParagraphProperties paragraphProperties114 = new ParagraphProperties();
            Justification justification38 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties114 = new ParagraphMarkRunProperties();
            RunFonts runFonts372 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize380 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript374 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties114.Append(runFonts372);
            paragraphMarkRunProperties114.Append(fontSize380);
            paragraphMarkRunProperties114.Append(fontSizeComplexScript374);

            paragraphProperties114.Append(justification38);
            paragraphProperties114.Append(paragraphMarkRunProperties114);

            paragraph115.Append(paragraphProperties114);

            tableCell42.Append(tableCellProperties42);
            tableCell42.Append(paragraph115);

            TableCell tableCell43 = new TableCell();

            TableCellProperties tableCellProperties43 = new TableCellProperties();
            TableCellWidth tableCellWidth43 = new TableCellWidth() { Width = "341", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment32 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties43.Append(tableCellWidth43);
            tableCellProperties43.Append(tableCellVerticalAlignment32);

            Paragraph paragraph116 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "004C118E", ParagraphId = "0AAC1971", TextId = "77777777" };

            ParagraphProperties paragraphProperties115 = new ParagraphProperties();
            Justification justification39 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties115 = new ParagraphMarkRunProperties();
            RunFonts runFonts373 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize381 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript375 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties115.Append(runFonts373);
            paragraphMarkRunProperties115.Append(fontSize381);
            paragraphMarkRunProperties115.Append(fontSizeComplexScript375);

            paragraphProperties115.Append(justification39);
            paragraphProperties115.Append(paragraphMarkRunProperties115);

            paragraph116.Append(paragraphProperties115);

            tableCell43.Append(tableCellProperties43);
            tableCell43.Append(paragraph116);

            TableCell tableCell44 = new TableCell();

            TableCellProperties tableCellProperties44 = new TableCellProperties();
            TableCellWidth tableCellWidth44 = new TableCellWidth() { Width = "274", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment33 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties44.Append(tableCellWidth44);
            tableCellProperties44.Append(tableCellVerticalAlignment33);

            Paragraph paragraph117 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "004C118E", ParagraphId = "0AAC1972", TextId = "77777777" };

            ParagraphProperties paragraphProperties116 = new ParagraphProperties();
            Justification justification40 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties116 = new ParagraphMarkRunProperties();
            RunFonts runFonts374 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize382 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript376 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties116.Append(runFonts374);
            paragraphMarkRunProperties116.Append(fontSize382);
            paragraphMarkRunProperties116.Append(fontSizeComplexScript376);

            paragraphProperties116.Append(justification40);
            paragraphProperties116.Append(paragraphMarkRunProperties116);

            paragraph117.Append(paragraphProperties116);

            tableCell44.Append(tableCellProperties44);
            tableCell44.Append(paragraph117);

            TableCell tableCell45 = new TableCell();

            TableCellProperties tableCellProperties45 = new TableCellProperties();
            TableCellWidth tableCellWidth45 = new TableCellWidth() { Width = "614", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment34 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties45.Append(tableCellWidth45);
            tableCellProperties45.Append(tableCellVerticalAlignment34);

            Paragraph paragraph118 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "004C118E", ParagraphId = "0AAC1973", TextId = "77777777" };

            ParagraphProperties paragraphProperties117 = new ParagraphProperties();
            Justification justification41 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties117 = new ParagraphMarkRunProperties();
            RunFonts runFonts375 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize383 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript377 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties117.Append(runFonts375);
            paragraphMarkRunProperties117.Append(fontSize383);
            paragraphMarkRunProperties117.Append(fontSizeComplexScript377);

            paragraphProperties117.Append(justification41);
            paragraphProperties117.Append(paragraphMarkRunProperties117);

            paragraph118.Append(paragraphProperties117);

            tableCell45.Append(tableCellProperties45);
            tableCell45.Append(paragraph118);

            TableCell tableCell46 = new TableCell();

            TableCellProperties tableCellProperties46 = new TableCellProperties();
            TableCellWidth tableCellWidth46 = new TableCellWidth() { Width = "444", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment35 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties46.Append(tableCellWidth46);
            tableCellProperties46.Append(tableCellVerticalAlignment35);

            Paragraph paragraph119 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "004C118E", ParagraphId = "0AAC1974", TextId = "77777777" };

            ParagraphProperties paragraphProperties118 = new ParagraphProperties();
            Justification justification42 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties118 = new ParagraphMarkRunProperties();
            RunFonts runFonts376 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize384 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript378 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties118.Append(runFonts376);
            paragraphMarkRunProperties118.Append(fontSize384);
            paragraphMarkRunProperties118.Append(fontSizeComplexScript378);

            paragraphProperties118.Append(justification42);
            paragraphProperties118.Append(paragraphMarkRunProperties118);

            paragraph119.Append(paragraphProperties118);

            tableCell46.Append(tableCellProperties46);
            tableCell46.Append(paragraph119);

            TableCell tableCell47 = new TableCell();

            TableCellProperties tableCellProperties47 = new TableCellProperties();
            TableCellWidth tableCellWidth47 = new TableCellWidth() { Width = "444", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment36 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties47.Append(tableCellWidth47);
            tableCellProperties47.Append(tableCellVerticalAlignment36);

            Paragraph paragraph120 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "004C118E", ParagraphId = "0AAC1975", TextId = "77777777" };

            ParagraphProperties paragraphProperties119 = new ParagraphProperties();
            Justification justification43 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties119 = new ParagraphMarkRunProperties();
            RunFonts runFonts377 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize385 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript379 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties119.Append(runFonts377);
            paragraphMarkRunProperties119.Append(fontSize385);
            paragraphMarkRunProperties119.Append(fontSizeComplexScript379);

            paragraphProperties119.Append(justification43);
            paragraphProperties119.Append(paragraphMarkRunProperties119);

            paragraph120.Append(paragraphProperties119);

            tableCell47.Append(tableCellProperties47);
            tableCell47.Append(paragraph120);

            TableCell tableCell48 = new TableCell();

            TableCellProperties tableCellProperties48 = new TableCellProperties();
            TableCellWidth tableCellWidth48 = new TableCellWidth() { Width = "308", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment37 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties48.Append(tableCellWidth48);
            tableCellProperties48.Append(tableCellVerticalAlignment37);

            Paragraph paragraph121 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "004C118E", ParagraphId = "0AAC1976", TextId = "77777777" };

            ParagraphProperties paragraphProperties120 = new ParagraphProperties();
            Justification justification44 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties120 = new ParagraphMarkRunProperties();
            RunFonts runFonts378 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize386 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript380 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties120.Append(runFonts378);
            paragraphMarkRunProperties120.Append(fontSize386);
            paragraphMarkRunProperties120.Append(fontSizeComplexScript380);

            paragraphProperties120.Append(justification44);
            paragraphProperties120.Append(paragraphMarkRunProperties120);

            paragraph121.Append(paragraphProperties120);

            tableCell48.Append(tableCellProperties48);
            tableCell48.Append(paragraph121);

            TableCell tableCell49 = new TableCell();

            TableCellProperties tableCellProperties49 = new TableCellProperties();
            TableCellWidth tableCellWidth49 = new TableCellWidth() { Width = "587", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment38 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties49.Append(tableCellWidth49);
            tableCellProperties49.Append(tableCellVerticalAlignment38);

            Paragraph paragraph122 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "004C118E", ParagraphId = "0AAC1977", TextId = "77777777" };

            ParagraphProperties paragraphProperties121 = new ParagraphProperties();
            Justification justification45 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties121 = new ParagraphMarkRunProperties();
            RunFonts runFonts379 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize387 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript381 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties121.Append(runFonts379);
            paragraphMarkRunProperties121.Append(fontSize387);
            paragraphMarkRunProperties121.Append(fontSizeComplexScript381);

            paragraphProperties121.Append(justification45);
            paragraphProperties121.Append(paragraphMarkRunProperties121);

            paragraph122.Append(paragraphProperties121);

            tableCell49.Append(tableCellProperties49);
            tableCell49.Append(paragraph122);

            tableRow11.Append(tableRowProperties11);
            tableRow11.Append(tableCell39);
            tableRow11.Append(tableCell40);
            tableRow11.Append(tableCell41);
            tableRow11.Append(tableCell42);
            tableRow11.Append(tableCell43);
            tableRow11.Append(tableCell44);
            tableRow11.Append(tableCell45);
            tableRow11.Append(tableCell46);
            tableRow11.Append(tableCell47);
            tableRow11.Append(tableCell48);
            tableRow11.Append(tableCell49);

            table2.Append(tableProperties2);
            table2.Append(tableGrid2);
            table2.Append(tableRow9);
            table2.Append(tableRow10);
            table2.Append(tableRow11);

            Paragraph paragraph123 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00116831", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00116831", ParagraphId = "0AAC1985", TextId = "77777777" };

            ParagraphProperties paragraphProperties122 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties122 = new ParagraphMarkRunProperties();
            RunFonts runFonts380 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold60 = new Bold();
            FontSize fontSize388 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript382 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties122.Append(runFonts380);
            paragraphMarkRunProperties122.Append(bold60);
            paragraphMarkRunProperties122.Append(fontSize388);
            paragraphMarkRunProperties122.Append(fontSizeComplexScript382);

            paragraphProperties122.Append(paragraphMarkRunProperties122);

            Run run293 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties308 = new RunProperties();
            RunFonts runFonts381 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize389 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript383 = new FontSizeComplexScript() { Val = "22" };

            runProperties308.Append(runFonts381);
            runProperties308.Append(fontSize389);
            runProperties308.Append(fontSizeComplexScript383);
            Text text274 = new Text();
            text274.Text = "* Cluster Configurations to be defined in Cluster Configurations section";

            run293.Append(runProperties308);
            run293.Append(text274);

            paragraph123.Append(paragraphProperties122);
            paragraph123.Append(run293);

            Paragraph paragraph124 = new Paragraph() { RsidParagraphAddition = "00116831", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00E518DD", ParagraphId = "0AAC1989", TextId = "312E84CC" };

            ParagraphProperties paragraphProperties123 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId13 = new ParagraphStyleId() { Val = "Heading2" };

            ParagraphMarkRunProperties paragraphMarkRunProperties123 = new ParagraphMarkRunProperties();
            Underline underline36 = new Underline() { Val = UnderlineValues.Single };

            paragraphMarkRunProperties123.Append(underline36);

            paragraphProperties123.Append(paragraphStyleId13);
            paragraphProperties123.Append(paragraphMarkRunProperties123);

            Run run294 = new Run();

            RunProperties runProperties309 = new RunProperties();
            Underline underline37 = new Underline() { Val = UnderlineValues.Single };

            runProperties309.Append(underline37);
            Text text275 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text275.Text = "9. ";

            run294.Append(runProperties309);
            run294.Append(text275);

            Run run295 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00116831" };

            RunProperties runProperties310 = new RunProperties();
            Underline underline38 = new Underline() { Val = UnderlineValues.Single };

            runProperties310.Append(underline38);
            Text text276 = new Text();
            text276.Text = "Virtual Server";

            run295.Append(runProperties310);
            run295.Append(text276);

            Run run296 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00E3016A" };

            RunProperties runProperties311 = new RunProperties();
            Underline underline39 = new Underline() { Val = UnderlineValues.Single };

            runProperties311.Append(underline39);
            Text text277 = new Text();
            text277.Text = "s";

            run296.Append(runProperties311);
            run296.Append(text277);

            Run run297 = new Run() { RsidRunProperties = "0057090B", RsidRunAddition = "0057090B" };

            RunProperties runProperties312 = new RunProperties();
            Color color114 = new Color() { Val = "FF0000" };
            Underline underline40 = new Underline() { Val = UnderlineValues.Single };

            runProperties312.Append(color114);
            runProperties312.Append(underline40);
            Text text278 = new Text();
            text278.Text = ": N/A";

            run297.Append(runProperties312);
            run297.Append(text278);

            paragraph124.Append(paragraphProperties123);
            paragraph124.Append(run294);
            paragraph124.Append(run295);
            paragraph124.Append(run296);
            paragraph124.Append(run297);

            Paragraph paragraph125 = new Paragraph() { RsidParagraphMarkRevision = "00C56510", RsidParagraphAddition = "00C56510", RsidParagraphProperties = "00C56510", RsidRunAdditionDefault = "00C56510", ParagraphId = "5B9E00F1", TextId = "57971150" };

            ParagraphProperties paragraphProperties124 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties124 = new ParagraphMarkRunProperties();
            Color color115 = new Color() { Val = "FF0000" };

            paragraphMarkRunProperties124.Append(color115);

            paragraphProperties124.Append(paragraphMarkRunProperties124);

            Run run298 = new Run();

            RunProperties runProperties313 = new RunProperties();
            Color color116 = new Color() { Val = "FF0000" };

            runProperties313.Append(color116);
            Text text279 = new Text();
            text279.Text = "No more than 1.7tb total size including all drives and ram";

            run298.Append(runProperties313);
            run298.Append(text279);

            paragraph125.Append(paragraphProperties124);
            paragraph125.Append(run298);

            Table table3 = new Table();

            TableProperties tableProperties3 = new TableProperties();
            TableWidth tableWidth3 = new TableWidth() { Width = "4993", Type = TableWidthUnitValues.Pct };

            TableBorders tableBorders2 = new TableBorders();
            TopBorder topBorder19 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder18 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder18 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder18 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder2 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder2 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableBorders2.Append(topBorder19);
            tableBorders2.Append(leftBorder18);
            tableBorders2.Append(bottomBorder18);
            tableBorders2.Append(rightBorder18);
            tableBorders2.Append(insideHorizontalBorder2);
            tableBorders2.Append(insideVerticalBorder2);
            TableLayout tableLayout2 = new TableLayout() { Type = TableLayoutValues.Fixed };
            TableLook tableLook3 = new TableLook() { Val = "00A0" };

            tableProperties3.Append(tableWidth3);
            tableProperties3.Append(tableBorders2);
            tableProperties3.Append(tableLayout2);
            tableProperties3.Append(tableLook3);

            TableGrid tableGrid3 = new TableGrid();
            GridColumn gridColumn14 = new GridColumn() { Width = "1787" };
            GridColumn gridColumn15 = new GridColumn() { Width = "1415" };
            GridColumn gridColumn16 = new GridColumn() { Width = "1593" };
            GridColumn gridColumn17 = new GridColumn() { Width = "1415" };
            GridColumn gridColumn18 = new GridColumn() { Width = "1417" };
            GridColumn gridColumn19 = new GridColumn() { Width = "1769" };
            GridColumn gridColumn20 = new GridColumn() { Width = "1591" };
            GridColumn gridColumn21 = new GridColumn() { Width = "1241" };
            GridColumn gridColumn22 = new GridColumn() { Width = "704" };

            tableGrid3.Append(gridColumn14);
            tableGrid3.Append(gridColumn15);
            tableGrid3.Append(gridColumn16);
            tableGrid3.Append(gridColumn17);
            tableGrid3.Append(gridColumn18);
            tableGrid3.Append(gridColumn19);
            tableGrid3.Append(gridColumn20);
            tableGrid3.Append(gridColumn21);
            tableGrid3.Append(gridColumn22);

            TableRow tableRow12 = new TableRow() { RsidTableRowMarkRevision = "004E361A", RsidTableRowAddition = "00BC048A", RsidTableRowProperties = "00BC048A", ParagraphId = "0AAC1996", TextId = "77777777" };

            TableRowProperties tableRowProperties12 = new TableRowProperties();
            TableRowHeight tableRowHeight12 = new TableRowHeight() { Val = (UInt32Value)576U };

            tableRowProperties12.Append(tableRowHeight12);

            TableCell tableCell50 = new TableCell();

            TableCellProperties tableCellProperties50 = new TableCellProperties();
            TableCellWidth tableCellWidth50 = new TableCellWidth() { Width = "691", Type = TableWidthUnitValues.Pct };

            tableCellProperties50.Append(tableCellWidth50);

            Paragraph paragraph126 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC198A", TextId = "77777777" };

            ParagraphProperties paragraphProperties125 = new ParagraphProperties();
            Justification justification46 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties125 = new ParagraphMarkRunProperties();
            RunFonts runFonts382 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold61 = new Bold();
            FontSize fontSize390 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript384 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties125.Append(runFonts382);
            paragraphMarkRunProperties125.Append(bold61);
            paragraphMarkRunProperties125.Append(fontSize390);
            paragraphMarkRunProperties125.Append(fontSizeComplexScript384);

            paragraphProperties125.Append(justification46);
            paragraphProperties125.Append(paragraphMarkRunProperties125);

            Run run299 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties314 = new RunProperties();
            RunFonts runFonts383 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold62 = new Bold();
            FontSize fontSize391 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript385 = new FontSizeComplexScript() { Val = "22" };

            runProperties314.Append(runFonts383);
            runProperties314.Append(bold62);
            runProperties314.Append(fontSize391);
            runProperties314.Append(fontSizeComplexScript385);
            Text text280 = new Text();
            text280.Text = "Name";

            run299.Append(runProperties314);
            run299.Append(text280);

            paragraph126.Append(paragraphProperties125);
            paragraph126.Append(run299);

            tableCell50.Append(tableCellProperties50);
            tableCell50.Append(paragraph126);

            TableCell tableCell51 = new TableCell();

            TableCellProperties tableCellProperties51 = new TableCellProperties();
            TableCellWidth tableCellWidth51 = new TableCellWidth() { Width = "547", Type = TableWidthUnitValues.Pct };

            tableCellProperties51.Append(tableCellWidth51);

            Paragraph paragraph127 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "00116FA1", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC198B", TextId = "64307D89" };

            ParagraphProperties paragraphProperties126 = new ParagraphProperties();
            Justification justification47 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties126 = new ParagraphMarkRunProperties();
            RunFonts runFonts384 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold63 = new Bold();
            FontSize fontSize392 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript386 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties126.Append(runFonts384);
            paragraphMarkRunProperties126.Append(bold63);
            paragraphMarkRunProperties126.Append(fontSize392);
            paragraphMarkRunProperties126.Append(fontSizeComplexScript386);

            paragraphProperties126.Append(justification47);
            paragraphProperties126.Append(paragraphMarkRunProperties126);

            Run run300 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties315 = new RunProperties();
            RunFonts runFonts385 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold64 = new Bold();
            FontSize fontSize393 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript387 = new FontSizeComplexScript() { Val = "22" };

            runProperties315.Append(runFonts385);
            runProperties315.Append(bold64);
            runProperties315.Append(fontSize393);
            runProperties315.Append(fontSizeComplexScript387);
            Text text281 = new Text();
            text281.Text = "CPU";

            run300.Append(runProperties315);
            run300.Append(text281);

            Run run301 = new Run();

            RunProperties runProperties316 = new RunProperties();
            RunFonts runFonts386 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold65 = new Bold();
            FontSize fontSize394 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript388 = new FontSizeComplexScript() { Val = "22" };

            runProperties316.Append(runFonts386);
            runProperties316.Append(bold65);
            runProperties316.Append(fontSize394);
            runProperties316.Append(fontSizeComplexScript388);
            Text text282 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text282.Text = " ";

            run301.Append(runProperties316);
            run301.Append(text282);

            Run run302 = new Run() { RsidRunAddition = "00116FA1" };

            RunProperties runProperties317 = new RunProperties();
            RunFonts runFonts387 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold66 = new Bold();
            FontSize fontSize395 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript389 = new FontSizeComplexScript() { Val = "22" };

            runProperties317.Append(runFonts387);
            runProperties317.Append(bold66);
            runProperties317.Append(fontSize395);
            runProperties317.Append(fontSizeComplexScript389);
            Text text283 = new Text();
            text283.Text = "C";

            run302.Append(runProperties317);
            run302.Append(text283);

            Run run303 = new Run();

            RunProperties runProperties318 = new RunProperties();
            RunFonts runFonts388 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold67 = new Bold();
            FontSize fontSize396 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript390 = new FontSizeComplexScript() { Val = "22" };

            runProperties318.Append(runFonts388);
            runProperties318.Append(bold67);
            runProperties318.Append(fontSize396);
            runProperties318.Append(fontSizeComplexScript390);
            Text text284 = new Text();
            text284.Text = "ount";

            run303.Append(runProperties318);
            run303.Append(text284);

            paragraph127.Append(paragraphProperties126);
            paragraph127.Append(run300);
            paragraph127.Append(run301);
            paragraph127.Append(run302);
            paragraph127.Append(run303);

            tableCell51.Append(tableCellProperties51);
            tableCell51.Append(paragraph127);

            TableCell tableCell52 = new TableCell();

            TableCellProperties tableCellProperties52 = new TableCellProperties();
            TableCellWidth tableCellWidth52 = new TableCellWidth() { Width = "616", Type = TableWidthUnitValues.Pct };

            tableCellProperties52.Append(tableCellWidth52);

            Paragraph paragraph128 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC198C", TextId = "77777777" };

            ParagraphProperties paragraphProperties127 = new ParagraphProperties();
            Justification justification48 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties127 = new ParagraphMarkRunProperties();
            RunFonts runFonts389 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold68 = new Bold();
            FontSize fontSize397 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript391 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties127.Append(runFonts389);
            paragraphMarkRunProperties127.Append(bold68);
            paragraphMarkRunProperties127.Append(fontSize397);
            paragraphMarkRunProperties127.Append(fontSizeComplexScript391);

            paragraphProperties127.Append(justification48);
            paragraphProperties127.Append(paragraphMarkRunProperties127);

            Run run304 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties319 = new RunProperties();
            RunFonts runFonts390 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold69 = new Bold();
            FontSize fontSize398 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript392 = new FontSizeComplexScript() { Val = "22" };

            runProperties319.Append(runFonts390);
            runProperties319.Append(bold69);
            runProperties319.Append(fontSize398);
            runProperties319.Append(fontSizeComplexScript392);
            Text text285 = new Text();
            text285.Text = "OS";

            run304.Append(runProperties319);
            run304.Append(text285);

            paragraph128.Append(paragraphProperties127);
            paragraph128.Append(run304);

            tableCell52.Append(tableCellProperties52);
            tableCell52.Append(paragraph128);

            TableCell tableCell53 = new TableCell();

            TableCellProperties tableCellProperties53 = new TableCellProperties();
            TableCellWidth tableCellWidth53 = new TableCellWidth() { Width = "547", Type = TableWidthUnitValues.Pct };

            tableCellProperties53.Append(tableCellWidth53);

            Paragraph paragraph129 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC198D", TextId = "77777777" };

            ParagraphProperties paragraphProperties128 = new ParagraphProperties();
            Justification justification49 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties128 = new ParagraphMarkRunProperties();
            RunFonts runFonts391 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold70 = new Bold();
            FontSize fontSize399 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript393 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties128.Append(runFonts391);
            paragraphMarkRunProperties128.Append(bold70);
            paragraphMarkRunProperties128.Append(fontSize399);
            paragraphMarkRunProperties128.Append(fontSizeComplexScript393);

            paragraphProperties128.Append(justification49);
            paragraphProperties128.Append(paragraphMarkRunProperties128);

            Run run305 = new Run();

            RunProperties runProperties320 = new RunProperties();
            RunFonts runFonts392 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold71 = new Bold();
            FontSize fontSize400 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript394 = new FontSizeComplexScript() { Val = "22" };

            runProperties320.Append(runFonts392);
            runProperties320.Append(bold71);
            runProperties320.Append(fontSize400);
            runProperties320.Append(fontSizeComplexScript394);
            Text text286 = new Text();
            text286.Text = "RAM (GB)";

            run305.Append(runProperties320);
            run305.Append(text286);

            paragraph129.Append(paragraphProperties128);
            paragraph129.Append(run305);

            tableCell53.Append(tableCellProperties53);
            tableCell53.Append(paragraph129);

            TableCell tableCell54 = new TableCell();

            TableCellProperties tableCellProperties54 = new TableCellProperties();
            TableCellWidth tableCellWidth54 = new TableCellWidth() { Width = "548", Type = TableWidthUnitValues.Pct };

            tableCellProperties54.Append(tableCellWidth54);

            Paragraph paragraph130 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC198E", TextId = "77777777" };

            ParagraphProperties paragraphProperties129 = new ParagraphProperties();
            Justification justification50 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties129 = new ParagraphMarkRunProperties();
            RunFonts runFonts393 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold72 = new Bold();
            FontSize fontSize401 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript395 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties129.Append(runFonts393);
            paragraphMarkRunProperties129.Append(bold72);
            paragraphMarkRunProperties129.Append(fontSize401);
            paragraphMarkRunProperties129.Append(fontSizeComplexScript395);

            paragraphProperties129.Append(justification50);
            paragraphProperties129.Append(paragraphMarkRunProperties129);

            Run run306 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties321 = new RunProperties();
            RunFonts runFonts394 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold73 = new Bold();
            FontSize fontSize402 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript396 = new FontSizeComplexScript() { Val = "22" };

            runProperties321.Append(runFonts394);
            runProperties321.Append(bold73);
            runProperties321.Append(fontSize402);
            runProperties321.Append(fontSizeComplexScript396);
            Text text287 = new Text();
            text287.Text = "VM Cluster";

            run306.Append(runProperties321);
            run306.Append(text287);

            paragraph130.Append(paragraphProperties129);
            paragraph130.Append(run306);

            Paragraph paragraph131 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC198F", TextId = "77777777" };

            ParagraphProperties paragraphProperties130 = new ParagraphProperties();
            Justification justification51 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties130 = new ParagraphMarkRunProperties();
            RunFonts runFonts395 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize403 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript397 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties130.Append(runFonts395);
            paragraphMarkRunProperties130.Append(fontSize403);
            paragraphMarkRunProperties130.Append(fontSizeComplexScript397);

            paragraphProperties130.Append(justification51);
            paragraphProperties130.Append(paragraphMarkRunProperties130);

            paragraph131.Append(paragraphProperties130);

            tableCell54.Append(tableCellProperties54);
            tableCell54.Append(paragraph130);
            tableCell54.Append(paragraph131);

            TableCell tableCell55 = new TableCell();

            TableCellProperties tableCellProperties55 = new TableCellProperties();
            TableCellWidth tableCellWidth55 = new TableCellWidth() { Width = "684", Type = TableWidthUnitValues.Pct };

            tableCellProperties55.Append(tableCellWidth55);

            Paragraph paragraph132 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC1990", TextId = "77777777" };

            ParagraphProperties paragraphProperties131 = new ParagraphProperties();
            Justification justification52 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties131 = new ParagraphMarkRunProperties();
            RunFonts runFonts396 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold74 = new Bold();
            FontSize fontSize404 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript398 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties131.Append(runFonts396);
            paragraphMarkRunProperties131.Append(bold74);
            paragraphMarkRunProperties131.Append(fontSize404);
            paragraphMarkRunProperties131.Append(fontSizeComplexScript398);

            paragraphProperties131.Append(justification52);
            paragraphProperties131.Append(paragraphMarkRunProperties131);

            Run run307 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties322 = new RunProperties();
            RunFonts runFonts397 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold75 = new Bold();
            FontSize fontSize405 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript399 = new FontSizeComplexScript() { Val = "22" };

            runProperties322.Append(runFonts397);
            runProperties322.Append(bold75);
            runProperties322.Append(fontSize405);
            runProperties322.Append(fontSizeComplexScript399);
            Text text288 = new Text();
            text288.Text = "Disk Layouts";

            run307.Append(runProperties322);
            run307.Append(text288);

            paragraph132.Append(paragraphProperties131);
            paragraph132.Append(run307);

            tableCell55.Append(tableCellProperties55);
            tableCell55.Append(paragraph132);

            TableCell tableCell56 = new TableCell();

            TableCellProperties tableCellProperties56 = new TableCellProperties();
            TableCellWidth tableCellWidth56 = new TableCellWidth() { Width = "615", Type = TableWidthUnitValues.Pct };

            tableCellProperties56.Append(tableCellWidth56);

            Paragraph paragraph133 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC1991", TextId = "77777777" };

            ParagraphProperties paragraphProperties132 = new ParagraphProperties();
            Justification justification53 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties132 = new ParagraphMarkRunProperties();
            RunFonts runFonts398 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold76 = new Bold();
            FontSize fontSize406 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript400 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties132.Append(runFonts398);
            paragraphMarkRunProperties132.Append(bold76);
            paragraphMarkRunProperties132.Append(fontSize406);
            paragraphMarkRunProperties132.Append(fontSizeComplexScript400);

            paragraphProperties132.Append(justification53);
            paragraphProperties132.Append(paragraphMarkRunProperties132);

            Run run308 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties323 = new RunProperties();
            RunFonts runFonts399 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold77 = new Bold();
            FontSize fontSize407 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript401 = new FontSizeComplexScript() { Val = "22" };

            runProperties323.Append(runFonts399);
            runProperties323.Append(bold77);
            runProperties323.Append(fontSize407);
            runProperties323.Append(fontSizeComplexScript401);
            Text text289 = new Text();
            text289.Text = "Citrix";

            run308.Append(runProperties323);
            run308.Append(text289);

            Run run309 = new Run();

            RunProperties runProperties324 = new RunProperties();
            RunFonts runFonts400 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold78 = new Bold();
            FontSize fontSize408 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript402 = new FontSizeComplexScript() { Val = "22" };

            runProperties324.Append(runFonts400);
            runProperties324.Append(bold78);
            runProperties324.Append(fontSize408);
            runProperties324.Append(fontSizeComplexScript402);
            Text text290 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text290.Text = " or SQL Version";

            run309.Append(runProperties324);
            run309.Append(text290);

            paragraph133.Append(paragraphProperties132);
            paragraph133.Append(run308);
            paragraph133.Append(run309);

            tableCell56.Append(tableCellProperties56);
            tableCell56.Append(paragraph133);

            TableCell tableCell57 = new TableCell();

            TableCellProperties tableCellProperties57 = new TableCellProperties();
            TableCellWidth tableCellWidth57 = new TableCellWidth() { Width = "480", Type = TableWidthUnitValues.Pct };

            tableCellProperties57.Append(tableCellWidth57);

            Paragraph paragraph134 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC1992", TextId = "257E2367" };

            ParagraphProperties paragraphProperties133 = new ParagraphProperties();
            Justification justification54 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties133 = new ParagraphMarkRunProperties();
            RunFonts runFonts401 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold79 = new Bold();
            FontSize fontSize409 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript403 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties133.Append(runFonts401);
            paragraphMarkRunProperties133.Append(bold79);
            paragraphMarkRunProperties133.Append(fontSize409);
            paragraphMarkRunProperties133.Append(fontSizeComplexScript403);

            paragraphProperties133.Append(justification54);
            paragraphProperties133.Append(paragraphMarkRunProperties133);

            Run run310 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties325 = new RunProperties();
            RunFonts runFonts402 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold80 = new Bold();
            FontSize fontSize410 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript404 = new FontSizeComplexScript() { Val = "22" };

            runProperties325.Append(runFonts402);
            runProperties325.Append(bold80);
            runProperties325.Append(fontSize410);
            runProperties325.Append(fontSizeComplexScript404);
            Text text291 = new Text();
            text291.Text = "D";

            run310.Append(runProperties325);
            run310.Append(text291);

            Run run311 = new Run() { RsidRunAddition = "00116FA1" };

            RunProperties runProperties326 = new RunProperties();
            RunFonts runFonts403 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold81 = new Bold();
            FontSize fontSize411 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript405 = new FontSizeComplexScript() { Val = "22" };

            runProperties326.Append(runFonts403);
            runProperties326.Append(bold81);
            runProperties326.Append(fontSize411);
            runProperties326.Append(fontSizeComplexScript405);
            Text text292 = new Text();
            text292.Text = "R";

            run311.Append(runProperties326);
            run311.Append(text292);

            Run run312 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties327 = new RunProperties();
            RunFonts runFonts404 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold82 = new Bold();
            FontSize fontSize412 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript406 = new FontSizeComplexScript() { Val = "22" };

            runProperties327.Append(runFonts404);
            runProperties327.Append(bold82);
            runProperties327.Append(fontSize412);
            runProperties327.Append(fontSizeComplexScript406);
            Text text293 = new Text();
            text293.Text = "/Prod";

            run312.Append(runProperties327);
            run312.Append(text293);

            paragraph134.Append(paragraphProperties133);
            paragraph134.Append(run310);
            paragraph134.Append(run311);
            paragraph134.Append(run312);

            Paragraph paragraph135 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC1993", TextId = "77777777" };

            ParagraphProperties paragraphProperties134 = new ParagraphProperties();
            Justification justification55 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties134 = new ParagraphMarkRunProperties();
            RunFonts runFonts405 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize413 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript407 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties134.Append(runFonts405);
            paragraphMarkRunProperties134.Append(fontSize413);
            paragraphMarkRunProperties134.Append(fontSizeComplexScript407);

            paragraphProperties134.Append(justification55);
            paragraphProperties134.Append(paragraphMarkRunProperties134);

            Run run313 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties328 = new RunProperties();
            RunFonts runFonts406 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold83 = new Bold();
            FontSize fontSize414 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript408 = new FontSizeComplexScript() { Val = "22" };

            runProperties328.Append(runFonts406);
            runProperties328.Append(bold83);
            runProperties328.Append(fontSize414);
            runProperties328.Append(fontSizeComplexScript408);
            Text text294 = new Text();
            text294.Text = "/Test";

            run313.Append(runProperties328);
            run313.Append(text294);

            paragraph135.Append(paragraphProperties134);
            paragraph135.Append(run313);

            tableCell57.Append(tableCellProperties57);
            tableCell57.Append(paragraph134);
            tableCell57.Append(paragraph135);

            TableCell tableCell58 = new TableCell();

            TableCellProperties tableCellProperties58 = new TableCellProperties();
            TableCellWidth tableCellWidth58 = new TableCellWidth() { Width = "273", Type = TableWidthUnitValues.Pct };

            tableCellProperties58.Append(tableCellWidth58);

            Paragraph paragraph136 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC1994", TextId = "77777777" };

            ParagraphProperties paragraphProperties135 = new ParagraphProperties();
            Justification justification56 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties135 = new ParagraphMarkRunProperties();
            RunFonts runFonts407 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold84 = new Bold();
            FontSize fontSize415 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript409 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties135.Append(runFonts407);
            paragraphMarkRunProperties135.Append(bold84);
            paragraphMarkRunProperties135.Append(fontSize415);
            paragraphMarkRunProperties135.Append(fontSizeComplexScript409);

            paragraphProperties135.Append(justification56);
            paragraphProperties135.Append(paragraphMarkRunProperties135);

            Run run314 = new Run();

            RunProperties runProperties329 = new RunProperties();
            RunFonts runFonts408 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold85 = new Bold();
            FontSize fontSize416 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript410 = new FontSizeComplexScript() { Val = "22" };

            runProperties329.Append(runFonts408);
            runProperties329.Append(bold85);
            runProperties329.Append(fontSize416);
            runProperties329.Append(fontSizeComplexScript410);
            Text text295 = new Text();
            text295.Text = "DD?";

            run314.Append(runProperties329);
            run314.Append(text295);

            paragraph136.Append(paragraphProperties135);
            paragraph136.Append(run314);

            tableCell58.Append(tableCellProperties58);
            tableCell58.Append(paragraph136);

            tableRow12.Append(tableRowProperties12);
            tableRow12.Append(tableCell50);
            tableRow12.Append(tableCell51);
            tableRow12.Append(tableCell52);
            tableRow12.Append(tableCell53);
            tableRow12.Append(tableCell54);
            tableRow12.Append(tableCell55);
            tableRow12.Append(tableCell56);
            tableRow12.Append(tableCell57);
            tableRow12.Append(tableCell58);

            TableRow tableRow13 = new TableRow() { RsidTableRowMarkRevision = "004E361A", RsidTableRowAddition = "00BC048A", RsidTableRowProperties = "00BC048A", ParagraphId = "0AAC19A1", TextId = "77777777" };

            TableRowProperties tableRowProperties13 = new TableRowProperties();
            TableRowHeight tableRowHeight13 = new TableRowHeight() { Val = (UInt32Value)576U };

            tableRowProperties13.Append(tableRowHeight13);

            TableCell tableCell59 = new TableCell();

            TableCellProperties tableCellProperties59 = new TableCellProperties();
            TableCellWidth tableCellWidth59 = new TableCellWidth() { Width = "691", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment39 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties59.Append(tableCellWidth59);
            tableCellProperties59.Append(tableCellVerticalAlignment39);

            Paragraph paragraph137 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC1997", TextId = "77777777" };

            ParagraphProperties paragraphProperties136 = new ParagraphProperties();
            Justification justification57 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties136 = new ParagraphMarkRunProperties();
            RunFonts runFonts409 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color117 = new Color() { Val = "FF0000" };
            FontSize fontSize417 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript411 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties136.Append(runFonts409);
            paragraphMarkRunProperties136.Append(color117);
            paragraphMarkRunProperties136.Append(fontSize417);
            paragraphMarkRunProperties136.Append(fontSizeComplexScript411);

            paragraphProperties136.Append(justification57);
            paragraphProperties136.Append(paragraphMarkRunProperties136);

            Run run315 = new Run() { RsidRunProperties = "004E361A" };

            RunProperties runProperties330 = new RunProperties();
            RunFonts runFonts410 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color118 = new Color() { Val = "FF0000" };
            FontSize fontSize418 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript412 = new FontSizeComplexScript() { Val = "22" };

            runProperties330.Append(runFonts410);
            runProperties330.Append(color118);
            runProperties330.Append(fontSize418);
            runProperties330.Append(fontSizeComplexScript412);
            Text text296 = new Text();
            text296.Text = "BJCxxxx";

            run315.Append(runProperties330);
            run315.Append(text296);

            Run run316 = new Run();

            RunProperties runProperties331 = new RunProperties();
            RunFonts runFonts411 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color119 = new Color() { Val = "FF0000" };
            FontSize fontSize419 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript413 = new FontSizeComplexScript() { Val = "22" };

            runProperties331.Append(runFonts411);
            runProperties331.Append(color119);
            runProperties331.Append(fontSize419);
            runProperties331.Append(fontSizeComplexScript413);
            Text text297 = new Text();
            text297.Text = "xx";

            run316.Append(runProperties331);
            run316.Append(text297);

            Run run317 = new Run() { RsidRunProperties = "004E361A" };

            RunProperties runProperties332 = new RunProperties();
            RunFonts runFonts412 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color120 = new Color() { Val = "FF0000" };
            FontSize fontSize420 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript414 = new FontSizeComplexScript() { Val = "22" };

            runProperties332.Append(runFonts412);
            runProperties332.Append(color120);
            runProperties332.Append(fontSize420);
            runProperties332.Append(fontSizeComplexScript414);
            Text text298 = new Text();
            text298.Text = "01";

            run317.Append(runProperties332);
            run317.Append(text298);

            paragraph137.Append(paragraphProperties136);
            paragraph137.Append(run315);
            paragraph137.Append(run316);
            paragraph137.Append(run317);

            tableCell59.Append(tableCellProperties59);
            tableCell59.Append(paragraph137);

            TableCell tableCell60 = new TableCell();

            TableCellProperties tableCellProperties60 = new TableCellProperties();
            TableCellWidth tableCellWidth60 = new TableCellWidth() { Width = "547", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment40 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties60.Append(tableCellWidth60);
            tableCellProperties60.Append(tableCellVerticalAlignment40);

            Paragraph paragraph138 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC1998", TextId = "77777777" };

            ParagraphProperties paragraphProperties137 = new ParagraphProperties();
            Justification justification58 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties137 = new ParagraphMarkRunProperties();
            RunFonts runFonts413 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color121 = new Color() { Val = "FF0000" };
            FontSize fontSize421 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript415 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties137.Append(runFonts413);
            paragraphMarkRunProperties137.Append(color121);
            paragraphMarkRunProperties137.Append(fontSize421);
            paragraphMarkRunProperties137.Append(fontSizeComplexScript415);

            paragraphProperties137.Append(justification58);
            paragraphProperties137.Append(paragraphMarkRunProperties137);

            Run run318 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties333 = new RunProperties();
            RunFonts runFonts414 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color122 = new Color() { Val = "FF0000" };
            FontSize fontSize422 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript416 = new FontSizeComplexScript() { Val = "22" };

            runProperties333.Append(runFonts414);
            runProperties333.Append(color122);
            runProperties333.Append(fontSize422);
            runProperties333.Append(fontSizeComplexScript416);
            Text text299 = new Text();
            text299.Text = "2";

            run318.Append(runProperties333);
            run318.Append(text299);

            paragraph138.Append(paragraphProperties137);
            paragraph138.Append(run318);

            tableCell60.Append(tableCellProperties60);
            tableCell60.Append(paragraph138);

            TableCell tableCell61 = new TableCell();

            TableCellProperties tableCellProperties61 = new TableCellProperties();
            TableCellWidth tableCellWidth61 = new TableCellWidth() { Width = "616", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment41 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties61.Append(tableCellWidth61);
            tableCellProperties61.Append(tableCellVerticalAlignment41);

            Paragraph paragraph139 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC1999", TextId = "77777777" };

            ParagraphProperties paragraphProperties138 = new ParagraphProperties();
            Justification justification59 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties138 = new ParagraphMarkRunProperties();
            RunFonts runFonts415 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color123 = new Color() { Val = "FF0000" };
            FontSize fontSize423 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript417 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties138.Append(runFonts415);
            paragraphMarkRunProperties138.Append(color123);
            paragraphMarkRunProperties138.Append(fontSize423);
            paragraphMarkRunProperties138.Append(fontSizeComplexScript417);

            paragraphProperties138.Append(justification59);
            paragraphProperties138.Append(paragraphMarkRunProperties138);

            Run run319 = new Run() { RsidRunProperties = "004E361A" };

            RunProperties runProperties334 = new RunProperties();
            RunFonts runFonts416 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color124 = new Color() { Val = "FF0000" };
            FontSize fontSize424 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript418 = new FontSizeComplexScript() { Val = "22" };

            runProperties334.Append(runFonts416);
            runProperties334.Append(color124);
            runProperties334.Append(fontSize424);
            runProperties334.Append(fontSizeComplexScript418);
            Text text300 = new Text();
            text300.Text = "W2K8r2 Std x64";

            run319.Append(runProperties334);
            run319.Append(text300);

            paragraph139.Append(paragraphProperties138);
            paragraph139.Append(run319);

            tableCell61.Append(tableCellProperties61);
            tableCell61.Append(paragraph139);

            TableCell tableCell62 = new TableCell();

            TableCellProperties tableCellProperties62 = new TableCellProperties();
            TableCellWidth tableCellWidth62 = new TableCellWidth() { Width = "547", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment42 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties62.Append(tableCellWidth62);
            tableCellProperties62.Append(tableCellVerticalAlignment42);

            Paragraph paragraph140 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC199A", TextId = "77777777" };

            ParagraphProperties paragraphProperties139 = new ParagraphProperties();
            Justification justification60 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties139 = new ParagraphMarkRunProperties();
            RunFonts runFonts417 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color125 = new Color() { Val = "FF0000" };
            FontSize fontSize425 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript419 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties139.Append(runFonts417);
            paragraphMarkRunProperties139.Append(color125);
            paragraphMarkRunProperties139.Append(fontSize425);
            paragraphMarkRunProperties139.Append(fontSizeComplexScript419);

            paragraphProperties139.Append(justification60);
            paragraphProperties139.Append(paragraphMarkRunProperties139);

            Run run320 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties335 = new RunProperties();
            RunFonts runFonts418 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color126 = new Color() { Val = "FF0000" };
            FontSize fontSize426 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript420 = new FontSizeComplexScript() { Val = "22" };

            runProperties335.Append(runFonts418);
            runProperties335.Append(color126);
            runProperties335.Append(fontSize426);
            runProperties335.Append(fontSizeComplexScript420);
            Text text301 = new Text();
            text301.Text = "4";

            run320.Append(runProperties335);
            run320.Append(text301);

            paragraph140.Append(paragraphProperties139);
            paragraph140.Append(run320);

            tableCell62.Append(tableCellProperties62);
            tableCell62.Append(paragraph140);

            TableCell tableCell63 = new TableCell();

            TableCellProperties tableCellProperties63 = new TableCellProperties();
            TableCellWidth tableCellWidth63 = new TableCellWidth() { Width = "548", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment43 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties63.Append(tableCellWidth63);
            tableCellProperties63.Append(tableCellVerticalAlignment43);

            Paragraph paragraph141 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC199B", TextId = "77777777" };

            ParagraphProperties paragraphProperties140 = new ParagraphProperties();
            Justification justification61 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties140 = new ParagraphMarkRunProperties();
            RunFonts runFonts419 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color127 = new Color() { Val = "FF0000" };
            FontSize fontSize427 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript421 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties140.Append(runFonts419);
            paragraphMarkRunProperties140.Append(color127);
            paragraphMarkRunProperties140.Append(fontSize427);
            paragraphMarkRunProperties140.Append(fontSizeComplexScript421);

            paragraphProperties140.Append(justification61);
            paragraphProperties140.Append(paragraphMarkRunProperties140);

            Run run321 = new Run() { RsidRunProperties = "004E361A" };

            RunProperties runProperties336 = new RunProperties();
            RunFonts runFonts420 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color128 = new Color() { Val = "FF0000" };
            FontSize fontSize428 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript422 = new FontSizeComplexScript() { Val = "22" };

            runProperties336.Append(runFonts420);
            runProperties336.Append(color128);
            runProperties336.Append(fontSize428);
            runProperties336.Append(fontSizeComplexScript422);
            Text text302 = new Text();
            text302.Text = "PDC";

            run321.Append(runProperties336);
            run321.Append(text302);

            Run run322 = new Run() { RsidRunProperties = "00BC048A" };

            RunProperties runProperties337 = new RunProperties();
            RunFonts runFonts421 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize429 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript423 = new FontSizeComplexScript() { Val = "22" };

            runProperties337.Append(runFonts421);
            runProperties337.Append(fontSize429);
            runProperties337.Append(fontSizeComplexScript423);
            Text text303 = new Text();
            text303.Text = "PROD04";

            run322.Append(runProperties337);
            run322.Append(text303);

            paragraph141.Append(paragraphProperties140);
            paragraph141.Append(run321);
            paragraph141.Append(run322);

            tableCell63.Append(tableCellProperties63);
            tableCell63.Append(paragraph141);

            TableCell tableCell64 = new TableCell();

            TableCellProperties tableCellProperties64 = new TableCellProperties();
            TableCellWidth tableCellWidth64 = new TableCellWidth() { Width = "684", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment44 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties64.Append(tableCellWidth64);
            tableCellProperties64.Append(tableCellVerticalAlignment44);

            Paragraph paragraph142 = new Paragraph() { RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "2DDDD08B", TextId = "77777777" };

            ParagraphProperties paragraphProperties141 = new ParagraphProperties();
            Justification justification62 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties141 = new ParagraphMarkRunProperties();
            RunFonts runFonts422 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color129 = new Color() { Val = "FF0000" };
            FontSize fontSize430 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript424 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties141.Append(runFonts422);
            paragraphMarkRunProperties141.Append(color129);
            paragraphMarkRunProperties141.Append(fontSize430);
            paragraphMarkRunProperties141.Append(fontSizeComplexScript424);

            paragraphProperties141.Append(justification62);
            paragraphProperties141.Append(paragraphMarkRunProperties141);

            Run run323 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties338 = new RunProperties();
            RunFonts runFonts423 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color130 = new Color() { Val = "FF0000" };
            FontSize fontSize431 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript425 = new FontSizeComplexScript() { Val = "22" };

            runProperties338.Append(runFonts423);
            runProperties338.Append(color130);
            runProperties338.Append(fontSize431);
            runProperties338.Append(fontSizeComplexScript425);
            Text text304 = new Text();
            text304.Text = "C:=60gb";

            run323.Append(runProperties338);
            run323.Append(text304);

            paragraph142.Append(paragraphProperties141);
            paragraph142.Append(run323);

            Paragraph paragraph143 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00697199", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "00747E89", ParagraphId = "0AAC199C", TextId = "26D46620" };

            ParagraphProperties paragraphProperties142 = new ParagraphProperties();
            Justification justification63 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties142 = new ParagraphMarkRunProperties();
            RunFonts runFonts424 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color131 = new Color() { Val = "FF0000" };
            FontSize fontSize432 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript426 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties142.Append(runFonts424);
            paragraphMarkRunProperties142.Append(color131);
            paragraphMarkRunProperties142.Append(fontSize432);
            paragraphMarkRunProperties142.Append(fontSizeComplexScript426);

            paragraphProperties142.Append(justification63);
            paragraphProperties142.Append(paragraphMarkRunProperties142);

            Run run324 = new Run();

            RunProperties runProperties339 = new RunProperties();
            RunFonts runFonts425 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color132 = new Color() { Val = "FF0000" };
            FontSize fontSize433 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript427 = new FontSizeComplexScript() { Val = "22" };

            runProperties339.Append(runFonts425);
            runProperties339.Append(color132);
            runProperties339.Append(fontSize433);
            runProperties339.Append(fontSizeComplexScript427);
            Text text305 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text305.Text = " Or ";

            run324.Append(runProperties339);
            run324.Append(text305);

            Run run325 = new Run() { RsidRunAddition = "00697199" };

            RunProperties runProperties340 = new RunProperties();
            RunFonts runFonts426 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color133 = new Color() { Val = "FF0000" };
            FontSize fontSize434 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript428 = new FontSizeComplexScript() { Val = "22" };

            runProperties340.Append(runFonts426);
            runProperties340.Append(color133);
            runProperties340.Append(fontSize434);
            runProperties340.Append(fontSizeComplexScript428);
            Text text306 = new Text();
            text306.Text = "See Drive Layouts & Size";

            run325.Append(runProperties340);
            run325.Append(text306);

            paragraph143.Append(paragraphProperties142);
            paragraph143.Append(run324);
            paragraph143.Append(run325);

            tableCell64.Append(tableCellProperties64);
            tableCell64.Append(paragraph142);
            tableCell64.Append(paragraph143);

            TableCell tableCell65 = new TableCell();

            TableCellProperties tableCellProperties65 = new TableCellProperties();
            TableCellWidth tableCellWidth65 = new TableCellWidth() { Width = "615", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment45 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties65.Append(tableCellWidth65);
            tableCellProperties65.Append(tableCellVerticalAlignment45);

            Paragraph paragraph144 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC199D", TextId = "77777777" };

            ParagraphProperties paragraphProperties143 = new ParagraphProperties();
            Justification justification64 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties143 = new ParagraphMarkRunProperties();
            RunFonts runFonts427 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color134 = new Color() { Val = "FF0000" };
            FontSize fontSize435 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript429 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties143.Append(runFonts427);
            paragraphMarkRunProperties143.Append(color134);
            paragraphMarkRunProperties143.Append(fontSize435);
            paragraphMarkRunProperties143.Append(fontSizeComplexScript429);

            paragraphProperties143.Append(justification64);
            paragraphProperties143.Append(paragraphMarkRunProperties143);

            Run run326 = new Run();

            RunProperties runProperties341 = new RunProperties();
            RunFonts runFonts428 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color135 = new Color() { Val = "FF0000" };
            FontSize fontSize436 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript430 = new FontSizeComplexScript() { Val = "22" };

            runProperties341.Append(runFonts428);
            runProperties341.Append(color135);
            runProperties341.Append(fontSize436);
            runProperties341.Append(fontSizeComplexScript430);
            Text text307 = new Text();
            text307.Text = "N/A";

            run326.Append(runProperties341);
            run326.Append(text307);

            paragraph144.Append(paragraphProperties143);
            paragraph144.Append(run326);

            tableCell65.Append(tableCellProperties65);
            tableCell65.Append(paragraph144);

            TableCell tableCell66 = new TableCell();

            TableCellProperties tableCellProperties66 = new TableCellProperties();
            TableCellWidth tableCellWidth66 = new TableCellWidth() { Width = "480", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment46 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties66.Append(tableCellWidth66);
            tableCellProperties66.Append(tableCellVerticalAlignment46);

            Paragraph paragraph145 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC199E", TextId = "77777777" };

            ParagraphProperties paragraphProperties144 = new ParagraphProperties();
            Justification justification65 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties144 = new ParagraphMarkRunProperties();
            RunFonts runFonts429 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color136 = new Color() { Val = "FF0000" };
            FontSize fontSize437 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript431 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties144.Append(runFonts429);
            paragraphMarkRunProperties144.Append(color136);
            paragraphMarkRunProperties144.Append(fontSize437);
            paragraphMarkRunProperties144.Append(fontSizeComplexScript431);

            paragraphProperties144.Append(justification65);
            paragraphProperties144.Append(paragraphMarkRunProperties144);

            Run run327 = new Run() { RsidRunProperties = "004E361A" };

            RunProperties runProperties342 = new RunProperties();
            RunFonts runFonts430 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color137 = new Color() { Val = "FF0000" };
            FontSize fontSize438 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript432 = new FontSizeComplexScript() { Val = "22" };

            runProperties342.Append(runFonts430);
            runProperties342.Append(color137);
            runProperties342.Append(fontSize438);
            runProperties342.Append(fontSizeComplexScript432);
            Text text308 = new Text();
            text308.Text = "Prod";

            run327.Append(runProperties342);
            run327.Append(text308);

            paragraph145.Append(paragraphProperties144);
            paragraph145.Append(run327);

            tableCell66.Append(tableCellProperties66);
            tableCell66.Append(paragraph145);

            TableCell tableCell67 = new TableCell();

            TableCellProperties tableCellProperties67 = new TableCellProperties();
            TableCellWidth tableCellWidth67 = new TableCellWidth() { Width = "273", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment47 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties67.Append(tableCellWidth67);
            tableCellProperties67.Append(tableCellVerticalAlignment47);

            Paragraph paragraph146 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC199F", TextId = "77777777" };

            ParagraphProperties paragraphProperties145 = new ParagraphProperties();
            Justification justification66 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties145 = new ParagraphMarkRunProperties();
            RunFonts runFonts431 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color138 = new Color() { Val = "FF0000" };
            FontSize fontSize439 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript433 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties145.Append(runFonts431);
            paragraphMarkRunProperties145.Append(color138);
            paragraphMarkRunProperties145.Append(fontSize439);
            paragraphMarkRunProperties145.Append(fontSizeComplexScript433);

            paragraphProperties145.Append(justification66);
            paragraphProperties145.Append(paragraphMarkRunProperties145);

            Run run328 = new Run();

            RunProperties runProperties343 = new RunProperties();
            RunFonts runFonts432 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color139 = new Color() { Val = "FF0000" };
            FontSize fontSize440 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript434 = new FontSizeComplexScript() { Val = "22" };

            runProperties343.Append(runFonts432);
            runProperties343.Append(color139);
            runProperties343.Append(fontSize440);
            runProperties343.Append(fontSizeComplexScript434);
            Text text309 = new Text();
            text309.Text = "N";

            run328.Append(runProperties343);
            run328.Append(text309);

            paragraph146.Append(paragraphProperties145);
            paragraph146.Append(run328);

            tableCell67.Append(tableCellProperties67);
            tableCell67.Append(paragraph146);

            tableRow13.Append(tableRowProperties13);
            tableRow13.Append(tableCell59);
            tableRow13.Append(tableCell60);
            tableRow13.Append(tableCell61);
            tableRow13.Append(tableCell62);
            tableRow13.Append(tableCell63);
            tableRow13.Append(tableCell64);
            tableRow13.Append(tableCell65);
            tableRow13.Append(tableCell66);
            tableRow13.Append(tableCell67);

            TableRow tableRow14 = new TableRow() { RsidTableRowMarkRevision = "004E361A", RsidTableRowAddition = "00BC048A", RsidTableRowProperties = "00BC048A", ParagraphId = "0AAC19AC", TextId = "77777777" };

            TableRowProperties tableRowProperties14 = new TableRowProperties();
            TableRowHeight tableRowHeight14 = new TableRowHeight() { Val = (UInt32Value)576U };

            tableRowProperties14.Append(tableRowHeight14);

            TableCell tableCell68 = new TableCell();

            TableCellProperties tableCellProperties68 = new TableCellProperties();
            TableCellWidth tableCellWidth68 = new TableCellWidth() { Width = "691", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment48 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties68.Append(tableCellWidth68);
            tableCellProperties68.Append(tableCellVerticalAlignment48);

            Paragraph paragraph147 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC19A2", TextId = "77777777" };

            ParagraphProperties paragraphProperties146 = new ParagraphProperties();
            Justification justification67 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties146 = new ParagraphMarkRunProperties();
            RunFonts runFonts433 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize441 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript435 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties146.Append(runFonts433);
            paragraphMarkRunProperties146.Append(fontSize441);
            paragraphMarkRunProperties146.Append(fontSizeComplexScript435);

            paragraphProperties146.Append(justification67);
            paragraphProperties146.Append(paragraphMarkRunProperties146);

            paragraph147.Append(paragraphProperties146);

            tableCell68.Append(tableCellProperties68);
            tableCell68.Append(paragraph147);

            TableCell tableCell69 = new TableCell();

            TableCellProperties tableCellProperties69 = new TableCellProperties();
            TableCellWidth tableCellWidth69 = new TableCellWidth() { Width = "547", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment49 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties69.Append(tableCellWidth69);
            tableCellProperties69.Append(tableCellVerticalAlignment49);

            Paragraph paragraph148 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC19A3", TextId = "77777777" };

            ParagraphProperties paragraphProperties147 = new ParagraphProperties();
            Justification justification68 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties147 = new ParagraphMarkRunProperties();
            RunFonts runFonts434 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize442 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript436 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties147.Append(runFonts434);
            paragraphMarkRunProperties147.Append(fontSize442);
            paragraphMarkRunProperties147.Append(fontSizeComplexScript436);

            paragraphProperties147.Append(justification68);
            paragraphProperties147.Append(paragraphMarkRunProperties147);

            paragraph148.Append(paragraphProperties147);

            tableCell69.Append(tableCellProperties69);
            tableCell69.Append(paragraph148);

            TableCell tableCell70 = new TableCell();

            TableCellProperties tableCellProperties70 = new TableCellProperties();
            TableCellWidth tableCellWidth70 = new TableCellWidth() { Width = "616", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment50 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties70.Append(tableCellWidth70);
            tableCellProperties70.Append(tableCellVerticalAlignment50);

            Paragraph paragraph149 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC19A4", TextId = "77777777" };

            ParagraphProperties paragraphProperties148 = new ParagraphProperties();
            Justification justification69 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties148 = new ParagraphMarkRunProperties();
            RunFonts runFonts435 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize443 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript437 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties148.Append(runFonts435);
            paragraphMarkRunProperties148.Append(fontSize443);
            paragraphMarkRunProperties148.Append(fontSizeComplexScript437);

            paragraphProperties148.Append(justification69);
            paragraphProperties148.Append(paragraphMarkRunProperties148);

            paragraph149.Append(paragraphProperties148);

            tableCell70.Append(tableCellProperties70);
            tableCell70.Append(paragraph149);

            TableCell tableCell71 = new TableCell();

            TableCellProperties tableCellProperties71 = new TableCellProperties();
            TableCellWidth tableCellWidth71 = new TableCellWidth() { Width = "547", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment51 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties71.Append(tableCellWidth71);
            tableCellProperties71.Append(tableCellVerticalAlignment51);

            Paragraph paragraph150 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC19A5", TextId = "77777777" };

            ParagraphProperties paragraphProperties149 = new ParagraphProperties();
            Justification justification70 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties149 = new ParagraphMarkRunProperties();
            RunFonts runFonts436 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize444 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript438 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties149.Append(runFonts436);
            paragraphMarkRunProperties149.Append(fontSize444);
            paragraphMarkRunProperties149.Append(fontSizeComplexScript438);

            paragraphProperties149.Append(justification70);
            paragraphProperties149.Append(paragraphMarkRunProperties149);

            paragraph150.Append(paragraphProperties149);

            tableCell71.Append(tableCellProperties71);
            tableCell71.Append(paragraph150);

            TableCell tableCell72 = new TableCell();

            TableCellProperties tableCellProperties72 = new TableCellProperties();
            TableCellWidth tableCellWidth72 = new TableCellWidth() { Width = "548", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment52 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties72.Append(tableCellWidth72);
            tableCellProperties72.Append(tableCellVerticalAlignment52);

            Paragraph paragraph151 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC19A6", TextId = "77777777" };

            ParagraphProperties paragraphProperties150 = new ParagraphProperties();
            Justification justification71 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties150 = new ParagraphMarkRunProperties();
            RunFonts runFonts437 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize445 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript439 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties150.Append(runFonts437);
            paragraphMarkRunProperties150.Append(fontSize445);
            paragraphMarkRunProperties150.Append(fontSizeComplexScript439);

            paragraphProperties150.Append(justification71);
            paragraphProperties150.Append(paragraphMarkRunProperties150);

            paragraph151.Append(paragraphProperties150);

            tableCell72.Append(tableCellProperties72);
            tableCell72.Append(paragraph151);

            TableCell tableCell73 = new TableCell();

            TableCellProperties tableCellProperties73 = new TableCellProperties();
            TableCellWidth tableCellWidth73 = new TableCellWidth() { Width = "684", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment53 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties73.Append(tableCellWidth73);
            tableCellProperties73.Append(tableCellVerticalAlignment53);

            Paragraph paragraph152 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC19A7", TextId = "77777777" };

            ParagraphProperties paragraphProperties151 = new ParagraphProperties();
            Justification justification72 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties151 = new ParagraphMarkRunProperties();
            RunFonts runFonts438 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize446 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript440 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties151.Append(runFonts438);
            paragraphMarkRunProperties151.Append(fontSize446);
            paragraphMarkRunProperties151.Append(fontSizeComplexScript440);

            paragraphProperties151.Append(justification72);
            paragraphProperties151.Append(paragraphMarkRunProperties151);

            paragraph152.Append(paragraphProperties151);

            tableCell73.Append(tableCellProperties73);
            tableCell73.Append(paragraph152);

            TableCell tableCell74 = new TableCell();

            TableCellProperties tableCellProperties74 = new TableCellProperties();
            TableCellWidth tableCellWidth74 = new TableCellWidth() { Width = "615", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment54 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties74.Append(tableCellWidth74);
            tableCellProperties74.Append(tableCellVerticalAlignment54);

            Paragraph paragraph153 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC19A8", TextId = "77777777" };

            ParagraphProperties paragraphProperties152 = new ParagraphProperties();
            Justification justification73 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties152 = new ParagraphMarkRunProperties();
            RunFonts runFonts439 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize447 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript441 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties152.Append(runFonts439);
            paragraphMarkRunProperties152.Append(fontSize447);
            paragraphMarkRunProperties152.Append(fontSizeComplexScript441);

            paragraphProperties152.Append(justification73);
            paragraphProperties152.Append(paragraphMarkRunProperties152);

            paragraph153.Append(paragraphProperties152);

            tableCell74.Append(tableCellProperties74);
            tableCell74.Append(paragraph153);

            TableCell tableCell75 = new TableCell();

            TableCellProperties tableCellProperties75 = new TableCellProperties();
            TableCellWidth tableCellWidth75 = new TableCellWidth() { Width = "480", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment55 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties75.Append(tableCellWidth75);
            tableCellProperties75.Append(tableCellVerticalAlignment55);

            Paragraph paragraph154 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC19A9", TextId = "77777777" };

            ParagraphProperties paragraphProperties153 = new ParagraphProperties();
            Justification justification74 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties153 = new ParagraphMarkRunProperties();
            RunFonts runFonts440 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize448 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript442 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties153.Append(runFonts440);
            paragraphMarkRunProperties153.Append(fontSize448);
            paragraphMarkRunProperties153.Append(fontSizeComplexScript442);

            paragraphProperties153.Append(justification74);
            paragraphProperties153.Append(paragraphMarkRunProperties153);

            paragraph154.Append(paragraphProperties153);

            tableCell75.Append(tableCellProperties75);
            tableCell75.Append(paragraph154);

            TableCell tableCell76 = new TableCell();

            TableCellProperties tableCellProperties76 = new TableCellProperties();
            TableCellWidth tableCellWidth76 = new TableCellWidth() { Width = "273", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment56 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties76.Append(tableCellWidth76);
            tableCellProperties76.Append(tableCellVerticalAlignment56);

            Paragraph paragraph155 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC19AA", TextId = "77777777" };

            ParagraphProperties paragraphProperties154 = new ParagraphProperties();
            Justification justification75 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties154 = new ParagraphMarkRunProperties();
            RunFonts runFonts441 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize449 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript443 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties154.Append(runFonts441);
            paragraphMarkRunProperties154.Append(fontSize449);
            paragraphMarkRunProperties154.Append(fontSizeComplexScript443);

            paragraphProperties154.Append(justification75);
            paragraphProperties154.Append(paragraphMarkRunProperties154);

            paragraph155.Append(paragraphProperties154);

            tableCell76.Append(tableCellProperties76);
            tableCell76.Append(paragraph155);

            tableRow14.Append(tableRowProperties14);
            tableRow14.Append(tableCell68);
            tableRow14.Append(tableCell69);
            tableRow14.Append(tableCell70);
            tableRow14.Append(tableCell71);
            tableRow14.Append(tableCell72);
            tableRow14.Append(tableCell73);
            tableRow14.Append(tableCell74);
            tableRow14.Append(tableCell75);
            tableRow14.Append(tableCell76);

            table3.Append(tableProperties3);
            table3.Append(tableGrid3);
            table3.Append(tableRow12);
            table3.Append(tableRow13);
            table3.Append(tableRow14);

            Paragraph paragraph156 = new Paragraph() { RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00116831", ParagraphId = "0AAC19B8", TextId = "17C745DF" };

            ParagraphProperties paragraphProperties155 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties155 = new ParagraphMarkRunProperties();
            RunFonts runFonts442 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize450 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript444 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties155.Append(runFonts442);
            paragraphMarkRunProperties155.Append(fontSize450);
            paragraphMarkRunProperties155.Append(fontSizeComplexScript444);

            paragraphProperties155.Append(paragraphMarkRunProperties155);

            Run run329 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties344 = new RunProperties();
            RunFonts runFonts443 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize451 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript445 = new FontSizeComplexScript() { Val = "22" };

            runProperties344.Append(runFonts443);
            runProperties344.Append(fontSize451);
            runProperties344.Append(fontSizeComplexScript445);
            Text text310 = new Text();
            text310.Text = "*Citrix app install to be defin";

            run329.Append(runProperties344);
            run329.Append(text310);

            Run run330 = new Run() { RsidRunAddition = "00BC7E65" };

            RunProperties runProperties345 = new RunProperties();
            RunFonts runFonts444 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize452 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript446 = new FontSizeComplexScript() { Val = "22" };

            runProperties345.Append(runFonts444);
            runProperties345.Append(fontSize452);
            runProperties345.Append(fontSizeComplexScript446);
            Text text311 = new Text();
            text311.Text = "ed in Post install task section";

            run330.Append(runProperties345);
            run330.Append(text311);

            paragraph156.Append(paragraphProperties155);
            paragraph156.Append(run329);
            paragraph156.Append(run330);

            Paragraph paragraph157 = new Paragraph() { RsidParagraphMarkRevision = "00747E89", RsidParagraphAddition = "00BC7E65", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00BC7E65", ParagraphId = "52D02CF0", TextId = "3D5811EC" };

            ParagraphProperties paragraphProperties156 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties156 = new ParagraphMarkRunProperties();
            RunFonts runFonts445 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color140 = new Color() { Val = "FF0000" };
            FontSize fontSize453 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript447 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties156.Append(runFonts445);
            paragraphMarkRunProperties156.Append(color140);
            paragraphMarkRunProperties156.Append(fontSize453);
            paragraphMarkRunProperties156.Append(fontSizeComplexScript447);

            paragraphProperties156.Append(paragraphMarkRunProperties156);

            Run run331 = new Run() { RsidRunProperties = "00747E89" };

            RunProperties runProperties346 = new RunProperties();
            RunFonts runFonts446 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color141 = new Color() { Val = "FF0000" };
            FontSize fontSize454 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript448 = new FontSizeComplexScript() { Val = "22" };

            runProperties346.Append(runFonts446);
            runProperties346.Append(color141);
            runProperties346.Append(fontSize454);
            runProperties346.Append(fontSizeComplexScript448);
            Text text312 = new Text();
            text312.Text = "Linux Users";

            run331.Append(runProperties346);
            run331.Append(text312);

            Run run332 = new Run() { RsidRunProperties = "00747E89", RsidRunAddition = "00747E89" };

            RunProperties runProperties347 = new RunProperties();
            RunFonts runFonts447 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color142 = new Color() { Val = "FF0000" };
            FontSize fontSize455 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript449 = new FontSizeComplexScript() { Val = "22" };

            runProperties347.Append(runFonts447);
            runProperties347.Append(color142);
            runProperties347.Append(fontSize455);
            runProperties347.Append(fontSizeComplexScript449);
            Text text313 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text313.Text = " needed for Application team";

            run332.Append(runProperties347);
            run332.Append(text313);

            paragraph157.Append(paragraphProperties156);
            paragraph157.Append(run331);
            paragraph157.Append(run332);

            Paragraph paragraph158 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "00F34C49", RsidRunAdditionDefault = "00E518DD", ParagraphId = "0AAC19B9", TextId = "60A944BF" };

            ParagraphProperties paragraphProperties157 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId14 = new ParagraphStyleId() { Val = "Heading2" };

            ParagraphMarkRunProperties paragraphMarkRunProperties157 = new ParagraphMarkRunProperties();
            Underline underline41 = new Underline() { Val = UnderlineValues.Single };

            paragraphMarkRunProperties157.Append(underline41);

            paragraphProperties157.Append(paragraphStyleId14);
            paragraphProperties157.Append(paragraphMarkRunProperties157);

            Run run333 = new Run();

            RunProperties runProperties348 = new RunProperties();
            Underline underline42 = new Underline() { Val = UnderlineValues.Single };

            runProperties348.Append(underline42);
            Text text314 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text314.Text = "10. ";

            run333.Append(runProperties348);
            run333.Append(text314);

            Run run334 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00F34C49" };

            RunProperties runProperties349 = new RunProperties();
            Underline underline43 = new Underline() { Val = UnderlineValues.Single };

            runProperties349.Append(underline43);
            Text text315 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text315.Text = "What Server/Systems ";

            run334.Append(runProperties349);
            run334.Append(text315);

            Run run335 = new Run() { RsidRunAddition = "0057090B" };

            RunProperties runProperties350 = new RunProperties();
            Underline underline44 = new Underline() { Val = UnderlineValues.Single };

            runProperties350.Append(underline44);
            Text text316 = new Text();
            text316.Text = "will this project be replacing";

            run335.Append(runProperties350);
            run335.Append(text316);

            Run run336 = new Run() { RsidRunProperties = "0057090B", RsidRunAddition = "0057090B" };

            RunProperties runProperties351 = new RunProperties();
            Color color143 = new Color() { Val = "FF0000" };
            Underline underline45 = new Underline() { Val = UnderlineValues.Single };

            runProperties351.Append(color143);
            runProperties351.Append(underline45);
            Text text317 = new Text();
            text317.Text = ": N/A";

            run336.Append(runProperties351);
            run336.Append(text317);

            paragraph158.Append(paragraphProperties157);
            paragraph158.Append(run333);
            paragraph158.Append(run334);
            paragraph158.Append(run335);
            paragraph158.Append(run336);

            Paragraph paragraph159 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "00F34C49", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC19BA", TextId = "77777777" };

            ParagraphProperties paragraphProperties158 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties158 = new ParagraphMarkRunProperties();
            RunFonts runFonts448 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize456 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript450 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties158.Append(runFonts448);
            paragraphMarkRunProperties158.Append(fontSize456);
            paragraphMarkRunProperties158.Append(fontSizeComplexScript450);

            paragraphProperties158.Append(paragraphMarkRunProperties158);

            Run run337 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties352 = new RunProperties();
            RunFonts runFonts449 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize457 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript451 = new FontSizeComplexScript() { Val = "22" };

            runProperties352.Append(runFonts449);
            runProperties352.Append(fontSize457);
            runProperties352.Append(fontSizeComplexScript451);
            Text text318 = new Text();
            text318.Text = "*Please include all items and systems and approx. timelines that will be replaced by this project.";

            run337.Append(runProperties352);
            run337.Append(text318);

            paragraph159.Append(paragraphProperties158);
            paragraph159.Append(run337);

            Table table4 = new Table();

            TableProperties tableProperties4 = new TableProperties();
            TableWidth tableWidth4 = new TableWidth() { Width = "5000", Type = TableWidthUnitValues.Pct };

            TableCellMarginDefault tableCellMarginDefault2 = new TableCellMarginDefault();
            TableCellLeftMargin tableCellLeftMargin2 = new TableCellLeftMargin() { Width = 10, Type = TableWidthValues.Dxa };
            TableCellRightMargin tableCellRightMargin2 = new TableCellRightMargin() { Width = 10, Type = TableWidthValues.Dxa };

            tableCellMarginDefault2.Append(tableCellLeftMargin2);
            tableCellMarginDefault2.Append(tableCellRightMargin2);
            TableLook tableLook4 = new TableLook() { Val = "0000" };

            tableProperties4.Append(tableWidth4);
            tableProperties4.Append(tableCellMarginDefault2);
            tableProperties4.Append(tableLook4);

            TableGrid tableGrid4 = new TableGrid();
            GridColumn gridColumn23 = new GridColumn() { Width = "3886" };
            GridColumn gridColumn24 = new GridColumn() { Width = "2987" };
            GridColumn gridColumn25 = new GridColumn() { Width = "3171" };
            GridColumn gridColumn26 = new GridColumn() { Width = "2906" };

            tableGrid4.Append(gridColumn23);
            tableGrid4.Append(gridColumn24);
            tableGrid4.Append(gridColumn25);
            tableGrid4.Append(gridColumn26);

            TableRow tableRow15 = new TableRow() { RsidTableRowMarkRevision = "00281D13", RsidTableRowAddition = "00F34C49", RsidTableRowProperties = "001A269D", ParagraphId = "0AAC19BF", TextId = "77777777" };

            TableRowProperties tableRowProperties15 = new TableRowProperties();
            TableRowHeight tableRowHeight15 = new TableRowHeight() { Val = (UInt32Value)1U };

            tableRowProperties15.Append(tableRowHeight15);

            TableCell tableCell77 = new TableCell();

            TableCellProperties tableCellProperties77 = new TableCellProperties();
            TableCellWidth tableCellWidth77 = new TableCellWidth() { Width = "1500", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders17 = new TableCellBorders();
            TopBorder topBorder20 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder19 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder19 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder19 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders17.Append(topBorder20);
            tableCellBorders17.Append(leftBorder19);
            tableCellBorders17.Append(bottomBorder19);
            tableCellBorders17.Append(rightBorder19);
            Shading shading17 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin1 = new TableCellMargin();
            LeftMargin leftMargin1 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin1 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin1.Append(leftMargin1);
            tableCellMargin1.Append(rightMargin1);

            tableCellProperties77.Append(tableCellWidth77);
            tableCellProperties77.Append(tableCellBorders17);
            tableCellProperties77.Append(shading17);
            tableCellProperties77.Append(tableCellMargin1);

            Paragraph paragraph160 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC19BB", TextId = "77777777" };

            ParagraphProperties paragraphProperties159 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties159 = new ParagraphMarkRunProperties();
            RunFonts runFonts450 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold86 = new Bold();
            FontSize fontSize458 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript452 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties159.Append(runFonts450);
            paragraphMarkRunProperties159.Append(bold86);
            paragraphMarkRunProperties159.Append(fontSize458);
            paragraphMarkRunProperties159.Append(fontSizeComplexScript452);

            paragraphProperties159.Append(paragraphMarkRunProperties159);

            Run run338 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties353 = new RunProperties();
            RunFonts runFonts451 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold87 = new Bold();
            FontSize fontSize459 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript453 = new FontSizeComplexScript() { Val = "22" };

            runProperties353.Append(runFonts451);
            runProperties353.Append(bold87);
            runProperties353.Append(fontSize459);
            runProperties353.Append(fontSizeComplexScript453);
            Text text319 = new Text();
            text319.Text = "Name";

            run338.Append(runProperties353);
            run338.Append(text319);

            paragraph160.Append(paragraphProperties159);
            paragraph160.Append(run338);

            tableCell77.Append(tableCellProperties77);
            tableCell77.Append(paragraph160);

            TableCell tableCell78 = new TableCell();

            TableCellProperties tableCellProperties78 = new TableCellProperties();
            TableCellWidth tableCellWidth78 = new TableCellWidth() { Width = "1153", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders18 = new TableCellBorders();
            TopBorder topBorder21 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder20 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder20 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder20 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders18.Append(topBorder21);
            tableCellBorders18.Append(leftBorder20);
            tableCellBorders18.Append(bottomBorder20);
            tableCellBorders18.Append(rightBorder20);
            Shading shading18 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin2 = new TableCellMargin();
            LeftMargin leftMargin2 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin2 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin2.Append(leftMargin2);
            tableCellMargin2.Append(rightMargin2);

            tableCellProperties78.Append(tableCellWidth78);
            tableCellProperties78.Append(tableCellBorders18);
            tableCellProperties78.Append(shading18);
            tableCellProperties78.Append(tableCellMargin2);

            Paragraph paragraph161 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC19BC", TextId = "77777777" };

            ParagraphProperties paragraphProperties160 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties160 = new ParagraphMarkRunProperties();
            RunFonts runFonts452 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold88 = new Bold();
            FontSize fontSize460 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript454 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties160.Append(runFonts452);
            paragraphMarkRunProperties160.Append(bold88);
            paragraphMarkRunProperties160.Append(fontSize460);
            paragraphMarkRunProperties160.Append(fontSizeComplexScript454);

            paragraphProperties160.Append(paragraphMarkRunProperties160);

            Run run339 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties354 = new RunProperties();
            RunFonts runFonts453 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold89 = new Bold();
            FontSize fontSize461 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript455 = new FontSizeComplexScript() { Val = "22" };

            runProperties354.Append(runFonts453);
            runProperties354.Append(bold89);
            runProperties354.Append(fontSize461);
            runProperties354.Append(fontSizeComplexScript455);
            Text text320 = new Text();
            text320.Text = "Type";

            run339.Append(runProperties354);
            run339.Append(text320);

            paragraph161.Append(paragraphProperties160);
            paragraph161.Append(run339);

            tableCell78.Append(tableCellProperties78);
            tableCell78.Append(paragraph161);

            TableCell tableCell79 = new TableCell();

            TableCellProperties tableCellProperties79 = new TableCellProperties();
            TableCellWidth tableCellWidth79 = new TableCellWidth() { Width = "1224", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders19 = new TableCellBorders();
            TopBorder topBorder22 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder21 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder21 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder21 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders19.Append(topBorder22);
            tableCellBorders19.Append(leftBorder21);
            tableCellBorders19.Append(bottomBorder21);
            tableCellBorders19.Append(rightBorder21);
            Shading shading19 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin3 = new TableCellMargin();
            LeftMargin leftMargin3 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin3 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin3.Append(leftMargin3);
            tableCellMargin3.Append(rightMargin3);

            tableCellProperties79.Append(tableCellWidth79);
            tableCellProperties79.Append(tableCellBorders19);
            tableCellProperties79.Append(shading19);
            tableCellProperties79.Append(tableCellMargin3);

            Paragraph paragraph162 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC19BD", TextId = "77777777" };

            ParagraphProperties paragraphProperties161 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties161 = new ParagraphMarkRunProperties();
            RunFonts runFonts454 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold90 = new Bold();
            FontSize fontSize462 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript456 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties161.Append(runFonts454);
            paragraphMarkRunProperties161.Append(bold90);
            paragraphMarkRunProperties161.Append(fontSize462);
            paragraphMarkRunProperties161.Append(fontSizeComplexScript456);

            paragraphProperties161.Append(paragraphMarkRunProperties161);

            Run run340 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties355 = new RunProperties();
            RunFonts runFonts455 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold91 = new Bold();
            FontSize fontSize463 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript457 = new FontSizeComplexScript() { Val = "22" };

            runProperties355.Append(runFonts455);
            runProperties355.Append(bold91);
            runProperties355.Append(fontSize463);
            runProperties355.Append(fontSizeComplexScript457);
            Text text321 = new Text();
            text321.Text = "Location";

            run340.Append(runProperties355);
            run340.Append(text321);

            paragraph162.Append(paragraphProperties161);
            paragraph162.Append(run340);

            tableCell79.Append(tableCellProperties79);
            tableCell79.Append(paragraph162);

            TableCell tableCell80 = new TableCell();

            TableCellProperties tableCellProperties80 = new TableCellProperties();
            TableCellWidth tableCellWidth80 = new TableCellWidth() { Width = "1122", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders20 = new TableCellBorders();
            TopBorder topBorder23 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder22 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder22 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder22 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders20.Append(topBorder23);
            tableCellBorders20.Append(leftBorder22);
            tableCellBorders20.Append(bottomBorder22);
            tableCellBorders20.Append(rightBorder22);
            Shading shading20 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin4 = new TableCellMargin();
            LeftMargin leftMargin4 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin4 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin4.Append(leftMargin4);
            tableCellMargin4.Append(rightMargin4);

            tableCellProperties80.Append(tableCellWidth80);
            tableCellProperties80.Append(tableCellBorders20);
            tableCellProperties80.Append(shading20);
            tableCellProperties80.Append(tableCellMargin4);

            Paragraph paragraph163 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC19BE", TextId = "77777777" };

            ParagraphProperties paragraphProperties162 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties162 = new ParagraphMarkRunProperties();
            RunFonts runFonts456 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold92 = new Bold();
            FontSize fontSize464 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript458 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties162.Append(runFonts456);
            paragraphMarkRunProperties162.Append(bold92);
            paragraphMarkRunProperties162.Append(fontSize464);
            paragraphMarkRunProperties162.Append(fontSizeComplexScript458);

            paragraphProperties162.Append(paragraphMarkRunProperties162);

            Run run341 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties356 = new RunProperties();
            RunFonts runFonts457 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold93 = new Bold();
            FontSize fontSize465 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript459 = new FontSizeComplexScript() { Val = "22" };

            runProperties356.Append(runFonts457);
            runProperties356.Append(bold93);
            runProperties356.Append(fontSize465);
            runProperties356.Append(fontSizeComplexScript459);
            Text text322 = new Text();
            text322.Text = "Date";

            run341.Append(runProperties356);
            run341.Append(text322);

            paragraph163.Append(paragraphProperties162);
            paragraph163.Append(run341);

            tableCell80.Append(tableCellProperties80);
            tableCell80.Append(paragraph163);

            tableRow15.Append(tableRowProperties15);
            tableRow15.Append(tableCell77);
            tableRow15.Append(tableCell78);
            tableRow15.Append(tableCell79);
            tableRow15.Append(tableCell80);

            TableRow tableRow16 = new TableRow() { RsidTableRowMarkRevision = "00281D13", RsidTableRowAddition = "00F34C49", RsidTableRowProperties = "001A269D", ParagraphId = "0AAC19C4", TextId = "77777777" };

            TableRowProperties tableRowProperties16 = new TableRowProperties();
            TableRowHeight tableRowHeight16 = new TableRowHeight() { Val = (UInt32Value)1U };

            tableRowProperties16.Append(tableRowHeight16);

            TableCell tableCell81 = new TableCell();

            TableCellProperties tableCellProperties81 = new TableCellProperties();
            TableCellWidth tableCellWidth81 = new TableCellWidth() { Width = "1500", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders21 = new TableCellBorders();
            TopBorder topBorder24 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder23 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder23 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder23 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders21.Append(topBorder24);
            tableCellBorders21.Append(leftBorder23);
            tableCellBorders21.Append(bottomBorder23);
            tableCellBorders21.Append(rightBorder23);
            Shading shading21 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin5 = new TableCellMargin();
            LeftMargin leftMargin5 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin5 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin5.Append(leftMargin5);
            tableCellMargin5.Append(rightMargin5);

            tableCellProperties81.Append(tableCellWidth81);
            tableCellProperties81.Append(tableCellBorders21);
            tableCellProperties81.Append(shading21);
            tableCellProperties81.Append(tableCellMargin5);

            Paragraph paragraph164 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC19C0", TextId = "77777777" };

            ParagraphProperties paragraphProperties163 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties163 = new ParagraphMarkRunProperties();
            RunFonts runFonts458 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize466 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript460 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties163.Append(runFonts458);
            paragraphMarkRunProperties163.Append(fontSize466);
            paragraphMarkRunProperties163.Append(fontSizeComplexScript460);

            paragraphProperties163.Append(paragraphMarkRunProperties163);

            Run run342 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties357 = new RunProperties();
            RunFonts runFonts459 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color144 = new Color() { Val = "FF0000" };
            FontSize fontSize467 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript461 = new FontSizeComplexScript() { Val = "22" };

            runProperties357.Append(runFonts459);
            runProperties357.Append(color144);
            runProperties357.Append(fontSize467);
            runProperties357.Append(fontSizeComplexScript461);
            Text text323 = new Text();
            text323.Text = "BJCxxxxxxxx";

            run342.Append(runProperties357);
            run342.Append(text323);

            paragraph164.Append(paragraphProperties163);
            paragraph164.Append(run342);

            tableCell81.Append(tableCellProperties81);
            tableCell81.Append(paragraph164);

            TableCell tableCell82 = new TableCell();

            TableCellProperties tableCellProperties82 = new TableCellProperties();
            TableCellWidth tableCellWidth82 = new TableCellWidth() { Width = "1153", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders22 = new TableCellBorders();
            TopBorder topBorder25 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder24 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder24 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder24 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders22.Append(topBorder25);
            tableCellBorders22.Append(leftBorder24);
            tableCellBorders22.Append(bottomBorder24);
            tableCellBorders22.Append(rightBorder24);
            Shading shading22 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin6 = new TableCellMargin();
            LeftMargin leftMargin6 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin6 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin6.Append(leftMargin6);
            tableCellMargin6.Append(rightMargin6);

            tableCellProperties82.Append(tableCellWidth82);
            tableCellProperties82.Append(tableCellBorders22);
            tableCellProperties82.Append(shading22);
            tableCellProperties82.Append(tableCellMargin6);

            Paragraph paragraph165 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC19C1", TextId = "77777777" };

            ParagraphProperties paragraphProperties164 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties164 = new ParagraphMarkRunProperties();
            RunFonts runFonts460 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize468 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript462 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties164.Append(runFonts460);
            paragraphMarkRunProperties164.Append(fontSize468);
            paragraphMarkRunProperties164.Append(fontSizeComplexScript462);

            paragraphProperties164.Append(paragraphMarkRunProperties164);

            paragraph165.Append(paragraphProperties164);

            tableCell82.Append(tableCellProperties82);
            tableCell82.Append(paragraph165);

            TableCell tableCell83 = new TableCell();

            TableCellProperties tableCellProperties83 = new TableCellProperties();
            TableCellWidth tableCellWidth83 = new TableCellWidth() { Width = "1224", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders23 = new TableCellBorders();
            TopBorder topBorder26 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder25 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder25 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder25 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders23.Append(topBorder26);
            tableCellBorders23.Append(leftBorder25);
            tableCellBorders23.Append(bottomBorder25);
            tableCellBorders23.Append(rightBorder25);
            Shading shading23 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin7 = new TableCellMargin();
            LeftMargin leftMargin7 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin7 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin7.Append(leftMargin7);
            tableCellMargin7.Append(rightMargin7);

            tableCellProperties83.Append(tableCellWidth83);
            tableCellProperties83.Append(tableCellBorders23);
            tableCellProperties83.Append(shading23);
            tableCellProperties83.Append(tableCellMargin7);

            Paragraph paragraph166 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC19C2", TextId = "77777777" };

            ParagraphProperties paragraphProperties165 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties165 = new ParagraphMarkRunProperties();
            RunFonts runFonts461 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize469 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript463 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties165.Append(runFonts461);
            paragraphMarkRunProperties165.Append(fontSize469);
            paragraphMarkRunProperties165.Append(fontSizeComplexScript463);

            paragraphProperties165.Append(paragraphMarkRunProperties165);

            paragraph166.Append(paragraphProperties165);

            tableCell83.Append(tableCellProperties83);
            tableCell83.Append(paragraph166);

            TableCell tableCell84 = new TableCell();

            TableCellProperties tableCellProperties84 = new TableCellProperties();
            TableCellWidth tableCellWidth84 = new TableCellWidth() { Width = "1122", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders24 = new TableCellBorders();
            TopBorder topBorder27 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder26 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder26 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder26 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders24.Append(topBorder27);
            tableCellBorders24.Append(leftBorder26);
            tableCellBorders24.Append(bottomBorder26);
            tableCellBorders24.Append(rightBorder26);
            Shading shading24 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin8 = new TableCellMargin();
            LeftMargin leftMargin8 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin8 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin8.Append(leftMargin8);
            tableCellMargin8.Append(rightMargin8);

            tableCellProperties84.Append(tableCellWidth84);
            tableCellProperties84.Append(tableCellBorders24);
            tableCellProperties84.Append(shading24);
            tableCellProperties84.Append(tableCellMargin8);

            Paragraph paragraph167 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "003E56F4", ParagraphId = "0AAC19C3", TextId = "429B4472" };

            ParagraphProperties paragraphProperties166 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties166 = new ParagraphMarkRunProperties();
            RunFonts runFonts462 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize470 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript464 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties166.Append(runFonts462);
            paragraphMarkRunProperties166.Append(fontSize470);
            paragraphMarkRunProperties166.Append(fontSizeComplexScript464);

            paragraphProperties166.Append(paragraphMarkRunProperties166);

            Run run343 = new Run();

            RunProperties runProperties358 = new RunProperties();
            RunFonts runFonts463 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color145 = new Color() { Val = "FF0000" };
            FontSize fontSize471 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript465 = new FontSizeComplexScript() { Val = "22" };

            runProperties358.Append(runFonts463);
            runProperties358.Append(color145);
            runProperties358.Append(fontSize471);
            runProperties358.Append(fontSizeComplexScript465);
            Text text324 = new Text();
            text324.Text = "After Go-Live";

            run343.Append(runProperties358);
            run343.Append(text324);

            paragraph167.Append(paragraphProperties166);
            paragraph167.Append(run343);

            tableCell84.Append(tableCellProperties84);
            tableCell84.Append(paragraph167);

            tableRow16.Append(tableRowProperties16);
            tableRow16.Append(tableCell81);
            tableRow16.Append(tableCell82);
            tableRow16.Append(tableCell83);
            tableRow16.Append(tableCell84);

            TableRow tableRow17 = new TableRow() { RsidTableRowMarkRevision = "00281D13", RsidTableRowAddition = "00F34C49", RsidTableRowProperties = "001A269D", ParagraphId = "0AAC19C9", TextId = "77777777" };

            TableRowProperties tableRowProperties17 = new TableRowProperties();
            TableRowHeight tableRowHeight17 = new TableRowHeight() { Val = (UInt32Value)1U };

            tableRowProperties17.Append(tableRowHeight17);

            TableCell tableCell85 = new TableCell();

            TableCellProperties tableCellProperties85 = new TableCellProperties();
            TableCellWidth tableCellWidth85 = new TableCellWidth() { Width = "1500", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders25 = new TableCellBorders();
            TopBorder topBorder28 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder27 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder27 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder27 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders25.Append(topBorder28);
            tableCellBorders25.Append(leftBorder27);
            tableCellBorders25.Append(bottomBorder27);
            tableCellBorders25.Append(rightBorder27);
            Shading shading25 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin9 = new TableCellMargin();
            LeftMargin leftMargin9 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin9 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin9.Append(leftMargin9);
            tableCellMargin9.Append(rightMargin9);

            tableCellProperties85.Append(tableCellWidth85);
            tableCellProperties85.Append(tableCellBorders25);
            tableCellProperties85.Append(shading25);
            tableCellProperties85.Append(tableCellMargin9);

            Paragraph paragraph168 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC19C5", TextId = "77777777" };

            ParagraphProperties paragraphProperties167 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties167 = new ParagraphMarkRunProperties();
            RunFonts runFonts464 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize472 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript466 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties167.Append(runFonts464);
            paragraphMarkRunProperties167.Append(fontSize472);
            paragraphMarkRunProperties167.Append(fontSizeComplexScript466);

            paragraphProperties167.Append(paragraphMarkRunProperties167);

            paragraph168.Append(paragraphProperties167);

            tableCell85.Append(tableCellProperties85);
            tableCell85.Append(paragraph168);

            TableCell tableCell86 = new TableCell();

            TableCellProperties tableCellProperties86 = new TableCellProperties();
            TableCellWidth tableCellWidth86 = new TableCellWidth() { Width = "1153", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders26 = new TableCellBorders();
            TopBorder topBorder29 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder28 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder28 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder28 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders26.Append(topBorder29);
            tableCellBorders26.Append(leftBorder28);
            tableCellBorders26.Append(bottomBorder28);
            tableCellBorders26.Append(rightBorder28);
            Shading shading26 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin10 = new TableCellMargin();
            LeftMargin leftMargin10 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin10 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin10.Append(leftMargin10);
            tableCellMargin10.Append(rightMargin10);

            tableCellProperties86.Append(tableCellWidth86);
            tableCellProperties86.Append(tableCellBorders26);
            tableCellProperties86.Append(shading26);
            tableCellProperties86.Append(tableCellMargin10);

            Paragraph paragraph169 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC19C6", TextId = "77777777" };

            ParagraphProperties paragraphProperties168 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties168 = new ParagraphMarkRunProperties();
            RunFonts runFonts465 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize473 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript467 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties168.Append(runFonts465);
            paragraphMarkRunProperties168.Append(fontSize473);
            paragraphMarkRunProperties168.Append(fontSizeComplexScript467);

            paragraphProperties168.Append(paragraphMarkRunProperties168);

            paragraph169.Append(paragraphProperties168);

            tableCell86.Append(tableCellProperties86);
            tableCell86.Append(paragraph169);

            TableCell tableCell87 = new TableCell();

            TableCellProperties tableCellProperties87 = new TableCellProperties();
            TableCellWidth tableCellWidth87 = new TableCellWidth() { Width = "1224", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders27 = new TableCellBorders();
            TopBorder topBorder30 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder29 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder29 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder29 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders27.Append(topBorder30);
            tableCellBorders27.Append(leftBorder29);
            tableCellBorders27.Append(bottomBorder29);
            tableCellBorders27.Append(rightBorder29);
            Shading shading27 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin11 = new TableCellMargin();
            LeftMargin leftMargin11 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin11 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin11.Append(leftMargin11);
            tableCellMargin11.Append(rightMargin11);

            tableCellProperties87.Append(tableCellWidth87);
            tableCellProperties87.Append(tableCellBorders27);
            tableCellProperties87.Append(shading27);
            tableCellProperties87.Append(tableCellMargin11);

            Paragraph paragraph170 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC19C7", TextId = "77777777" };

            ParagraphProperties paragraphProperties169 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties169 = new ParagraphMarkRunProperties();
            RunFonts runFonts466 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize474 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript468 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties169.Append(runFonts466);
            paragraphMarkRunProperties169.Append(fontSize474);
            paragraphMarkRunProperties169.Append(fontSizeComplexScript468);

            paragraphProperties169.Append(paragraphMarkRunProperties169);

            paragraph170.Append(paragraphProperties169);

            tableCell87.Append(tableCellProperties87);
            tableCell87.Append(paragraph170);

            TableCell tableCell88 = new TableCell();

            TableCellProperties tableCellProperties88 = new TableCellProperties();
            TableCellWidth tableCellWidth88 = new TableCellWidth() { Width = "1122", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders28 = new TableCellBorders();
            TopBorder topBorder31 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder30 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder30 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder30 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders28.Append(topBorder31);
            tableCellBorders28.Append(leftBorder30);
            tableCellBorders28.Append(bottomBorder30);
            tableCellBorders28.Append(rightBorder30);
            Shading shading28 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin12 = new TableCellMargin();
            LeftMargin leftMargin12 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin12 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin12.Append(leftMargin12);
            tableCellMargin12.Append(rightMargin12);

            tableCellProperties88.Append(tableCellWidth88);
            tableCellProperties88.Append(tableCellBorders28);
            tableCellProperties88.Append(shading28);
            tableCellProperties88.Append(tableCellMargin12);

            Paragraph paragraph171 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC19C8", TextId = "77777777" };

            ParagraphProperties paragraphProperties170 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties170 = new ParagraphMarkRunProperties();
            RunFonts runFonts467 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize475 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript469 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties170.Append(runFonts467);
            paragraphMarkRunProperties170.Append(fontSize475);
            paragraphMarkRunProperties170.Append(fontSizeComplexScript469);

            paragraphProperties170.Append(paragraphMarkRunProperties170);

            paragraph171.Append(paragraphProperties170);

            tableCell88.Append(tableCellProperties88);
            tableCell88.Append(paragraph171);

            tableRow17.Append(tableRowProperties17);
            tableRow17.Append(tableCell85);
            tableRow17.Append(tableCell86);
            tableRow17.Append(tableCell87);
            tableRow17.Append(tableCell88);

            table4.Append(tableProperties4);
            table4.Append(tableGrid4);
            table4.Append(tableRow15);
            table4.Append(tableRow16);
            table4.Append(tableRow17);

            Paragraph paragraph172 = new Paragraph() { RsidParagraphAddition = "00BF26D7", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00E518DD", ParagraphId = "0AAC19CF", TextId = "58BF4DE5" };

            ParagraphProperties paragraphProperties171 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId15 = new ParagraphStyleId() { Val = "Heading2" };

            ParagraphMarkRunProperties paragraphMarkRunProperties171 = new ParagraphMarkRunProperties();
            Underline underline46 = new Underline() { Val = UnderlineValues.Single };

            paragraphMarkRunProperties171.Append(underline46);

            paragraphProperties171.Append(paragraphStyleId15);
            paragraphProperties171.Append(paragraphMarkRunProperties171);

            Run run344 = new Run();

            RunProperties runProperties359 = new RunProperties();
            Underline underline47 = new Underline() { Val = UnderlineValues.Single };

            runProperties359.Append(underline47);
            LastRenderedPageBreak lastRenderedPageBreak4 = new LastRenderedPageBreak();
            Text text325 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text325.Text = "11. ";

            run344.Append(runProperties359);
            run344.Append(lastRenderedPageBreak4);
            run344.Append(text325);

            Run run345 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00116831" };

            RunProperties runProperties360 = new RunProperties();
            Underline underline48 = new Underline() { Val = UnderlineValues.Single };

            runProperties360.Append(underline48);
            Text text326 = new Text();
            text326.Text = "Network";

            run345.Append(runProperties360);
            run345.Append(text326);

            Run run346 = new Run() { RsidRunProperties = "0057090B", RsidRunAddition = "0057090B" };

            RunProperties runProperties361 = new RunProperties();
            Color color146 = new Color() { Val = "FF0000" };
            Underline underline49 = new Underline() { Val = UnderlineValues.Single };

            runProperties361.Append(color146);
            runProperties361.Append(underline49);
            Text text327 = new Text();
            text327.Text = ": N/A";

            run346.Append(runProperties361);
            run346.Append(text327);

            paragraph172.Append(paragraphProperties171);
            paragraph172.Append(run344);
            paragraph172.Append(run345);
            paragraph172.Append(run346);

            Paragraph paragraph173 = new Paragraph() { RsidParagraphAddition = "003A7AC6", RsidParagraphProperties = "003A7AC6", RsidRunAdditionDefault = "00697199", ParagraphId = "3D38A7A5", TextId = "6758EF29" };

            Run run347 = new Run();
            Text text328 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text328.Text = "Server ";

            run347.Append(text328);

            Run run348 = new Run() { RsidRunAddition = "003A7AC6" };
            Text text329 = new Text();
            text329.Text = "VLAN";

            run348.Append(text329);

            paragraph173.Append(run347);
            paragraph173.Append(run348);

            Paragraph paragraph174 = new Paragraph() { RsidParagraphAddition = "003A7AC6", RsidParagraphProperties = "003A7AC6", RsidRunAdditionDefault = "00697199", ParagraphId = "41843E7B", TextId = "59DBE091" };

            Run run349 = new Run();
            Text text330 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text330.Text = "Server ";

            run349.Append(text330);

            Run run350 = new Run() { RsidRunAddition = "003A7AC6" };
            Text text331 = new Text();
            text331.Text = "MGMT VLAN";

            run350.Append(text331);

            paragraph174.Append(run349);
            paragraph174.Append(run350);

            Paragraph paragraph175 = new Paragraph() { RsidParagraphAddition = "00116831", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00E518DD", ParagraphId = "0AAC1A51", TextId = "7320FD08" };

            ParagraphProperties paragraphProperties172 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId16 = new ParagraphStyleId() { Val = "Heading2" };

            ParagraphMarkRunProperties paragraphMarkRunProperties172 = new ParagraphMarkRunProperties();
            Color color147 = new Color() { Val = "FF0000" };
            Underline underline50 = new Underline() { Val = UnderlineValues.Single };

            paragraphMarkRunProperties172.Append(color147);
            paragraphMarkRunProperties172.Append(underline50);

            paragraphProperties172.Append(paragraphStyleId16);
            paragraphProperties172.Append(paragraphMarkRunProperties172);
            BookmarkStart bookmarkStart3 = new BookmarkStart() { Name = "_Toc316382780", Id = "2" };
            BookmarkEnd bookmarkEnd2 = new BookmarkEnd() { Id = "1" };

            Run run351 = new Run();

            RunProperties runProperties362 = new RunProperties();
            Underline underline51 = new Underline() { Val = UnderlineValues.Single };

            runProperties362.Append(underline51);
            Text text332 = new Text();
            text332.Text = "1";

            run351.Append(runProperties362);
            run351.Append(text332);

            Run run352 = new Run() { RsidRunAddition = "002B0580" };

            RunProperties runProperties363 = new RunProperties();
            Underline underline52 = new Underline() { Val = UnderlineValues.Single };

            runProperties363.Append(underline52);
            Text text333 = new Text();
            text333.Text = "2";

            run352.Append(runProperties363);
            run352.Append(text333);

            Run run353 = new Run();

            RunProperties runProperties364 = new RunProperties();
            Underline underline53 = new Underline() { Val = UnderlineValues.Single };

            runProperties364.Append(underline53);
            Text text334 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text334.Text = ". ";

            run353.Append(runProperties364);
            run353.Append(text334);

            Run run354 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00116831" };

            RunProperties runProperties365 = new RunProperties();
            Underline underline54 = new Underline() { Val = UnderlineValues.Single };

            runProperties365.Append(underline54);
            Text text335 = new Text();
            text335.Text = "DB Version and Service Pack";

            run354.Append(runProperties365);
            run354.Append(text335);

            Run run355 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00BF26D7" };

            RunProperties runProperties366 = new RunProperties();
            Underline underline55 = new Underline() { Val = UnderlineValues.Single };

            runProperties366.Append(underline55);
            Text text336 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text336.Text = " Standards";

            run355.Append(runProperties366);
            run355.Append(text336);

            Run run356 = new Run() { RsidRunProperties = "0057090B", RsidRunAddition = "0057090B" };

            RunProperties runProperties367 = new RunProperties();
            Color color148 = new Color() { Val = "FF0000" };
            Underline underline56 = new Underline() { Val = UnderlineValues.Single };

            runProperties367.Append(color148);
            runProperties367.Append(underline56);
            Text text337 = new Text();
            text337.Text = ": N/A";

            run356.Append(runProperties367);
            run356.Append(text337);

            paragraph175.Append(paragraphProperties172);
            paragraph175.Append(bookmarkStart3);
            paragraph175.Append(bookmarkEnd2);
            paragraph175.Append(run351);
            paragraph175.Append(run352);
            paragraph175.Append(run353);
            paragraph175.Append(run354);
            paragraph175.Append(run355);
            paragraph175.Append(run356);

            Paragraph paragraph176 = new Paragraph() { RsidParagraphMarkRevision = "00624202", RsidParagraphAddition = "00624202", RsidParagraphProperties = "00624202", RsidRunAdditionDefault = "00697199", ParagraphId = "3B036754", TextId = "056BE231" };

            ParagraphProperties paragraphProperties173 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties173 = new ParagraphMarkRunProperties();
            RunFonts runFonts468 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color149 = new Color() { Val = "FF0000" };
            FontSize fontSize476 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript470 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties173.Append(runFonts468);
            paragraphMarkRunProperties173.Append(color149);
            paragraphMarkRunProperties173.Append(fontSize476);
            paragraphMarkRunProperties173.Append(fontSizeComplexScript470);

            paragraphProperties173.Append(paragraphMarkRunProperties173);

            Run run357 = new Run() { RsidRunProperties = "00697199" };

            RunProperties runProperties368 = new RunProperties();
            RunFonts runFonts469 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold94 = new Bold();
            Color color150 = new Color() { Val = "FF0000" };
            FontSize fontSize477 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript471 = new FontSizeComplexScript() { Val = "22" };
            Underline underline57 = new Underline() { Val = UnderlineValues.Single };

            runProperties368.Append(runFonts469);
            runProperties368.Append(bold94);
            runProperties368.Append(color150);
            runProperties368.Append(fontSize477);
            runProperties368.Append(fontSizeComplexScript471);
            runProperties368.Append(underline57);
            Text text338 = new Text();
            text338.Text = "SQL 2012 is preffered.";

            run357.Append(runProperties368);
            run357.Append(text338);

            Run run358 = new Run();

            RunProperties runProperties369 = new RunProperties();
            RunFonts runFonts470 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color151 = new Color() { Val = "FF0000" };
            FontSize fontSize478 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript472 = new FontSizeComplexScript() { Val = "22" };

            runProperties369.Append(runFonts470);
            runProperties369.Append(color151);
            runProperties369.Append(fontSize478);
            runProperties369.Append(fontSizeComplexScript472);
            Text text339 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text339.Text = "  ";

            run358.Append(runProperties369);
            run358.Append(text339);

            Run run359 = new Run() { RsidRunAddition = "00624202" };

            RunProperties runProperties370 = new RunProperties();
            RunFonts runFonts471 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color152 = new Color() { Val = "FF0000" };
            FontSize fontSize479 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript473 = new FontSizeComplexScript() { Val = "22" };

            runProperties370.Append(runFonts471);
            runProperties370.Append(color152);
            runProperties370.Append(fontSize479);
            runProperties370.Append(fontSizeComplexScript473);
            Text text340 = new Text();
            text340.Text = "Any requests older than SQL 2008r2";

            run359.Append(runProperties370);
            run359.Append(text340);

            Run run360 = new Run();

            RunProperties runProperties371 = new RunProperties();
            RunFonts runFonts472 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color153 = new Color() { Val = "FF0000" };
            FontSize fontSize480 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript474 = new FontSizeComplexScript() { Val = "22" };

            runProperties371.Append(runFonts472);
            runProperties371.Append(color153);
            runProperties371.Append(fontSize480);
            runProperties371.Append(fontSizeComplexScript474);
            Text text341 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text341.Text = " or a 32 bit version";

            run360.Append(runProperties371);
            run360.Append(text341);

            Run run361 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00624202" };

            RunProperties runProperties372 = new RunProperties();
            RunFonts runFonts473 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color154 = new Color() { Val = "FF0000" };
            FontSize fontSize481 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript475 = new FontSizeComplexScript() { Val = "22" };

            runProperties372.Append(runFonts473);
            runProperties372.Append(color154);
            runProperties372.Append(fontSize481);
            runProperties372.Append(fontSizeComplexScript475);
            Text text342 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text342.Text = " will require";

            run361.Append(runProperties372);
            run361.Append(text342);

            Run run362 = new Run() { RsidRunAddition = "00624202" };

            RunProperties runProperties373 = new RunProperties();
            RunFonts runFonts474 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color155 = new Color() { Val = "FF0000" };
            FontSize fontSize482 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript476 = new FontSizeComplexScript() { Val = "22" };

            runProperties373.Append(runFonts474);
            runProperties373.Append(color155);
            runProperties373.Append(fontSize482);
            runProperties373.Append(fontSizeComplexScript476);
            Text text343 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text343.Text = " a conversation with Standards";

            run362.Append(runProperties373);
            run362.Append(text343);

            Run run363 = new Run();

            RunProperties runProperties374 = new RunProperties();
            RunFonts runFonts475 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color156 = new Color() { Val = "FF0000" };
            FontSize fontSize483 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript477 = new FontSizeComplexScript() { Val = "22" };

            runProperties374.Append(runFonts475);
            runProperties374.Append(color156);
            runProperties374.Append(fontSize483);
            runProperties374.Append(fontSizeComplexScript477);
            Text text344 = new Text();
            text344.Text = ".";

            run363.Append(runProperties374);
            run363.Append(text344);

            paragraph176.Append(paragraphProperties173);
            paragraph176.Append(run357);
            paragraph176.Append(run358);
            paragraph176.Append(run359);
            paragraph176.Append(run360);
            paragraph176.Append(run361);
            paragraph176.Append(run362);
            paragraph176.Append(run363);

            Paragraph paragraph177 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00EE5D41", RsidParagraphProperties = "00EE5D41", RsidRunAdditionDefault = "00A563A2", ParagraphId = "0AAC1A52", TextId = "77777777" };

            ParagraphProperties paragraphProperties174 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties174 = new ParagraphMarkRunProperties();
            RunFonts runFonts476 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize484 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript478 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties174.Append(runFonts476);
            paragraphMarkRunProperties174.Append(fontSize484);
            paragraphMarkRunProperties174.Append(fontSizeComplexScript478);

            paragraphProperties174.Append(paragraphMarkRunProperties174);

            SdtRun sdtRun19 = new SdtRun();

            SdtProperties sdtProperties19 = new SdtProperties();

            RunProperties runProperties375 = new RunProperties();
            RunFonts runFonts477 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize485 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript479 = new FontSizeComplexScript() { Val = "22" };

            runProperties375.Append(runFonts477);
            runProperties375.Append(fontSize485);
            runProperties375.Append(fontSizeComplexScript479);
            SdtId sdtId19 = new SdtId() { Val = 711304974 };

            W14.SdtContentCheckBox sdtContentCheckBox19 = new W14.SdtContentCheckBox();
            W14.Checked checked19 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState19 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState19 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox19.Append(checked19);
            sdtContentCheckBox19.Append(checkedState19);
            sdtContentCheckBox19.Append(uncheckedState19);

            sdtProperties19.Append(runProperties375);
            sdtProperties19.Append(sdtId19);
            sdtProperties19.Append(sdtContentCheckBox19);
            SdtEndCharProperties sdtEndCharProperties19 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun19 = new SdtContentRun();

            Run run364 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00F97B58" };

            RunProperties runProperties376 = new RunProperties();
            RunFonts runFonts478 = new RunFonts() { Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize486 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript480 = new FontSizeComplexScript() { Val = "22" };

            runProperties376.Append(runFonts478);
            runProperties376.Append(fontSize486);
            runProperties376.Append(fontSizeComplexScript480);
            Text text345 = new Text();
            text345.Text = "☐";

            run364.Append(runProperties376);
            run364.Append(text345);

            sdtContentRun19.Append(run364);

            sdtRun19.Append(sdtProperties19);
            sdtRun19.Append(sdtEndCharProperties19);
            sdtRun19.Append(sdtContentRun19);

            Run run365 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00F97B58" };

            RunProperties runProperties377 = new RunProperties();
            RunFonts runFonts479 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize487 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript481 = new FontSizeComplexScript() { Val = "22" };

            runProperties377.Append(runFonts479);
            runProperties377.Append(fontSize487);
            runProperties377.Append(fontSizeComplexScript481);
            Text text346 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text346.Text = "  ";

            run365.Append(runProperties377);
            run365.Append(text346);

            Run run366 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "00EE5D41" };

            RunProperties runProperties378 = new RunProperties();
            RunFonts runFonts480 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize488 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript482 = new FontSizeComplexScript() { Val = "22" };

            runProperties378.Append(runFonts480);
            runProperties378.Append(fontSize488);
            runProperties378.Append(fontSizeComplexScript482);
            Text text347 = new Text();
            text347.Text = "SQl 2012";

            run366.Append(runProperties378);
            run366.Append(text347);

            paragraph177.Append(paragraphProperties174);
            paragraph177.Append(sdtRun19);
            paragraph177.Append(run365);
            paragraph177.Append(run366);

            Paragraph paragraph178 = new Paragraph() { RsidParagraphMarkRevision = "0027287B", RsidParagraphAddition = "00F97B58", RsidParagraphProperties = "00F97B58", RsidRunAdditionDefault = "00F97B58", ParagraphId = "0AAC1A53", TextId = "77777777" };

            ParagraphProperties paragraphProperties175 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties175 = new ParagraphMarkRunProperties();
            RunFonts runFonts481 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize489 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript483 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties175.Append(runFonts481);
            paragraphMarkRunProperties175.Append(fontSize489);
            paragraphMarkRunProperties175.Append(fontSizeComplexScript483);

            paragraphProperties175.Append(paragraphMarkRunProperties175);

            Run run367 = new Run() { RsidRunProperties = "0027287B" };

            RunProperties runProperties379 = new RunProperties();
            RunFonts runFonts482 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize490 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript484 = new FontSizeComplexScript() { Val = "22" };

            runProperties379.Append(runFonts482);
            runProperties379.Append(fontSize490);
            runProperties379.Append(fontSizeComplexScript484);
            TabChar tabChar24 = new TabChar();

            run367.Append(runProperties379);
            run367.Append(tabChar24);

            SdtRun sdtRun20 = new SdtRun();

            SdtProperties sdtProperties20 = new SdtProperties();

            RunProperties runProperties380 = new RunProperties();
            RunFonts runFonts483 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize491 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript485 = new FontSizeComplexScript() { Val = "22" };

            runProperties380.Append(runFonts483);
            runProperties380.Append(fontSize491);
            runProperties380.Append(fontSizeComplexScript485);
            SdtId sdtId20 = new SdtId() { Val = 567079027 };

            W14.SdtContentCheckBox sdtContentCheckBox20 = new W14.SdtContentCheckBox();
            W14.Checked checked20 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState20 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState20 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox20.Append(checked20);
            sdtContentCheckBox20.Append(checkedState20);
            sdtContentCheckBox20.Append(uncheckedState20);

            sdtProperties20.Append(runProperties380);
            sdtProperties20.Append(sdtId20);
            sdtProperties20.Append(sdtContentCheckBox20);
            SdtEndCharProperties sdtEndCharProperties20 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun20 = new SdtContentRun();

            Run run368 = new Run() { RsidRunProperties = "0027287B" };

            RunProperties runProperties381 = new RunProperties();
            RunFonts runFonts484 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize492 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript486 = new FontSizeComplexScript() { Val = "22" };

            runProperties381.Append(runFonts484);
            runProperties381.Append(fontSize492);
            runProperties381.Append(fontSizeComplexScript486);
            Text text348 = new Text();
            text348.Text = "☐";

            run368.Append(runProperties381);
            run368.Append(text348);

            sdtContentRun20.Append(run368);

            sdtRun20.Append(sdtProperties20);
            sdtRun20.Append(sdtEndCharProperties20);
            sdtRun20.Append(sdtContentRun20);

            Run run369 = new Run() { RsidRunProperties = "0027287B" };

            RunProperties runProperties382 = new RunProperties();
            RunFonts runFonts485 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize493 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript487 = new FontSizeComplexScript() { Val = "22" };

            runProperties382.Append(runFonts485);
            runProperties382.Append(fontSize493);
            runProperties382.Append(fontSizeComplexScript487);
            Text text349 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text349.Text = "  Standard";

            run369.Append(runProperties382);
            run369.Append(text349);

            paragraph178.Append(paragraphProperties175);
            paragraph178.Append(run367);
            paragraph178.Append(sdtRun20);
            paragraph178.Append(run369);

            Paragraph paragraph179 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F97B58", RsidParagraphProperties = "00F97B58", RsidRunAdditionDefault = "00F97B58", ParagraphId = "0AAC1A54", TextId = "77777777" };

            ParagraphProperties paragraphProperties176 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties176 = new ParagraphMarkRunProperties();
            RunFonts runFonts486 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize494 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript488 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties176.Append(runFonts486);
            paragraphMarkRunProperties176.Append(fontSize494);
            paragraphMarkRunProperties176.Append(fontSizeComplexScript488);

            paragraphProperties176.Append(paragraphMarkRunProperties176);

            Run run370 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties383 = new RunProperties();
            RunFonts runFonts487 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize495 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript489 = new FontSizeComplexScript() { Val = "22" };

            runProperties383.Append(runFonts487);
            runProperties383.Append(fontSize495);
            runProperties383.Append(fontSizeComplexScript489);
            TabChar tabChar25 = new TabChar();

            run370.Append(runProperties383);
            run370.Append(tabChar25);

            SdtRun sdtRun21 = new SdtRun();

            SdtProperties sdtProperties21 = new SdtProperties();

            RunProperties runProperties384 = new RunProperties();
            RunFonts runFonts488 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize496 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript490 = new FontSizeComplexScript() { Val = "22" };

            runProperties384.Append(runFonts488);
            runProperties384.Append(fontSize496);
            runProperties384.Append(fontSizeComplexScript490);
            SdtId sdtId21 = new SdtId() { Val = -406299043 };

            W14.SdtContentCheckBox sdtContentCheckBox21 = new W14.SdtContentCheckBox();
            W14.Checked checked21 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState21 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState21 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox21.Append(checked21);
            sdtContentCheckBox21.Append(checkedState21);
            sdtContentCheckBox21.Append(uncheckedState21);

            sdtProperties21.Append(runProperties384);
            sdtProperties21.Append(sdtId21);
            sdtProperties21.Append(sdtContentCheckBox21);
            SdtEndCharProperties sdtEndCharProperties21 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun21 = new SdtContentRun();

            Run run371 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties385 = new RunProperties();
            RunFonts runFonts489 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize497 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript491 = new FontSizeComplexScript() { Val = "22" };

            runProperties385.Append(runFonts489);
            runProperties385.Append(fontSize497);
            runProperties385.Append(fontSizeComplexScript491);
            Text text350 = new Text();
            text350.Text = "☐";

            run371.Append(runProperties385);
            run371.Append(text350);

            sdtContentRun21.Append(run371);

            sdtRun21.Append(sdtProperties21);
            sdtRun21.Append(sdtEndCharProperties21);
            sdtRun21.Append(sdtContentRun21);

            Run run372 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties386 = new RunProperties();
            RunFonts runFonts490 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize498 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript492 = new FontSizeComplexScript() { Val = "22" };

            runProperties386.Append(runFonts490);
            runProperties386.Append(fontSize498);
            runProperties386.Append(fontSizeComplexScript492);
            Text text351 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text351.Text = "  Enterprise";

            run372.Append(runProperties386);
            run372.Append(text351);

            paragraph179.Append(paragraphProperties176);
            paragraph179.Append(run370);
            paragraph179.Append(sdtRun21);
            paragraph179.Append(run372);

            Paragraph paragraph180 = new Paragraph() { RsidParagraphAddition = "00104E8D", RsidParagraphProperties = "00104E8D", RsidRunAdditionDefault = "00A563A2", ParagraphId = "415F9999", TextId = "77777777" };

            ParagraphProperties paragraphProperties177 = new ParagraphProperties();
            Indentation indentation18 = new Indentation() { FirstLine = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties177 = new ParagraphMarkRunProperties();
            RunFonts runFonts491 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize499 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript493 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties177.Append(runFonts491);
            paragraphMarkRunProperties177.Append(fontSize499);
            paragraphMarkRunProperties177.Append(fontSizeComplexScript493);

            paragraphProperties177.Append(indentation18);
            paragraphProperties177.Append(paragraphMarkRunProperties177);

            SdtRun sdtRun22 = new SdtRun();

            SdtProperties sdtProperties22 = new SdtProperties();

            RunProperties runProperties387 = new RunProperties();
            RunFonts runFonts492 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize500 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript494 = new FontSizeComplexScript() { Val = "22" };

            runProperties387.Append(runFonts492);
            runProperties387.Append(fontSize500);
            runProperties387.Append(fontSizeComplexScript494);
            SdtId sdtId22 = new SdtId() { Val = -1295912154 };

            W14.SdtContentCheckBox sdtContentCheckBox22 = new W14.SdtContentCheckBox();
            W14.Checked checked22 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState22 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState22 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox22.Append(checked22);
            sdtContentCheckBox22.Append(checkedState22);
            sdtContentCheckBox22.Append(uncheckedState22);

            sdtProperties22.Append(runProperties387);
            sdtProperties22.Append(sdtId22);
            sdtProperties22.Append(sdtContentCheckBox22);
            SdtEndCharProperties sdtEndCharProperties22 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun22 = new SdtContentRun();

            Run run373 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "00104E8D" };

            RunProperties runProperties388 = new RunProperties();
            RunFonts runFonts493 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize501 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript495 = new FontSizeComplexScript() { Val = "22" };

            runProperties388.Append(runFonts493);
            runProperties388.Append(fontSize501);
            runProperties388.Append(fontSizeComplexScript495);
            Text text352 = new Text();
            text352.Text = "☐";

            run373.Append(runProperties388);
            run373.Append(text352);

            sdtContentRun22.Append(run373);

            sdtRun22.Append(sdtProperties22);
            sdtRun22.Append(sdtEndCharProperties22);
            sdtRun22.Append(sdtContentRun22);

            Run run374 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "00104E8D" };

            RunProperties runProperties389 = new RunProperties();
            RunFonts runFonts494 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize502 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript496 = new FontSizeComplexScript() { Val = "22" };

            runProperties389.Append(runFonts494);
            runProperties389.Append(fontSize502);
            runProperties389.Append(fontSizeComplexScript496);
            Text text353 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text353.Text = "  SP1";

            run374.Append(runProperties389);
            run374.Append(text353);

            paragraph180.Append(paragraphProperties177);
            paragraph180.Append(sdtRun22);
            paragraph180.Append(run374);

            Paragraph paragraph181 = new Paragraph() { RsidParagraphAddition = "00104E8D", RsidParagraphProperties = "00104E8D", RsidRunAdditionDefault = "00A563A2", ParagraphId = "4720AB3A", TextId = "100DA4D7" };

            ParagraphProperties paragraphProperties178 = new ParagraphProperties();
            Indentation indentation19 = new Indentation() { FirstLine = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties178 = new ParagraphMarkRunProperties();
            RunFonts runFonts495 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize503 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript497 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties178.Append(runFonts495);
            paragraphMarkRunProperties178.Append(fontSize503);
            paragraphMarkRunProperties178.Append(fontSizeComplexScript497);

            paragraphProperties178.Append(indentation19);
            paragraphProperties178.Append(paragraphMarkRunProperties178);

            SdtRun sdtRun23 = new SdtRun();

            SdtProperties sdtProperties23 = new SdtProperties();

            RunProperties runProperties390 = new RunProperties();
            RunFonts runFonts496 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize504 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript498 = new FontSizeComplexScript() { Val = "22" };

            runProperties390.Append(runFonts496);
            runProperties390.Append(fontSize504);
            runProperties390.Append(fontSizeComplexScript498);
            SdtId sdtId23 = new SdtId() { Val = 726494228 };

            W14.SdtContentCheckBox sdtContentCheckBox23 = new W14.SdtContentCheckBox();
            W14.Checked checked23 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState23 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState23 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox23.Append(checked23);
            sdtContentCheckBox23.Append(checkedState23);
            sdtContentCheckBox23.Append(uncheckedState23);

            sdtProperties23.Append(runProperties390);
            sdtProperties23.Append(sdtId23);
            sdtProperties23.Append(sdtContentCheckBox23);
            SdtEndCharProperties sdtEndCharProperties23 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun23 = new SdtContentRun();

            Run run375 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "00104E8D" };

            RunProperties runProperties391 = new RunProperties();
            RunFonts runFonts497 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize505 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript499 = new FontSizeComplexScript() { Val = "22" };

            runProperties391.Append(runFonts497);
            runProperties391.Append(fontSize505);
            runProperties391.Append(fontSizeComplexScript499);
            Text text354 = new Text();
            text354.Text = "☐";

            run375.Append(runProperties391);
            run375.Append(text354);

            sdtContentRun23.Append(run375);

            sdtRun23.Append(sdtProperties23);
            sdtRun23.Append(sdtEndCharProperties23);
            sdtRun23.Append(sdtContentRun23);

            Run run376 = new Run() { RsidRunAddition = "00104E8D" };

            RunProperties runProperties392 = new RunProperties();
            RunFonts runFonts498 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize506 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript500 = new FontSizeComplexScript() { Val = "22" };

            runProperties392.Append(runFonts498);
            runProperties392.Append(fontSize506);
            runProperties392.Append(fontSizeComplexScript500);
            Text text355 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text355.Text = "  SP2";

            run376.Append(runProperties392);
            run376.Append(text355);

            paragraph181.Append(paragraphProperties178);
            paragraph181.Append(sdtRun23);
            paragraph181.Append(run376);

            Paragraph paragraph182 = new Paragraph() { RsidParagraphAddition = "00F12AD5", RsidParagraphProperties = "00F12AD5", RsidRunAdditionDefault = "00A563A2", ParagraphId = "5F8147AD", TextId = "4AEDEFDF" };

            ParagraphProperties paragraphProperties179 = new ParagraphProperties();
            Indentation indentation20 = new Indentation() { FirstLine = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties179 = new ParagraphMarkRunProperties();
            RunFonts runFonts499 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize507 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript501 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties179.Append(runFonts499);
            paragraphMarkRunProperties179.Append(fontSize507);
            paragraphMarkRunProperties179.Append(fontSizeComplexScript501);

            paragraphProperties179.Append(indentation20);
            paragraphProperties179.Append(paragraphMarkRunProperties179);

            SdtRun sdtRun24 = new SdtRun();

            SdtProperties sdtProperties24 = new SdtProperties();

            RunProperties runProperties393 = new RunProperties();
            RunFonts runFonts500 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize508 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript502 = new FontSizeComplexScript() { Val = "22" };

            runProperties393.Append(runFonts500);
            runProperties393.Append(fontSize508);
            runProperties393.Append(fontSizeComplexScript502);
            SdtId sdtId24 = new SdtId() { Val = -871382545 };

            W14.SdtContentCheckBox sdtContentCheckBox24 = new W14.SdtContentCheckBox();
            W14.Checked checked24 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState24 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState24 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox24.Append(checked24);
            sdtContentCheckBox24.Append(checkedState24);
            sdtContentCheckBox24.Append(uncheckedState24);

            sdtProperties24.Append(runProperties393);
            sdtProperties24.Append(sdtId24);
            sdtProperties24.Append(sdtContentCheckBox24);
            SdtEndCharProperties sdtEndCharProperties24 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun24 = new SdtContentRun();

            Run run377 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "00697199" };

            RunProperties runProperties394 = new RunProperties();
            RunFonts runFonts501 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize509 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript503 = new FontSizeComplexScript() { Val = "22" };

            runProperties394.Append(runFonts501);
            runProperties394.Append(fontSize509);
            runProperties394.Append(fontSizeComplexScript503);
            Text text356 = new Text();
            text356.Text = "☐";

            run377.Append(runProperties394);
            run377.Append(text356);

            sdtContentRun24.Append(run377);

            sdtRun24.Append(sdtProperties24);
            sdtRun24.Append(sdtEndCharProperties24);
            sdtRun24.Append(sdtContentRun24);

            Run run378 = new Run() { RsidRunAddition = "00697199" };

            RunProperties runProperties395 = new RunProperties();
            RunFonts runFonts502 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize510 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript504 = new FontSizeComplexScript() { Val = "22" };

            runProperties395.Append(runFonts502);
            runProperties395.Append(fontSize510);
            runProperties395.Append(fontSizeComplexScript504);
            Text text357 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text357.Text = "  Always-On";

            run378.Append(runProperties395);
            run378.Append(text357);

            Run run379 = new Run() { RsidRunAddition = "00F12AD5" };

            RunProperties runProperties396 = new RunProperties();
            RunFonts runFonts503 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize511 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript505 = new FontSizeComplexScript() { Val = "22" };

            runProperties396.Append(runFonts503);
            runProperties396.Append(fontSize511);
            runProperties396.Append(fontSizeComplexScript505);
            TabChar tabChar26 = new TabChar();

            run379.Append(runProperties396);
            run379.Append(tabChar26);

            Run run380 = new Run() { RsidRunAddition = "00F12AD5" };

            RunProperties runProperties397 = new RunProperties();
            RunFonts runFonts504 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize512 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript506 = new FontSizeComplexScript() { Val = "22" };

            runProperties397.Append(runFonts504);
            runProperties397.Append(fontSize512);
            runProperties397.Append(fontSizeComplexScript506);
            TabChar tabChar27 = new TabChar();

            run380.Append(runProperties397);
            run380.Append(tabChar27);

            SdtRun sdtRun25 = new SdtRun();

            SdtProperties sdtProperties25 = new SdtProperties();

            RunProperties runProperties398 = new RunProperties();
            RunFonts runFonts505 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize513 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript507 = new FontSizeComplexScript() { Val = "22" };

            runProperties398.Append(runFonts505);
            runProperties398.Append(fontSize513);
            runProperties398.Append(fontSizeComplexScript507);
            SdtId sdtId25 = new SdtId() { Val = 197593525 };

            W14.SdtContentCheckBox sdtContentCheckBox25 = new W14.SdtContentCheckBox();
            W14.Checked checked25 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState25 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState25 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox25.Append(checked25);
            sdtContentCheckBox25.Append(checkedState25);
            sdtContentCheckBox25.Append(uncheckedState25);

            sdtProperties25.Append(runProperties398);
            sdtProperties25.Append(sdtId25);
            sdtProperties25.Append(sdtContentCheckBox25);
            SdtEndCharProperties sdtEndCharProperties25 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun25 = new SdtContentRun();

            Run run381 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "00F12AD5" };

            RunProperties runProperties399 = new RunProperties();
            RunFonts runFonts506 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize514 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript508 = new FontSizeComplexScript() { Val = "22" };

            runProperties399.Append(runFonts506);
            runProperties399.Append(fontSize514);
            runProperties399.Append(fontSizeComplexScript508);
            Text text358 = new Text();
            text358.Text = "☐";

            run381.Append(runProperties399);
            run381.Append(text358);

            sdtContentRun25.Append(run381);

            sdtRun25.Append(sdtProperties25);
            sdtRun25.Append(sdtEndCharProperties25);
            sdtRun25.Append(sdtContentRun25);

            Run run382 = new Run() { RsidRunAddition = "00F12AD5" };

            RunProperties runProperties400 = new RunProperties();
            RunFonts runFonts507 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize515 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript509 = new FontSizeComplexScript() { Val = "22" };

            runProperties400.Append(runFonts507);
            runProperties400.Append(fontSize515);
            runProperties400.Append(fontSizeComplexScript509);
            Text text359 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text359.Text = "  Multi-Subnet Capable";

            run382.Append(runProperties400);
            run382.Append(text359);

            paragraph182.Append(paragraphProperties179);
            paragraph182.Append(sdtRun24);
            paragraph182.Append(run378);
            paragraph182.Append(run379);
            paragraph182.Append(run380);
            paragraph182.Append(sdtRun25);
            paragraph182.Append(run382);

            Paragraph paragraph183 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00EE5D41", RsidParagraphProperties = "00EE5D41", RsidRunAdditionDefault = "00A563A2", ParagraphId = "0AAC1A56", TextId = "1A060D03" };

            ParagraphProperties paragraphProperties180 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties180 = new ParagraphMarkRunProperties();
            RunFonts runFonts508 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize516 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript510 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties180.Append(runFonts508);
            paragraphMarkRunProperties180.Append(fontSize516);
            paragraphMarkRunProperties180.Append(fontSizeComplexScript510);

            paragraphProperties180.Append(paragraphMarkRunProperties180);

            SdtRun sdtRun26 = new SdtRun();

            SdtProperties sdtProperties26 = new SdtProperties();

            RunProperties runProperties401 = new RunProperties();
            RunFonts runFonts509 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize517 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript511 = new FontSizeComplexScript() { Val = "22" };

            runProperties401.Append(runFonts509);
            runProperties401.Append(fontSize517);
            runProperties401.Append(fontSizeComplexScript511);
            SdtId sdtId26 = new SdtId() { Val = -760758384 };

            W14.SdtContentCheckBox sdtContentCheckBox26 = new W14.SdtContentCheckBox();
            W14.Checked checked26 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState26 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState26 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox26.Append(checked26);
            sdtContentCheckBox26.Append(checkedState26);
            sdtContentCheckBox26.Append(uncheckedState26);

            sdtProperties26.Append(runProperties401);
            sdtProperties26.Append(sdtId26);
            sdtProperties26.Append(sdtContentCheckBox26);
            SdtEndCharProperties sdtEndCharProperties26 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun26 = new SdtContentRun();

            Run run383 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "00F97B58" };

            RunProperties runProperties402 = new RunProperties();
            RunFonts runFonts510 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize518 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript512 = new FontSizeComplexScript() { Val = "22" };

            runProperties402.Append(runFonts510);
            runProperties402.Append(fontSize518);
            runProperties402.Append(fontSizeComplexScript512);
            Text text360 = new Text();
            text360.Text = "☐";

            run383.Append(runProperties402);
            run383.Append(text360);

            sdtContentRun26.Append(run383);

            sdtRun26.Append(sdtProperties26);
            sdtRun26.Append(sdtEndCharProperties26);
            sdtRun26.Append(sdtContentRun26);

            Run run384 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "00F97B58" };

            RunProperties runProperties403 = new RunProperties();
            RunFonts runFonts511 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize519 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript513 = new FontSizeComplexScript() { Val = "22" };

            runProperties403.Append(runFonts511);
            runProperties403.Append(fontSize519);
            runProperties403.Append(fontSizeComplexScript513);
            Text text361 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text361.Text = "  S";

            run384.Append(runProperties403);
            run384.Append(text361);

            Run run385 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "00EE5D41" };

            RunProperties runProperties404 = new RunProperties();
            RunFonts runFonts512 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize520 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript514 = new FontSizeComplexScript() { Val = "22" };

            runProperties404.Append(runFonts512);
            runProperties404.Append(fontSize520);
            runProperties404.Append(fontSizeComplexScript514);
            Text text362 = new Text();
            text362.Text = "Ql 2008 R2";

            run385.Append(runProperties404);
            run385.Append(text362);

            Run run386 = new Run() { RsidRunProperties = "00697199", RsidRunAddition = "00697199" };

            RunProperties runProperties405 = new RunProperties();
            RunFonts runFonts513 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color157 = new Color() { Val = "FF0000" };
            FontSize fontSize521 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript515 = new FontSizeComplexScript() { Val = "22" };

            runProperties405.Append(runFonts513);
            runProperties405.Append(color157);
            runProperties405.Append(fontSize521);
            runProperties405.Append(fontSizeComplexScript515);
            Text text363 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text363.Text = " (Support ends 07/2019)";

            run386.Append(runProperties405);
            run386.Append(text363);

            paragraph183.Append(paragraphProperties180);
            paragraph183.Append(sdtRun26);
            paragraph183.Append(run384);
            paragraph183.Append(run385);
            paragraph183.Append(run386);

            Paragraph paragraph184 = new Paragraph() { RsidParagraphMarkRevision = "0027287B", RsidParagraphAddition = "00624202", RsidParagraphProperties = "00624202", RsidRunAdditionDefault = "00624202", ParagraphId = "52B4729C", TextId = "77777777" };

            ParagraphProperties paragraphProperties181 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties181 = new ParagraphMarkRunProperties();
            RunFonts runFonts514 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize522 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript516 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties181.Append(runFonts514);
            paragraphMarkRunProperties181.Append(fontSize522);
            paragraphMarkRunProperties181.Append(fontSizeComplexScript516);

            paragraphProperties181.Append(paragraphMarkRunProperties181);

            Run run387 = new Run() { RsidRunProperties = "0027287B" };

            RunProperties runProperties406 = new RunProperties();
            RunFonts runFonts515 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize523 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript517 = new FontSizeComplexScript() { Val = "22" };

            runProperties406.Append(runFonts515);
            runProperties406.Append(fontSize523);
            runProperties406.Append(fontSizeComplexScript517);
            TabChar tabChar28 = new TabChar();

            run387.Append(runProperties406);
            run387.Append(tabChar28);

            SdtRun sdtRun27 = new SdtRun();

            SdtProperties sdtProperties27 = new SdtProperties();

            RunProperties runProperties407 = new RunProperties();
            RunFonts runFonts516 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize524 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript518 = new FontSizeComplexScript() { Val = "22" };

            runProperties407.Append(runFonts516);
            runProperties407.Append(fontSize524);
            runProperties407.Append(fontSizeComplexScript518);
            SdtId sdtId27 = new SdtId() { Val = 1934777428 };

            W14.SdtContentCheckBox sdtContentCheckBox27 = new W14.SdtContentCheckBox();
            W14.Checked checked27 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState27 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState27 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox27.Append(checked27);
            sdtContentCheckBox27.Append(checkedState27);
            sdtContentCheckBox27.Append(uncheckedState27);

            sdtProperties27.Append(runProperties407);
            sdtProperties27.Append(sdtId27);
            sdtProperties27.Append(sdtContentCheckBox27);
            SdtEndCharProperties sdtEndCharProperties27 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun27 = new SdtContentRun();

            Run run388 = new Run() { RsidRunProperties = "0027287B" };

            RunProperties runProperties408 = new RunProperties();
            RunFonts runFonts517 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize525 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript519 = new FontSizeComplexScript() { Val = "22" };

            runProperties408.Append(runFonts517);
            runProperties408.Append(fontSize525);
            runProperties408.Append(fontSizeComplexScript519);
            Text text364 = new Text();
            text364.Text = "☐";

            run388.Append(runProperties408);
            run388.Append(text364);

            sdtContentRun27.Append(run388);

            sdtRun27.Append(sdtProperties27);
            sdtRun27.Append(sdtEndCharProperties27);
            sdtRun27.Append(sdtContentRun27);

            Run run389 = new Run() { RsidRunProperties = "0027287B" };

            RunProperties runProperties409 = new RunProperties();
            RunFonts runFonts518 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize526 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript520 = new FontSizeComplexScript() { Val = "22" };

            runProperties409.Append(runFonts518);
            runProperties409.Append(fontSize526);
            runProperties409.Append(fontSizeComplexScript520);
            Text text365 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text365.Text = "  Standard";

            run389.Append(runProperties409);
            run389.Append(text365);

            paragraph184.Append(paragraphProperties181);
            paragraph184.Append(run387);
            paragraph184.Append(sdtRun27);
            paragraph184.Append(run389);

            Paragraph paragraph185 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00624202", RsidParagraphProperties = "00624202", RsidRunAdditionDefault = "00624202", ParagraphId = "6F9DAFE6", TextId = "77777777" };

            ParagraphProperties paragraphProperties182 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties182 = new ParagraphMarkRunProperties();
            RunFonts runFonts519 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize527 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript521 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties182.Append(runFonts519);
            paragraphMarkRunProperties182.Append(fontSize527);
            paragraphMarkRunProperties182.Append(fontSizeComplexScript521);

            paragraphProperties182.Append(paragraphMarkRunProperties182);

            Run run390 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties410 = new RunProperties();
            RunFonts runFonts520 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize528 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript522 = new FontSizeComplexScript() { Val = "22" };

            runProperties410.Append(runFonts520);
            runProperties410.Append(fontSize528);
            runProperties410.Append(fontSizeComplexScript522);
            TabChar tabChar29 = new TabChar();

            run390.Append(runProperties410);
            run390.Append(tabChar29);

            SdtRun sdtRun28 = new SdtRun();

            SdtProperties sdtProperties28 = new SdtProperties();

            RunProperties runProperties411 = new RunProperties();
            RunFonts runFonts521 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize529 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript523 = new FontSizeComplexScript() { Val = "22" };

            runProperties411.Append(runFonts521);
            runProperties411.Append(fontSize529);
            runProperties411.Append(fontSizeComplexScript523);
            SdtId sdtId28 = new SdtId() { Val = 1278140508 };

            W14.SdtContentCheckBox sdtContentCheckBox28 = new W14.SdtContentCheckBox();
            W14.Checked checked28 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState28 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState28 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox28.Append(checked28);
            sdtContentCheckBox28.Append(checkedState28);
            sdtContentCheckBox28.Append(uncheckedState28);

            sdtProperties28.Append(runProperties411);
            sdtProperties28.Append(sdtId28);
            sdtProperties28.Append(sdtContentCheckBox28);
            SdtEndCharProperties sdtEndCharProperties28 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun28 = new SdtContentRun();

            Run run391 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties412 = new RunProperties();
            RunFonts runFonts522 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize530 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript524 = new FontSizeComplexScript() { Val = "22" };

            runProperties412.Append(runFonts522);
            runProperties412.Append(fontSize530);
            runProperties412.Append(fontSizeComplexScript524);
            Text text366 = new Text();
            text366.Text = "☐";

            run391.Append(runProperties412);
            run391.Append(text366);

            sdtContentRun28.Append(run391);

            sdtRun28.Append(sdtProperties28);
            sdtRun28.Append(sdtEndCharProperties28);
            sdtRun28.Append(sdtContentRun28);

            Run run392 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties413 = new RunProperties();
            RunFonts runFonts523 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize531 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript525 = new FontSizeComplexScript() { Val = "22" };

            runProperties413.Append(runFonts523);
            runProperties413.Append(fontSize531);
            runProperties413.Append(fontSizeComplexScript525);
            Text text367 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text367.Text = "  Enterprise";

            run392.Append(runProperties413);
            run392.Append(text367);

            paragraph185.Append(paragraphProperties182);
            paragraph185.Append(run390);
            paragraph185.Append(sdtRun28);
            paragraph185.Append(run392);

            Paragraph paragraph186 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F97B58", RsidParagraphProperties = "00F97B58", RsidRunAdditionDefault = "00F97B58", ParagraphId = "0AAC1A59", TextId = "77777777" };

            ParagraphProperties paragraphProperties183 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties183 = new ParagraphMarkRunProperties();
            RunFonts runFonts524 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize532 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript526 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties183.Append(runFonts524);
            paragraphMarkRunProperties183.Append(fontSize532);
            paragraphMarkRunProperties183.Append(fontSizeComplexScript526);

            paragraphProperties183.Append(paragraphMarkRunProperties183);

            Run run393 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties414 = new RunProperties();
            RunFonts runFonts525 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize533 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript527 = new FontSizeComplexScript() { Val = "22" };

            runProperties414.Append(runFonts525);
            runProperties414.Append(fontSize533);
            runProperties414.Append(fontSizeComplexScript527);
            Text text368 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text368.Text = "            ";

            run393.Append(runProperties414);
            run393.Append(text368);

            Run run394 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties415 = new RunProperties();
            RunFonts runFonts526 = new RunFonts() { EastAsia = "MS Gothic", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize534 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript528 = new FontSizeComplexScript() { Val = "22" };

            runProperties415.Append(runFonts526);
            runProperties415.Append(fontSize534);
            runProperties415.Append(fontSizeComplexScript528);
            Text text369 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text369.Text = "   ";

            run394.Append(runProperties415);
            run394.Append(text369);

            SdtRun sdtRun29 = new SdtRun();

            SdtProperties sdtProperties29 = new SdtProperties();

            RunProperties runProperties416 = new RunProperties();
            RunFonts runFonts527 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize535 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript529 = new FontSizeComplexScript() { Val = "22" };

            runProperties416.Append(runFonts527);
            runProperties416.Append(fontSize535);
            runProperties416.Append(fontSizeComplexScript529);
            SdtId sdtId29 = new SdtId() { Val = -257298224 };

            W14.SdtContentCheckBox sdtContentCheckBox29 = new W14.SdtContentCheckBox();
            W14.Checked checked29 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState29 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState29 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox29.Append(checked29);
            sdtContentCheckBox29.Append(checkedState29);
            sdtContentCheckBox29.Append(uncheckedState29);

            sdtProperties29.Append(runProperties416);
            sdtProperties29.Append(sdtId29);
            sdtProperties29.Append(sdtContentCheckBox29);
            SdtEndCharProperties sdtEndCharProperties29 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun29 = new SdtContentRun();

            Run run395 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties417 = new RunProperties();
            RunFonts runFonts528 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize536 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript530 = new FontSizeComplexScript() { Val = "22" };

            runProperties417.Append(runFonts528);
            runProperties417.Append(fontSize536);
            runProperties417.Append(fontSizeComplexScript530);
            Text text370 = new Text();
            text370.Text = "☐";

            run395.Append(runProperties417);
            run395.Append(text370);

            sdtContentRun29.Append(run395);

            sdtRun29.Append(sdtProperties29);
            sdtRun29.Append(sdtEndCharProperties29);
            sdtRun29.Append(sdtContentRun29);

            Run run396 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties418 = new RunProperties();
            RunFonts runFonts529 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize537 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript531 = new FontSizeComplexScript() { Val = "22" };

            runProperties418.Append(runFonts529);
            runProperties418.Append(fontSize537);
            runProperties418.Append(fontSizeComplexScript531);
            Text text371 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text371.Text = "  Workgroup";

            run396.Append(runProperties418);
            run396.Append(text371);

            paragraph186.Append(paragraphProperties183);
            paragraph186.Append(run393);
            paragraph186.Append(run394);
            paragraph186.Append(sdtRun29);
            paragraph186.Append(run396);

            Paragraph paragraph187 = new Paragraph() { RsidParagraphAddition = "00EE5D41", RsidParagraphProperties = "00EE5D41", RsidRunAdditionDefault = "00EE5D41", ParagraphId = "0AAC1A5A", TextId = "77777777" };

            ParagraphProperties paragraphProperties184 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties184 = new ParagraphMarkRunProperties();
            RunFonts runFonts530 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize538 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript532 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties184.Append(runFonts530);
            paragraphMarkRunProperties184.Append(fontSize538);
            paragraphMarkRunProperties184.Append(fontSizeComplexScript532);

            paragraphProperties184.Append(paragraphMarkRunProperties184);

            Run run397 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties419 = new RunProperties();
            RunFonts runFonts531 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize539 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript533 = new FontSizeComplexScript() { Val = "22" };

            runProperties419.Append(runFonts531);
            runProperties419.Append(fontSize539);
            runProperties419.Append(fontSizeComplexScript533);
            TabChar tabChar30 = new TabChar();

            run397.Append(runProperties419);
            run397.Append(tabChar30);

            SdtRun sdtRun30 = new SdtRun();

            SdtProperties sdtProperties30 = new SdtProperties();

            RunProperties runProperties420 = new RunProperties();
            RunFonts runFonts532 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize540 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript534 = new FontSizeComplexScript() { Val = "22" };

            runProperties420.Append(runFonts532);
            runProperties420.Append(fontSize540);
            runProperties420.Append(fontSizeComplexScript534);
            SdtId sdtId30 = new SdtId() { Val = -259533210 };

            W14.SdtContentCheckBox sdtContentCheckBox30 = new W14.SdtContentCheckBox();
            W14.Checked checked30 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState30 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState30 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox30.Append(checked30);
            sdtContentCheckBox30.Append(checkedState30);
            sdtContentCheckBox30.Append(uncheckedState30);

            sdtProperties30.Append(runProperties420);
            sdtProperties30.Append(sdtId30);
            sdtProperties30.Append(sdtContentCheckBox30);
            SdtEndCharProperties sdtEndCharProperties30 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun30 = new SdtContentRun();

            Run run398 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "00F97B58" };

            RunProperties runProperties421 = new RunProperties();
            RunFonts runFonts533 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize541 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript535 = new FontSizeComplexScript() { Val = "22" };

            runProperties421.Append(runFonts533);
            runProperties421.Append(fontSize541);
            runProperties421.Append(fontSizeComplexScript535);
            Text text372 = new Text();
            text372.Text = "☐";

            run398.Append(runProperties421);
            run398.Append(text372);

            sdtContentRun30.Append(run398);

            sdtRun30.Append(sdtProperties30);
            sdtRun30.Append(sdtEndCharProperties30);
            sdtRun30.Append(sdtContentRun30);

            Run run399 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "00F97B58" };

            RunProperties runProperties422 = new RunProperties();
            RunFonts runFonts534 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize542 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript536 = new FontSizeComplexScript() { Val = "22" };

            runProperties422.Append(runFonts534);
            runProperties422.Append(fontSize542);
            runProperties422.Append(fontSizeComplexScript536);
            Text text373 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text373.Text = "  ";

            run399.Append(runProperties422);
            run399.Append(text373);

            Run run400 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties423 = new RunProperties();
            RunFonts runFonts535 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize543 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript537 = new FontSizeComplexScript() { Val = "22" };

            runProperties423.Append(runFonts535);
            runProperties423.Append(fontSize543);
            runProperties423.Append(fontSizeComplexScript537);
            Text text374 = new Text();
            text374.Text = "SP1";

            run400.Append(runProperties423);
            run400.Append(text374);

            paragraph187.Append(paragraphProperties184);
            paragraph187.Append(run397);
            paragraph187.Append(sdtRun30);
            paragraph187.Append(run399);
            paragraph187.Append(run400);

            Paragraph paragraph188 = new Paragraph() { RsidParagraphAddition = "00F97B58", RsidParagraphProperties = "00F97B58", RsidRunAdditionDefault = "00F97B58", ParagraphId = "0AAC1A5B", TextId = "77777777" };

            ParagraphProperties paragraphProperties185 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties185 = new ParagraphMarkRunProperties();
            RunFonts runFonts536 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize544 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript538 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties185.Append(runFonts536);
            paragraphMarkRunProperties185.Append(fontSize544);
            paragraphMarkRunProperties185.Append(fontSizeComplexScript538);

            paragraphProperties185.Append(paragraphMarkRunProperties185);

            Run run401 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties424 = new RunProperties();
            RunFonts runFonts537 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize545 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript539 = new FontSizeComplexScript() { Val = "22" };

            runProperties424.Append(runFonts537);
            runProperties424.Append(fontSize545);
            runProperties424.Append(fontSizeComplexScript539);
            TabChar tabChar31 = new TabChar();

            run401.Append(runProperties424);
            run401.Append(tabChar31);

            SdtRun sdtRun31 = new SdtRun();

            SdtProperties sdtProperties31 = new SdtProperties();

            RunProperties runProperties425 = new RunProperties();
            RunFonts runFonts538 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize546 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript540 = new FontSizeComplexScript() { Val = "22" };

            runProperties425.Append(runFonts538);
            runProperties425.Append(fontSize546);
            runProperties425.Append(fontSizeComplexScript540);
            SdtId sdtId31 = new SdtId() { Val = 1346831867 };

            W14.SdtContentCheckBox sdtContentCheckBox31 = new W14.SdtContentCheckBox();
            W14.Checked checked31 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState31 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState31 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox31.Append(checked31);
            sdtContentCheckBox31.Append(checkedState31);
            sdtContentCheckBox31.Append(uncheckedState31);

            sdtProperties31.Append(runProperties425);
            sdtProperties31.Append(sdtId31);
            sdtProperties31.Append(sdtContentCheckBox31);
            SdtEndCharProperties sdtEndCharProperties31 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun31 = new SdtContentRun();

            Run run402 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties426 = new RunProperties();
            RunFonts runFonts539 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize547 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript541 = new FontSizeComplexScript() { Val = "22" };

            runProperties426.Append(runFonts539);
            runProperties426.Append(fontSize547);
            runProperties426.Append(fontSizeComplexScript541);
            Text text375 = new Text();
            text375.Text = "☐";

            run402.Append(runProperties426);
            run402.Append(text375);

            sdtContentRun31.Append(run402);

            sdtRun31.Append(sdtProperties31);
            sdtRun31.Append(sdtEndCharProperties31);
            sdtRun31.Append(sdtContentRun31);

            Run run403 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties427 = new RunProperties();
            RunFonts runFonts540 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize548 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript542 = new FontSizeComplexScript() { Val = "22" };

            runProperties427.Append(runFonts540);
            runProperties427.Append(fontSize548);
            runProperties427.Append(fontSizeComplexScript542);
            Text text376 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text376.Text = "  S";

            run403.Append(runProperties427);
            run403.Append(text376);

            Run run404 = new Run();

            RunProperties runProperties428 = new RunProperties();
            RunFonts runFonts541 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize549 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript543 = new FontSizeComplexScript() { Val = "22" };

            runProperties428.Append(runFonts541);
            runProperties428.Append(fontSize549);
            runProperties428.Append(fontSizeComplexScript543);
            Text text377 = new Text();
            text377.Text = "P2";

            run404.Append(runProperties428);
            run404.Append(text377);

            paragraph188.Append(paragraphProperties185);
            paragraph188.Append(run401);
            paragraph188.Append(sdtRun31);
            paragraph188.Append(run403);
            paragraph188.Append(run404);

            Paragraph paragraph189 = new Paragraph() { RsidParagraphAddition = "00697199", RsidParagraphProperties = "00F97B58", RsidRunAdditionDefault = "0094109A", ParagraphId = "792781BA", TextId = "77777777" };

            ParagraphProperties paragraphProperties186 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties186 = new ParagraphMarkRunProperties();
            RunFonts runFonts542 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize550 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript544 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties186.Append(runFonts542);
            paragraphMarkRunProperties186.Append(fontSize550);
            paragraphMarkRunProperties186.Append(fontSizeComplexScript544);

            paragraphProperties186.Append(paragraphMarkRunProperties186);

            Run run405 = new Run();

            RunProperties runProperties429 = new RunProperties();
            RunFonts runFonts543 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize551 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript545 = new FontSizeComplexScript() { Val = "22" };

            runProperties429.Append(runFonts543);
            runProperties429.Append(fontSize551);
            runProperties429.Append(fontSizeComplexScript545);
            TabChar tabChar32 = new TabChar();

            run405.Append(runProperties429);
            run405.Append(tabChar32);

            SdtRun sdtRun32 = new SdtRun();

            SdtProperties sdtProperties32 = new SdtProperties();

            RunProperties runProperties430 = new RunProperties();
            RunFonts runFonts544 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize552 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript546 = new FontSizeComplexScript() { Val = "22" };

            runProperties430.Append(runFonts544);
            runProperties430.Append(fontSize552);
            runProperties430.Append(fontSizeComplexScript546);
            SdtId sdtId32 = new SdtId() { Val = -1583979034 };

            W14.SdtContentCheckBox sdtContentCheckBox32 = new W14.SdtContentCheckBox();
            W14.Checked checked32 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState32 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState32 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox32.Append(checked32);
            sdtContentCheckBox32.Append(checkedState32);
            sdtContentCheckBox32.Append(uncheckedState32);

            sdtProperties32.Append(runProperties430);
            sdtProperties32.Append(sdtId32);
            sdtProperties32.Append(sdtContentCheckBox32);
            SdtEndCharProperties sdtEndCharProperties32 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun32 = new SdtContentRun();

            Run run406 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties431 = new RunProperties();
            RunFonts runFonts545 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize553 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript547 = new FontSizeComplexScript() { Val = "22" };

            runProperties431.Append(runFonts545);
            runProperties431.Append(fontSize553);
            runProperties431.Append(fontSizeComplexScript547);
            Text text378 = new Text();
            text378.Text = "☐";

            run406.Append(runProperties431);
            run406.Append(text378);

            sdtContentRun32.Append(run406);

            sdtRun32.Append(sdtProperties32);
            sdtRun32.Append(sdtEndCharProperties32);
            sdtRun32.Append(sdtContentRun32);

            Run run407 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties432 = new RunProperties();
            RunFonts runFonts546 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize554 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript548 = new FontSizeComplexScript() { Val = "22" };

            runProperties432.Append(runFonts546);
            runProperties432.Append(fontSize554);
            runProperties432.Append(fontSizeComplexScript548);
            Text text379 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text379.Text = "  S";

            run407.Append(runProperties432);
            run407.Append(text379);

            Run run408 = new Run();

            RunProperties runProperties433 = new RunProperties();
            RunFonts runFonts547 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize555 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript549 = new FontSizeComplexScript() { Val = "22" };

            runProperties433.Append(runFonts547);
            runProperties433.Append(fontSize555);
            runProperties433.Append(fontSizeComplexScript549);
            Text text380 = new Text();
            text380.Text = "P3";

            run408.Append(runProperties433);
            run408.Append(text380);

            paragraph189.Append(paragraphProperties186);
            paragraph189.Append(run405);
            paragraph189.Append(sdtRun32);
            paragraph189.Append(run407);
            paragraph189.Append(run408);

            Paragraph paragraph190 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00697199", RsidParagraphProperties = "00697199", RsidRunAdditionDefault = "00A563A2", ParagraphId = "7FEBA10C", TextId = "65655EB3" };

            ParagraphProperties paragraphProperties187 = new ParagraphProperties();
            Indentation indentation21 = new Indentation() { FirstLine = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties187 = new ParagraphMarkRunProperties();
            RunFonts runFonts548 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize556 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript550 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties187.Append(runFonts548);
            paragraphMarkRunProperties187.Append(fontSize556);
            paragraphMarkRunProperties187.Append(fontSizeComplexScript550);

            paragraphProperties187.Append(indentation21);
            paragraphProperties187.Append(paragraphMarkRunProperties187);

            SdtRun sdtRun33 = new SdtRun();

            SdtProperties sdtProperties33 = new SdtProperties();

            RunProperties runProperties434 = new RunProperties();
            RunFonts runFonts549 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize557 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript551 = new FontSizeComplexScript() { Val = "22" };

            runProperties434.Append(runFonts549);
            runProperties434.Append(fontSize557);
            runProperties434.Append(fontSizeComplexScript551);
            SdtId sdtId33 = new SdtId() { Val = -1096947543 };

            W14.SdtContentCheckBox sdtContentCheckBox33 = new W14.SdtContentCheckBox();
            W14.Checked checked33 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState33 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState33 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox33.Append(checked33);
            sdtContentCheckBox33.Append(checkedState33);
            sdtContentCheckBox33.Append(uncheckedState33);

            sdtProperties33.Append(runProperties434);
            sdtProperties33.Append(sdtId33);
            sdtProperties33.Append(sdtContentCheckBox33);
            SdtEndCharProperties sdtEndCharProperties33 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun33 = new SdtContentRun();

            Run run409 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "00697199" };

            RunProperties runProperties435 = new RunProperties();
            RunFonts runFonts550 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize558 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript552 = new FontSizeComplexScript() { Val = "22" };

            runProperties435.Append(runFonts550);
            runProperties435.Append(fontSize558);
            runProperties435.Append(fontSizeComplexScript552);
            Text text381 = new Text();
            text381.Text = "☐";

            run409.Append(runProperties435);
            run409.Append(text381);

            sdtContentRun33.Append(run409);

            sdtRun33.Append(sdtProperties33);
            sdtRun33.Append(sdtEndCharProperties33);
            sdtRun33.Append(sdtContentRun33);

            Run run410 = new Run() { RsidRunAddition = "00697199" };

            RunProperties runProperties436 = new RunProperties();
            RunFonts runFonts551 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize559 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript553 = new FontSizeComplexScript() { Val = "22" };

            runProperties436.Append(runFonts551);
            runProperties436.Append(fontSize559);
            runProperties436.Append(fontSizeComplexScript553);
            Text text382 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text382.Text = "  Database Mirroring";

            run410.Append(runProperties436);
            run410.Append(text382);

            paragraph190.Append(paragraphProperties187);
            paragraph190.Append(sdtRun33);
            paragraph190.Append(run410);

            Paragraph paragraph191 = new Paragraph() { RsidParagraphAddition = "00916B33", RsidParagraphProperties = "007C1C3A", RsidRunAdditionDefault = "00A563A2", ParagraphId = "651362E2", TextId = "54B70461" };

            ParagraphProperties paragraphProperties188 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties188 = new ParagraphMarkRunProperties();
            RunFonts runFonts552 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize560 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript554 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties188.Append(runFonts552);
            paragraphMarkRunProperties188.Append(fontSize560);
            paragraphMarkRunProperties188.Append(fontSizeComplexScript554);

            paragraphProperties188.Append(paragraphMarkRunProperties188);

            SdtRun sdtRun34 = new SdtRun();

            SdtProperties sdtProperties34 = new SdtProperties();

            RunProperties runProperties437 = new RunProperties();
            RunFonts runFonts553 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize561 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript555 = new FontSizeComplexScript() { Val = "22" };

            runProperties437.Append(runFonts553);
            runProperties437.Append(fontSize561);
            runProperties437.Append(fontSizeComplexScript555);
            SdtId sdtId34 = new SdtId() { Val = 377740893 };

            W14.SdtContentCheckBox sdtContentCheckBox34 = new W14.SdtContentCheckBox();
            W14.Checked checked34 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState34 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState34 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox34.Append(checked34);
            sdtContentCheckBox34.Append(checkedState34);
            sdtContentCheckBox34.Append(uncheckedState34);

            sdtProperties34.Append(runProperties437);
            sdtProperties34.Append(sdtId34);
            sdtProperties34.Append(sdtContentCheckBox34);
            SdtEndCharProperties sdtEndCharProperties34 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun34 = new SdtContentRun();

            Run run411 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "00916B33" };

            RunProperties runProperties438 = new RunProperties();
            RunFonts runFonts554 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize562 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript556 = new FontSizeComplexScript() { Val = "22" };

            runProperties438.Append(runFonts554);
            runProperties438.Append(fontSize562);
            runProperties438.Append(fontSizeComplexScript556);
            Text text383 = new Text();
            text383.Text = "☐";

            run411.Append(runProperties438);
            run411.Append(text383);

            sdtContentRun34.Append(run411);

            sdtRun34.Append(sdtProperties34);
            sdtRun34.Append(sdtEndCharProperties34);
            sdtRun34.Append(sdtContentRun34);

            Run run412 = new Run() { RsidRunAddition = "00916B33" };

            RunProperties runProperties439 = new RunProperties();
            RunFonts runFonts555 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize563 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript557 = new FontSizeComplexScript() { Val = "22" };

            runProperties439.Append(runFonts555);
            runProperties439.Append(fontSize563);
            runProperties439.Append(fontSizeComplexScript557);
            Text text384 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text384.Text = "  ";

            run412.Append(runProperties439);
            run412.Append(text384);

            Run run413 = new Run() { RsidRunProperties = "003C2F92", RsidRunAddition = "00916B33" };

            RunProperties runProperties440 = new RunProperties();
            RunFonts runFonts556 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize564 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript558 = new FontSizeComplexScript() { Val = "22" };

            runProperties440.Append(runFonts556);
            runProperties440.Append(fontSize564);
            runProperties440.Append(fontSizeComplexScript558);
            Text text385 = new Text();
            text385.Text = "Oracle";

            run413.Append(runProperties440);
            run413.Append(text385);

            Run run414 = new Run() { RsidRunProperties = "003C2F92", RsidRunAddition = "007C1C3A" };

            RunProperties runProperties441 = new RunProperties();
            RunFonts runFonts557 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize565 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript559 = new FontSizeComplexScript() { Val = "22" };

            runProperties441.Append(runFonts557);
            runProperties441.Append(fontSize565);
            runProperties441.Append(fontSizeComplexScript559);
            Text text386 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text386.Text = " or DB2";

            run414.Append(runProperties441);
            run414.Append(text386);

            Run run415 = new Run() { RsidRunProperties = "003C2F92", RsidRunAddition = "007C1C3A" };

            RunProperties runProperties442 = new RunProperties();
            RunFonts runFonts558 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Italic italic6 = new Italic();
            FontSize fontSize566 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript560 = new FontSizeComplexScript() { Val = "22" };
            Underline underline58 = new Underline() { Val = UnderlineValues.Single };

            runProperties442.Append(runFonts558);
            runProperties442.Append(italic6);
            runProperties442.Append(fontSize566);
            runProperties442.Append(fontSizeComplexScript560);
            runProperties442.Append(underline58);
            Text text387 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text387.Text = " ";

            run415.Append(runProperties442);
            run415.Append(text387);

            Run run416 = new Run() { RsidRunProperties = "0027287B", RsidRunAddition = "007C1C3A" };

            RunProperties runProperties443 = new RunProperties();
            RunFonts runFonts559 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold95 = new Bold();
            Italic italic7 = new Italic();
            Color color158 = new Color() { Val = "FF0000" };
            FontSize fontSize567 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript561 = new FontSizeComplexScript() { Val = "22" };
            Underline underline59 = new Underline() { Val = UnderlineValues.Single };

            runProperties443.Append(runFonts559);
            runProperties443.Append(bold95);
            runProperties443.Append(italic7);
            runProperties443.Append(color158);
            runProperties443.Append(fontSize567);
            runProperties443.Append(fontSizeComplexScript561);
            runProperties443.Append(underline59);
            Text text388 = new Text();
            text388.Text = "require conversation with DBAs";

            run416.Append(runProperties443);
            run416.Append(text388);

            paragraph191.Append(paragraphProperties188);
            paragraph191.Append(sdtRun34);
            paragraph191.Append(run412);
            paragraph191.Append(run413);
            paragraph191.Append(run414);
            paragraph191.Append(run415);
            paragraph191.Append(run416);

            Paragraph paragraph192 = new Paragraph() { RsidParagraphAddition = "00F12AD5", RsidParagraphProperties = "00697199", RsidRunAdditionDefault = "00F12AD5", ParagraphId = "7BA78E36", TextId = "0A14C92C" };

            ParagraphProperties paragraphProperties189 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties189 = new ParagraphMarkRunProperties();
            RunFonts runFonts560 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize568 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript562 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties189.Append(runFonts560);
            paragraphMarkRunProperties189.Append(fontSize568);
            paragraphMarkRunProperties189.Append(fontSizeComplexScript562);

            paragraphProperties189.Append(paragraphMarkRunProperties189);

            Run run417 = new Run();

            RunProperties runProperties444 = new RunProperties();
            RunFonts runFonts561 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize569 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript563 = new FontSizeComplexScript() { Val = "22" };

            runProperties444.Append(runFonts561);
            runProperties444.Append(fontSize569);
            runProperties444.Append(fontSizeComplexScript563);
            Text text389 = new Text();
            text389.Text = "Failover Type:";

            run417.Append(runProperties444);
            run417.Append(text389);

            Run run418 = new Run();

            RunProperties runProperties445 = new RunProperties();
            RunFonts runFonts562 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize570 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript564 = new FontSizeComplexScript() { Val = "22" };

            runProperties445.Append(runFonts562);
            runProperties445.Append(fontSize570);
            runProperties445.Append(fontSizeComplexScript564);
            TabChar tabChar33 = new TabChar();

            run418.Append(runProperties445);
            run418.Append(tabChar33);

            SdtRun sdtRun35 = new SdtRun();

            SdtProperties sdtProperties35 = new SdtProperties();

            RunProperties runProperties446 = new RunProperties();
            RunFonts runFonts563 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize571 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript565 = new FontSizeComplexScript() { Val = "22" };

            runProperties446.Append(runFonts563);
            runProperties446.Append(fontSize571);
            runProperties446.Append(fontSizeComplexScript565);
            SdtId sdtId35 = new SdtId() { Val = 1031067453 };

            W14.SdtContentCheckBox sdtContentCheckBox35 = new W14.SdtContentCheckBox();
            W14.Checked checked35 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState35 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState35 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox35.Append(checked35);
            sdtContentCheckBox35.Append(checkedState35);
            sdtContentCheckBox35.Append(uncheckedState35);

            sdtProperties35.Append(runProperties446);
            sdtProperties35.Append(sdtId35);
            sdtProperties35.Append(sdtContentCheckBox35);
            SdtEndCharProperties sdtEndCharProperties35 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun35 = new SdtContentRun();

            Run run419 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties447 = new RunProperties();
            RunFonts runFonts564 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize572 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript566 = new FontSizeComplexScript() { Val = "22" };

            runProperties447.Append(runFonts564);
            runProperties447.Append(fontSize572);
            runProperties447.Append(fontSizeComplexScript566);
            Text text390 = new Text();
            text390.Text = "☐";

            run419.Append(runProperties447);
            run419.Append(text390);

            sdtContentRun35.Append(run419);

            sdtRun35.Append(sdtProperties35);
            sdtRun35.Append(sdtEndCharProperties35);
            sdtRun35.Append(sdtContentRun35);

            Run run420 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties448 = new RunProperties();
            RunFonts runFonts565 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize573 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript567 = new FontSizeComplexScript() { Val = "22" };

            runProperties448.Append(runFonts565);
            runProperties448.Append(fontSize573);
            runProperties448.Append(fontSizeComplexScript567);
            Text text391 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text391.Text = "  ";

            run420.Append(runProperties448);
            run420.Append(text391);

            Run run421 = new Run();

            RunProperties runProperties449 = new RunProperties();
            RunFonts runFonts566 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize574 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript568 = new FontSizeComplexScript() { Val = "22" };

            runProperties449.Append(runFonts566);
            runProperties449.Append(fontSize574);
            runProperties449.Append(fontSizeComplexScript568);
            Text text392 = new Text();
            text392.Text = "Automatic";

            run421.Append(runProperties449);
            run421.Append(text392);

            Run run422 = new Run();

            RunProperties runProperties450 = new RunProperties();
            RunFonts runFonts567 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize575 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript569 = new FontSizeComplexScript() { Val = "22" };

            runProperties450.Append(runFonts567);
            runProperties450.Append(fontSize575);
            runProperties450.Append(fontSizeComplexScript569);
            TabChar tabChar34 = new TabChar();

            run422.Append(runProperties450);
            run422.Append(tabChar34);

            Run run423 = new Run();

            RunProperties runProperties451 = new RunProperties();
            RunFonts runFonts568 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize576 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript570 = new FontSizeComplexScript() { Val = "22" };

            runProperties451.Append(runFonts568);
            runProperties451.Append(fontSize576);
            runProperties451.Append(fontSizeComplexScript570);
            TabChar tabChar35 = new TabChar();

            run423.Append(runProperties451);
            run423.Append(tabChar35);

            SdtRun sdtRun36 = new SdtRun();

            SdtProperties sdtProperties36 = new SdtProperties();

            RunProperties runProperties452 = new RunProperties();
            RunFonts runFonts569 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize577 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript571 = new FontSizeComplexScript() { Val = "22" };

            runProperties452.Append(runFonts569);
            runProperties452.Append(fontSize577);
            runProperties452.Append(fontSizeComplexScript571);
            SdtId sdtId36 = new SdtId() { Val = -1477528856 };

            W14.SdtContentCheckBox sdtContentCheckBox36 = new W14.SdtContentCheckBox();
            W14.Checked checked36 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState36 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState36 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox36.Append(checked36);
            sdtContentCheckBox36.Append(checkedState36);
            sdtContentCheckBox36.Append(uncheckedState36);

            sdtProperties36.Append(runProperties452);
            sdtProperties36.Append(sdtId36);
            sdtProperties36.Append(sdtContentCheckBox36);
            SdtEndCharProperties sdtEndCharProperties36 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun36 = new SdtContentRun();

            Run run424 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties453 = new RunProperties();
            RunFonts runFonts570 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize578 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript572 = new FontSizeComplexScript() { Val = "22" };

            runProperties453.Append(runFonts570);
            runProperties453.Append(fontSize578);
            runProperties453.Append(fontSizeComplexScript572);
            Text text393 = new Text();
            text393.Text = "☐";

            run424.Append(runProperties453);
            run424.Append(text393);

            sdtContentRun36.Append(run424);

            sdtRun36.Append(sdtProperties36);
            sdtRun36.Append(sdtEndCharProperties36);
            sdtRun36.Append(sdtContentRun36);

            Run run425 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties454 = new RunProperties();
            RunFonts runFonts571 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize579 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript573 = new FontSizeComplexScript() { Val = "22" };

            runProperties454.Append(runFonts571);
            runProperties454.Append(fontSize579);
            runProperties454.Append(fontSizeComplexScript573);
            Text text394 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text394.Text = "  ";

            run425.Append(runProperties454);
            run425.Append(text394);

            Run run426 = new Run();

            RunProperties runProperties455 = new RunProperties();
            RunFonts runFonts572 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize580 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript574 = new FontSizeComplexScript() { Val = "22" };

            runProperties455.Append(runFonts572);
            runProperties455.Append(fontSize580);
            runProperties455.Append(fontSizeComplexScript574);
            Text text395 = new Text();
            text395.Text = "Manual";

            run426.Append(runProperties455);
            run426.Append(text395);

            paragraph192.Append(paragraphProperties189);
            paragraph192.Append(run417);
            paragraph192.Append(run418);
            paragraph192.Append(sdtRun35);
            paragraph192.Append(run420);
            paragraph192.Append(run421);
            paragraph192.Append(run422);
            paragraph192.Append(run423);
            paragraph192.Append(sdtRun36);
            paragraph192.Append(run425);
            paragraph192.Append(run426);

            Paragraph paragraph193 = new Paragraph() { RsidParagraphAddition = "00697199", RsidParagraphProperties = "00697199", RsidRunAdditionDefault = "00697199", ParagraphId = "4116938F", TextId = "2FFEA5B3" };

            ParagraphProperties paragraphProperties190 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties190 = new ParagraphMarkRunProperties();
            RunFonts runFonts573 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color159 = new Color() { Val = "FF0000" };
            FontSize fontSize581 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript575 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties190.Append(runFonts573);
            paragraphMarkRunProperties190.Append(color159);
            paragraphMarkRunProperties190.Append(fontSize581);
            paragraphMarkRunProperties190.Append(fontSizeComplexScript575);

            paragraphProperties190.Append(paragraphMarkRunProperties190);

            Run run427 = new Run();

            RunProperties runProperties456 = new RunProperties();
            RunFonts runFonts574 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize582 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript576 = new FontSizeComplexScript() { Val = "22" };

            runProperties456.Append(runFonts574);
            runProperties456.Append(fontSize582);
            runProperties456.Append(fontSizeComplexScript576);
            Text text396 = new Text();
            text396.Text = "Servers involved with database replication:";

            run427.Append(runProperties456);
            run427.Append(text396);

            Run run428 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties457 = new RunProperties();
            RunFonts runFonts575 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize583 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript577 = new FontSizeComplexScript() { Val = "22" };

            runProperties457.Append(runFonts575);
            runProperties457.Append(fontSize583);
            runProperties457.Append(fontSizeComplexScript577);
            Text text397 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text397.Text = " ";

            run428.Append(runProperties457);
            run428.Append(text397);

            Run run429 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties458 = new RunProperties();
            RunFonts runFonts576 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color160 = new Color() { Val = "FF0000" };
            FontSize fontSize584 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript578 = new FontSizeComplexScript() { Val = "22" };

            runProperties458.Append(runFonts576);
            runProperties458.Append(color160);
            runProperties458.Append(fontSize584);
            runProperties458.Append(fontSizeComplexScript578);
            Text text398 = new Text();
            text398.Text = "BJCxxxxxxxx";

            run429.Append(runProperties458);
            run429.Append(text398);

            paragraph193.Append(paragraphProperties190);
            paragraph193.Append(run427);
            paragraph193.Append(run428);
            paragraph193.Append(run429);

            Paragraph paragraph194 = new Paragraph() { RsidParagraphAddition = "00697199", RsidParagraphProperties = "00697199", RsidRunAdditionDefault = "00697199", ParagraphId = "1B5138D0", TextId = "2F717E15" };

            ParagraphProperties paragraphProperties191 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties191 = new ParagraphMarkRunProperties();
            RunFonts runFonts577 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color161 = new Color() { Val = "FF0000" };
            FontSize fontSize585 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript579 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties191.Append(runFonts577);
            paragraphMarkRunProperties191.Append(color161);
            paragraphMarkRunProperties191.Append(fontSize585);
            paragraphMarkRunProperties191.Append(fontSizeComplexScript579);

            paragraphProperties191.Append(paragraphMarkRunProperties191);

            Run run430 = new Run();

            RunProperties runProperties459 = new RunProperties();
            RunFonts runFonts578 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize586 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript580 = new FontSizeComplexScript() { Val = "22" };

            runProperties459.Append(runFonts578);
            runProperties459.Append(fontSize586);
            runProperties459.Append(fontSizeComplexScript580);
            Text text399 = new Text();
            text399.Text = "User accounts needing DB Owner or SA rights:";

            run430.Append(runProperties459);
            run430.Append(text399);

            Run run431 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties460 = new RunProperties();
            RunFonts runFonts579 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize587 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript581 = new FontSizeComplexScript() { Val = "22" };

            runProperties460.Append(runFonts579);
            runProperties460.Append(fontSize587);
            runProperties460.Append(fontSizeComplexScript581);
            Text text400 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text400.Text = " ";

            run431.Append(runProperties460);
            run431.Append(text400);

            Run run432 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties461 = new RunProperties();
            RunFonts runFonts580 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color162 = new Color() { Val = "FF0000" };
            FontSize fontSize588 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript582 = new FontSizeComplexScript() { Val = "22" };

            runProperties461.Append(runFonts580);
            runProperties461.Append(color162);
            runProperties461.Append(fontSize588);
            runProperties461.Append(fontSizeComplexScript582);
            Text text401 = new Text();
            text401.Text = "BJCxxxxxxxx";

            run432.Append(runProperties461);
            run432.Append(text401);

            paragraph194.Append(paragraphProperties191);
            paragraph194.Append(run430);
            paragraph194.Append(run431);
            paragraph194.Append(run432);

            Paragraph paragraph195 = new Paragraph() { RsidParagraphAddition = "00F12AD5", RsidParagraphProperties = "00F12AD5", RsidRunAdditionDefault = "00F12AD5", ParagraphId = "4CB8C4A9", TextId = "77777777" };

            ParagraphProperties paragraphProperties192 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties192 = new ParagraphMarkRunProperties();
            RunFonts runFonts581 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color163 = new Color() { Val = "FF0000" };
            FontSize fontSize589 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript583 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties192.Append(runFonts581);
            paragraphMarkRunProperties192.Append(color163);
            paragraphMarkRunProperties192.Append(fontSize589);
            paragraphMarkRunProperties192.Append(fontSizeComplexScript583);

            paragraphProperties192.Append(paragraphMarkRunProperties192);

            Run run433 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties462 = new RunProperties();
            RunFonts runFonts582 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize590 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript584 = new FontSizeComplexScript() { Val = "22" };

            runProperties462.Append(runFonts582);
            runProperties462.Append(fontSize590);
            runProperties462.Append(fontSizeComplexScript584);
            Text text402 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text402.Text = "Import Backup Database from ";

            run433.Append(runProperties462);
            run433.Append(text402);

            Run run434 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties463 = new RunProperties();
            RunFonts runFonts583 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color164 = new Color() { Val = "FF0000" };
            FontSize fontSize591 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript585 = new FontSizeComplexScript() { Val = "22" };

            runProperties463.Append(runFonts583);
            runProperties463.Append(color164);
            runProperties463.Append(fontSize591);
            runProperties463.Append(fontSizeComplexScript585);
            Text text403 = new Text();
            text403.Text = "BJCxxxxxxxx";

            run434.Append(runProperties463);
            run434.Append(text403);

            paragraph195.Append(paragraphProperties192);
            paragraph195.Append(run433);
            paragraph195.Append(run434);

            Paragraph paragraph196 = new Paragraph() { RsidParagraphAddition = "00F12AD5", RsidParagraphProperties = "00F12AD5", RsidRunAdditionDefault = "00F12AD5", ParagraphId = "71ACE670", TextId = "6A9F12FB" };

            ParagraphProperties paragraphProperties193 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties193 = new ParagraphMarkRunProperties();
            RunFonts runFonts584 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color165 = new Color() { Val = "FF0000" };
            FontSize fontSize592 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript586 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties193.Append(runFonts584);
            paragraphMarkRunProperties193.Append(color165);
            paragraphMarkRunProperties193.Append(fontSize592);
            paragraphMarkRunProperties193.Append(fontSizeComplexScript586);

            paragraphProperties193.Append(paragraphMarkRunProperties193);

            Run run435 = new Run();

            RunProperties runProperties464 = new RunProperties();
            RunFonts runFonts585 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize593 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript587 = new FontSizeComplexScript() { Val = "22" };

            runProperties464.Append(runFonts585);
            runProperties464.Append(fontSize593);
            runProperties464.Append(fontSizeComplexScript587);
            Text text404 = new Text();
            text404.Text = "BJC DBA Statement of Work:";

            run435.Append(runProperties464);
            run435.Append(text404);

            Run run436 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties465 = new RunProperties();
            RunFonts runFonts586 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize594 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript588 = new FontSizeComplexScript() { Val = "22" };

            runProperties465.Append(runFonts586);
            runProperties465.Append(fontSize594);
            runProperties465.Append(fontSizeComplexScript588);
            Text text405 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text405.Text = " ";

            run436.Append(runProperties465);
            run436.Append(text405);

            Run run437 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties466 = new RunProperties();
            RunFonts runFonts587 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color166 = new Color() { Val = "FF0000" };
            FontSize fontSize595 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript589 = new FontSizeComplexScript() { Val = "22" };

            runProperties466.Append(runFonts587);
            runProperties466.Append(color166);
            runProperties466.Append(fontSize595);
            runProperties466.Append(fontSizeComplexScript589);
            Text text406 = new Text();
            text406.Text = "xxxx";

            run437.Append(runProperties466);
            run437.Append(text406);

            paragraph196.Append(paragraphProperties193);
            paragraph196.Append(run435);
            paragraph196.Append(run436);
            paragraph196.Append(run437);

            Paragraph paragraph197 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00116831", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00E518DD", ParagraphId = "0AAC1A63", TextId = "0D58B179" };

            ParagraphProperties paragraphProperties194 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId17 = new ParagraphStyleId() { Val = "Heading2" };

            ParagraphMarkRunProperties paragraphMarkRunProperties194 = new ParagraphMarkRunProperties();
            Underline underline60 = new Underline() { Val = UnderlineValues.Single };

            paragraphMarkRunProperties194.Append(underline60);

            paragraphProperties194.Append(paragraphStyleId17);
            paragraphProperties194.Append(paragraphMarkRunProperties194);

            Run run438 = new Run();

            RunProperties runProperties467 = new RunProperties();
            Underline underline61 = new Underline() { Val = UnderlineValues.Single };

            runProperties467.Append(underline61);
            Text text407 = new Text();
            text407.Text = "1";

            run438.Append(runProperties467);
            run438.Append(text407);

            Run run439 = new Run() { RsidRunAddition = "002B0580" };

            RunProperties runProperties468 = new RunProperties();
            Underline underline62 = new Underline() { Val = UnderlineValues.Single };

            runProperties468.Append(underline62);
            Text text408 = new Text();
            text408.Text = "3";

            run439.Append(runProperties468);
            run439.Append(text408);

            Run run440 = new Run();

            RunProperties runProperties469 = new RunProperties();
            Underline underline63 = new Underline() { Val = UnderlineValues.Single };

            runProperties469.Append(underline63);
            Text text409 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text409.Text = ". ";

            run440.Append(runProperties469);
            run440.Append(text409);

            Run run441 = new Run() { RsidRunAddition = "0057090B" };

            RunProperties runProperties470 = new RunProperties();
            Underline underline64 = new Underline() { Val = UnderlineValues.Single };

            runProperties470.Append(underline64);
            Text text410 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text410.Text = "Drives Layouts and ";

            run441.Append(runProperties470);
            run441.Append(text410);

            Run run442 = new Run() { RsidRunAddition = "00116FA1" };

            RunProperties runProperties471 = new RunProperties();
            Underline underline65 = new Underline() { Val = UnderlineValues.Single };

            runProperties471.Append(underline65);
            Text text411 = new Text();
            text411.Text = "S";

            run442.Append(runProperties471);
            run442.Append(text411);

            Run run443 = new Run() { RsidRunAddition = "0057090B" };

            RunProperties runProperties472 = new RunProperties();
            Underline underline66 = new Underline() { Val = UnderlineValues.Single };

            runProperties472.Append(underline66);
            Text text412 = new Text();
            text412.Text = "ize";

            run443.Append(runProperties472);
            run443.Append(text412);

            Run run444 = new Run() { RsidRunProperties = "0057090B", RsidRunAddition = "0057090B" };

            RunProperties runProperties473 = new RunProperties();
            Color color167 = new Color() { Val = "FF0000" };
            Underline underline67 = new Underline() { Val = UnderlineValues.Single };

            runProperties473.Append(color167);
            runProperties473.Append(underline67);
            Text text413 = new Text();
            text413.Text = ": N/A";

            run444.Append(runProperties473);
            run444.Append(text413);

            paragraph197.Append(paragraphProperties194);
            paragraph197.Append(run438);
            paragraph197.Append(run439);
            paragraph197.Append(run440);
            paragraph197.Append(run441);
            paragraph197.Append(run442);
            paragraph197.Append(run443);
            paragraph197.Append(run444);

            Paragraph paragraph198 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00BF26D7", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00BF26D7", ParagraphId = "0AAC1A64", TextId = "77777777" };

            ParagraphProperties paragraphProperties195 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties195 = new ParagraphMarkRunProperties();
            RunFonts runFonts588 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize596 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript590 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties195.Append(runFonts588);
            paragraphMarkRunProperties195.Append(fontSize596);
            paragraphMarkRunProperties195.Append(fontSizeComplexScript590);

            paragraphProperties195.Append(paragraphMarkRunProperties195);

            Run run445 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties474 = new RunProperties();
            RunFonts runFonts589 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize597 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript591 = new FontSizeComplexScript() { Val = "22" };

            runProperties474.Append(runFonts589);
            runProperties474.Append(fontSize597);
            runProperties474.Append(fontSizeComplexScript591);
            Text text414 = new Text();
            text414.Text = "Host Name:";

            run445.Append(runProperties474);
            run445.Append(text414);

            Run run446 = new Run() { RsidRunAddition = "00F97B58" };

            RunProperties runProperties475 = new RunProperties();
            RunFonts runFonts590 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize598 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript592 = new FontSizeComplexScript() { Val = "22" };

            runProperties475.Append(runFonts590);
            runProperties475.Append(fontSize598);
            runProperties475.Append(fontSizeComplexScript592);
            Text text415 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text415.Text = " ";

            run446.Append(runProperties475);
            run446.Append(text415);

            Run run447 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00EA764C" };

            RunProperties runProperties476 = new RunProperties();
            RunFonts runFonts591 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color168 = new Color() { Val = "FF0000" };
            FontSize fontSize599 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript593 = new FontSizeComplexScript() { Val = "22" };

            runProperties476.Append(runFonts591);
            runProperties476.Append(color168);
            runProperties476.Append(fontSize599);
            runProperties476.Append(fontSizeComplexScript593);
            Text text416 = new Text();
            text416.Text = "BJC";

            run447.Append(runProperties476);
            run447.Append(text416);

            Run run448 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00F97B58" };

            RunProperties runProperties477 = new RunProperties();
            RunFonts runFonts592 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color169 = new Color() { Val = "FF0000" };
            FontSize fontSize600 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript594 = new FontSizeComplexScript() { Val = "22" };

            runProperties477.Append(runFonts592);
            runProperties477.Append(color169);
            runProperties477.Append(fontSize600);
            runProperties477.Append(fontSizeComplexScript594);
            Text text417 = new Text();
            text417.Text = "xxxxxx";

            run448.Append(runProperties477);
            run448.Append(text417);

            paragraph198.Append(paragraphProperties195);
            paragraph198.Append(run445);
            paragraph198.Append(run446);
            paragraph198.Append(run447);
            paragraph198.Append(run448);

            Table table5 = new Table();

            TableProperties tableProperties5 = new TableProperties();
            TableWidth tableWidth5 = new TableWidth() { Width = "0", Type = TableWidthUnitValues.Auto };
            TableIndentation tableIndentation1 = new TableIndentation() { Width = 1548, Type = TableWidthUnitValues.Dxa };

            TableBorders tableBorders3 = new TableBorders();
            TopBorder topBorder32 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder31 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder31 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder31 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder3 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder3 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableBorders3.Append(topBorder32);
            tableBorders3.Append(leftBorder31);
            tableBorders3.Append(bottomBorder31);
            tableBorders3.Append(rightBorder31);
            tableBorders3.Append(insideHorizontalBorder3);
            tableBorders3.Append(insideVerticalBorder3);
            TableLook tableLook5 = new TableLook() { Val = "01E0" };

            tableProperties5.Append(tableWidth5);
            tableProperties5.Append(tableIndentation1);
            tableProperties5.Append(tableBorders3);
            tableProperties5.Append(tableLook5);

            TableGrid tableGrid5 = new TableGrid();
            GridColumn gridColumn27 = new GridColumn() { Width = "1455" };
            GridColumn gridColumn28 = new GridColumn() { Width = "2356" };
            GridColumn gridColumn29 = new GridColumn() { Width = "2505" };
            GridColumn gridColumn30 = new GridColumn() { Width = "1712" };

            tableGrid5.Append(gridColumn27);
            tableGrid5.Append(gridColumn28);
            tableGrid5.Append(gridColumn29);
            tableGrid5.Append(gridColumn30);

            TableRow tableRow18 = new TableRow() { RsidTableRowMarkRevision = "000E2AF5", RsidTableRowAddition = "00116831", RsidTableRowProperties = "00727765", ParagraphId = "0AAC1A69", TextId = "77777777" };

            TableCell tableCell89 = new TableCell();

            TableCellProperties tableCellProperties89 = new TableCellProperties();
            TableCellWidth tableCellWidth89 = new TableCellWidth() { Width = "1455", Type = TableWidthUnitValues.Dxa };

            tableCellProperties89.Append(tableCellWidth89);

            Paragraph paragraph199 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00116831", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00116831", ParagraphId = "0AAC1A65", TextId = "77777777" };

            ParagraphProperties paragraphProperties196 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties196 = new ParagraphMarkRunProperties();
            RunFonts runFonts593 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize601 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript595 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties196.Append(runFonts593);
            paragraphMarkRunProperties196.Append(fontSize601);
            paragraphMarkRunProperties196.Append(fontSizeComplexScript595);

            paragraphProperties196.Append(paragraphMarkRunProperties196);

            Run run449 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties478 = new RunProperties();
            RunFonts runFonts594 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize602 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript596 = new FontSizeComplexScript() { Val = "22" };

            runProperties478.Append(runFonts594);
            runProperties478.Append(fontSize602);
            runProperties478.Append(fontSizeComplexScript596);
            Text text418 = new Text();
            text418.Text = "Drive Letter";

            run449.Append(runProperties478);
            run449.Append(text418);

            paragraph199.Append(paragraphProperties196);
            paragraph199.Append(run449);

            tableCell89.Append(tableCellProperties89);
            tableCell89.Append(paragraph199);

            TableCell tableCell90 = new TableCell();

            TableCellProperties tableCellProperties90 = new TableCellProperties();
            TableCellWidth tableCellWidth90 = new TableCellWidth() { Width = "2356", Type = TableWidthUnitValues.Dxa };

            tableCellProperties90.Append(tableCellWidth90);

            Paragraph paragraph200 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00116831", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00116831", ParagraphId = "0AAC1A66", TextId = "77777777" };

            ParagraphProperties paragraphProperties197 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties197 = new ParagraphMarkRunProperties();
            RunFonts runFonts595 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize603 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript597 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties197.Append(runFonts595);
            paragraphMarkRunProperties197.Append(fontSize603);
            paragraphMarkRunProperties197.Append(fontSizeComplexScript597);

            paragraphProperties197.Append(paragraphMarkRunProperties197);

            Run run450 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties479 = new RunProperties();
            RunFonts runFonts596 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize604 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript598 = new FontSizeComplexScript() { Val = "22" };

            runProperties479.Append(runFonts596);
            runProperties479.Append(fontSize604);
            runProperties479.Append(fontSizeComplexScript598);
            Text text419 = new Text();
            text419.Text = "Volume Name";

            run450.Append(runProperties479);
            run450.Append(text419);

            paragraph200.Append(paragraphProperties197);
            paragraph200.Append(run450);

            tableCell90.Append(tableCellProperties90);
            tableCell90.Append(paragraph200);

            TableCell tableCell91 = new TableCell();

            TableCellProperties tableCellProperties91 = new TableCellProperties();
            TableCellWidth tableCellWidth91 = new TableCellWidth() { Width = "2505", Type = TableWidthUnitValues.Dxa };

            tableCellProperties91.Append(tableCellWidth91);

            Paragraph paragraph201 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00116831", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00116831", ParagraphId = "0AAC1A67", TextId = "77777777" };

            ParagraphProperties paragraphProperties198 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties198 = new ParagraphMarkRunProperties();
            RunFonts runFonts597 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize605 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript599 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties198.Append(runFonts597);
            paragraphMarkRunProperties198.Append(fontSize605);
            paragraphMarkRunProperties198.Append(fontSizeComplexScript599);

            paragraphProperties198.Append(paragraphMarkRunProperties198);

            Run run451 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties480 = new RunProperties();
            RunFonts runFonts598 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize606 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript600 = new FontSizeComplexScript() { Val = "22" };

            runProperties480.Append(runFonts598);
            runProperties480.Append(fontSize606);
            runProperties480.Append(fontSizeComplexScript600);
            Text text420 = new Text();
            text420.Text = "Type of data";

            run451.Append(runProperties480);
            run451.Append(text420);

            paragraph201.Append(paragraphProperties198);
            paragraph201.Append(run451);

            tableCell91.Append(tableCellProperties91);
            tableCell91.Append(paragraph201);

            TableCell tableCell92 = new TableCell();

            TableCellProperties tableCellProperties92 = new TableCellProperties();
            TableCellWidth tableCellWidth92 = new TableCellWidth() { Width = "1712", Type = TableWidthUnitValues.Dxa };

            tableCellProperties92.Append(tableCellWidth92);

            Paragraph paragraph202 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00116831", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00116831", ParagraphId = "0AAC1A68", TextId = "77777777" };

            ParagraphProperties paragraphProperties199 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties199 = new ParagraphMarkRunProperties();
            RunFonts runFonts599 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize607 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript601 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties199.Append(runFonts599);
            paragraphMarkRunProperties199.Append(fontSize607);
            paragraphMarkRunProperties199.Append(fontSizeComplexScript601);

            paragraphProperties199.Append(paragraphMarkRunProperties199);

            Run run452 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties481 = new RunProperties();
            RunFonts runFonts600 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize608 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript602 = new FontSizeComplexScript() { Val = "22" };

            runProperties481.Append(runFonts600);
            runProperties481.Append(fontSize608);
            runProperties481.Append(fontSizeComplexScript602);
            Text text421 = new Text();
            text421.Text = "Size";

            run452.Append(runProperties481);
            run452.Append(text421);

            paragraph202.Append(paragraphProperties199);
            paragraph202.Append(run452);

            tableCell92.Append(tableCellProperties92);
            tableCell92.Append(paragraph202);

            tableRow18.Append(tableCell89);
            tableRow18.Append(tableCell90);
            tableRow18.Append(tableCell91);
            tableRow18.Append(tableCell92);

            TableRow tableRow19 = new TableRow() { RsidTableRowMarkRevision = "00F97B58", RsidTableRowAddition = "00F97B58", RsidTableRowProperties = "00727765", ParagraphId = "0AAC1A6E", TextId = "77777777" };

            TableCell tableCell93 = new TableCell();

            TableCellProperties tableCellProperties93 = new TableCellProperties();
            TableCellWidth tableCellWidth93 = new TableCellWidth() { Width = "1455", Type = TableWidthUnitValues.Dxa };

            tableCellProperties93.Append(tableCellWidth93);

            Paragraph paragraph203 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00116831", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00016F9B", ParagraphId = "0AAC1A6A", TextId = "77777777" };

            ParagraphProperties paragraphProperties200 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties200 = new ParagraphMarkRunProperties();
            RunFonts runFonts601 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color170 = new Color() { Val = "FF0000" };
            FontSize fontSize609 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript603 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties200.Append(runFonts601);
            paragraphMarkRunProperties200.Append(color170);
            paragraphMarkRunProperties200.Append(fontSize609);
            paragraphMarkRunProperties200.Append(fontSizeComplexScript603);

            paragraphProperties200.Append(paragraphMarkRunProperties200);

            Run run453 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties482 = new RunProperties();
            RunFonts runFonts602 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color171 = new Color() { Val = "FF0000" };
            FontSize fontSize610 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript604 = new FontSizeComplexScript() { Val = "22" };

            runProperties482.Append(runFonts602);
            runProperties482.Append(color171);
            runProperties482.Append(fontSize610);
            runProperties482.Append(fontSizeComplexScript604);
            LastRenderedPageBreak lastRenderedPageBreak5 = new LastRenderedPageBreak();
            Text text422 = new Text();
            text422.Text = "D";

            run453.Append(runProperties482);
            run453.Append(lastRenderedPageBreak5);
            run453.Append(text422);

            paragraph203.Append(paragraphProperties200);
            paragraph203.Append(run453);

            tableCell93.Append(tableCellProperties93);
            tableCell93.Append(paragraph203);

            TableCell tableCell94 = new TableCell();

            TableCellProperties tableCellProperties94 = new TableCellProperties();
            TableCellWidth tableCellWidth94 = new TableCellWidth() { Width = "2356", Type = TableWidthUnitValues.Dxa };

            tableCellProperties94.Append(tableCellWidth94);

            Paragraph paragraph204 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00116831", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00016F9B", ParagraphId = "0AAC1A6B", TextId = "77777777" };

            ParagraphProperties paragraphProperties201 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties201 = new ParagraphMarkRunProperties();
            RunFonts runFonts603 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color172 = new Color() { Val = "FF0000" };
            FontSize fontSize611 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript605 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties201.Append(runFonts603);
            paragraphMarkRunProperties201.Append(color172);
            paragraphMarkRunProperties201.Append(fontSize611);
            paragraphMarkRunProperties201.Append(fontSizeComplexScript605);

            paragraphProperties201.Append(paragraphMarkRunProperties201);

            Run run454 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties483 = new RunProperties();
            RunFonts runFonts604 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color173 = new Color() { Val = "FF0000" };
            FontSize fontSize612 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript606 = new FontSizeComplexScript() { Val = "22" };

            runProperties483.Append(runFonts604);
            runProperties483.Append(color173);
            runProperties483.Append(fontSize612);
            runProperties483.Append(fontSizeComplexScript606);
            Text text423 = new Text();
            text423.Text = "D";

            run454.Append(runProperties483);
            run454.Append(text423);

            Run run455 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00F97B58" };

            RunProperties runProperties484 = new RunProperties();
            RunFonts runFonts605 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color174 = new Color() { Val = "FF0000" };
            FontSize fontSize613 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript607 = new FontSizeComplexScript() { Val = "22" };

            runProperties484.Append(runFonts605);
            runProperties484.Append(color174);
            runProperties484.Append(fontSize613);
            runProperties484.Append(fontSizeComplexScript607);
            Text text424 = new Text();
            text424.Text = "ATA";

            run455.Append(runProperties484);
            run455.Append(text424);

            paragraph204.Append(paragraphProperties201);
            paragraph204.Append(run454);
            paragraph204.Append(run455);

            tableCell94.Append(tableCellProperties94);
            tableCell94.Append(paragraph204);

            TableCell tableCell95 = new TableCell();

            TableCellProperties tableCellProperties95 = new TableCellProperties();
            TableCellWidth tableCellWidth95 = new TableCellWidth() { Width = "2505", Type = TableWidthUnitValues.Dxa };

            tableCellProperties95.Append(tableCellWidth95);

            Paragraph paragraph205 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00116831", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00016F9B", ParagraphId = "0AAC1A6C", TextId = "77777777" };

            ParagraphProperties paragraphProperties202 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties202 = new ParagraphMarkRunProperties();
            RunFonts runFonts606 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color175 = new Color() { Val = "FF0000" };
            FontSize fontSize614 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript608 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties202.Append(runFonts606);
            paragraphMarkRunProperties202.Append(color175);
            paragraphMarkRunProperties202.Append(fontSize614);
            paragraphMarkRunProperties202.Append(fontSizeComplexScript608);

            paragraphProperties202.Append(paragraphMarkRunProperties202);

            Run run456 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties485 = new RunProperties();
            RunFonts runFonts607 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color176 = new Color() { Val = "FF0000" };
            FontSize fontSize615 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript609 = new FontSizeComplexScript() { Val = "22" };

            runProperties485.Append(runFonts607);
            runProperties485.Append(color176);
            runProperties485.Append(fontSize615);
            runProperties485.Append(fontSizeComplexScript609);
            Text text425 = new Text();
            text425.Text = "SQL Data";

            run456.Append(runProperties485);
            run456.Append(text425);

            paragraph205.Append(paragraphProperties202);
            paragraph205.Append(run456);

            tableCell95.Append(tableCellProperties95);
            tableCell95.Append(paragraph205);

            TableCell tableCell96 = new TableCell();

            TableCellProperties tableCellProperties96 = new TableCellProperties();
            TableCellWidth tableCellWidth96 = new TableCellWidth() { Width = "1712", Type = TableWidthUnitValues.Dxa };

            tableCellProperties96.Append(tableCellWidth96);

            Paragraph paragraph206 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00116831", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00095617", ParagraphId = "0AAC1A6D", TextId = "12784075" };

            ParagraphProperties paragraphProperties203 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties203 = new ParagraphMarkRunProperties();
            RunFonts runFonts608 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color177 = new Color() { Val = "FF0000" };
            FontSize fontSize616 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript610 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties203.Append(runFonts608);
            paragraphMarkRunProperties203.Append(color177);
            paragraphMarkRunProperties203.Append(fontSize616);
            paragraphMarkRunProperties203.Append(fontSizeComplexScript610);

            paragraphProperties203.Append(paragraphMarkRunProperties203);

            Run run457 = new Run();

            RunProperties runProperties486 = new RunProperties();
            RunFonts runFonts609 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color178 = new Color() { Val = "FF0000" };
            FontSize fontSize617 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript611 = new FontSizeComplexScript() { Val = "22" };

            runProperties486.Append(runFonts609);
            runProperties486.Append(color178);
            runProperties486.Append(fontSize617);
            runProperties486.Append(fontSizeComplexScript611);
            Text text426 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text426.Text = "X ";

            run457.Append(runProperties486);
            run457.Append(text426);

            Run run458 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00F97B58" };

            RunProperties runProperties487 = new RunProperties();
            RunFonts runFonts610 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color179 = new Color() { Val = "FF0000" };
            FontSize fontSize618 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript612 = new FontSizeComplexScript() { Val = "22" };

            runProperties487.Append(runFonts610);
            runProperties487.Append(color179);
            runProperties487.Append(fontSize618);
            runProperties487.Append(fontSizeComplexScript612);
            Text text427 = new Text();
            text427.Text = "GB";

            run458.Append(runProperties487);
            run458.Append(text427);

            paragraph206.Append(paragraphProperties203);
            paragraph206.Append(run457);
            paragraph206.Append(run458);

            tableCell96.Append(tableCellProperties96);
            tableCell96.Append(paragraph206);

            tableRow19.Append(tableCell93);
            tableRow19.Append(tableCell94);
            tableRow19.Append(tableCell95);
            tableRow19.Append(tableCell96);

            TableRow tableRow20 = new TableRow() { RsidTableRowMarkRevision = "00F97B58", RsidTableRowAddition = "00F97B58", RsidTableRowProperties = "00727765", ParagraphId = "0AAC1A73", TextId = "77777777" };

            TableCell tableCell97 = new TableCell();

            TableCellProperties tableCellProperties97 = new TableCellProperties();
            TableCellWidth tableCellWidth97 = new TableCellWidth() { Width = "1455", Type = TableWidthUnitValues.Dxa };

            tableCellProperties97.Append(tableCellWidth97);

            Paragraph paragraph207 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00116831", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00F97B58", ParagraphId = "0AAC1A6F", TextId = "77777777" };

            ParagraphProperties paragraphProperties204 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties204 = new ParagraphMarkRunProperties();
            RunFonts runFonts611 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color180 = new Color() { Val = "FF0000" };
            FontSize fontSize619 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript613 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties204.Append(runFonts611);
            paragraphMarkRunProperties204.Append(color180);
            paragraphMarkRunProperties204.Append(fontSize619);
            paragraphMarkRunProperties204.Append(fontSizeComplexScript613);

            paragraphProperties204.Append(paragraphMarkRunProperties204);

            Run run459 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties488 = new RunProperties();
            RunFonts runFonts612 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color181 = new Color() { Val = "FF0000" };
            FontSize fontSize620 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript614 = new FontSizeComplexScript() { Val = "22" };

            runProperties488.Append(runFonts612);
            runProperties488.Append(color181);
            runProperties488.Append(fontSize620);
            runProperties488.Append(fontSizeComplexScript614);
            Text text428 = new Text();
            text428.Text = "E";

            run459.Append(runProperties488);
            run459.Append(text428);

            paragraph207.Append(paragraphProperties204);
            paragraph207.Append(run459);

            tableCell97.Append(tableCellProperties97);
            tableCell97.Append(paragraph207);

            TableCell tableCell98 = new TableCell();

            TableCellProperties tableCellProperties98 = new TableCellProperties();
            TableCellWidth tableCellWidth98 = new TableCellWidth() { Width = "2356", Type = TableWidthUnitValues.Dxa };

            tableCellProperties98.Append(tableCellWidth98);

            Paragraph paragraph208 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00116831", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00F97B58", ParagraphId = "0AAC1A70", TextId = "77777777" };

            ParagraphProperties paragraphProperties205 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties205 = new ParagraphMarkRunProperties();
            RunFonts runFonts613 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color182 = new Color() { Val = "FF0000" };
            FontSize fontSize621 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript615 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties205.Append(runFonts613);
            paragraphMarkRunProperties205.Append(color182);
            paragraphMarkRunProperties205.Append(fontSize621);
            paragraphMarkRunProperties205.Append(fontSizeComplexScript615);

            paragraphProperties205.Append(paragraphMarkRunProperties205);

            Run run460 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties489 = new RunProperties();
            RunFonts runFonts614 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color183 = new Color() { Val = "FF0000" };
            FontSize fontSize622 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript616 = new FontSizeComplexScript() { Val = "22" };

            runProperties489.Append(runFonts614);
            runProperties489.Append(color183);
            runProperties489.Append(fontSize622);
            runProperties489.Append(fontSizeComplexScript616);
            Text text429 = new Text();
            text429.Text = "LOGS";

            run460.Append(runProperties489);
            run460.Append(text429);

            paragraph208.Append(paragraphProperties205);
            paragraph208.Append(run460);

            tableCell98.Append(tableCellProperties98);
            tableCell98.Append(paragraph208);

            TableCell tableCell99 = new TableCell();

            TableCellProperties tableCellProperties99 = new TableCellProperties();
            TableCellWidth tableCellWidth99 = new TableCellWidth() { Width = "2505", Type = TableWidthUnitValues.Dxa };

            tableCellProperties99.Append(tableCellWidth99);

            Paragraph paragraph209 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00116831", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00F97B58", ParagraphId = "0AAC1A71", TextId = "77777777" };

            ParagraphProperties paragraphProperties206 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties206 = new ParagraphMarkRunProperties();
            RunFonts runFonts615 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color184 = new Color() { Val = "FF0000" };
            FontSize fontSize623 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript617 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties206.Append(runFonts615);
            paragraphMarkRunProperties206.Append(color184);
            paragraphMarkRunProperties206.Append(fontSize623);
            paragraphMarkRunProperties206.Append(fontSizeComplexScript617);

            paragraphProperties206.Append(paragraphMarkRunProperties206);

            Run run461 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties490 = new RunProperties();
            RunFonts runFonts616 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color185 = new Color() { Val = "FF0000" };
            FontSize fontSize624 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript618 = new FontSizeComplexScript() { Val = "22" };

            runProperties490.Append(runFonts616);
            runProperties490.Append(color185);
            runProperties490.Append(fontSize624);
            runProperties490.Append(fontSizeComplexScript618);
            Text text430 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text430.Text = "SQL Logs ";

            run461.Append(runProperties490);
            run461.Append(text430);

            paragraph209.Append(paragraphProperties206);
            paragraph209.Append(run461);

            tableCell99.Append(tableCellProperties99);
            tableCell99.Append(paragraph209);

            TableCell tableCell100 = new TableCell();

            TableCellProperties tableCellProperties100 = new TableCellProperties();
            TableCellWidth tableCellWidth100 = new TableCellWidth() { Width = "1712", Type = TableWidthUnitValues.Dxa };

            tableCellProperties100.Append(tableCellWidth100);

            Paragraph paragraph210 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00116831", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00095617", ParagraphId = "0AAC1A72", TextId = "7ACE2FB4" };

            ParagraphProperties paragraphProperties207 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties207 = new ParagraphMarkRunProperties();
            RunFonts runFonts617 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color186 = new Color() { Val = "FF0000" };
            FontSize fontSize625 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript619 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties207.Append(runFonts617);
            paragraphMarkRunProperties207.Append(color186);
            paragraphMarkRunProperties207.Append(fontSize625);
            paragraphMarkRunProperties207.Append(fontSizeComplexScript619);

            paragraphProperties207.Append(paragraphMarkRunProperties207);

            Run run462 = new Run();

            RunProperties runProperties491 = new RunProperties();
            RunFonts runFonts618 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color187 = new Color() { Val = "FF0000" };
            FontSize fontSize626 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript620 = new FontSizeComplexScript() { Val = "22" };

            runProperties491.Append(runFonts618);
            runProperties491.Append(color187);
            runProperties491.Append(fontSize626);
            runProperties491.Append(fontSizeComplexScript620);
            Text text431 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text431.Text = "X ";

            run462.Append(runProperties491);
            run462.Append(text431);

            Run run463 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00F97B58" };

            RunProperties runProperties492 = new RunProperties();
            RunFonts runFonts619 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color188 = new Color() { Val = "FF0000" };
            FontSize fontSize627 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript621 = new FontSizeComplexScript() { Val = "22" };

            runProperties492.Append(runFonts619);
            runProperties492.Append(color188);
            runProperties492.Append(fontSize627);
            runProperties492.Append(fontSizeComplexScript621);
            Text text432 = new Text();
            text432.Text = "GB";

            run463.Append(runProperties492);
            run463.Append(text432);

            paragraph210.Append(paragraphProperties207);
            paragraph210.Append(run462);
            paragraph210.Append(run463);

            tableCell100.Append(tableCellProperties100);
            tableCell100.Append(paragraph210);

            tableRow20.Append(tableCell97);
            tableRow20.Append(tableCell98);
            tableRow20.Append(tableCell99);
            tableRow20.Append(tableCell100);

            TableRow tableRow21 = new TableRow() { RsidTableRowMarkRevision = "00F97B58", RsidTableRowAddition = "00F97B58", RsidTableRowProperties = "00727765", ParagraphId = "0AAC1A78", TextId = "77777777" };

            TableCell tableCell101 = new TableCell();

            TableCellProperties tableCellProperties101 = new TableCellProperties();
            TableCellWidth tableCellWidth101 = new TableCellWidth() { Width = "1455", Type = TableWidthUnitValues.Dxa };

            tableCellProperties101.Append(tableCellWidth101);

            Paragraph paragraph211 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00016F9B", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00F97B58", ParagraphId = "0AAC1A74", TextId = "77777777" };

            ParagraphProperties paragraphProperties208 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties208 = new ParagraphMarkRunProperties();
            RunFonts runFonts620 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color189 = new Color() { Val = "FF0000" };
            FontSize fontSize628 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript622 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties208.Append(runFonts620);
            paragraphMarkRunProperties208.Append(color189);
            paragraphMarkRunProperties208.Append(fontSize628);
            paragraphMarkRunProperties208.Append(fontSizeComplexScript622);

            paragraphProperties208.Append(paragraphMarkRunProperties208);

            Run run464 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties493 = new RunProperties();
            RunFonts runFonts621 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color190 = new Color() { Val = "FF0000" };
            FontSize fontSize629 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript623 = new FontSizeComplexScript() { Val = "22" };

            runProperties493.Append(runFonts621);
            runProperties493.Append(color190);
            runProperties493.Append(fontSize629);
            runProperties493.Append(fontSizeComplexScript623);
            Text text433 = new Text();
            text433.Text = "F";

            run464.Append(runProperties493);
            run464.Append(text433);

            paragraph211.Append(paragraphProperties208);
            paragraph211.Append(run464);

            tableCell101.Append(tableCellProperties101);
            tableCell101.Append(paragraph211);

            TableCell tableCell102 = new TableCell();

            TableCellProperties tableCellProperties102 = new TableCellProperties();
            TableCellWidth tableCellWidth102 = new TableCellWidth() { Width = "2356", Type = TableWidthUnitValues.Dxa };

            tableCellProperties102.Append(tableCellWidth102);

            Paragraph paragraph212 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00016F9B", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00F97B58", ParagraphId = "0AAC1A75", TextId = "77777777" };

            ParagraphProperties paragraphProperties209 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties209 = new ParagraphMarkRunProperties();
            RunFonts runFonts622 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color191 = new Color() { Val = "FF0000" };
            FontSize fontSize630 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript624 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties209.Append(runFonts622);
            paragraphMarkRunProperties209.Append(color191);
            paragraphMarkRunProperties209.Append(fontSize630);
            paragraphMarkRunProperties209.Append(fontSizeComplexScript624);

            paragraphProperties209.Append(paragraphMarkRunProperties209);

            Run run465 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties494 = new RunProperties();
            RunFonts runFonts623 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color192 = new Color() { Val = "FF0000" };
            FontSize fontSize631 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript625 = new FontSizeComplexScript() { Val = "22" };

            runProperties494.Append(runFonts623);
            runProperties494.Append(color192);
            runProperties494.Append(fontSize631);
            runProperties494.Append(fontSizeComplexScript625);
            Text text434 = new Text();
            text434.Text = "TEMPDB";

            run465.Append(runProperties494);
            run465.Append(text434);

            paragraph212.Append(paragraphProperties209);
            paragraph212.Append(run465);

            tableCell102.Append(tableCellProperties102);
            tableCell102.Append(paragraph212);

            TableCell tableCell103 = new TableCell();

            TableCellProperties tableCellProperties103 = new TableCellProperties();
            TableCellWidth tableCellWidth103 = new TableCellWidth() { Width = "2505", Type = TableWidthUnitValues.Dxa };

            tableCellProperties103.Append(tableCellWidth103);

            Paragraph paragraph213 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00016F9B", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00F97B58", ParagraphId = "0AAC1A76", TextId = "77777777" };

            ParagraphProperties paragraphProperties210 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties210 = new ParagraphMarkRunProperties();
            RunFonts runFonts624 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color193 = new Color() { Val = "FF0000" };
            FontSize fontSize632 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript626 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties210.Append(runFonts624);
            paragraphMarkRunProperties210.Append(color193);
            paragraphMarkRunProperties210.Append(fontSize632);
            paragraphMarkRunProperties210.Append(fontSizeComplexScript626);

            paragraphProperties210.Append(paragraphMarkRunProperties210);

            Run run466 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties495 = new RunProperties();
            RunFonts runFonts625 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color194 = new Color() { Val = "FF0000" };
            FontSize fontSize633 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript627 = new FontSizeComplexScript() { Val = "22" };

            runProperties495.Append(runFonts625);
            runProperties495.Append(color194);
            runProperties495.Append(fontSize633);
            runProperties495.Append(fontSizeComplexScript627);
            Text text435 = new Text();
            text435.Text = "SQL Index";

            run466.Append(runProperties495);
            run466.Append(text435);

            paragraph213.Append(paragraphProperties210);
            paragraph213.Append(run466);

            tableCell103.Append(tableCellProperties103);
            tableCell103.Append(paragraph213);

            TableCell tableCell104 = new TableCell();

            TableCellProperties tableCellProperties104 = new TableCellProperties();
            TableCellWidth tableCellWidth104 = new TableCellWidth() { Width = "1712", Type = TableWidthUnitValues.Dxa };

            tableCellProperties104.Append(tableCellWidth104);

            Paragraph paragraph214 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00016F9B", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00095617", ParagraphId = "0AAC1A77", TextId = "02A32CD9" };

            ParagraphProperties paragraphProperties211 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties211 = new ParagraphMarkRunProperties();
            RunFonts runFonts626 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color195 = new Color() { Val = "FF0000" };
            FontSize fontSize634 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript628 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties211.Append(runFonts626);
            paragraphMarkRunProperties211.Append(color195);
            paragraphMarkRunProperties211.Append(fontSize634);
            paragraphMarkRunProperties211.Append(fontSizeComplexScript628);

            paragraphProperties211.Append(paragraphMarkRunProperties211);

            Run run467 = new Run();

            RunProperties runProperties496 = new RunProperties();
            RunFonts runFonts627 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color196 = new Color() { Val = "FF0000" };
            FontSize fontSize635 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript629 = new FontSizeComplexScript() { Val = "22" };

            runProperties496.Append(runFonts627);
            runProperties496.Append(color196);
            runProperties496.Append(fontSize635);
            runProperties496.Append(fontSizeComplexScript629);
            Text text436 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text436.Text = "X*.20 ";

            run467.Append(runProperties496);
            run467.Append(text436);

            Run run468 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00F97B58" };

            RunProperties runProperties497 = new RunProperties();
            RunFonts runFonts628 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color197 = new Color() { Val = "FF0000" };
            FontSize fontSize636 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript630 = new FontSizeComplexScript() { Val = "22" };

            runProperties497.Append(runFonts628);
            runProperties497.Append(color197);
            runProperties497.Append(fontSize636);
            runProperties497.Append(fontSizeComplexScript630);
            Text text437 = new Text();
            text437.Text = "GB";

            run468.Append(runProperties497);
            run468.Append(text437);

            paragraph214.Append(paragraphProperties211);
            paragraph214.Append(run467);
            paragraph214.Append(run468);

            tableCell104.Append(tableCellProperties104);
            tableCell104.Append(paragraph214);

            tableRow21.Append(tableCell101);
            tableRow21.Append(tableCell102);
            tableRow21.Append(tableCell103);
            tableRow21.Append(tableCell104);

            TableRow tableRow22 = new TableRow() { RsidTableRowMarkRevision = "00A565FD", RsidTableRowAddition = "00A565FD", RsidTableRowProperties = "00727765", ParagraphId = "0AAC1A7D", TextId = "77777777" };

            TableCell tableCell105 = new TableCell();

            TableCellProperties tableCellProperties105 = new TableCellProperties();
            TableCellWidth tableCellWidth105 = new TableCellWidth() { Width = "1455", Type = TableWidthUnitValues.Dxa };

            tableCellProperties105.Append(tableCellWidth105);

            Paragraph paragraph215 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00116831", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00A565FD", ParagraphId = "0AAC1A79", TextId = "77777777" };

            ParagraphProperties paragraphProperties212 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties212 = new ParagraphMarkRunProperties();
            RunFonts runFonts629 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color198 = new Color() { Val = "FF0000" };
            FontSize fontSize637 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript631 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties212.Append(runFonts629);
            paragraphMarkRunProperties212.Append(color198);
            paragraphMarkRunProperties212.Append(fontSize637);
            paragraphMarkRunProperties212.Append(fontSizeComplexScript631);

            paragraphProperties212.Append(paragraphMarkRunProperties212);

            Run run469 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties498 = new RunProperties();
            RunFonts runFonts630 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color199 = new Color() { Val = "FF0000" };
            FontSize fontSize638 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript632 = new FontSizeComplexScript() { Val = "22" };

            runProperties498.Append(runFonts630);
            runProperties498.Append(color199);
            runProperties498.Append(fontSize638);
            runProperties498.Append(fontSizeComplexScript632);
            Text text438 = new Text();
            text438.Text = "Q";

            run469.Append(runProperties498);
            run469.Append(text438);

            paragraph215.Append(paragraphProperties212);
            paragraph215.Append(run469);

            tableCell105.Append(tableCellProperties105);
            tableCell105.Append(paragraph215);

            TableCell tableCell106 = new TableCell();

            TableCellProperties tableCellProperties106 = new TableCellProperties();
            TableCellWidth tableCellWidth106 = new TableCellWidth() { Width = "2356", Type = TableWidthUnitValues.Dxa };

            tableCellProperties106.Append(tableCellWidth106);

            Paragraph paragraph216 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00116831", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00A565FD", ParagraphId = "0AAC1A7A", TextId = "77777777" };

            ParagraphProperties paragraphProperties213 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties213 = new ParagraphMarkRunProperties();
            RunFonts runFonts631 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color200 = new Color() { Val = "FF0000" };
            FontSize fontSize639 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript633 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties213.Append(runFonts631);
            paragraphMarkRunProperties213.Append(color200);
            paragraphMarkRunProperties213.Append(fontSize639);
            paragraphMarkRunProperties213.Append(fontSizeComplexScript633);

            paragraphProperties213.Append(paragraphMarkRunProperties213);

            Run run470 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties499 = new RunProperties();
            RunFonts runFonts632 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color201 = new Color() { Val = "FF0000" };
            FontSize fontSize640 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript634 = new FontSizeComplexScript() { Val = "22" };

            runProperties499.Append(runFonts632);
            runProperties499.Append(color201);
            runProperties499.Append(fontSize640);
            runProperties499.Append(fontSizeComplexScript634);
            Text text439 = new Text();
            text439.Text = "QUORUM";

            run470.Append(runProperties499);
            run470.Append(text439);

            paragraph216.Append(paragraphProperties213);
            paragraph216.Append(run470);

            tableCell106.Append(tableCellProperties106);
            tableCell106.Append(paragraph216);

            TableCell tableCell107 = new TableCell();

            TableCellProperties tableCellProperties107 = new TableCellProperties();
            TableCellWidth tableCellWidth107 = new TableCellWidth() { Width = "2505", Type = TableWidthUnitValues.Dxa };

            tableCellProperties107.Append(tableCellWidth107);

            Paragraph paragraph217 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00116831", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00A565FD", ParagraphId = "0AAC1A7B", TextId = "77777777" };

            ParagraphProperties paragraphProperties214 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties214 = new ParagraphMarkRunProperties();
            RunFonts runFonts633 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color202 = new Color() { Val = "FF0000" };
            FontSize fontSize641 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript635 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties214.Append(runFonts633);
            paragraphMarkRunProperties214.Append(color202);
            paragraphMarkRunProperties214.Append(fontSize641);
            paragraphMarkRunProperties214.Append(fontSizeComplexScript635);

            paragraphProperties214.Append(paragraphMarkRunProperties214);

            Run run471 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties500 = new RunProperties();
            RunFonts runFonts634 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color203 = new Color() { Val = "FF0000" };
            FontSize fontSize642 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript636 = new FontSizeComplexScript() { Val = "22" };

            runProperties500.Append(runFonts634);
            runProperties500.Append(color203);
            runProperties500.Append(fontSize642);
            runProperties500.Append(fontSizeComplexScript636);
            Text text440 = new Text();
            text440.Text = "Cluster_Quorum";

            run471.Append(runProperties500);
            run471.Append(text440);

            paragraph217.Append(paragraphProperties214);
            paragraph217.Append(run471);

            tableCell107.Append(tableCellProperties107);
            tableCell107.Append(paragraph217);

            TableCell tableCell108 = new TableCell();

            TableCellProperties tableCellProperties108 = new TableCellProperties();
            TableCellWidth tableCellWidth108 = new TableCellWidth() { Width = "1712", Type = TableWidthUnitValues.Dxa };

            tableCellProperties108.Append(tableCellWidth108);

            Paragraph paragraph218 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00116831", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00A565FD", ParagraphId = "0AAC1A7C", TextId = "77777777" };

            ParagraphProperties paragraphProperties215 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties215 = new ParagraphMarkRunProperties();
            RunFonts runFonts635 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color204 = new Color() { Val = "FF0000" };
            FontSize fontSize643 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript637 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties215.Append(runFonts635);
            paragraphMarkRunProperties215.Append(color204);
            paragraphMarkRunProperties215.Append(fontSize643);
            paragraphMarkRunProperties215.Append(fontSizeComplexScript637);

            paragraphProperties215.Append(paragraphMarkRunProperties215);

            Run run472 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties501 = new RunProperties();
            RunFonts runFonts636 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color205 = new Color() { Val = "FF0000" };
            FontSize fontSize644 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript638 = new FontSizeComplexScript() { Val = "22" };

            runProperties501.Append(runFonts636);
            runProperties501.Append(color205);
            runProperties501.Append(fontSize644);
            runProperties501.Append(fontSizeComplexScript638);
            Text text441 = new Text();
            text441.Text = "500mb";

            run472.Append(runProperties501);
            run472.Append(text441);

            paragraph218.Append(paragraphProperties215);
            paragraph218.Append(run472);

            tableCell108.Append(tableCellProperties108);
            tableCell108.Append(paragraph218);

            tableRow22.Append(tableCell105);
            tableRow22.Append(tableCell106);
            tableRow22.Append(tableCell107);
            tableRow22.Append(tableCell108);

            TableRow tableRow23 = new TableRow() { RsidTableRowMarkRevision = "00A565FD", RsidTableRowAddition = "00F12AD5", RsidTableRowProperties = "00F808A3", ParagraphId = "47C0104F", TextId = "77777777" };

            TableCell tableCell109 = new TableCell();

            TableCellProperties tableCellProperties109 = new TableCellProperties();
            TableCellWidth tableCellWidth109 = new TableCellWidth() { Width = "8028", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan1 = new GridSpan() { Val = 4 };

            tableCellProperties109.Append(tableCellWidth109);
            tableCellProperties109.Append(gridSpan1);

            Paragraph paragraph219 = new Paragraph() { RsidParagraphMarkRevision = "00747E89", RsidParagraphAddition = "00F12AD5", RsidParagraphProperties = "00055557", RsidRunAdditionDefault = "00F12AD5", ParagraphId = "2788D780", TextId = "51D8F606" };

            ParagraphProperties paragraphProperties216 = new ParagraphProperties();
            Justification justification76 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties216 = new ParagraphMarkRunProperties();
            RunFonts runFonts637 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color206 = new Color() { Val = "FF0000" };
            FontSize fontSize645 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript639 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties216.Append(runFonts637);
            paragraphMarkRunProperties216.Append(color206);
            paragraphMarkRunProperties216.Append(fontSize645);
            paragraphMarkRunProperties216.Append(fontSizeComplexScript639);

            paragraphProperties216.Append(justification76);
            paragraphProperties216.Append(paragraphMarkRunProperties216);

            Run run473 = new Run() { RsidRunProperties = "00F12AD5" };

            RunProperties runProperties502 = new RunProperties();
            RunFonts runFonts638 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold96 = new Bold();
            FontSize fontSize646 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript640 = new FontSizeComplexScript() { Val = "22" };

            runProperties502.Append(runFonts638);
            runProperties502.Append(bold96);
            runProperties502.Append(fontSize646);
            runProperties502.Append(fontSizeComplexScript640);
            Text text442 = new Text();
            text442.Text = "LINUX";

            run473.Append(runProperties502);
            run473.Append(text442);

            Run run474 = new Run() { RsidRunProperties = "00055557", RsidRunAddition = "00747E89" };

            RunProperties runProperties503 = new RunProperties();
            RunFonts runFonts639 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold97 = new Bold();
            Color color207 = new Color() { Val = "7030A0" };
            FontSize fontSize647 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript641 = new FontSizeComplexScript() { Val = "22" };

            runProperties503.Append(runFonts639);
            runProperties503.Append(bold97);
            runProperties503.Append(color207);
            runProperties503.Append(fontSize647);
            runProperties503.Append(fontSizeComplexScript641);
            Text text443 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text443.Text = " ";

            run474.Append(runProperties503);
            run474.Append(text443);

            Run run475 = new Run() { RsidRunProperties = "00055557", RsidRunAddition = "00747E89" };

            RunProperties runProperties504 = new RunProperties();
            RunFonts runFonts640 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color208 = new Color() { Val = "7030A0" };
            FontSize fontSize648 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript642 = new FontSizeComplexScript() { Val = "22" };

            runProperties504.Append(runFonts640);
            runProperties504.Append(color208);
            runProperties504.Append(fontSize648);
            runProperties504.Append(fontSizeComplexScript642);
            Text text444 = new Text();
            text444.Text = "(";

            run475.Append(runProperties504);
            run475.Append(text444);

            Run run476 = new Run() { RsidRunProperties = "00055557", RsidRunAddition = "00055557" };

            RunProperties runProperties505 = new RunProperties();
            RunFonts runFonts641 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color209 = new Color() { Val = "7030A0" };
            FontSize fontSize649 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript643 = new FontSizeComplexScript() { Val = "22" };

            runProperties505.Append(runFonts641);
            runProperties505.Append(color209);
            runProperties505.Append(fontSize649);
            runProperties505.Append(fontSizeComplexScript643);
            Text text445 = new Text();
            text445.Text = "logical volumes";

            run476.Append(runProperties505);
            run476.Append(text445);

            Run run477 = new Run() { RsidRunProperties = "00055557", RsidRunAddition = "00747E89" };

            RunProperties runProperties506 = new RunProperties();
            RunFonts runFonts642 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color210 = new Color() { Val = "7030A0" };
            FontSize fontSize650 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript644 = new FontSizeComplexScript() { Val = "22" };

            runProperties506.Append(runFonts642);
            runProperties506.Append(color210);
            runProperties506.Append(fontSize650);
            runProperties506.Append(fontSizeComplexScript644);
            Text text446 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text446.Text = " of ";

            run477.Append(runProperties506);
            run477.Append(text446);

            Run run478 = new Run() { RsidRunAddition = "003C2F92" };

            RunProperties runProperties507 = new RunProperties();
            RunFonts runFonts643 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color211 = new Color() { Val = "7030A0" };
            FontSize fontSize651 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript645 = new FontSizeComplexScript() { Val = "22" };

            runProperties507.Append(runFonts643);
            runProperties507.Append(color211);
            runProperties507.Append(fontSize651);
            runProperties507.Append(fontSizeComplexScript645);
            Text text447 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text447.Text = "vg_root - ";

            run478.Append(runProperties507);
            run478.Append(text447);

            Run run479 = new Run() { RsidRunProperties = "00055557", RsidRunAddition = "00747E89" };

            RunProperties runProperties508 = new RunProperties();
            RunFonts runFonts644 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color212 = new Color() { Val = "7030A0" };
            FontSize fontSize652 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript646 = new FontSizeComplexScript() { Val = "22" };

            runProperties508.Append(runFonts644);
            runProperties508.Append(color212);
            runProperties508.Append(fontSize652);
            runProperties508.Append(fontSizeComplexScript646);
            Text text448 = new Text();
            text448.Text = "60gb";

            run479.Append(runProperties508);
            run479.Append(text448);

            Run run480 = new Run() { RsidRunProperties = "00055557", RsidRunAddition = "00055557" };

            RunProperties runProperties509 = new RunProperties();
            RunFonts runFonts645 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color213 = new Color() { Val = "7030A0" };
            FontSize fontSize653 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript647 = new FontSizeComplexScript() { Val = "22" };

            runProperties509.Append(runFonts645);
            runProperties509.Append(color213);
            runProperties509.Append(fontSize653);
            runProperties509.Append(fontSizeComplexScript647);
            Text text449 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text449.Text = " drive";

            run480.Append(runProperties509);
            run480.Append(text449);

            Run run481 = new Run() { RsidRunAddition = "00614197" };

            RunProperties runProperties510 = new RunProperties();
            RunFonts runFonts646 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color214 = new Color() { Val = "7030A0" };
            FontSize fontSize654 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript648 = new FontSizeComplexScript() { Val = "22" };

            runProperties510.Append(runFonts646);
            runProperties510.Append(color214);
            runProperties510.Append(fontSize654);
            runProperties510.Append(fontSizeComplexScript648);
            Text text450 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text450.Text = " w/o Oracle or DB2";

            run481.Append(runProperties510);
            run481.Append(text450);

            Run run482 = new Run() { RsidRunProperties = "00055557", RsidRunAddition = "00055557" };

            RunProperties runProperties511 = new RunProperties();
            RunFonts runFonts647 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color215 = new Color() { Val = "7030A0" };
            FontSize fontSize655 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript649 = new FontSizeComplexScript() { Val = "22" };

            runProperties511.Append(runFonts647);
            runProperties511.Append(color215);
            runProperties511.Append(fontSize655);
            runProperties511.Append(fontSizeComplexScript649);
            Text text451 = new Text();
            text451.Text = ")";

            run482.Append(runProperties511);
            run482.Append(text451);

            paragraph219.Append(paragraphProperties216);
            paragraph219.Append(run473);
            paragraph219.Append(run474);
            paragraph219.Append(run475);
            paragraph219.Append(run476);
            paragraph219.Append(run477);
            paragraph219.Append(run478);
            paragraph219.Append(run479);
            paragraph219.Append(run480);
            paragraph219.Append(run481);
            paragraph219.Append(run482);

            tableCell109.Append(tableCellProperties109);
            tableCell109.Append(paragraph219);

            tableRow23.Append(tableCell109);

            TableRow tableRow24 = new TableRow() { RsidTableRowMarkRevision = "00A565FD", RsidTableRowAddition = "00F12AD5", RsidTableRowProperties = "00727765", ParagraphId = "1CD35D68", TextId = "77777777" };

            TableCell tableCell110 = new TableCell();

            TableCellProperties tableCellProperties110 = new TableCellProperties();
            TableCellWidth tableCellWidth110 = new TableCellWidth() { Width = "1455", Type = TableWidthUnitValues.Dxa };

            tableCellProperties110.Append(tableCellWidth110);

            Paragraph paragraph220 = new Paragraph() { RsidParagraphAddition = "00F12AD5", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00747E89", ParagraphId = "2ADC2E50", TextId = "27F7EF53" };

            ParagraphProperties paragraphProperties217 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties217 = new ParagraphMarkRunProperties();
            RunFonts runFonts648 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color216 = new Color() { Val = "FF0000" };
            FontSize fontSize656 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript650 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties217.Append(runFonts648);
            paragraphMarkRunProperties217.Append(color216);
            paragraphMarkRunProperties217.Append(fontSize656);
            paragraphMarkRunProperties217.Append(fontSizeComplexScript650);

            paragraphProperties217.Append(paragraphMarkRunProperties217);

            Run run483 = new Run();

            RunProperties runProperties512 = new RunProperties();
            RunFonts runFonts649 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color217 = new Color() { Val = "FF0000" };
            FontSize fontSize657 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript651 = new FontSizeComplexScript() { Val = "22" };

            runProperties512.Append(runFonts649);
            runProperties512.Append(color217);
            runProperties512.Append(fontSize657);
            runProperties512.Append(fontSizeComplexScript651);
            Text text452 = new Text();
            text452.Text = "/";

            run483.Append(runProperties512);
            run483.Append(text452);

            paragraph220.Append(paragraphProperties217);
            paragraph220.Append(run483);

            tableCell110.Append(tableCellProperties110);
            tableCell110.Append(paragraph220);

            TableCell tableCell111 = new TableCell();

            TableCellProperties tableCellProperties111 = new TableCellProperties();
            TableCellWidth tableCellWidth111 = new TableCellWidth() { Width = "2356", Type = TableWidthUnitValues.Dxa };

            tableCellProperties111.Append(tableCellWidth111);

            Paragraph paragraph221 = new Paragraph() { RsidParagraphAddition = "00F12AD5", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "003C2F92", ParagraphId = "5BE98482", TextId = "4BB39B5C" };

            ParagraphProperties paragraphProperties218 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties218 = new ParagraphMarkRunProperties();
            RunFonts runFonts650 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color218 = new Color() { Val = "FF0000" };
            FontSize fontSize658 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript652 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties218.Append(runFonts650);
            paragraphMarkRunProperties218.Append(color218);
            paragraphMarkRunProperties218.Append(fontSize658);
            paragraphMarkRunProperties218.Append(fontSizeComplexScript652);

            paragraphProperties218.Append(paragraphMarkRunProperties218);

            Run run484 = new Run();

            RunProperties runProperties513 = new RunProperties();
            RunFonts runFonts651 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color219 = new Color() { Val = "FF0000" };
            FontSize fontSize659 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript653 = new FontSizeComplexScript() { Val = "22" };

            runProperties513.Append(runFonts651);
            runProperties513.Append(color219);
            runProperties513.Append(fontSize659);
            runProperties513.Append(fontSizeComplexScript653);
            Text text453 = new Text();
            text453.Text = "lv_root";

            run484.Append(runProperties513);
            run484.Append(text453);

            paragraph221.Append(paragraphProperties218);
            paragraph221.Append(run484);

            tableCell111.Append(tableCellProperties111);
            tableCell111.Append(paragraph221);

            TableCell tableCell112 = new TableCell();

            TableCellProperties tableCellProperties112 = new TableCellProperties();
            TableCellWidth tableCellWidth112 = new TableCellWidth() { Width = "2505", Type = TableWidthUnitValues.Dxa };

            tableCellProperties112.Append(tableCellWidth112);

            Paragraph paragraph222 = new Paragraph() { RsidParagraphAddition = "00F12AD5", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00F12AD5", ParagraphId = "288D5A13", TextId = "77777777" };

            ParagraphProperties paragraphProperties219 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties219 = new ParagraphMarkRunProperties();
            RunFonts runFonts652 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color220 = new Color() { Val = "FF0000" };
            FontSize fontSize660 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript654 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties219.Append(runFonts652);
            paragraphMarkRunProperties219.Append(color220);
            paragraphMarkRunProperties219.Append(fontSize660);
            paragraphMarkRunProperties219.Append(fontSizeComplexScript654);

            paragraphProperties219.Append(paragraphMarkRunProperties219);

            paragraph222.Append(paragraphProperties219);

            tableCell112.Append(tableCellProperties112);
            tableCell112.Append(paragraph222);

            TableCell tableCell113 = new TableCell();

            TableCellProperties tableCellProperties113 = new TableCellProperties();
            TableCellWidth tableCellWidth113 = new TableCellWidth() { Width = "1712", Type = TableWidthUnitValues.Dxa };

            tableCellProperties113.Append(tableCellWidth113);

            Paragraph paragraph223 = new Paragraph() { RsidParagraphAddition = "00F12AD5", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00747E89", ParagraphId = "51C5657D", TextId = "6DA50563" };

            ParagraphProperties paragraphProperties220 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties220 = new ParagraphMarkRunProperties();
            RunFonts runFonts653 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color221 = new Color() { Val = "FF0000" };
            FontSize fontSize661 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript655 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties220.Append(runFonts653);
            paragraphMarkRunProperties220.Append(color221);
            paragraphMarkRunProperties220.Append(fontSize661);
            paragraphMarkRunProperties220.Append(fontSizeComplexScript655);

            paragraphProperties220.Append(paragraphMarkRunProperties220);

            Run run485 = new Run();

            RunProperties runProperties514 = new RunProperties();
            RunFonts runFonts654 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color222 = new Color() { Val = "FF0000" };
            FontSize fontSize662 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript656 = new FontSizeComplexScript() { Val = "22" };

            runProperties514.Append(runFonts654);
            runProperties514.Append(color222);
            runProperties514.Append(fontSize662);
            runProperties514.Append(fontSizeComplexScript656);
            Text text454 = new Text();
            text454.Text = "10gb";

            run485.Append(runProperties514);
            run485.Append(text454);

            paragraph223.Append(paragraphProperties220);
            paragraph223.Append(run485);

            tableCell113.Append(tableCellProperties113);
            tableCell113.Append(paragraph223);

            tableRow24.Append(tableCell110);
            tableRow24.Append(tableCell111);
            tableRow24.Append(tableCell112);
            tableRow24.Append(tableCell113);

            TableRow tableRow25 = new TableRow() { RsidTableRowMarkRevision = "00A565FD", RsidTableRowAddition = "00F12AD5", RsidTableRowProperties = "00727765", ParagraphId = "6634F149", TextId = "77777777" };

            TableCell tableCell114 = new TableCell();

            TableCellProperties tableCellProperties114 = new TableCellProperties();
            TableCellWidth tableCellWidth114 = new TableCellWidth() { Width = "1455", Type = TableWidthUnitValues.Dxa };

            tableCellProperties114.Append(tableCellWidth114);

            Paragraph paragraph224 = new Paragraph() { RsidParagraphAddition = "00F12AD5", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00747E89", ParagraphId = "74069420", TextId = "4CBD4948" };

            ParagraphProperties paragraphProperties221 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties221 = new ParagraphMarkRunProperties();
            RunFonts runFonts655 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color223 = new Color() { Val = "FF0000" };
            FontSize fontSize663 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript657 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties221.Append(runFonts655);
            paragraphMarkRunProperties221.Append(color223);
            paragraphMarkRunProperties221.Append(fontSize663);
            paragraphMarkRunProperties221.Append(fontSizeComplexScript657);

            paragraphProperties221.Append(paragraphMarkRunProperties221);

            Run run486 = new Run();

            RunProperties runProperties515 = new RunProperties();
            RunFonts runFonts656 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color224 = new Color() { Val = "FF0000" };
            FontSize fontSize664 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript658 = new FontSizeComplexScript() { Val = "22" };

            runProperties515.Append(runFonts656);
            runProperties515.Append(color224);
            runProperties515.Append(fontSize664);
            runProperties515.Append(fontSizeComplexScript658);
            Text text455 = new Text();
            text455.Text = "/usr";

            run486.Append(runProperties515);
            run486.Append(text455);

            paragraph224.Append(paragraphProperties221);
            paragraph224.Append(run486);

            tableCell114.Append(tableCellProperties114);
            tableCell114.Append(paragraph224);

            TableCell tableCell115 = new TableCell();

            TableCellProperties tableCellProperties115 = new TableCellProperties();
            TableCellWidth tableCellWidth115 = new TableCellWidth() { Width = "2356", Type = TableWidthUnitValues.Dxa };

            tableCellProperties115.Append(tableCellWidth115);

            Paragraph paragraph225 = new Paragraph() { RsidParagraphAddition = "00F12AD5", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "003C2F92", ParagraphId = "3B6D74A1", TextId = "16612667" };

            ParagraphProperties paragraphProperties222 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties222 = new ParagraphMarkRunProperties();
            RunFonts runFonts657 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color225 = new Color() { Val = "FF0000" };
            FontSize fontSize665 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript659 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties222.Append(runFonts657);
            paragraphMarkRunProperties222.Append(color225);
            paragraphMarkRunProperties222.Append(fontSize665);
            paragraphMarkRunProperties222.Append(fontSizeComplexScript659);

            paragraphProperties222.Append(paragraphMarkRunProperties222);

            Run run487 = new Run();

            RunProperties runProperties516 = new RunProperties();
            RunFonts runFonts658 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color226 = new Color() { Val = "FF0000" };
            FontSize fontSize666 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript660 = new FontSizeComplexScript() { Val = "22" };

            runProperties516.Append(runFonts658);
            runProperties516.Append(color226);
            runProperties516.Append(fontSize666);
            runProperties516.Append(fontSizeComplexScript660);
            Text text456 = new Text();
            text456.Text = "lv_usr";

            run487.Append(runProperties516);
            run487.Append(text456);

            paragraph225.Append(paragraphProperties222);
            paragraph225.Append(run487);

            tableCell115.Append(tableCellProperties115);
            tableCell115.Append(paragraph225);

            TableCell tableCell116 = new TableCell();

            TableCellProperties tableCellProperties116 = new TableCellProperties();
            TableCellWidth tableCellWidth116 = new TableCellWidth() { Width = "2505", Type = TableWidthUnitValues.Dxa };

            tableCellProperties116.Append(tableCellWidth116);

            Paragraph paragraph226 = new Paragraph() { RsidParagraphAddition = "00F12AD5", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00F12AD5", ParagraphId = "712018A1", TextId = "77777777" };

            ParagraphProperties paragraphProperties223 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties223 = new ParagraphMarkRunProperties();
            RunFonts runFonts659 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color227 = new Color() { Val = "FF0000" };
            FontSize fontSize667 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript661 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties223.Append(runFonts659);
            paragraphMarkRunProperties223.Append(color227);
            paragraphMarkRunProperties223.Append(fontSize667);
            paragraphMarkRunProperties223.Append(fontSizeComplexScript661);

            paragraphProperties223.Append(paragraphMarkRunProperties223);

            paragraph226.Append(paragraphProperties223);

            tableCell116.Append(tableCellProperties116);
            tableCell116.Append(paragraph226);

            TableCell tableCell117 = new TableCell();

            TableCellProperties tableCellProperties117 = new TableCellProperties();
            TableCellWidth tableCellWidth117 = new TableCellWidth() { Width = "1712", Type = TableWidthUnitValues.Dxa };

            tableCellProperties117.Append(tableCellWidth117);

            Paragraph paragraph227 = new Paragraph() { RsidParagraphAddition = "00F12AD5", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00747E89", ParagraphId = "775DD803", TextId = "14B12CF8" };

            ParagraphProperties paragraphProperties224 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties224 = new ParagraphMarkRunProperties();
            RunFonts runFonts660 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color228 = new Color() { Val = "FF0000" };
            FontSize fontSize668 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript662 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties224.Append(runFonts660);
            paragraphMarkRunProperties224.Append(color228);
            paragraphMarkRunProperties224.Append(fontSize668);
            paragraphMarkRunProperties224.Append(fontSizeComplexScript662);

            paragraphProperties224.Append(paragraphMarkRunProperties224);

            Run run488 = new Run();

            RunProperties runProperties517 = new RunProperties();
            RunFonts runFonts661 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color229 = new Color() { Val = "FF0000" };
            FontSize fontSize669 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript663 = new FontSizeComplexScript() { Val = "22" };

            runProperties517.Append(runFonts661);
            runProperties517.Append(color229);
            runProperties517.Append(fontSize669);
            runProperties517.Append(fontSizeComplexScript663);
            Text text457 = new Text();
            text457.Text = "5gb";

            run488.Append(runProperties517);
            run488.Append(text457);

            paragraph227.Append(paragraphProperties224);
            paragraph227.Append(run488);

            tableCell117.Append(tableCellProperties117);
            tableCell117.Append(paragraph227);

            tableRow25.Append(tableCell114);
            tableRow25.Append(tableCell115);
            tableRow25.Append(tableCell116);
            tableRow25.Append(tableCell117);

            TableRow tableRow26 = new TableRow() { RsidTableRowMarkRevision = "00A565FD", RsidTableRowAddition = "00747E89", RsidTableRowProperties = "00727765", ParagraphId = "730E202B", TextId = "77777777" };

            TableCell tableCell118 = new TableCell();

            TableCellProperties tableCellProperties118 = new TableCellProperties();
            TableCellWidth tableCellWidth118 = new TableCellWidth() { Width = "1455", Type = TableWidthUnitValues.Dxa };

            tableCellProperties118.Append(tableCellWidth118);

            Paragraph paragraph228 = new Paragraph() { RsidParagraphAddition = "00747E89", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00747E89", ParagraphId = "2EE4BAB8", TextId = "6C16E974" };

            ParagraphProperties paragraphProperties225 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties225 = new ParagraphMarkRunProperties();
            RunFonts runFonts662 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color230 = new Color() { Val = "FF0000" };
            FontSize fontSize670 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript664 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties225.Append(runFonts662);
            paragraphMarkRunProperties225.Append(color230);
            paragraphMarkRunProperties225.Append(fontSize670);
            paragraphMarkRunProperties225.Append(fontSizeComplexScript664);

            paragraphProperties225.Append(paragraphMarkRunProperties225);

            Run run489 = new Run();

            RunProperties runProperties518 = new RunProperties();
            RunFonts runFonts663 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color231 = new Color() { Val = "FF0000" };
            FontSize fontSize671 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript665 = new FontSizeComplexScript() { Val = "22" };

            runProperties518.Append(runFonts663);
            runProperties518.Append(color231);
            runProperties518.Append(fontSize671);
            runProperties518.Append(fontSizeComplexScript665);
            Text text458 = new Text();
            text458.Text = "/var";

            run489.Append(runProperties518);
            run489.Append(text458);

            paragraph228.Append(paragraphProperties225);
            paragraph228.Append(run489);

            tableCell118.Append(tableCellProperties118);
            tableCell118.Append(paragraph228);

            TableCell tableCell119 = new TableCell();

            TableCellProperties tableCellProperties119 = new TableCellProperties();
            TableCellWidth tableCellWidth119 = new TableCellWidth() { Width = "2356", Type = TableWidthUnitValues.Dxa };

            tableCellProperties119.Append(tableCellWidth119);

            Paragraph paragraph229 = new Paragraph() { RsidParagraphAddition = "00747E89", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "003C2F92", ParagraphId = "17DBF3F9", TextId = "48915E4D" };

            ParagraphProperties paragraphProperties226 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties226 = new ParagraphMarkRunProperties();
            RunFonts runFonts664 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color232 = new Color() { Val = "FF0000" };
            FontSize fontSize672 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript666 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties226.Append(runFonts664);
            paragraphMarkRunProperties226.Append(color232);
            paragraphMarkRunProperties226.Append(fontSize672);
            paragraphMarkRunProperties226.Append(fontSizeComplexScript666);

            paragraphProperties226.Append(paragraphMarkRunProperties226);

            Run run490 = new Run();

            RunProperties runProperties519 = new RunProperties();
            RunFonts runFonts665 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color233 = new Color() { Val = "FF0000" };
            FontSize fontSize673 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript667 = new FontSizeComplexScript() { Val = "22" };

            runProperties519.Append(runFonts665);
            runProperties519.Append(color233);
            runProperties519.Append(fontSize673);
            runProperties519.Append(fontSizeComplexScript667);
            Text text459 = new Text();
            text459.Text = "lv_var";

            run490.Append(runProperties519);
            run490.Append(text459);

            paragraph229.Append(paragraphProperties226);
            paragraph229.Append(run490);

            tableCell119.Append(tableCellProperties119);
            tableCell119.Append(paragraph229);

            TableCell tableCell120 = new TableCell();

            TableCellProperties tableCellProperties120 = new TableCellProperties();
            TableCellWidth tableCellWidth120 = new TableCellWidth() { Width = "2505", Type = TableWidthUnitValues.Dxa };

            tableCellProperties120.Append(tableCellWidth120);

            Paragraph paragraph230 = new Paragraph() { RsidParagraphAddition = "00747E89", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00747E89", ParagraphId = "6C2B43BD", TextId = "77777777" };

            ParagraphProperties paragraphProperties227 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties227 = new ParagraphMarkRunProperties();
            RunFonts runFonts666 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color234 = new Color() { Val = "FF0000" };
            FontSize fontSize674 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript668 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties227.Append(runFonts666);
            paragraphMarkRunProperties227.Append(color234);
            paragraphMarkRunProperties227.Append(fontSize674);
            paragraphMarkRunProperties227.Append(fontSizeComplexScript668);

            paragraphProperties227.Append(paragraphMarkRunProperties227);

            paragraph230.Append(paragraphProperties227);

            tableCell120.Append(tableCellProperties120);
            tableCell120.Append(paragraph230);

            TableCell tableCell121 = new TableCell();

            TableCellProperties tableCellProperties121 = new TableCellProperties();
            TableCellWidth tableCellWidth121 = new TableCellWidth() { Width = "1712", Type = TableWidthUnitValues.Dxa };

            tableCellProperties121.Append(tableCellWidth121);

            Paragraph paragraph231 = new Paragraph() { RsidParagraphAddition = "00747E89", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00747E89", ParagraphId = "52D290E9", TextId = "4606EC4B" };

            ParagraphProperties paragraphProperties228 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties228 = new ParagraphMarkRunProperties();
            RunFonts runFonts667 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color235 = new Color() { Val = "FF0000" };
            FontSize fontSize675 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript669 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties228.Append(runFonts667);
            paragraphMarkRunProperties228.Append(color235);
            paragraphMarkRunProperties228.Append(fontSize675);
            paragraphMarkRunProperties228.Append(fontSizeComplexScript669);

            paragraphProperties228.Append(paragraphMarkRunProperties228);

            Run run491 = new Run();

            RunProperties runProperties520 = new RunProperties();
            RunFonts runFonts668 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color236 = new Color() { Val = "FF0000" };
            FontSize fontSize676 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript670 = new FontSizeComplexScript() { Val = "22" };

            runProperties520.Append(runFonts668);
            runProperties520.Append(color236);
            runProperties520.Append(fontSize676);
            runProperties520.Append(fontSizeComplexScript670);
            Text text460 = new Text();
            text460.Text = "5gb";

            run491.Append(runProperties520);
            run491.Append(text460);

            paragraph231.Append(paragraphProperties228);
            paragraph231.Append(run491);

            tableCell121.Append(tableCellProperties121);
            tableCell121.Append(paragraph231);

            tableRow26.Append(tableCell118);
            tableRow26.Append(tableCell119);
            tableRow26.Append(tableCell120);
            tableRow26.Append(tableCell121);

            TableRow tableRow27 = new TableRow() { RsidTableRowMarkRevision = "00A565FD", RsidTableRowAddition = "00747E89", RsidTableRowProperties = "00727765", ParagraphId = "33EAAB60", TextId = "77777777" };

            TableCell tableCell122 = new TableCell();

            TableCellProperties tableCellProperties122 = new TableCellProperties();
            TableCellWidth tableCellWidth122 = new TableCellWidth() { Width = "1455", Type = TableWidthUnitValues.Dxa };

            tableCellProperties122.Append(tableCellWidth122);

            Paragraph paragraph232 = new Paragraph() { RsidParagraphAddition = "00747E89", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00747E89", ParagraphId = "7FF5168A", TextId = "12A3DB7B" };

            ParagraphProperties paragraphProperties229 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties229 = new ParagraphMarkRunProperties();
            RunFonts runFonts669 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color237 = new Color() { Val = "FF0000" };
            FontSize fontSize677 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript671 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties229.Append(runFonts669);
            paragraphMarkRunProperties229.Append(color237);
            paragraphMarkRunProperties229.Append(fontSize677);
            paragraphMarkRunProperties229.Append(fontSizeComplexScript671);

            paragraphProperties229.Append(paragraphMarkRunProperties229);

            Run run492 = new Run();

            RunProperties runProperties521 = new RunProperties();
            RunFonts runFonts670 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color238 = new Color() { Val = "FF0000" };
            FontSize fontSize678 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript672 = new FontSizeComplexScript() { Val = "22" };

            runProperties521.Append(runFonts670);
            runProperties521.Append(color238);
            runProperties521.Append(fontSize678);
            runProperties521.Append(fontSizeComplexScript672);
            Text text461 = new Text();
            text461.Text = "/home";

            run492.Append(runProperties521);
            run492.Append(text461);

            paragraph232.Append(paragraphProperties229);
            paragraph232.Append(run492);

            tableCell122.Append(tableCellProperties122);
            tableCell122.Append(paragraph232);

            TableCell tableCell123 = new TableCell();

            TableCellProperties tableCellProperties123 = new TableCellProperties();
            TableCellWidth tableCellWidth123 = new TableCellWidth() { Width = "2356", Type = TableWidthUnitValues.Dxa };

            tableCellProperties123.Append(tableCellWidth123);

            Paragraph paragraph233 = new Paragraph() { RsidParagraphAddition = "00747E89", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "003C2F92", ParagraphId = "786EB553", TextId = "7FBBA84F" };

            ParagraphProperties paragraphProperties230 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties230 = new ParagraphMarkRunProperties();
            RunFonts runFonts671 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color239 = new Color() { Val = "FF0000" };
            FontSize fontSize679 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript673 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties230.Append(runFonts671);
            paragraphMarkRunProperties230.Append(color239);
            paragraphMarkRunProperties230.Append(fontSize679);
            paragraphMarkRunProperties230.Append(fontSizeComplexScript673);

            paragraphProperties230.Append(paragraphMarkRunProperties230);

            Run run493 = new Run();

            RunProperties runProperties522 = new RunProperties();
            RunFonts runFonts672 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color240 = new Color() { Val = "FF0000" };
            FontSize fontSize680 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript674 = new FontSizeComplexScript() { Val = "22" };

            runProperties522.Append(runFonts672);
            runProperties522.Append(color240);
            runProperties522.Append(fontSize680);
            runProperties522.Append(fontSizeComplexScript674);
            Text text462 = new Text();
            text462.Text = "lv_home";

            run493.Append(runProperties522);
            run493.Append(text462);

            paragraph233.Append(paragraphProperties230);
            paragraph233.Append(run493);

            tableCell123.Append(tableCellProperties123);
            tableCell123.Append(paragraph233);

            TableCell tableCell124 = new TableCell();

            TableCellProperties tableCellProperties124 = new TableCellProperties();
            TableCellWidth tableCellWidth124 = new TableCellWidth() { Width = "2505", Type = TableWidthUnitValues.Dxa };

            tableCellProperties124.Append(tableCellWidth124);

            Paragraph paragraph234 = new Paragraph() { RsidParagraphAddition = "00747E89", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00747E89", ParagraphId = "4A2F2178", TextId = "77777777" };

            ParagraphProperties paragraphProperties231 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties231 = new ParagraphMarkRunProperties();
            RunFonts runFonts673 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color241 = new Color() { Val = "FF0000" };
            FontSize fontSize681 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript675 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties231.Append(runFonts673);
            paragraphMarkRunProperties231.Append(color241);
            paragraphMarkRunProperties231.Append(fontSize681);
            paragraphMarkRunProperties231.Append(fontSizeComplexScript675);

            paragraphProperties231.Append(paragraphMarkRunProperties231);

            paragraph234.Append(paragraphProperties231);

            tableCell124.Append(tableCellProperties124);
            tableCell124.Append(paragraph234);

            TableCell tableCell125 = new TableCell();

            TableCellProperties tableCellProperties125 = new TableCellProperties();
            TableCellWidth tableCellWidth125 = new TableCellWidth() { Width = "1712", Type = TableWidthUnitValues.Dxa };

            tableCellProperties125.Append(tableCellWidth125);

            Paragraph paragraph235 = new Paragraph() { RsidParagraphAddition = "00747E89", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00747E89", ParagraphId = "0D23DD3A", TextId = "3327B62E" };

            ParagraphProperties paragraphProperties232 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties232 = new ParagraphMarkRunProperties();
            RunFonts runFonts674 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color242 = new Color() { Val = "FF0000" };
            FontSize fontSize682 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript676 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties232.Append(runFonts674);
            paragraphMarkRunProperties232.Append(color242);
            paragraphMarkRunProperties232.Append(fontSize682);
            paragraphMarkRunProperties232.Append(fontSizeComplexScript676);

            paragraphProperties232.Append(paragraphMarkRunProperties232);

            Run run494 = new Run();

            RunProperties runProperties523 = new RunProperties();
            RunFonts runFonts675 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color243 = new Color() { Val = "FF0000" };
            FontSize fontSize683 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript677 = new FontSizeComplexScript() { Val = "22" };

            runProperties523.Append(runFonts675);
            runProperties523.Append(color243);
            runProperties523.Append(fontSize683);
            runProperties523.Append(fontSizeComplexScript677);
            Text text463 = new Text();
            text463.Text = "5gb";

            run494.Append(runProperties523);
            run494.Append(text463);

            paragraph235.Append(paragraphProperties232);
            paragraph235.Append(run494);

            tableCell125.Append(tableCellProperties125);
            tableCell125.Append(paragraph235);

            tableRow27.Append(tableCell122);
            tableRow27.Append(tableCell123);
            tableRow27.Append(tableCell124);
            tableRow27.Append(tableCell125);

            TableRow tableRow28 = new TableRow() { RsidTableRowMarkRevision = "00A565FD", RsidTableRowAddition = "00747E89", RsidTableRowProperties = "00727765", ParagraphId = "38B9B18C", TextId = "77777777" };

            TableCell tableCell126 = new TableCell();

            TableCellProperties tableCellProperties126 = new TableCellProperties();
            TableCellWidth tableCellWidth126 = new TableCellWidth() { Width = "1455", Type = TableWidthUnitValues.Dxa };

            tableCellProperties126.Append(tableCellWidth126);

            Paragraph paragraph236 = new Paragraph() { RsidParagraphAddition = "00747E89", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00747E89", ParagraphId = "24D696B2", TextId = "731FF451" };

            ParagraphProperties paragraphProperties233 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties233 = new ParagraphMarkRunProperties();
            RunFonts runFonts676 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color244 = new Color() { Val = "FF0000" };
            FontSize fontSize684 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript678 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties233.Append(runFonts676);
            paragraphMarkRunProperties233.Append(color244);
            paragraphMarkRunProperties233.Append(fontSize684);
            paragraphMarkRunProperties233.Append(fontSizeComplexScript678);

            paragraphProperties233.Append(paragraphMarkRunProperties233);

            Run run495 = new Run();

            RunProperties runProperties524 = new RunProperties();
            RunFonts runFonts677 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color245 = new Color() { Val = "FF0000" };
            FontSize fontSize685 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript679 = new FontSizeComplexScript() { Val = "22" };

            runProperties524.Append(runFonts677);
            runProperties524.Append(color245);
            runProperties524.Append(fontSize685);
            runProperties524.Append(fontSizeComplexScript679);
            Text text464 = new Text();
            text464.Text = "/tmp";

            run495.Append(runProperties524);
            run495.Append(text464);

            paragraph236.Append(paragraphProperties233);
            paragraph236.Append(run495);

            tableCell126.Append(tableCellProperties126);
            tableCell126.Append(paragraph236);

            TableCell tableCell127 = new TableCell();

            TableCellProperties tableCellProperties127 = new TableCellProperties();
            TableCellWidth tableCellWidth127 = new TableCellWidth() { Width = "2356", Type = TableWidthUnitValues.Dxa };

            tableCellProperties127.Append(tableCellWidth127);

            Paragraph paragraph237 = new Paragraph() { RsidParagraphAddition = "00747E89", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "003C2F92", ParagraphId = "575FEF99", TextId = "508EB348" };

            ParagraphProperties paragraphProperties234 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties234 = new ParagraphMarkRunProperties();
            RunFonts runFonts678 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color246 = new Color() { Val = "FF0000" };
            FontSize fontSize686 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript680 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties234.Append(runFonts678);
            paragraphMarkRunProperties234.Append(color246);
            paragraphMarkRunProperties234.Append(fontSize686);
            paragraphMarkRunProperties234.Append(fontSizeComplexScript680);

            paragraphProperties234.Append(paragraphMarkRunProperties234);

            Run run496 = new Run();

            RunProperties runProperties525 = new RunProperties();
            RunFonts runFonts679 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color247 = new Color() { Val = "FF0000" };
            FontSize fontSize687 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript681 = new FontSizeComplexScript() { Val = "22" };

            runProperties525.Append(runFonts679);
            runProperties525.Append(color247);
            runProperties525.Append(fontSize687);
            runProperties525.Append(fontSizeComplexScript681);
            Text text465 = new Text();
            text465.Text = "lv_tmp";

            run496.Append(runProperties525);
            run496.Append(text465);

            paragraph237.Append(paragraphProperties234);
            paragraph237.Append(run496);

            tableCell127.Append(tableCellProperties127);
            tableCell127.Append(paragraph237);

            TableCell tableCell128 = new TableCell();

            TableCellProperties tableCellProperties128 = new TableCellProperties();
            TableCellWidth tableCellWidth128 = new TableCellWidth() { Width = "2505", Type = TableWidthUnitValues.Dxa };

            tableCellProperties128.Append(tableCellWidth128);

            Paragraph paragraph238 = new Paragraph() { RsidParagraphAddition = "00747E89", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00747E89", ParagraphId = "16779E9F", TextId = "77777777" };

            ParagraphProperties paragraphProperties235 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties235 = new ParagraphMarkRunProperties();
            RunFonts runFonts680 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color248 = new Color() { Val = "FF0000" };
            FontSize fontSize688 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript682 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties235.Append(runFonts680);
            paragraphMarkRunProperties235.Append(color248);
            paragraphMarkRunProperties235.Append(fontSize688);
            paragraphMarkRunProperties235.Append(fontSizeComplexScript682);

            paragraphProperties235.Append(paragraphMarkRunProperties235);

            paragraph238.Append(paragraphProperties235);

            tableCell128.Append(tableCellProperties128);
            tableCell128.Append(paragraph238);

            TableCell tableCell129 = new TableCell();

            TableCellProperties tableCellProperties129 = new TableCellProperties();
            TableCellWidth tableCellWidth129 = new TableCellWidth() { Width = "1712", Type = TableWidthUnitValues.Dxa };

            tableCellProperties129.Append(tableCellWidth129);

            Paragraph paragraph239 = new Paragraph() { RsidParagraphAddition = "00747E89", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00747E89", ParagraphId = "060CEBAB", TextId = "2BECBC51" };

            ParagraphProperties paragraphProperties236 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties236 = new ParagraphMarkRunProperties();
            RunFonts runFonts681 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color249 = new Color() { Val = "FF0000" };
            FontSize fontSize689 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript683 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties236.Append(runFonts681);
            paragraphMarkRunProperties236.Append(color249);
            paragraphMarkRunProperties236.Append(fontSize689);
            paragraphMarkRunProperties236.Append(fontSizeComplexScript683);

            paragraphProperties236.Append(paragraphMarkRunProperties236);

            Run run497 = new Run();

            RunProperties runProperties526 = new RunProperties();
            RunFonts runFonts682 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color250 = new Color() { Val = "FF0000" };
            FontSize fontSize690 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript684 = new FontSizeComplexScript() { Val = "22" };

            runProperties526.Append(runFonts682);
            runProperties526.Append(color250);
            runProperties526.Append(fontSize690);
            runProperties526.Append(fontSizeComplexScript684);
            Text text466 = new Text();
            text466.Text = "5gb";

            run497.Append(runProperties526);
            run497.Append(text466);

            paragraph239.Append(paragraphProperties236);
            paragraph239.Append(run497);

            tableCell129.Append(tableCellProperties129);
            tableCell129.Append(paragraph239);

            tableRow28.Append(tableCell126);
            tableRow28.Append(tableCell127);
            tableRow28.Append(tableCell128);
            tableRow28.Append(tableCell129);

            TableRow tableRow29 = new TableRow() { RsidTableRowMarkRevision = "00A565FD", RsidTableRowAddition = "00747E89", RsidTableRowProperties = "00727765", ParagraphId = "07D4FFF6", TextId = "77777777" };

            TableCell tableCell130 = new TableCell();

            TableCellProperties tableCellProperties130 = new TableCellProperties();
            TableCellWidth tableCellWidth130 = new TableCellWidth() { Width = "1455", Type = TableWidthUnitValues.Dxa };

            tableCellProperties130.Append(tableCellWidth130);

            Paragraph paragraph240 = new Paragraph() { RsidParagraphAddition = "00747E89", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00747E89", ParagraphId = "46DD2B10", TextId = "340130B0" };

            ParagraphProperties paragraphProperties237 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties237 = new ParagraphMarkRunProperties();
            RunFonts runFonts683 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color251 = new Color() { Val = "FF0000" };
            FontSize fontSize691 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript685 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties237.Append(runFonts683);
            paragraphMarkRunProperties237.Append(color251);
            paragraphMarkRunProperties237.Append(fontSize691);
            paragraphMarkRunProperties237.Append(fontSizeComplexScript685);

            paragraphProperties237.Append(paragraphMarkRunProperties237);

            Run run498 = new Run();

            RunProperties runProperties527 = new RunProperties();
            RunFonts runFonts684 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color252 = new Color() { Val = "FF0000" };
            FontSize fontSize692 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript686 = new FontSizeComplexScript() { Val = "22" };

            runProperties527.Append(runFonts684);
            runProperties527.Append(color252);
            runProperties527.Append(fontSize692);
            runProperties527.Append(fontSizeComplexScript686);
            Text text467 = new Text();
            text467.Text = "/opt";

            run498.Append(runProperties527);
            run498.Append(text467);

            paragraph240.Append(paragraphProperties237);
            paragraph240.Append(run498);

            tableCell130.Append(tableCellProperties130);
            tableCell130.Append(paragraph240);

            TableCell tableCell131 = new TableCell();

            TableCellProperties tableCellProperties131 = new TableCellProperties();
            TableCellWidth tableCellWidth131 = new TableCellWidth() { Width = "2356", Type = TableWidthUnitValues.Dxa };

            tableCellProperties131.Append(tableCellWidth131);

            Paragraph paragraph241 = new Paragraph() { RsidParagraphAddition = "00747E89", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "003C2F92", ParagraphId = "2DC9F189", TextId = "1DF5D5C0" };

            ParagraphProperties paragraphProperties238 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties238 = new ParagraphMarkRunProperties();
            RunFonts runFonts685 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color253 = new Color() { Val = "FF0000" };
            FontSize fontSize693 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript687 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties238.Append(runFonts685);
            paragraphMarkRunProperties238.Append(color253);
            paragraphMarkRunProperties238.Append(fontSize693);
            paragraphMarkRunProperties238.Append(fontSizeComplexScript687);

            paragraphProperties238.Append(paragraphMarkRunProperties238);

            Run run499 = new Run();

            RunProperties runProperties528 = new RunProperties();
            RunFonts runFonts686 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color254 = new Color() { Val = "FF0000" };
            FontSize fontSize694 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript688 = new FontSizeComplexScript() { Val = "22" };

            runProperties528.Append(runFonts686);
            runProperties528.Append(color254);
            runProperties528.Append(fontSize694);
            runProperties528.Append(fontSizeComplexScript688);
            Text text468 = new Text();
            text468.Text = "lv_opt";

            run499.Append(runProperties528);
            run499.Append(text468);

            paragraph241.Append(paragraphProperties238);
            paragraph241.Append(run499);

            tableCell131.Append(tableCellProperties131);
            tableCell131.Append(paragraph241);

            TableCell tableCell132 = new TableCell();

            TableCellProperties tableCellProperties132 = new TableCellProperties();
            TableCellWidth tableCellWidth132 = new TableCellWidth() { Width = "2505", Type = TableWidthUnitValues.Dxa };

            tableCellProperties132.Append(tableCellWidth132);

            Paragraph paragraph242 = new Paragraph() { RsidParagraphAddition = "00747E89", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00747E89", ParagraphId = "3743DDC0", TextId = "77777777" };

            ParagraphProperties paragraphProperties239 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties239 = new ParagraphMarkRunProperties();
            RunFonts runFonts687 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color255 = new Color() { Val = "FF0000" };
            FontSize fontSize695 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript689 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties239.Append(runFonts687);
            paragraphMarkRunProperties239.Append(color255);
            paragraphMarkRunProperties239.Append(fontSize695);
            paragraphMarkRunProperties239.Append(fontSizeComplexScript689);

            paragraphProperties239.Append(paragraphMarkRunProperties239);

            paragraph242.Append(paragraphProperties239);

            tableCell132.Append(tableCellProperties132);
            tableCell132.Append(paragraph242);

            TableCell tableCell133 = new TableCell();

            TableCellProperties tableCellProperties133 = new TableCellProperties();
            TableCellWidth tableCellWidth133 = new TableCellWidth() { Width = "1712", Type = TableWidthUnitValues.Dxa };

            tableCellProperties133.Append(tableCellWidth133);

            Paragraph paragraph243 = new Paragraph() { RsidParagraphAddition = "00747E89", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00747E89", ParagraphId = "419EE571", TextId = "2CB5B1CC" };

            ParagraphProperties paragraphProperties240 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties240 = new ParagraphMarkRunProperties();
            RunFonts runFonts688 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color256 = new Color() { Val = "FF0000" };
            FontSize fontSize696 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript690 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties240.Append(runFonts688);
            paragraphMarkRunProperties240.Append(color256);
            paragraphMarkRunProperties240.Append(fontSize696);
            paragraphMarkRunProperties240.Append(fontSizeComplexScript690);

            paragraphProperties240.Append(paragraphMarkRunProperties240);

            Run run500 = new Run();

            RunProperties runProperties529 = new RunProperties();
            RunFonts runFonts689 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color257 = new Color() { Val = "FF0000" };
            FontSize fontSize697 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript691 = new FontSizeComplexScript() { Val = "22" };

            runProperties529.Append(runFonts689);
            runProperties529.Append(color257);
            runProperties529.Append(fontSize697);
            runProperties529.Append(fontSizeComplexScript691);
            Text text469 = new Text();
            text469.Text = "5gb";

            run500.Append(runProperties529);
            run500.Append(text469);

            paragraph243.Append(paragraphProperties240);
            paragraph243.Append(run500);

            tableCell133.Append(tableCellProperties133);
            tableCell133.Append(paragraph243);

            tableRow29.Append(tableCell130);
            tableRow29.Append(tableCell131);
            tableRow29.Append(tableCell132);
            tableRow29.Append(tableCell133);

            TableRow tableRow30 = new TableRow() { RsidTableRowMarkRevision = "00A565FD", RsidTableRowAddition = "00747E89", RsidTableRowProperties = "00727765", ParagraphId = "2A5DFF82", TextId = "77777777" };

            TableCell tableCell134 = new TableCell();

            TableCellProperties tableCellProperties134 = new TableCellProperties();
            TableCellWidth tableCellWidth134 = new TableCellWidth() { Width = "1455", Type = TableWidthUnitValues.Dxa };

            tableCellProperties134.Append(tableCellWidth134);

            Paragraph paragraph244 = new Paragraph() { RsidParagraphAddition = "00747E89", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00747E89", ParagraphId = "116C4707", TextId = "51729B20" };

            ParagraphProperties paragraphProperties241 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties241 = new ParagraphMarkRunProperties();
            RunFonts runFonts690 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color258 = new Color() { Val = "FF0000" };
            FontSize fontSize698 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript692 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties241.Append(runFonts690);
            paragraphMarkRunProperties241.Append(color258);
            paragraphMarkRunProperties241.Append(fontSize698);
            paragraphMarkRunProperties241.Append(fontSizeComplexScript692);

            paragraphProperties241.Append(paragraphMarkRunProperties241);

            Run run501 = new Run();

            RunProperties runProperties530 = new RunProperties();
            RunFonts runFonts691 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color259 = new Color() { Val = "FF0000" };
            FontSize fontSize699 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript693 = new FontSizeComplexScript() { Val = "22" };

            runProperties530.Append(runFonts691);
            runProperties530.Append(color259);
            runProperties530.Append(fontSize699);
            runProperties530.Append(fontSizeComplexScript693);
            Text text470 = new Text();
            text470.Text = "/swap";

            run501.Append(runProperties530);
            run501.Append(text470);

            paragraph244.Append(paragraphProperties241);
            paragraph244.Append(run501);

            tableCell134.Append(tableCellProperties134);
            tableCell134.Append(paragraph244);

            TableCell tableCell135 = new TableCell();

            TableCellProperties tableCellProperties135 = new TableCellProperties();
            TableCellWidth tableCellWidth135 = new TableCellWidth() { Width = "2356", Type = TableWidthUnitValues.Dxa };

            tableCellProperties135.Append(tableCellWidth135);

            Paragraph paragraph245 = new Paragraph() { RsidParagraphAddition = "00747E89", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "003C2F92", ParagraphId = "01ED960A", TextId = "0FDA9AD3" };

            ParagraphProperties paragraphProperties242 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties242 = new ParagraphMarkRunProperties();
            RunFonts runFonts692 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color260 = new Color() { Val = "FF0000" };
            FontSize fontSize700 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript694 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties242.Append(runFonts692);
            paragraphMarkRunProperties242.Append(color260);
            paragraphMarkRunProperties242.Append(fontSize700);
            paragraphMarkRunProperties242.Append(fontSizeComplexScript694);

            paragraphProperties242.Append(paragraphMarkRunProperties242);

            Run run502 = new Run();

            RunProperties runProperties531 = new RunProperties();
            RunFonts runFonts693 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color261 = new Color() { Val = "FF0000" };
            FontSize fontSize701 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript695 = new FontSizeComplexScript() { Val = "22" };

            runProperties531.Append(runFonts693);
            runProperties531.Append(color261);
            runProperties531.Append(fontSize701);
            runProperties531.Append(fontSizeComplexScript695);
            Text text471 = new Text();
            text471.Text = "lv_swap";

            run502.Append(runProperties531);
            run502.Append(text471);

            paragraph245.Append(paragraphProperties242);
            paragraph245.Append(run502);

            tableCell135.Append(tableCellProperties135);
            tableCell135.Append(paragraph245);

            TableCell tableCell136 = new TableCell();

            TableCellProperties tableCellProperties136 = new TableCellProperties();
            TableCellWidth tableCellWidth136 = new TableCellWidth() { Width = "2505", Type = TableWidthUnitValues.Dxa };

            tableCellProperties136.Append(tableCellWidth136);

            Paragraph paragraph246 = new Paragraph() { RsidParagraphMarkRevision = "00614197", RsidParagraphAddition = "00747E89", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00614197", ParagraphId = "4BBF1157", TextId = "77777777" };

            ParagraphProperties paragraphProperties243 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties243 = new ParagraphMarkRunProperties();
            RunFonts runFonts694 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize702 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript696 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties243.Append(runFonts694);
            paragraphMarkRunProperties243.Append(fontSize702);
            paragraphMarkRunProperties243.Append(fontSizeComplexScript696);

            paragraphProperties243.Append(paragraphMarkRunProperties243);

            Run run503 = new Run() { RsidRunProperties = "00614197" };

            RunProperties runProperties532 = new RunProperties();
            RunFonts runFonts695 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize703 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript697 = new FontSizeComplexScript() { Val = "22" };

            runProperties532.Append(runFonts695);
            runProperties532.Append(fontSize703);
            runProperties532.Append(fontSizeComplexScript697);
            Text text472 = new Text();
            text472.Text = "8gb (max for VMs)";

            run503.Append(runProperties532);
            run503.Append(text472);

            paragraph246.Append(paragraphProperties243);
            paragraph246.Append(run503);

            Paragraph paragraph247 = new Paragraph() { RsidParagraphMarkRevision = "00614197", RsidParagraphAddition = "00614197", RsidParagraphProperties = "00614197", RsidRunAdditionDefault = "00614197", ParagraphId = "12A19D7B", TextId = "236DE5F3" };

            ParagraphProperties paragraphProperties244 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties244 = new ParagraphMarkRunProperties();
            RunFonts runFonts696 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize704 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript698 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties244.Append(runFonts696);
            paragraphMarkRunProperties244.Append(fontSize704);
            paragraphMarkRunProperties244.Append(fontSizeComplexScript698);

            paragraphProperties244.Append(paragraphMarkRunProperties244);

            Run run504 = new Run() { RsidRunProperties = "00614197" };

            RunProperties runProperties533 = new RunProperties();
            RunFonts runFonts697 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize705 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript699 = new FontSizeComplexScript() { Val = "22" };

            runProperties533.Append(runFonts697);
            runProperties533.Append(fontSize705);
            runProperties533.Append(fontSizeComplexScript699);
            Text text473 = new Text();
            text473.Text = "32gb (max for Physical)";

            run504.Append(runProperties533);
            run504.Append(text473);

            paragraph247.Append(paragraphProperties244);
            paragraph247.Append(run504);

            tableCell136.Append(tableCellProperties136);
            tableCell136.Append(paragraph246);
            tableCell136.Append(paragraph247);

            TableCell tableCell137 = new TableCell();

            TableCellProperties tableCellProperties137 = new TableCellProperties();
            TableCellWidth tableCellWidth137 = new TableCellWidth() { Width = "1712", Type = TableWidthUnitValues.Dxa };

            tableCellProperties137.Append(tableCellWidth137);

            Paragraph paragraph248 = new Paragraph() { RsidParagraphAddition = "00747E89", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00614197", ParagraphId = "5D2332BA", TextId = "4A1B62D5" };

            ParagraphProperties paragraphProperties245 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties245 = new ParagraphMarkRunProperties();
            RunFonts runFonts698 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color262 = new Color() { Val = "FF0000" };
            FontSize fontSize706 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript700 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties245.Append(runFonts698);
            paragraphMarkRunProperties245.Append(color262);
            paragraphMarkRunProperties245.Append(fontSize706);
            paragraphMarkRunProperties245.Append(fontSizeComplexScript700);

            paragraphProperties245.Append(paragraphMarkRunProperties245);

            Run run505 = new Run();

            RunProperties runProperties534 = new RunProperties();
            RunFonts runFonts699 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color263 = new Color() { Val = "FF0000" };
            FontSize fontSize707 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript701 = new FontSizeComplexScript() { Val = "22" };

            runProperties534.Append(runFonts699);
            runProperties534.Append(color263);
            runProperties534.Append(fontSize707);
            runProperties534.Append(fontSizeComplexScript701);
            Text text474 = new Text();
            text474.Text = "8gb";

            run505.Append(runProperties534);
            run505.Append(text474);

            paragraph248.Append(paragraphProperties245);
            paragraph248.Append(run505);

            tableCell137.Append(tableCellProperties137);
            tableCell137.Append(paragraph248);

            tableRow30.Append(tableCell134);
            tableRow30.Append(tableCell135);
            tableRow30.Append(tableCell136);
            tableRow30.Append(tableCell137);

            table5.Append(tableProperties5);
            table5.Append(tableGrid5);
            table5.Append(tableRow18);
            table5.Append(tableRow19);
            table5.Append(tableRow20);
            table5.Append(tableRow21);
            table5.Append(tableRow22);
            table5.Append(tableRow23);
            table5.Append(tableRow24);
            table5.Append(tableRow25);
            table5.Append(tableRow26);
            table5.Append(tableRow27);
            table5.Append(tableRow28);
            table5.Append(tableRow29);
            table5.Append(tableRow30);

            Paragraph paragraph249 = new Paragraph() { RsidParagraphMarkRevision = "00095617", RsidParagraphAddition = "00116831", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "004519DB", ParagraphId = "0AAC1A83", TextId = "1BB0322A" };

            ParagraphProperties paragraphProperties246 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties246 = new ParagraphMarkRunProperties();
            RunFonts runFonts700 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color264 = new Color() { Val = "FF0000" };
            FontSize fontSize708 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript702 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties246.Append(runFonts700);
            paragraphMarkRunProperties246.Append(color264);
            paragraphMarkRunProperties246.Append(fontSize708);
            paragraphMarkRunProperties246.Append(fontSizeComplexScript702);

            paragraphProperties246.Append(paragraphMarkRunProperties246);

            Run run506 = new Run();

            RunProperties runProperties535 = new RunProperties();
            RunFonts runFonts701 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color265 = new Color() { Val = "FF0000" };
            FontSize fontSize709 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript703 = new FontSizeComplexScript() { Val = "22" };

            runProperties535.Append(runFonts701);
            runProperties535.Append(color265);
            runProperties535.Append(fontSize709);
            runProperties535.Append(fontSizeComplexScript703);
            Text text475 = new Text();
            text475.Text = "SQL drives D, E, and F have a 10 GB minimum.  Also, i";

            run506.Append(runProperties535);
            run506.Append(text475);

            Run run507 = new Run() { RsidRunProperties = "00095617", RsidRunAddition = "00095617" };

            RunProperties runProperties536 = new RunProperties();
            RunFonts runFonts702 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color266 = new Color() { Val = "FF0000" };
            FontSize fontSize710 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript704 = new FontSizeComplexScript() { Val = "22" };

            runProperties536.Append(runFonts702);
            runProperties536.Append(color266);
            runProperties536.Append(fontSize710);
            runProperties536.Append(fontSizeComplexScript704);
            Text text476 = new Text();
            text476.Text = "f the server is NOT a VM, then the drive sizing must be rounded to the next 17";

            run507.Append(runProperties536);
            run507.Append(text476);

            Run run508 = new Run();

            RunProperties runProperties537 = new RunProperties();
            RunFonts runFonts703 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color267 = new Color() { Val = "FF0000" };
            FontSize fontSize711 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript705 = new FontSizeComplexScript() { Val = "22" };

            runProperties537.Append(runFonts703);
            runProperties537.Append(color267);
            runProperties537.Append(fontSize711);
            runProperties537.Append(fontSizeComplexScript705);
            Text text477 = new Text();
            text477.Text = "GB";

            run508.Append(runProperties537);
            run508.Append(text477);

            Run run509 = new Run() { RsidRunProperties = "00095617", RsidRunAddition = "00095617" };

            RunProperties runProperties538 = new RunProperties();
            RunFonts runFonts704 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color268 = new Color() { Val = "FF0000" };
            FontSize fontSize712 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript706 = new FontSizeComplexScript() { Val = "22" };

            runProperties538.Append(runFonts704);
            runProperties538.Append(color268);
            runProperties538.Append(fontSize712);
            runProperties538.Append(fontSizeComplexScript706);
            Text text478 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text478.Text = " increment for XIV";

            run509.Append(runProperties538);
            run509.Append(text478);

            paragraph249.Append(paragraphProperties246);
            paragraph249.Append(run506);
            paragraph249.Append(run507);
            paragraph249.Append(run508);
            paragraph249.Append(run509);

            Paragraph paragraph250 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00116831", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00116831", ParagraphId = "0AAC1A84", TextId = "77777777" };

            ParagraphProperties paragraphProperties247 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties247 = new ParagraphMarkRunProperties();
            RunFonts runFonts705 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize713 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript707 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties247.Append(runFonts705);
            paragraphMarkRunProperties247.Append(fontSize713);
            paragraphMarkRunProperties247.Append(fontSizeComplexScript707);

            paragraphProperties247.Append(paragraphMarkRunProperties247);

            Run run510 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties539 = new RunProperties();
            RunFonts runFonts706 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize714 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript708 = new FontSizeComplexScript() { Val = "22" };

            runProperties539.Append(runFonts706);
            runProperties539.Append(fontSize714);
            runProperties539.Append(fontSizeComplexScript708);
            Text text479 = new Text();
            text479.Text = "Backup";

            run510.Append(runProperties539);
            run510.Append(text479);

            Run run511 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00E74717" };

            RunProperties runProperties540 = new RunProperties();
            RunFonts runFonts707 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize715 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript709 = new FontSizeComplexScript() { Val = "22" };

            runProperties540.Append(runFonts707);
            runProperties540.Append(fontSize715);
            runProperties540.Append(fontSizeComplexScript709);
            Text text480 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text480.Text = " process";

            run511.Append(runProperties540);
            run511.Append(text480);

            Run run512 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties541 = new RunProperties();
            RunFonts runFonts708 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize716 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript710 = new FontSizeComplexScript() { Val = "22" };

            runProperties541.Append(runFonts708);
            runProperties541.Append(fontSize716);
            runProperties541.Append(fontSizeComplexScript710);
            Text text481 = new Text();
            text481.Text = ":";

            run512.Append(runProperties541);
            run512.Append(text481);

            Run run513 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00016F9B" };

            RunProperties runProperties542 = new RunProperties();
            RunFonts runFonts709 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize717 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript711 = new FontSizeComplexScript() { Val = "22" };

            runProperties542.Append(runFonts709);
            runProperties542.Append(fontSize717);
            runProperties542.Append(fontSizeComplexScript711);
            Text text482 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text482.Text = " Data Domain Backups";

            run513.Append(runProperties542);
            run513.Append(text482);

            paragraph250.Append(paragraphProperties247);
            paragraph250.Append(run510);
            paragraph250.Append(run511);
            paragraph250.Append(run512);
            paragraph250.Append(run513);

            Paragraph paragraph251 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00E74717", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00A563A2", ParagraphId = "0AAC1A85", TextId = "4EB339A2" };

            ParagraphProperties paragraphProperties248 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties248 = new ParagraphMarkRunProperties();
            RunFonts runFonts710 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize718 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript712 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties248.Append(runFonts710);
            paragraphMarkRunProperties248.Append(fontSize718);
            paragraphMarkRunProperties248.Append(fontSizeComplexScript712);

            paragraphProperties248.Append(paragraphMarkRunProperties248);

            SdtRun sdtRun37 = new SdtRun();

            SdtProperties sdtProperties37 = new SdtProperties();

            RunProperties runProperties543 = new RunProperties();
            RunFonts runFonts711 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize719 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript713 = new FontSizeComplexScript() { Val = "22" };

            runProperties543.Append(runFonts711);
            runProperties543.Append(fontSize719);
            runProperties543.Append(fontSizeComplexScript713);
            SdtId sdtId37 = new SdtId() { Val = -340703621 };

            W14.SdtContentCheckBox sdtContentCheckBox37 = new W14.SdtContentCheckBox();
            W14.Checked checked37 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState37 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState37 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox37.Append(checked37);
            sdtContentCheckBox37.Append(checkedState37);
            sdtContentCheckBox37.Append(uncheckedState37);

            sdtProperties37.Append(runProperties543);
            sdtProperties37.Append(sdtId37);
            sdtProperties37.Append(sdtContentCheckBox37);
            SdtEndCharProperties sdtEndCharProperties37 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun37 = new SdtContentRun();

            Run run514 = new Run() { RsidRunAddition = "00F12AD5" };

            RunProperties runProperties544 = new RunProperties();
            RunFonts runFonts712 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic" };
            FontSize fontSize720 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript714 = new FontSizeComplexScript() { Val = "22" };

            runProperties544.Append(runFonts712);
            runProperties544.Append(fontSize720);
            runProperties544.Append(fontSizeComplexScript714);
            Text text483 = new Text();
            text483.Text = "☐";

            run514.Append(runProperties544);
            run514.Append(text483);

            sdtContentRun37.Append(run514);

            sdtRun37.Append(sdtProperties37);
            sdtRun37.Append(sdtEndCharProperties37);
            sdtRun37.Append(sdtContentRun37);

            Run run515 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00E74717" };

            RunProperties runProperties545 = new RunProperties();
            RunFonts runFonts713 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize721 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript715 = new FontSizeComplexScript() { Val = "22" };

            runProperties545.Append(runFonts713);
            runProperties545.Append(fontSize721);
            runProperties545.Append(fontSizeComplexScript715);
            Text text484 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text484.Text = " Data Domain ";

            run515.Append(runProperties545);
            run515.Append(text484);

            Run run516 = new Run() { RsidRunAddition = "00F12AD5" };

            RunProperties runProperties546 = new RunProperties();
            RunFonts runFonts714 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize722 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript716 = new FontSizeComplexScript() { Val = "22" };

            runProperties546.Append(runFonts714);
            runProperties546.Append(fontSize722);
            runProperties546.Append(fontSizeComplexScript716);
            Text text485 = new Text();
            text485.Text = "B";

            run516.Append(runProperties546);
            run516.Append(text485);

            Run run517 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00E74717" };

            RunProperties runProperties547 = new RunProperties();
            RunFonts runFonts715 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize723 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript717 = new FontSizeComplexScript() { Val = "22" };

            runProperties547.Append(runFonts715);
            runProperties547.Append(fontSize723);
            runProperties547.Append(fontSizeComplexScript717);
            Text text486 = new Text();
            text486.Text = "ackup";

            run517.Append(runProperties547);
            run517.Append(text486);

            paragraph251.Append(paragraphProperties248);
            paragraph251.Append(sdtRun37);
            paragraph251.Append(run515);
            paragraph251.Append(run516);
            paragraph251.Append(run517);

            Paragraph paragraph252 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00E74717", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00A563A2", ParagraphId = "0AAC1A86", TextId = "0FAB458E" };

            ParagraphProperties paragraphProperties249 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties249 = new ParagraphMarkRunProperties();
            RunFonts runFonts716 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize724 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript718 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties249.Append(runFonts716);
            paragraphMarkRunProperties249.Append(fontSize724);
            paragraphMarkRunProperties249.Append(fontSizeComplexScript718);

            paragraphProperties249.Append(paragraphMarkRunProperties249);

            SdtRun sdtRun38 = new SdtRun();

            SdtProperties sdtProperties38 = new SdtProperties();

            RunProperties runProperties548 = new RunProperties();
            RunFonts runFonts717 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize725 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript719 = new FontSizeComplexScript() { Val = "22" };

            runProperties548.Append(runFonts717);
            runProperties548.Append(fontSize725);
            runProperties548.Append(fontSizeComplexScript719);
            SdtId sdtId38 = new SdtId() { Val = 263115192 };

            W14.SdtContentCheckBox sdtContentCheckBox38 = new W14.SdtContentCheckBox();
            W14.Checked checked38 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState38 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState38 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox38.Append(checked38);
            sdtContentCheckBox38.Append(checkedState38);
            sdtContentCheckBox38.Append(uncheckedState38);

            sdtProperties38.Append(runProperties548);
            sdtProperties38.Append(sdtId38);
            sdtProperties38.Append(sdtContentCheckBox38);
            SdtEndCharProperties sdtEndCharProperties38 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun38 = new SdtContentRun();

            Run run518 = new Run() { RsidRunAddition = "00F12AD5" };

            RunProperties runProperties549 = new RunProperties();
            RunFonts runFonts718 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic" };
            FontSize fontSize726 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript720 = new FontSizeComplexScript() { Val = "22" };

            runProperties549.Append(runFonts718);
            runProperties549.Append(fontSize726);
            runProperties549.Append(fontSizeComplexScript720);
            Text text487 = new Text();
            text487.Text = "☐";

            run518.Append(runProperties549);
            run518.Append(text487);

            sdtContentRun38.Append(run518);

            sdtRun38.Append(sdtProperties38);
            sdtRun38.Append(sdtEndCharProperties38);
            sdtRun38.Append(sdtContentRun38);

            Run run519 = new Run() { RsidRunAddition = "00F12AD5" };

            RunProperties runProperties550 = new RunProperties();
            RunFonts runFonts719 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize727 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript721 = new FontSizeComplexScript() { Val = "22" };

            runProperties550.Append(runFonts719);
            runProperties550.Append(fontSize727);
            runProperties550.Append(fontSizeComplexScript721);
            Text text488 = new Text();
            text488.Text = "Tivoli Storage Manager Point of Time Backup";

            run519.Append(runProperties550);
            run519.Append(text488);

            Run run520 = new Run() { RsidRunAddition = "00F12AD5" };

            RunProperties runProperties551 = new RunProperties();
            RunFonts runFonts720 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize728 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript722 = new FontSizeComplexScript() { Val = "22" };

            runProperties551.Append(runFonts720);
            runProperties551.Append(fontSize728);
            runProperties551.Append(fontSizeComplexScript722);
            TabChar tabChar36 = new TabChar();

            run520.Append(runProperties551);
            run520.Append(tabChar36);

            Run run521 = new Run() { RsidRunAddition = "00F12AD5" };

            RunProperties runProperties552 = new RunProperties();
            RunFonts runFonts721 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize729 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript723 = new FontSizeComplexScript() { Val = "22" };

            runProperties552.Append(runFonts721);
            runProperties552.Append(fontSize729);
            runProperties552.Append(fontSizeComplexScript723);
            TabChar tabChar37 = new TabChar();
            Text text489 = new Text();
            text489.Text = "TSM Server:";

            run521.Append(runProperties552);
            run521.Append(tabChar37);
            run521.Append(text489);

            paragraph252.Append(paragraphProperties249);
            paragraph252.Append(sdtRun38);
            paragraph252.Append(run519);
            paragraph252.Append(run520);
            paragraph252.Append(run521);

            Paragraph paragraph253 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00E74717", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00A563A2", ParagraphId = "0AAC1A87", TextId = "7197A2EC" };

            ParagraphProperties paragraphProperties250 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties250 = new ParagraphMarkRunProperties();
            RunFonts runFonts722 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize730 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript724 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties250.Append(runFonts722);
            paragraphMarkRunProperties250.Append(fontSize730);
            paragraphMarkRunProperties250.Append(fontSizeComplexScript724);

            paragraphProperties250.Append(paragraphMarkRunProperties250);

            SdtRun sdtRun39 = new SdtRun();

            SdtProperties sdtProperties39 = new SdtProperties();

            RunProperties runProperties553 = new RunProperties();
            RunFonts runFonts723 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize731 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript725 = new FontSizeComplexScript() { Val = "22" };

            runProperties553.Append(runFonts723);
            runProperties553.Append(fontSize731);
            runProperties553.Append(fontSizeComplexScript725);
            SdtId sdtId39 = new SdtId() { Val = -1272237582 };

            W14.SdtContentCheckBox sdtContentCheckBox39 = new W14.SdtContentCheckBox();
            W14.Checked checked39 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState39 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState39 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox39.Append(checked39);
            sdtContentCheckBox39.Append(checkedState39);
            sdtContentCheckBox39.Append(uncheckedState39);

            sdtProperties39.Append(runProperties553);
            sdtProperties39.Append(sdtId39);
            sdtProperties39.Append(sdtContentCheckBox39);
            SdtEndCharProperties sdtEndCharProperties39 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun39 = new SdtContentRun();

            Run run522 = new Run() { RsidRunAddition = "00F12AD5" };

            RunProperties runProperties554 = new RunProperties();
            RunFonts runFonts724 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic" };
            FontSize fontSize732 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript726 = new FontSizeComplexScript() { Val = "22" };

            runProperties554.Append(runFonts724);
            runProperties554.Append(fontSize732);
            runProperties554.Append(fontSizeComplexScript726);
            Text text490 = new Text();
            text490.Text = "☐";

            run522.Append(runProperties554);
            run522.Append(text490);

            sdtContentRun39.Append(run522);

            sdtRun39.Append(sdtProperties39);
            sdtRun39.Append(sdtEndCharProperties39);
            sdtRun39.Append(sdtContentRun39);

            Run run523 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00E74717" };

            RunProperties runProperties555 = new RunProperties();
            RunFonts runFonts725 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize733 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript727 = new FontSizeComplexScript() { Val = "22" };

            runProperties555.Append(runFonts725);
            runProperties555.Append(fontSize733);
            runProperties555.Append(fontSizeComplexScript727);
            Text text491 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text491.Text = " Transaction Log Data Domain Backup";

            run523.Append(runProperties555);
            run523.Append(text491);

            paragraph253.Append(paragraphProperties250);
            paragraph253.Append(sdtRun39);
            paragraph253.Append(run523);

            Paragraph paragraph254 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00E74717", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00E74717", ParagraphId = "0AAC1A88", TextId = "77777777" };

            ParagraphProperties paragraphProperties251 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties251 = new ParagraphMarkRunProperties();
            RunFonts runFonts726 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize734 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript728 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties251.Append(runFonts726);
            paragraphMarkRunProperties251.Append(fontSize734);
            paragraphMarkRunProperties251.Append(fontSizeComplexScript728);

            paragraphProperties251.Append(paragraphMarkRunProperties251);

            Run run524 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties556 = new RunProperties();
            RunFonts runFonts727 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize735 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript729 = new FontSizeComplexScript() { Val = "22" };

            runProperties556.Append(runFonts727);
            runProperties556.Append(fontSize735);
            runProperties556.Append(fontSizeComplexScript729);
            TabChar tabChar38 = new TabChar();
            Text text492 = new Text();
            text492.Text = "Frequency 1hr   4hr    6hr";

            run524.Append(runProperties556);
            run524.Append(tabChar38);
            run524.Append(text492);

            paragraph254.Append(paragraphProperties251);
            paragraph254.Append(run524);

            Paragraph paragraph255 = new Paragraph() { RsidParagraphAddition = "00116831", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00116831", ParagraphId = "0AAC1A89", TextId = "77777777" };

            ParagraphProperties paragraphProperties252 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties252 = new ParagraphMarkRunProperties();
            RunFonts runFonts728 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color269 = new Color() { Val = "FF0000" };
            FontSize fontSize736 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript730 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties252.Append(runFonts728);
            paragraphMarkRunProperties252.Append(color269);
            paragraphMarkRunProperties252.Append(fontSize736);
            paragraphMarkRunProperties252.Append(fontSizeComplexScript730);

            paragraphProperties252.Append(paragraphMarkRunProperties252);

            Run run525 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties557 = new RunProperties();
            RunFonts runFonts729 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold98 = new Bold();
            FontSize fontSize737 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript731 = new FontSizeComplexScript() { Val = "22" };

            runProperties557.Append(runFonts729);
            runProperties557.Append(bold98);
            runProperties557.Append(fontSize737);
            runProperties557.Append(fontSizeComplexScript731);
            Text text493 = new Text();
            text493.Text = "List any outside of standards configurations";

            run525.Append(runProperties557);
            run525.Append(text493);

            Run run526 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00F97B58" };

            RunProperties runProperties558 = new RunProperties();
            RunFonts runFonts730 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold99 = new Bold();
            FontSize fontSize738 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript732 = new FontSizeComplexScript() { Val = "22" };

            runProperties558.Append(runFonts730);
            runProperties558.Append(bold99);
            runProperties558.Append(fontSize738);
            runProperties558.Append(fontSizeComplexScript732);
            Text text494 = new Text();
            text494.Text = ":";

            run526.Append(runProperties558);
            run526.Append(text494);

            Run run527 = new Run() { RsidRunAddition = "00F97B58" };

            RunProperties runProperties559 = new RunProperties();
            RunFonts runFonts731 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold100 = new Bold();
            FontSize fontSize739 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript733 = new FontSizeComplexScript() { Val = "22" };

            runProperties559.Append(runFonts731);
            runProperties559.Append(bold100);
            runProperties559.Append(fontSize739);
            runProperties559.Append(fontSizeComplexScript733);
            Text text495 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text495.Text = " ";

            run527.Append(runProperties559);
            run527.Append(text495);

            Run run528 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00F97B58" };

            RunProperties runProperties560 = new RunProperties();
            RunFonts runFonts732 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color270 = new Color() { Val = "FF0000" };
            FontSize fontSize740 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript734 = new FontSizeComplexScript() { Val = "22" };

            runProperties560.Append(runFonts732);
            runProperties560.Append(color270);
            runProperties560.Append(fontSize740);
            runProperties560.Append(fontSizeComplexScript734);
            Text text496 = new Text();
            text496.Text = "xxxx";

            run528.Append(runProperties560);
            run528.Append(text496);

            paragraph255.Append(paragraphProperties252);
            paragraph255.Append(run525);
            paragraph255.Append(run526);
            paragraph255.Append(run527);
            paragraph255.Append(run528);

            Paragraph paragraph256 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "00F34C49", RsidRunAdditionDefault = "002B0580", ParagraphId = "0AAC1A8A", TextId = "0D3EF1D6" };

            ParagraphProperties paragraphProperties253 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId18 = new ParagraphStyleId() { Val = "Heading2" };

            ParagraphMarkRunProperties paragraphMarkRunProperties253 = new ParagraphMarkRunProperties();
            Underline underline68 = new Underline() { Val = UnderlineValues.Single };

            paragraphMarkRunProperties253.Append(underline68);

            paragraphProperties253.Append(paragraphStyleId18);
            paragraphProperties253.Append(paragraphMarkRunProperties253);

            Run run529 = new Run();

            RunProperties runProperties561 = new RunProperties();
            Underline underline69 = new Underline() { Val = UnderlineValues.Single };

            runProperties561.Append(underline69);
            Text text497 = new Text();
            text497.Text = "14";

            run529.Append(runProperties561);
            run529.Append(text497);

            Run run530 = new Run() { RsidRunAddition = "00E518DD" };

            RunProperties runProperties562 = new RunProperties();
            Underline underline70 = new Underline() { Val = UnderlineValues.Single };

            runProperties562.Append(underline70);
            Text text498 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text498.Text = ". ";

            run530.Append(runProperties562);
            run530.Append(text498);

            Run run531 = new Run() { RsidRunAddition = "00F34C49" };

            RunProperties runProperties563 = new RunProperties();
            Underline underline71 = new Underline() { Val = UnderlineValues.Single };

            runProperties563.Append(underline71);
            Text text499 = new Text();
            text499.Text = "C";

            run531.Append(runProperties563);
            run531.Append(text499);

            Run run532 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "00F34C49" };

            RunProperties runProperties564 = new RunProperties();
            Underline underline72 = new Underline() { Val = UnderlineValues.Single };

            runProperties564.Append(underline72);
            Text text500 = new Text();
            text500.Text = "luster Configurations";

            run532.Append(runProperties564);
            run532.Append(text500);

            Run run533 = new Run() { RsidRunProperties = "0057090B", RsidRunAddition = "0057090B" };

            RunProperties runProperties565 = new RunProperties();
            Color color271 = new Color() { Val = "FF0000" };
            Underline underline73 = new Underline() { Val = UnderlineValues.Single };

            runProperties565.Append(color271);
            runProperties565.Append(underline73);
            Text text501 = new Text();
            text501.Text = ": N/A";

            run533.Append(runProperties565);
            run533.Append(text501);

            paragraph256.Append(paragraphProperties253);
            paragraph256.Append(run529);
            paragraph256.Append(run530);
            paragraph256.Append(run531);
            paragraph256.Append(run532);
            paragraph256.Append(run533);

            Paragraph paragraph257 = new Paragraph() { RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "00F34C49", RsidRunAdditionDefault = "00A563A2", ParagraphId = "0AAC1A8B", TextId = "757AF706" };

            ParagraphProperties paragraphProperties254 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties254 = new ParagraphMarkRunProperties();
            RunFonts runFonts733 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize741 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript735 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties254.Append(runFonts733);
            paragraphMarkRunProperties254.Append(fontSize741);
            paragraphMarkRunProperties254.Append(fontSizeComplexScript735);

            paragraphProperties254.Append(paragraphMarkRunProperties254);

            SdtRun sdtRun40 = new SdtRun();

            SdtProperties sdtProperties40 = new SdtProperties();

            RunProperties runProperties566 = new RunProperties();
            RunFonts runFonts734 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize742 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript736 = new FontSizeComplexScript() { Val = "22" };

            runProperties566.Append(runFonts734);
            runProperties566.Append(fontSize742);
            runProperties566.Append(fontSizeComplexScript736);
            SdtId sdtId40 = new SdtId() { Val = -281193091 };

            W14.SdtContentCheckBox sdtContentCheckBox40 = new W14.SdtContentCheckBox();
            W14.Checked checked40 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState40 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState40 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox40.Append(checked40);
            sdtContentCheckBox40.Append(checkedState40);
            sdtContentCheckBox40.Append(uncheckedState40);

            sdtProperties40.Append(runProperties566);
            sdtProperties40.Append(sdtId40);
            sdtProperties40.Append(sdtContentCheckBox40);
            SdtEndCharProperties sdtEndCharProperties40 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun40 = new SdtContentRun();

            Run run534 = new Run() { RsidRunAddition = "00F12AD5" };

            RunProperties runProperties567 = new RunProperties();
            RunFonts runFonts735 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic" };
            FontSize fontSize743 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript737 = new FontSizeComplexScript() { Val = "22" };

            runProperties567.Append(runFonts735);
            runProperties567.Append(fontSize743);
            runProperties567.Append(fontSizeComplexScript737);
            Text text502 = new Text();
            text502.Text = "☐";

            run534.Append(runProperties567);
            run534.Append(text502);

            sdtContentRun40.Append(run534);

            sdtRun40.Append(sdtProperties40);
            sdtRun40.Append(sdtEndCharProperties40);
            sdtRun40.Append(sdtContentRun40);

            Run run535 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "00F34C49" };

            RunProperties runProperties568 = new RunProperties();
            RunFonts runFonts736 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize744 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript738 = new FontSizeComplexScript() { Val = "22" };

            runProperties568.Append(runFonts736);
            runProperties568.Append(fontSize744);
            runProperties568.Append(fontSizeComplexScript738);
            Text text503 = new Text();
            text503.Text = "Windows 2008 Cluster";

            run535.Append(runProperties568);
            run535.Append(text503);

            paragraph257.Append(paragraphProperties254);
            paragraph257.Append(sdtRun40);
            paragraph257.Append(run535);

            Paragraph paragraph258 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00697199", RsidParagraphProperties = "00697199", RsidRunAdditionDefault = "00A563A2", ParagraphId = "1327E4A5", TextId = "7FFE3622" };

            ParagraphProperties paragraphProperties255 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties255 = new ParagraphMarkRunProperties();
            RunFonts runFonts737 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize745 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript739 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties255.Append(runFonts737);
            paragraphMarkRunProperties255.Append(fontSize745);
            paragraphMarkRunProperties255.Append(fontSizeComplexScript739);

            paragraphProperties255.Append(paragraphMarkRunProperties255);

            SdtRun sdtRun41 = new SdtRun();

            SdtProperties sdtProperties41 = new SdtProperties();

            RunProperties runProperties569 = new RunProperties();
            RunFonts runFonts738 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize746 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript740 = new FontSizeComplexScript() { Val = "22" };

            runProperties569.Append(runFonts738);
            runProperties569.Append(fontSize746);
            runProperties569.Append(fontSizeComplexScript740);
            SdtId sdtId41 = new SdtId() { Val = 1916671392 };

            W14.SdtContentCheckBox sdtContentCheckBox41 = new W14.SdtContentCheckBox();
            W14.Checked checked41 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState41 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState41 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox41.Append(checked41);
            sdtContentCheckBox41.Append(checkedState41);
            sdtContentCheckBox41.Append(uncheckedState41);

            sdtProperties41.Append(runProperties569);
            sdtProperties41.Append(sdtId41);
            sdtProperties41.Append(sdtContentCheckBox41);
            SdtEndCharProperties sdtEndCharProperties41 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun41 = new SdtContentRun();

            Run run536 = new Run() { RsidRunAddition = "00F12AD5" };

            RunProperties runProperties570 = new RunProperties();
            RunFonts runFonts739 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic" };
            FontSize fontSize747 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript741 = new FontSizeComplexScript() { Val = "22" };

            runProperties570.Append(runFonts739);
            runProperties570.Append(fontSize747);
            runProperties570.Append(fontSizeComplexScript741);
            Text text504 = new Text();
            text504.Text = "☐";

            run536.Append(runProperties570);
            run536.Append(text504);

            sdtContentRun41.Append(run536);

            sdtRun41.Append(sdtProperties41);
            sdtRun41.Append(sdtEndCharProperties41);
            sdtRun41.Append(sdtContentRun41);

            Run run537 = new Run() { RsidRunAddition = "00697199" };

            RunProperties runProperties571 = new RunProperties();
            RunFonts runFonts740 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize748 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript742 = new FontSizeComplexScript() { Val = "22" };

            runProperties571.Append(runFonts740);
            runProperties571.Append(fontSize748);
            runProperties571.Append(fontSizeComplexScript742);
            Text text505 = new Text();
            text505.Text = "SQL Always-On Cluster";

            run537.Append(runProperties571);
            run537.Append(text505);

            paragraph258.Append(paragraphProperties255);
            paragraph258.Append(sdtRun41);
            paragraph258.Append(run537);

            Paragraph paragraph259 = new Paragraph() { RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "00F34C49", RsidRunAdditionDefault = "00A563A2", ParagraphId = "0AAC1A8C", TextId = "228C4762" };

            ParagraphProperties paragraphProperties256 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties256 = new ParagraphMarkRunProperties();
            RunFonts runFonts741 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize749 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript743 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties256.Append(runFonts741);
            paragraphMarkRunProperties256.Append(fontSize749);
            paragraphMarkRunProperties256.Append(fontSizeComplexScript743);

            paragraphProperties256.Append(paragraphMarkRunProperties256);

            SdtRun sdtRun42 = new SdtRun();

            SdtProperties sdtProperties42 = new SdtProperties();

            RunProperties runProperties572 = new RunProperties();
            RunFonts runFonts742 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize750 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript744 = new FontSizeComplexScript() { Val = "22" };

            runProperties572.Append(runFonts742);
            runProperties572.Append(fontSize750);
            runProperties572.Append(fontSizeComplexScript744);
            SdtId sdtId42 = new SdtId() { Val = 85887934 };

            W14.SdtContentCheckBox sdtContentCheckBox42 = new W14.SdtContentCheckBox();
            W14.Checked checked42 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState42 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState42 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox42.Append(checked42);
            sdtContentCheckBox42.Append(checkedState42);
            sdtContentCheckBox42.Append(uncheckedState42);

            sdtProperties42.Append(runProperties572);
            sdtProperties42.Append(sdtId42);
            sdtProperties42.Append(sdtContentCheckBox42);
            SdtEndCharProperties sdtEndCharProperties42 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun42 = new SdtContentRun();

            Run run538 = new Run() { RsidRunAddition = "00F12AD5" };

            RunProperties runProperties573 = new RunProperties();
            RunFonts runFonts743 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic" };
            FontSize fontSize751 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript745 = new FontSizeComplexScript() { Val = "22" };

            runProperties573.Append(runFonts743);
            runProperties573.Append(fontSize751);
            runProperties573.Append(fontSizeComplexScript745);
            Text text506 = new Text();
            text506.Text = "☐";

            run538.Append(runProperties573);
            run538.Append(text506);

            sdtContentRun42.Append(run538);

            sdtRun42.Append(sdtProperties42);
            sdtRun42.Append(sdtEndCharProperties42);
            sdtRun42.Append(sdtContentRun42);

            Run run539 = new Run() { RsidRunAddition = "00697199" };

            RunProperties runProperties574 = new RunProperties();
            RunFonts runFonts744 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize752 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript746 = new FontSizeComplexScript() { Val = "22" };

            runProperties574.Append(runFonts744);
            runProperties574.Append(fontSize752);
            runProperties574.Append(fontSizeComplexScript746);
            Text text507 = new Text();
            text507.Text = "Symantec Global Cluster";

            run539.Append(runProperties574);
            run539.Append(text507);

            paragraph259.Append(paragraphProperties256);
            paragraph259.Append(sdtRun42);
            paragraph259.Append(run539);

            Paragraph paragraph260 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "00F34C49", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1A8D", TextId = "248FCE74" };

            ParagraphProperties paragraphProperties257 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties257 = new ParagraphMarkRunProperties();
            RunFonts runFonts745 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize753 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript747 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties257.Append(runFonts745);
            paragraphMarkRunProperties257.Append(fontSize753);
            paragraphMarkRunProperties257.Append(fontSizeComplexScript747);

            paragraphProperties257.Append(paragraphMarkRunProperties257);

            Run run540 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties575 = new RunProperties();
            RunFonts runFonts746 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize754 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript748 = new FontSizeComplexScript() { Val = "22" };

            runProperties575.Append(runFonts746);
            runProperties575.Append(fontSize754);
            runProperties575.Append(fontSizeComplexScript748);
            Text text508 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text508.Text = "Cluster Name: ";

            run540.Append(runProperties575);
            run540.Append(text508);

            Run run541 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties576 = new RunProperties();
            RunFonts runFonts747 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color272 = new Color() { Val = "FF0000" };
            FontSize fontSize755 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript749 = new FontSizeComplexScript() { Val = "22" };

            runProperties576.Append(runFonts747);
            runProperties576.Append(color272);
            runProperties576.Append(fontSize755);
            runProperties576.Append(fontSizeComplexScript749);
            Text text509 = new Text();
            text509.Text = "BJCxxxx";

            run541.Append(runProperties576);
            run541.Append(text509);

            Run run542 = new Run();

            RunProperties runProperties577 = new RunProperties();
            RunFonts runFonts748 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color273 = new Color() { Val = "FF0000" };
            FontSize fontSize756 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript750 = new FontSizeComplexScript() { Val = "22" };

            runProperties577.Append(runFonts748);
            runProperties577.Append(color273);
            runProperties577.Append(fontSize756);
            runProperties577.Append(fontSizeComplexScript750);
            Text text510 = new Text();
            text510.Text = "CLS01";

            run542.Append(runProperties577);
            run542.Append(text510);

            paragraph260.Append(paragraphProperties257);
            paragraph260.Append(run540);
            paragraph260.Append(run541);
            paragraph260.Append(run542);

            Paragraph paragraph261 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "00F34C49", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1A8E", TextId = "77777777" };

            ParagraphProperties paragraphProperties258 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties258 = new ParagraphMarkRunProperties();
            RunFonts runFonts749 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize757 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript751 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties258.Append(runFonts749);
            paragraphMarkRunProperties258.Append(fontSize757);
            paragraphMarkRunProperties258.Append(fontSizeComplexScript751);

            paragraphProperties258.Append(paragraphMarkRunProperties258);

            Run run543 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties578 = new RunProperties();
            RunFonts runFonts750 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize758 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript752 = new FontSizeComplexScript() { Val = "22" };

            runProperties578.Append(runFonts750);
            runProperties578.Append(fontSize758);
            runProperties578.Append(fontSizeComplexScript752);
            Text text511 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text511.Text = "Cluster IP: ";

            run543.Append(runProperties578);
            run543.Append(text511);

            Run run544 = new Run();

            RunProperties runProperties579 = new RunProperties();
            RunFonts runFonts751 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize759 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript753 = new FontSizeComplexScript() { Val = "22" };

            runProperties579.Append(runFonts751);
            runProperties579.Append(fontSize759);
            runProperties579.Append(fontSizeComplexScript753);
            Text text512 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text512.Text = " ";

            run544.Append(runProperties579);
            run544.Append(text512);

            paragraph261.Append(paragraphProperties258);
            paragraph261.Append(run543);
            paragraph261.Append(run544);

            Paragraph paragraph262 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "00F34C49", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1A8F", TextId = "77777777" };

            ParagraphProperties paragraphProperties259 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties259 = new ParagraphMarkRunProperties();
            RunFonts runFonts752 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize760 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript754 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties259.Append(runFonts752);
            paragraphMarkRunProperties259.Append(fontSize760);
            paragraphMarkRunProperties259.Append(fontSizeComplexScript754);

            paragraphProperties259.Append(paragraphMarkRunProperties259);

            Run run545 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties580 = new RunProperties();
            RunFonts runFonts753 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize761 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript755 = new FontSizeComplexScript() { Val = "22" };

            runProperties580.Append(runFonts753);
            runProperties580.Append(fontSize761);
            runProperties580.Append(fontSizeComplexScript755);
            Text text513 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text513.Text = "Clustered Hosts: ";

            run545.Append(runProperties580);
            run545.Append(text513);

            Run run546 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties581 = new RunProperties();
            RunFonts runFonts754 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color274 = new Color() { Val = "FF0000" };
            FontSize fontSize762 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript756 = new FontSizeComplexScript() { Val = "22" };

            runProperties581.Append(runFonts754);
            runProperties581.Append(color274);
            runProperties581.Append(fontSize762);
            runProperties581.Append(fontSizeComplexScript756);
            Text text514 = new Text();
            text514.Text = "BJCxxxx";

            run546.Append(runProperties581);
            run546.Append(text514);

            Run run547 = new Run();

            RunProperties runProperties582 = new RunProperties();
            RunFonts runFonts755 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color275 = new Color() { Val = "FF0000" };
            FontSize fontSize763 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript757 = new FontSizeComplexScript() { Val = "22" };

            runProperties582.Append(runFonts755);
            runProperties582.Append(color275);
            runProperties582.Append(fontSize763);
            runProperties582.Append(fontSizeComplexScript757);
            Text text515 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text515.Text = "CN01 & ";

            run547.Append(runProperties582);
            run547.Append(text515);

            Run run548 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties583 = new RunProperties();
            RunFonts runFonts756 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color276 = new Color() { Val = "FF0000" };
            FontSize fontSize764 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript758 = new FontSizeComplexScript() { Val = "22" };

            runProperties583.Append(runFonts756);
            runProperties583.Append(color276);
            runProperties583.Append(fontSize764);
            runProperties583.Append(fontSizeComplexScript758);
            Text text516 = new Text();
            text516.Text = "BJCxxxx";

            run548.Append(runProperties583);
            run548.Append(text516);

            Run run549 = new Run();

            RunProperties runProperties584 = new RunProperties();
            RunFonts runFonts757 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color277 = new Color() { Val = "FF0000" };
            FontSize fontSize765 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript759 = new FontSizeComplexScript() { Val = "22" };

            runProperties584.Append(runFonts757);
            runProperties584.Append(color277);
            runProperties584.Append(fontSize765);
            runProperties584.Append(fontSizeComplexScript759);
            Text text517 = new Text();
            text517.Text = "CN02";

            run549.Append(runProperties584);
            run549.Append(text517);

            paragraph262.Append(paragraphProperties259);
            paragraph262.Append(run545);
            paragraph262.Append(run546);
            paragraph262.Append(run547);
            paragraph262.Append(run548);
            paragraph262.Append(run549);

            Paragraph paragraph263 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "00F34C49", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1A90", TextId = "77777777" };

            ParagraphProperties paragraphProperties260 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties260 = new ParagraphMarkRunProperties();
            RunFonts runFonts758 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize766 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript760 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties260.Append(runFonts758);
            paragraphMarkRunProperties260.Append(fontSize766);
            paragraphMarkRunProperties260.Append(fontSizeComplexScript760);

            paragraphProperties260.Append(paragraphMarkRunProperties260);

            Run run550 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties585 = new RunProperties();
            RunStyle runStyle1 = new RunStyle() { Val = "Strong" };

            runProperties585.Append(runStyle1);
            Text text518 = new Text();
            text518.Text = "Resources";

            run550.Append(runProperties585);
            run550.Append(text518);

            paragraph263.Append(paragraphProperties260);
            paragraph263.Append(run550);

            Paragraph paragraph264 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "00F34C49", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1A91", TextId = "77777777" };

            ParagraphProperties paragraphProperties261 = new ParagraphProperties();
            Indentation indentation22 = new Indentation() { FirstLine = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties261 = new ParagraphMarkRunProperties();
            RunFonts runFonts759 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize767 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript761 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties261.Append(runFonts759);
            paragraphMarkRunProperties261.Append(fontSize767);
            paragraphMarkRunProperties261.Append(fontSizeComplexScript761);

            paragraphProperties261.Append(indentation22);
            paragraphProperties261.Append(paragraphMarkRunProperties261);

            Run run551 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties586 = new RunProperties();
            RunFonts runFonts760 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize768 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript762 = new FontSizeComplexScript() { Val = "22" };

            runProperties586.Append(runFonts760);
            runProperties586.Append(fontSize768);
            runProperties586.Append(fontSizeComplexScript762);
            Text text519 = new Text();
            text519.Text = "Group Name:";

            run551.Append(runProperties586);
            run551.Append(text519);

            Run run552 = new Run() { RsidRunProperties = "00A565FD" };

            RunProperties runProperties587 = new RunProperties();
            RunFonts runFonts761 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color278 = new Color() { Val = "FF0000" };
            FontSize fontSize769 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript763 = new FontSizeComplexScript() { Val = "22" };

            runProperties587.Append(runFonts761);
            runProperties587.Append(color278);
            runProperties587.Append(fontSize769);
            runProperties587.Append(fontSizeComplexScript763);
            Text text520 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text520.Text = " ";

            run552.Append(runProperties587);
            run552.Append(text520);

            Run run553 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties588 = new RunProperties();
            RunFonts runFonts762 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color279 = new Color() { Val = "FF0000" };
            FontSize fontSize770 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript764 = new FontSizeComplexScript() { Val = "22" };

            runProperties588.Append(runFonts762);
            runProperties588.Append(color279);
            runProperties588.Append(fontSize770);
            runProperties588.Append(fontSizeComplexScript764);
            Text text521 = new Text();
            text521.Text = "BJCxxxxxxxx";

            run553.Append(runProperties588);
            run553.Append(text521);

            paragraph264.Append(paragraphProperties261);
            paragraph264.Append(run551);
            paragraph264.Append(run552);
            paragraph264.Append(run553);

            Table table6 = new Table();

            TableProperties tableProperties6 = new TableProperties();
            TableWidth tableWidth6 = new TableWidth() { Width = "5000", Type = TableWidthUnitValues.Pct };

            TableCellMarginDefault tableCellMarginDefault3 = new TableCellMarginDefault();
            TableCellLeftMargin tableCellLeftMargin3 = new TableCellLeftMargin() { Width = 10, Type = TableWidthValues.Dxa };
            TableCellRightMargin tableCellRightMargin3 = new TableCellRightMargin() { Width = 10, Type = TableWidthValues.Dxa };

            tableCellMarginDefault3.Append(tableCellLeftMargin3);
            tableCellMarginDefault3.Append(tableCellRightMargin3);
            TableLook tableLook6 = new TableLook() { Val = "0000" };

            tableProperties6.Append(tableWidth6);
            tableProperties6.Append(tableCellMarginDefault3);
            tableProperties6.Append(tableLook6);

            TableGrid tableGrid6 = new TableGrid();
            GridColumn gridColumn31 = new GridColumn() { Width = "2621" };
            GridColumn gridColumn32 = new GridColumn() { Width = "3403" };
            GridColumn gridColumn33 = new GridColumn() { Width = "3613" };
            GridColumn gridColumn34 = new GridColumn() { Width = "3313" };

            tableGrid6.Append(gridColumn31);
            tableGrid6.Append(gridColumn32);
            tableGrid6.Append(gridColumn33);
            tableGrid6.Append(gridColumn34);

            TableRow tableRow31 = new TableRow() { RsidTableRowMarkRevision = "00281D13", RsidTableRowAddition = "00F34C49", RsidTableRowProperties = "001A269D", ParagraphId = "0AAC1A96", TextId = "77777777" };

            TableRowProperties tableRowProperties18 = new TableRowProperties();
            TableRowHeight tableRowHeight18 = new TableRowHeight() { Val = (UInt32Value)1U };

            tableRowProperties18.Append(tableRowHeight18);

            TableCell tableCell138 = new TableCell();

            TableCellProperties tableCellProperties138 = new TableCellProperties();
            TableCellWidth tableCellWidth138 = new TableCellWidth() { Width = "1012", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders29 = new TableCellBorders();
            TopBorder topBorder33 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder32 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder32 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder32 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders29.Append(topBorder33);
            tableCellBorders29.Append(leftBorder32);
            tableCellBorders29.Append(bottomBorder32);
            tableCellBorders29.Append(rightBorder32);
            Shading shading29 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin13 = new TableCellMargin();
            LeftMargin leftMargin13 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin13 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin13.Append(leftMargin13);
            tableCellMargin13.Append(rightMargin13);

            tableCellProperties138.Append(tableCellWidth138);
            tableCellProperties138.Append(tableCellBorders29);
            tableCellProperties138.Append(shading29);
            tableCellProperties138.Append(tableCellMargin13);

            Paragraph paragraph265 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1A92", TextId = "77777777" };

            ParagraphProperties paragraphProperties262 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties262 = new ParagraphMarkRunProperties();
            RunFonts runFonts763 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold101 = new Bold();
            FontSize fontSize771 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript765 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties262.Append(runFonts763);
            paragraphMarkRunProperties262.Append(bold101);
            paragraphMarkRunProperties262.Append(fontSize771);
            paragraphMarkRunProperties262.Append(fontSizeComplexScript765);

            paragraphProperties262.Append(paragraphMarkRunProperties262);

            Run run554 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties589 = new RunProperties();
            RunFonts runFonts764 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold102 = new Bold();
            FontSize fontSize772 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript766 = new FontSizeComplexScript() { Val = "22" };

            runProperties589.Append(runFonts764);
            runProperties589.Append(bold102);
            runProperties589.Append(fontSize772);
            runProperties589.Append(fontSizeComplexScript766);
            Text text522 = new Text();
            text522.Text = "Type";

            run554.Append(runProperties589);
            run554.Append(text522);

            paragraph265.Append(paragraphProperties262);
            paragraph265.Append(run554);

            tableCell138.Append(tableCellProperties138);
            tableCell138.Append(paragraph265);

            TableCell tableCell139 = new TableCell();

            TableCellProperties tableCellProperties139 = new TableCellProperties();
            TableCellWidth tableCellWidth139 = new TableCellWidth() { Width = "1314", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders30 = new TableCellBorders();
            TopBorder topBorder34 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder33 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder33 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder33 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders30.Append(topBorder34);
            tableCellBorders30.Append(leftBorder33);
            tableCellBorders30.Append(bottomBorder33);
            tableCellBorders30.Append(rightBorder33);
            Shading shading30 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin14 = new TableCellMargin();
            LeftMargin leftMargin14 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin14 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin14.Append(leftMargin14);
            tableCellMargin14.Append(rightMargin14);

            tableCellProperties139.Append(tableCellWidth139);
            tableCellProperties139.Append(tableCellBorders30);
            tableCellProperties139.Append(shading30);
            tableCellProperties139.Append(tableCellMargin14);

            Paragraph paragraph266 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1A93", TextId = "77777777" };

            ParagraphProperties paragraphProperties263 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties263 = new ParagraphMarkRunProperties();
            RunFonts runFonts765 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold103 = new Bold();
            FontSize fontSize773 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript767 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties263.Append(runFonts765);
            paragraphMarkRunProperties263.Append(bold103);
            paragraphMarkRunProperties263.Append(fontSize773);
            paragraphMarkRunProperties263.Append(fontSizeComplexScript767);

            paragraphProperties263.Append(paragraphMarkRunProperties263);

            Run run555 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties590 = new RunProperties();
            RunFonts runFonts766 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold104 = new Bold();
            FontSize fontSize774 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript768 = new FontSizeComplexScript() { Val = "22" };

            runProperties590.Append(runFonts766);
            runProperties590.Append(bold104);
            runProperties590.Append(fontSize774);
            runProperties590.Append(fontSizeComplexScript768);
            Text text523 = new Text();
            text523.Text = "Name";

            run555.Append(runProperties590);
            run555.Append(text523);

            paragraph266.Append(paragraphProperties263);
            paragraph266.Append(run555);

            tableCell139.Append(tableCellProperties139);
            tableCell139.Append(paragraph266);

            TableCell tableCell140 = new TableCell();

            TableCellProperties tableCellProperties140 = new TableCellProperties();
            TableCellWidth tableCellWidth140 = new TableCellWidth() { Width = "1395", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders31 = new TableCellBorders();
            TopBorder topBorder35 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder34 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder34 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder34 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders31.Append(topBorder35);
            tableCellBorders31.Append(leftBorder34);
            tableCellBorders31.Append(bottomBorder34);
            tableCellBorders31.Append(rightBorder34);
            Shading shading31 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin15 = new TableCellMargin();
            LeftMargin leftMargin15 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin15 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin15.Append(leftMargin15);
            tableCellMargin15.Append(rightMargin15);

            tableCellProperties140.Append(tableCellWidth140);
            tableCellProperties140.Append(tableCellBorders31);
            tableCellProperties140.Append(shading31);
            tableCellProperties140.Append(tableCellMargin15);

            Paragraph paragraph267 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1A94", TextId = "77777777" };

            ParagraphProperties paragraphProperties264 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties264 = new ParagraphMarkRunProperties();
            RunFonts runFonts767 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold105 = new Bold();
            FontSize fontSize775 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript769 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties264.Append(runFonts767);
            paragraphMarkRunProperties264.Append(bold105);
            paragraphMarkRunProperties264.Append(fontSize775);
            paragraphMarkRunProperties264.Append(fontSizeComplexScript769);

            paragraphProperties264.Append(paragraphMarkRunProperties264);

            Run run556 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties591 = new RunProperties();
            RunFonts runFonts768 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold106 = new Bold();
            FontSize fontSize776 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript770 = new FontSizeComplexScript() { Val = "22" };

            runProperties591.Append(runFonts768);
            runProperties591.Append(bold106);
            runProperties591.Append(fontSize776);
            runProperties591.Append(fontSizeComplexScript770);
            Text text524 = new Text();
            text524.Text = "Config";

            run556.Append(runProperties591);
            run556.Append(text524);

            paragraph267.Append(paragraphProperties264);
            paragraph267.Append(run556);

            tableCell140.Append(tableCellProperties140);
            tableCell140.Append(paragraph267);

            TableCell tableCell141 = new TableCell();

            TableCellProperties tableCellProperties141 = new TableCellProperties();
            TableCellWidth tableCellWidth141 = new TableCellWidth() { Width = "1279", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders32 = new TableCellBorders();
            TopBorder topBorder36 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder35 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder35 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder35 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders32.Append(topBorder36);
            tableCellBorders32.Append(leftBorder35);
            tableCellBorders32.Append(bottomBorder35);
            tableCellBorders32.Append(rightBorder35);
            Shading shading32 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin16 = new TableCellMargin();
            LeftMargin leftMargin16 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin16 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin16.Append(leftMargin16);
            tableCellMargin16.Append(rightMargin16);

            tableCellProperties141.Append(tableCellWidth141);
            tableCellProperties141.Append(tableCellBorders32);
            tableCellProperties141.Append(shading32);
            tableCellProperties141.Append(tableCellMargin16);

            Paragraph paragraph268 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1A95", TextId = "77777777" };

            ParagraphProperties paragraphProperties265 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties265 = new ParagraphMarkRunProperties();
            RunFonts runFonts769 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold107 = new Bold();
            FontSize fontSize777 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript771 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties265.Append(runFonts769);
            paragraphMarkRunProperties265.Append(bold107);
            paragraphMarkRunProperties265.Append(fontSize777);
            paragraphMarkRunProperties265.Append(fontSizeComplexScript771);

            paragraphProperties265.Append(paragraphMarkRunProperties265);

            Run run557 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties592 = new RunProperties();
            RunFonts runFonts770 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold108 = new Bold();
            FontSize fontSize778 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript772 = new FontSizeComplexScript() { Val = "22" };

            runProperties592.Append(runFonts770);
            runProperties592.Append(bold108);
            runProperties592.Append(fontSize778);
            runProperties592.Append(fontSizeComplexScript772);
            Text text525 = new Text();
            text525.Text = "Notes";

            run557.Append(runProperties592);
            run557.Append(text525);

            paragraph268.Append(paragraphProperties265);
            paragraph268.Append(run557);

            tableCell141.Append(tableCellProperties141);
            tableCell141.Append(paragraph268);

            tableRow31.Append(tableRowProperties18);
            tableRow31.Append(tableCell138);
            tableRow31.Append(tableCell139);
            tableRow31.Append(tableCell140);
            tableRow31.Append(tableCell141);

            TableRow tableRow32 = new TableRow() { RsidTableRowMarkRevision = "00A565FD", RsidTableRowAddition = "00F34C49", RsidTableRowProperties = "001A269D", ParagraphId = "0AAC1A9B", TextId = "77777777" };

            TableRowProperties tableRowProperties19 = new TableRowProperties();
            TableRowHeight tableRowHeight19 = new TableRowHeight() { Val = (UInt32Value)1U };

            tableRowProperties19.Append(tableRowHeight19);

            TableCell tableCell142 = new TableCell();

            TableCellProperties tableCellProperties142 = new TableCellProperties();
            TableCellWidth tableCellWidth142 = new TableCellWidth() { Width = "1012", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders33 = new TableCellBorders();
            TopBorder topBorder37 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder36 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder36 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder36 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders33.Append(topBorder37);
            tableCellBorders33.Append(leftBorder36);
            tableCellBorders33.Append(bottomBorder36);
            tableCellBorders33.Append(rightBorder36);
            Shading shading33 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin17 = new TableCellMargin();
            LeftMargin leftMargin17 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin17 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin17.Append(leftMargin17);
            tableCellMargin17.Append(rightMargin17);

            tableCellProperties142.Append(tableCellWidth142);
            tableCellProperties142.Append(tableCellBorders33);
            tableCellProperties142.Append(shading33);
            tableCellProperties142.Append(tableCellMargin17);

            Paragraph paragraph269 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1A97", TextId = "77777777" };

            ParagraphProperties paragraphProperties266 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties266 = new ParagraphMarkRunProperties();
            RunFonts runFonts771 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color280 = new Color() { Val = "FF0000" };
            FontSize fontSize779 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript773 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties266.Append(runFonts771);
            paragraphMarkRunProperties266.Append(color280);
            paragraphMarkRunProperties266.Append(fontSize779);
            paragraphMarkRunProperties266.Append(fontSizeComplexScript773);

            paragraphProperties266.Append(paragraphMarkRunProperties266);

            Run run558 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties593 = new RunProperties();
            RunFonts runFonts772 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color281 = new Color() { Val = "FF0000" };
            FontSize fontSize780 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript774 = new FontSizeComplexScript() { Val = "22" };

            runProperties593.Append(runFonts772);
            runProperties593.Append(color281);
            runProperties593.Append(fontSize780);
            runProperties593.Append(fontSizeComplexScript774);
            Text text526 = new Text();
            text526.Text = "DTC";

            run558.Append(runProperties593);
            run558.Append(text526);

            paragraph269.Append(paragraphProperties266);
            paragraph269.Append(run558);

            tableCell142.Append(tableCellProperties142);
            tableCell142.Append(paragraph269);

            TableCell tableCell143 = new TableCell();

            TableCellProperties tableCellProperties143 = new TableCellProperties();
            TableCellWidth tableCellWidth143 = new TableCellWidth() { Width = "1314", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders34 = new TableCellBorders();
            TopBorder topBorder38 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder37 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder37 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder37 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders34.Append(topBorder38);
            tableCellBorders34.Append(leftBorder37);
            tableCellBorders34.Append(bottomBorder37);
            tableCellBorders34.Append(rightBorder37);
            Shading shading34 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin18 = new TableCellMargin();
            LeftMargin leftMargin18 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin18 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin18.Append(leftMargin18);
            tableCellMargin18.Append(rightMargin18);

            tableCellProperties143.Append(tableCellWidth143);
            tableCellProperties143.Append(tableCellBorders34);
            tableCellProperties143.Append(shading34);
            tableCellProperties143.Append(tableCellMargin18);

            Paragraph paragraph270 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1A98", TextId = "77777777" };

            ParagraphProperties paragraphProperties267 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties267 = new ParagraphMarkRunProperties();
            RunFonts runFonts773 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color282 = new Color() { Val = "FF0000" };
            FontSize fontSize781 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript775 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties267.Append(runFonts773);
            paragraphMarkRunProperties267.Append(color282);
            paragraphMarkRunProperties267.Append(fontSize781);
            paragraphMarkRunProperties267.Append(fontSizeComplexScript775);

            paragraphProperties267.Append(paragraphMarkRunProperties267);

            Run run559 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties594 = new RunProperties();
            RunFonts runFonts774 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color283 = new Color() { Val = "FF0000" };
            FontSize fontSize782 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript776 = new FontSizeComplexScript() { Val = "22" };

            runProperties594.Append(runFonts774);
            runProperties594.Append(color283);
            runProperties594.Append(fontSize782);
            runProperties594.Append(fontSizeComplexScript776);
            Text text527 = new Text();
            text527.Text = "BJCxxxxxxxx";

            run559.Append(runProperties594);
            run559.Append(text527);

            paragraph270.Append(paragraphProperties267);
            paragraph270.Append(run559);

            tableCell143.Append(tableCellProperties143);
            tableCell143.Append(paragraph270);

            TableCell tableCell144 = new TableCell();

            TableCellProperties tableCellProperties144 = new TableCellProperties();
            TableCellWidth tableCellWidth144 = new TableCellWidth() { Width = "1395", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders35 = new TableCellBorders();
            TopBorder topBorder39 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder38 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder38 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder38 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders35.Append(topBorder39);
            tableCellBorders35.Append(leftBorder38);
            tableCellBorders35.Append(bottomBorder38);
            tableCellBorders35.Append(rightBorder38);
            Shading shading35 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin19 = new TableCellMargin();
            LeftMargin leftMargin19 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin19 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin19.Append(leftMargin19);
            tableCellMargin19.Append(rightMargin19);

            tableCellProperties144.Append(tableCellWidth144);
            tableCellProperties144.Append(tableCellBorders35);
            tableCellProperties144.Append(shading35);
            tableCellProperties144.Append(tableCellMargin19);

            Paragraph paragraph271 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1A99", TextId = "77777777" };

            ParagraphProperties paragraphProperties268 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties268 = new ParagraphMarkRunProperties();
            RunFonts runFonts775 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color284 = new Color() { Val = "FF0000" };
            FontSize fontSize783 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript777 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties268.Append(runFonts775);
            paragraphMarkRunProperties268.Append(color284);
            paragraphMarkRunProperties268.Append(fontSize783);
            paragraphMarkRunProperties268.Append(fontSizeComplexScript777);

            paragraphProperties268.Append(paragraphMarkRunProperties268);

            Run run560 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties595 = new RunProperties();
            RunFonts runFonts776 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color285 = new Color() { Val = "FF0000" };
            FontSize fontSize784 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript778 = new FontSizeComplexScript() { Val = "22" };

            runProperties595.Append(runFonts776);
            runProperties595.Append(color285);
            runProperties595.Append(fontSize784);
            runProperties595.Append(fontSizeComplexScript778);
            Text text528 = new Text();
            text528.Text = "IP:TBD";

            run560.Append(runProperties595);
            run560.Append(text528);

            paragraph271.Append(paragraphProperties268);
            paragraph271.Append(run560);

            tableCell144.Append(tableCellProperties144);
            tableCell144.Append(paragraph271);

            TableCell tableCell145 = new TableCell();

            TableCellProperties tableCellProperties145 = new TableCellProperties();
            TableCellWidth tableCellWidth145 = new TableCellWidth() { Width = "1279", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders36 = new TableCellBorders();
            TopBorder topBorder40 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder39 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder39 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder39 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders36.Append(topBorder40);
            tableCellBorders36.Append(leftBorder39);
            tableCellBorders36.Append(bottomBorder39);
            tableCellBorders36.Append(rightBorder39);
            Shading shading36 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin20 = new TableCellMargin();
            LeftMargin leftMargin20 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin20 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin20.Append(leftMargin20);
            tableCellMargin20.Append(rightMargin20);

            tableCellProperties145.Append(tableCellWidth145);
            tableCellProperties145.Append(tableCellBorders36);
            tableCellProperties145.Append(shading36);
            tableCellProperties145.Append(tableCellMargin20);

            Paragraph paragraph272 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1A9A", TextId = "77777777" };

            ParagraphProperties paragraphProperties269 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties269 = new ParagraphMarkRunProperties();
            RunFonts runFonts777 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color286 = new Color() { Val = "FF0000" };
            FontSize fontSize785 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript779 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties269.Append(runFonts777);
            paragraphMarkRunProperties269.Append(color286);
            paragraphMarkRunProperties269.Append(fontSize785);
            paragraphMarkRunProperties269.Append(fontSizeComplexScript779);

            paragraphProperties269.Append(paragraphMarkRunProperties269);

            Run run561 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties596 = new RunProperties();
            RunFonts runFonts778 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color287 = new Color() { Val = "FF0000" };
            FontSize fontSize786 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript780 = new FontSizeComplexScript() { Val = "22" };

            runProperties596.Append(runFonts778);
            runProperties596.Append(color287);
            runProperties596.Append(fontSize786);
            runProperties596.Append(fontSizeComplexScript780);
            Text text529 = new Text();
            text529.Text = "Drive U:";

            run561.Append(runProperties596);
            run561.Append(text529);

            paragraph272.Append(paragraphProperties269);
            paragraph272.Append(run561);

            tableCell145.Append(tableCellProperties145);
            tableCell145.Append(paragraph272);

            tableRow32.Append(tableRowProperties19);
            tableRow32.Append(tableCell142);
            tableRow32.Append(tableCell143);
            tableRow32.Append(tableCell144);
            tableRow32.Append(tableCell145);

            TableRow tableRow33 = new TableRow() { RsidTableRowMarkRevision = "00A565FD", RsidTableRowAddition = "00F34C49", RsidTableRowProperties = "001A269D", ParagraphId = "0AAC1AA0", TextId = "77777777" };

            TableRowProperties tableRowProperties20 = new TableRowProperties();
            TableRowHeight tableRowHeight20 = new TableRowHeight() { Val = (UInt32Value)1U };

            tableRowProperties20.Append(tableRowHeight20);

            TableCell tableCell146 = new TableCell();

            TableCellProperties tableCellProperties146 = new TableCellProperties();
            TableCellWidth tableCellWidth146 = new TableCellWidth() { Width = "1012", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders37 = new TableCellBorders();
            TopBorder topBorder41 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder40 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder40 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder40 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders37.Append(topBorder41);
            tableCellBorders37.Append(leftBorder40);
            tableCellBorders37.Append(bottomBorder40);
            tableCellBorders37.Append(rightBorder40);
            Shading shading37 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin21 = new TableCellMargin();
            LeftMargin leftMargin21 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin21 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin21.Append(leftMargin21);
            tableCellMargin21.Append(rightMargin21);

            tableCellProperties146.Append(tableCellWidth146);
            tableCellProperties146.Append(tableCellBorders37);
            tableCellProperties146.Append(shading37);
            tableCellProperties146.Append(tableCellMargin21);

            Paragraph paragraph273 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1A9C", TextId = "77777777" };

            ParagraphProperties paragraphProperties270 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties270 = new ParagraphMarkRunProperties();
            RunFonts runFonts779 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color288 = new Color() { Val = "FF0000" };
            FontSize fontSize787 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript781 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties270.Append(runFonts779);
            paragraphMarkRunProperties270.Append(color288);
            paragraphMarkRunProperties270.Append(fontSize787);
            paragraphMarkRunProperties270.Append(fontSizeComplexScript781);

            paragraphProperties270.Append(paragraphMarkRunProperties270);

            Run run562 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties597 = new RunProperties();
            RunFonts runFonts780 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color289 = new Color() { Val = "FF0000" };
            FontSize fontSize788 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript782 = new FontSizeComplexScript() { Val = "22" };

            runProperties597.Append(runFonts780);
            runProperties597.Append(color289);
            runProperties597.Append(fontSize788);
            runProperties597.Append(fontSizeComplexScript782);
            Text text530 = new Text();
            text530.Text = "IP";

            run562.Append(runProperties597);
            run562.Append(text530);

            paragraph273.Append(paragraphProperties270);
            paragraph273.Append(run562);

            tableCell146.Append(tableCellProperties146);
            tableCell146.Append(paragraph273);

            TableCell tableCell147 = new TableCell();

            TableCellProperties tableCellProperties147 = new TableCellProperties();
            TableCellWidth tableCellWidth147 = new TableCellWidth() { Width = "1314", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders38 = new TableCellBorders();
            TopBorder topBorder42 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder41 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder41 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder41 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders38.Append(topBorder42);
            tableCellBorders38.Append(leftBorder41);
            tableCellBorders38.Append(bottomBorder41);
            tableCellBorders38.Append(rightBorder41);
            Shading shading38 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin22 = new TableCellMargin();
            LeftMargin leftMargin22 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin22 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin22.Append(leftMargin22);
            tableCellMargin22.Append(rightMargin22);

            tableCellProperties147.Append(tableCellWidth147);
            tableCellProperties147.Append(tableCellBorders38);
            tableCellProperties147.Append(shading38);
            tableCellProperties147.Append(tableCellMargin22);

            Paragraph paragraph274 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1A9D", TextId = "77777777" };

            ParagraphProperties paragraphProperties271 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties271 = new ParagraphMarkRunProperties();
            RunFonts runFonts781 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color290 = new Color() { Val = "FF0000" };
            FontSize fontSize789 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript783 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties271.Append(runFonts781);
            paragraphMarkRunProperties271.Append(color290);
            paragraphMarkRunProperties271.Append(fontSize789);
            paragraphMarkRunProperties271.Append(fontSizeComplexScript783);

            paragraphProperties271.Append(paragraphMarkRunProperties271);

            Run run563 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties598 = new RunProperties();
            RunFonts runFonts782 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color291 = new Color() { Val = "FF0000" };
            FontSize fontSize790 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript784 = new FontSizeComplexScript() { Val = "22" };

            runProperties598.Append(runFonts782);
            runProperties598.Append(color291);
            runProperties598.Append(fontSize790);
            runProperties598.Append(fontSizeComplexScript784);
            Text text531 = new Text();
            text531.Text = "BJCxxxxxxxx";

            run563.Append(runProperties598);
            run563.Append(text531);

            paragraph274.Append(paragraphProperties271);
            paragraph274.Append(run563);

            tableCell147.Append(tableCellProperties147);
            tableCell147.Append(paragraph274);

            TableCell tableCell148 = new TableCell();

            TableCellProperties tableCellProperties148 = new TableCellProperties();
            TableCellWidth tableCellWidth148 = new TableCellWidth() { Width = "1395", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders39 = new TableCellBorders();
            TopBorder topBorder43 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder42 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder42 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder42 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders39.Append(topBorder43);
            tableCellBorders39.Append(leftBorder42);
            tableCellBorders39.Append(bottomBorder42);
            tableCellBorders39.Append(rightBorder42);
            Shading shading39 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin23 = new TableCellMargin();
            LeftMargin leftMargin23 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin23 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin23.Append(leftMargin23);
            tableCellMargin23.Append(rightMargin23);

            tableCellProperties148.Append(tableCellWidth148);
            tableCellProperties148.Append(tableCellBorders39);
            tableCellProperties148.Append(shading39);
            tableCellProperties148.Append(tableCellMargin23);

            Paragraph paragraph275 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1A9E", TextId = "77777777" };

            ParagraphProperties paragraphProperties272 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties272 = new ParagraphMarkRunProperties();
            RunFonts runFonts783 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color292 = new Color() { Val = "FF0000" };
            FontSize fontSize791 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript785 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties272.Append(runFonts783);
            paragraphMarkRunProperties272.Append(color292);
            paragraphMarkRunProperties272.Append(fontSize791);
            paragraphMarkRunProperties272.Append(fontSizeComplexScript785);

            paragraphProperties272.Append(paragraphMarkRunProperties272);

            Run run564 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties599 = new RunProperties();
            RunFonts runFonts784 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color293 = new Color() { Val = "FF0000" };
            FontSize fontSize792 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript786 = new FontSizeComplexScript() { Val = "22" };

            runProperties599.Append(runFonts784);
            runProperties599.Append(color293);
            runProperties599.Append(fontSize792);
            runProperties599.Append(fontSizeComplexScript786);
            Text text532 = new Text();
            text532.Text = "IP:TBD";

            run564.Append(runProperties599);
            run564.Append(text532);

            paragraph275.Append(paragraphProperties272);
            paragraph275.Append(run564);

            tableCell148.Append(tableCellProperties148);
            tableCell148.Append(paragraph275);

            TableCell tableCell149 = new TableCell();

            TableCellProperties tableCellProperties149 = new TableCellProperties();
            TableCellWidth tableCellWidth149 = new TableCellWidth() { Width = "1279", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders40 = new TableCellBorders();
            TopBorder topBorder44 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder43 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder43 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder43 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders40.Append(topBorder44);
            tableCellBorders40.Append(leftBorder43);
            tableCellBorders40.Append(bottomBorder43);
            tableCellBorders40.Append(rightBorder43);
            Shading shading40 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin24 = new TableCellMargin();
            LeftMargin leftMargin24 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin24 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin24.Append(leftMargin24);
            tableCellMargin24.Append(rightMargin24);

            tableCellProperties149.Append(tableCellWidth149);
            tableCellProperties149.Append(tableCellBorders40);
            tableCellProperties149.Append(shading40);
            tableCellProperties149.Append(tableCellMargin24);

            Paragraph paragraph276 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1A9F", TextId = "77777777" };

            ParagraphProperties paragraphProperties273 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties273 = new ParagraphMarkRunProperties();
            RunFonts runFonts785 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color294 = new Color() { Val = "FF0000" };
            FontSize fontSize793 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript787 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties273.Append(runFonts785);
            paragraphMarkRunProperties273.Append(color294);
            paragraphMarkRunProperties273.Append(fontSize793);
            paragraphMarkRunProperties273.Append(fontSizeComplexScript787);

            paragraphProperties273.Append(paragraphMarkRunProperties273);

            paragraph276.Append(paragraphProperties273);

            tableCell149.Append(tableCellProperties149);
            tableCell149.Append(paragraph276);

            tableRow33.Append(tableRowProperties20);
            tableRow33.Append(tableCell146);
            tableRow33.Append(tableCell147);
            tableRow33.Append(tableCell148);
            tableRow33.Append(tableCell149);

            TableRow tableRow34 = new TableRow() { RsidTableRowMarkRevision = "00A565FD", RsidTableRowAddition = "00F34C49", RsidTableRowProperties = "001A269D", ParagraphId = "0AAC1AA5", TextId = "77777777" };

            TableRowProperties tableRowProperties21 = new TableRowProperties();
            TableRowHeight tableRowHeight21 = new TableRowHeight() { Val = (UInt32Value)1U };

            tableRowProperties21.Append(tableRowHeight21);

            TableCell tableCell150 = new TableCell();

            TableCellProperties tableCellProperties150 = new TableCellProperties();
            TableCellWidth tableCellWidth150 = new TableCellWidth() { Width = "1012", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders41 = new TableCellBorders();
            TopBorder topBorder45 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder44 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder44 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder44 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders41.Append(topBorder45);
            tableCellBorders41.Append(leftBorder44);
            tableCellBorders41.Append(bottomBorder44);
            tableCellBorders41.Append(rightBorder44);
            Shading shading41 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin25 = new TableCellMargin();
            LeftMargin leftMargin25 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin25 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin25.Append(leftMargin25);
            tableCellMargin25.Append(rightMargin25);

            tableCellProperties150.Append(tableCellWidth150);
            tableCellProperties150.Append(tableCellBorders41);
            tableCellProperties150.Append(shading41);
            tableCellProperties150.Append(tableCellMargin25);

            Paragraph paragraph277 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1AA1", TextId = "77777777" };

            ParagraphProperties paragraphProperties274 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties274 = new ParagraphMarkRunProperties();
            RunFonts runFonts786 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color295 = new Color() { Val = "FF0000" };
            FontSize fontSize794 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript788 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties274.Append(runFonts786);
            paragraphMarkRunProperties274.Append(color295);
            paragraphMarkRunProperties274.Append(fontSize794);
            paragraphMarkRunProperties274.Append(fontSizeComplexScript788);

            paragraphProperties274.Append(paragraphMarkRunProperties274);

            Run run565 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties600 = new RunProperties();
            RunFonts runFonts787 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color296 = new Color() { Val = "FF0000" };
            FontSize fontSize795 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript789 = new FontSizeComplexScript() { Val = "22" };

            runProperties600.Append(runFonts787);
            runProperties600.Append(color296);
            runProperties600.Append(fontSize795);
            runProperties600.Append(fontSizeComplexScript789);
            Text text533 = new Text();
            text533.Text = "File Share";

            run565.Append(runProperties600);
            run565.Append(text533);

            paragraph277.Append(paragraphProperties274);
            paragraph277.Append(run565);

            tableCell150.Append(tableCellProperties150);
            tableCell150.Append(paragraph277);

            TableCell tableCell151 = new TableCell();

            TableCellProperties tableCellProperties151 = new TableCellProperties();
            TableCellWidth tableCellWidth151 = new TableCellWidth() { Width = "1314", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders42 = new TableCellBorders();
            TopBorder topBorder46 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder45 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder45 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder45 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders42.Append(topBorder46);
            tableCellBorders42.Append(leftBorder45);
            tableCellBorders42.Append(bottomBorder45);
            tableCellBorders42.Append(rightBorder45);
            Shading shading42 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin26 = new TableCellMargin();
            LeftMargin leftMargin26 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin26 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin26.Append(leftMargin26);
            tableCellMargin26.Append(rightMargin26);

            tableCellProperties151.Append(tableCellWidth151);
            tableCellProperties151.Append(tableCellBorders42);
            tableCellProperties151.Append(shading42);
            tableCellProperties151.Append(tableCellMargin26);

            Paragraph paragraph278 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1AA2", TextId = "77777777" };

            ParagraphProperties paragraphProperties275 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties275 = new ParagraphMarkRunProperties();
            RunFonts runFonts788 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color297 = new Color() { Val = "FF0000" };
            FontSize fontSize796 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript790 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties275.Append(runFonts788);
            paragraphMarkRunProperties275.Append(color297);
            paragraphMarkRunProperties275.Append(fontSize796);
            paragraphMarkRunProperties275.Append(fontSizeComplexScript790);

            paragraphProperties275.Append(paragraphMarkRunProperties275);

            Run run566 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties601 = new RunProperties();
            RunFonts runFonts789 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color298 = new Color() { Val = "FF0000" };
            FontSize fontSize797 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript791 = new FontSizeComplexScript() { Val = "22" };

            runProperties601.Append(runFonts789);
            runProperties601.Append(color298);
            runProperties601.Append(fontSize797);
            runProperties601.Append(fontSizeComplexScript791);
            Text text534 = new Text();
            text534.Text = "ISCIMAGES";

            run566.Append(runProperties601);
            run566.Append(text534);

            paragraph278.Append(paragraphProperties275);
            paragraph278.Append(run566);

            tableCell151.Append(tableCellProperties151);
            tableCell151.Append(paragraph278);

            TableCell tableCell152 = new TableCell();

            TableCellProperties tableCellProperties152 = new TableCellProperties();
            TableCellWidth tableCellWidth152 = new TableCellWidth() { Width = "1395", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders43 = new TableCellBorders();
            TopBorder topBorder47 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder46 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder46 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder46 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders43.Append(topBorder47);
            tableCellBorders43.Append(leftBorder46);
            tableCellBorders43.Append(bottomBorder46);
            tableCellBorders43.Append(rightBorder46);
            Shading shading43 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin27 = new TableCellMargin();
            LeftMargin leftMargin27 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin27 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin27.Append(leftMargin27);
            tableCellMargin27.Append(rightMargin27);

            tableCellProperties152.Append(tableCellWidth152);
            tableCellProperties152.Append(tableCellBorders43);
            tableCellProperties152.Append(shading43);
            tableCellProperties152.Append(tableCellMargin27);

            Paragraph paragraph279 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1AA3", TextId = "77777777" };

            ParagraphProperties paragraphProperties276 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties276 = new ParagraphMarkRunProperties();
            RunFonts runFonts790 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color299 = new Color() { Val = "FF0000" };
            FontSize fontSize798 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript792 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties276.Append(runFonts790);
            paragraphMarkRunProperties276.Append(color299);
            paragraphMarkRunProperties276.Append(fontSize798);
            paragraphMarkRunProperties276.Append(fontSizeComplexScript792);

            paragraphProperties276.Append(paragraphMarkRunProperties276);

            Run run567 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties602 = new RunProperties();
            RunFonts runFonts791 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color300 = new Color() { Val = "FF0000" };
            FontSize fontSize799 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript793 = new FontSizeComplexScript() { Val = "22" };

            runProperties602.Append(runFonts791);
            runProperties602.Append(color300);
            runProperties602.Append(fontSize799);
            runProperties602.Append(fontSizeComplexScript793);
            Text text535 = new Text();
            text535.Text = "STD SHARE";

            run567.Append(runProperties602);
            run567.Append(text535);

            paragraph279.Append(paragraphProperties276);
            paragraph279.Append(run567);

            tableCell152.Append(tableCellProperties152);
            tableCell152.Append(paragraph279);

            TableCell tableCell153 = new TableCell();

            TableCellProperties tableCellProperties153 = new TableCellProperties();
            TableCellWidth tableCellWidth153 = new TableCellWidth() { Width = "1279", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders44 = new TableCellBorders();
            TopBorder topBorder48 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder47 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder47 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder47 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders44.Append(topBorder48);
            tableCellBorders44.Append(leftBorder47);
            tableCellBorders44.Append(bottomBorder47);
            tableCellBorders44.Append(rightBorder47);
            Shading shading44 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin28 = new TableCellMargin();
            LeftMargin leftMargin28 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin28 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin28.Append(leftMargin28);
            tableCellMargin28.Append(rightMargin28);

            tableCellProperties153.Append(tableCellWidth153);
            tableCellProperties153.Append(tableCellBorders44);
            tableCellProperties153.Append(shading44);
            tableCellProperties153.Append(tableCellMargin28);

            Paragraph paragraph280 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1AA4", TextId = "77777777" };

            ParagraphProperties paragraphProperties277 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties277 = new ParagraphMarkRunProperties();
            RunFonts runFonts792 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color301 = new Color() { Val = "FF0000" };
            FontSize fontSize800 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript794 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties277.Append(runFonts792);
            paragraphMarkRunProperties277.Append(color301);
            paragraphMarkRunProperties277.Append(fontSize800);
            paragraphMarkRunProperties277.Append(fontSizeComplexScript794);

            paragraphProperties277.Append(paragraphMarkRunProperties277);

            Run run568 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties603 = new RunProperties();
            RunFonts runFonts793 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color302 = new Color() { Val = "FF0000" };
            FontSize fontSize801 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript795 = new FontSizeComplexScript() { Val = "22" };

            runProperties603.Append(runFonts793);
            runProperties603.Append(color302);
            runProperties603.Append(fontSize801);
            runProperties603.Append(fontSizeComplexScript795);
            Text text536 = new Text();
            text536.Text = "W:\\";

            run568.Append(runProperties603);
            run568.Append(text536);

            Run run569 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties604 = new RunProperties();
            RunFonts runFonts794 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color303 = new Color() { Val = "FF0000" };
            FontSize fontSize802 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript796 = new FontSizeComplexScript() { Val = "22" };

            runProperties604.Append(runFonts794);
            runProperties604.Append(color303);
            runProperties604.Append(fontSize802);
            runProperties604.Append(fontSizeComplexScript796);
            Text text537 = new Text();
            text537.Text = "BJCxxxxxxxx";

            run569.Append(runProperties604);
            run569.Append(text537);

            paragraph280.Append(paragraphProperties277);
            paragraph280.Append(run568);
            paragraph280.Append(run569);

            tableCell153.Append(tableCellProperties153);
            tableCell153.Append(paragraph280);

            tableRow34.Append(tableRowProperties21);
            tableRow34.Append(tableCell150);
            tableRow34.Append(tableCell151);
            tableRow34.Append(tableCell152);
            tableRow34.Append(tableCell153);

            TableRow tableRow35 = new TableRow() { RsidTableRowMarkRevision = "00A565FD", RsidTableRowAddition = "00F34C49", RsidTableRowProperties = "001A269D", ParagraphId = "0AAC1AAA", TextId = "77777777" };

            TableRowProperties tableRowProperties22 = new TableRowProperties();
            TableRowHeight tableRowHeight22 = new TableRowHeight() { Val = (UInt32Value)1U };

            tableRowProperties22.Append(tableRowHeight22);

            TableCell tableCell154 = new TableCell();

            TableCellProperties tableCellProperties154 = new TableCellProperties();
            TableCellWidth tableCellWidth154 = new TableCellWidth() { Width = "1012", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders45 = new TableCellBorders();
            TopBorder topBorder49 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder48 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder48 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder48 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders45.Append(topBorder49);
            tableCellBorders45.Append(leftBorder48);
            tableCellBorders45.Append(bottomBorder48);
            tableCellBorders45.Append(rightBorder48);
            Shading shading45 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin29 = new TableCellMargin();
            LeftMargin leftMargin29 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin29 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin29.Append(leftMargin29);
            tableCellMargin29.Append(rightMargin29);

            tableCellProperties154.Append(tableCellWidth154);
            tableCellProperties154.Append(tableCellBorders45);
            tableCellProperties154.Append(shading45);
            tableCellProperties154.Append(tableCellMargin29);

            Paragraph paragraph281 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1AA6", TextId = "77777777" };

            ParagraphProperties paragraphProperties278 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties278 = new ParagraphMarkRunProperties();
            RunFonts runFonts795 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color304 = new Color() { Val = "FF0000" };
            FontSize fontSize803 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript797 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties278.Append(runFonts795);
            paragraphMarkRunProperties278.Append(color304);
            paragraphMarkRunProperties278.Append(fontSize803);
            paragraphMarkRunProperties278.Append(fontSizeComplexScript797);

            paragraphProperties278.Append(paragraphMarkRunProperties278);

            Run run570 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties605 = new RunProperties();
            RunFonts runFonts796 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color305 = new Color() { Val = "FF0000" };
            FontSize fontSize804 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript798 = new FontSizeComplexScript() { Val = "22" };

            runProperties605.Append(runFonts796);
            runProperties605.Append(color305);
            runProperties605.Append(fontSize804);
            runProperties605.Append(fontSizeComplexScript798);
            LastRenderedPageBreak lastRenderedPageBreak6 = new LastRenderedPageBreak();
            Text text538 = new Text();
            text538.Text = "DISK";

            run570.Append(runProperties605);
            run570.Append(lastRenderedPageBreak6);
            run570.Append(text538);

            paragraph281.Append(paragraphProperties278);
            paragraph281.Append(run570);

            tableCell154.Append(tableCellProperties154);
            tableCell154.Append(paragraph281);

            TableCell tableCell155 = new TableCell();

            TableCellProperties tableCellProperties155 = new TableCellProperties();
            TableCellWidth tableCellWidth155 = new TableCellWidth() { Width = "1314", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders46 = new TableCellBorders();
            TopBorder topBorder50 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder49 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder49 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder49 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders46.Append(topBorder50);
            tableCellBorders46.Append(leftBorder49);
            tableCellBorders46.Append(bottomBorder49);
            tableCellBorders46.Append(rightBorder49);
            Shading shading46 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin30 = new TableCellMargin();
            LeftMargin leftMargin30 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin30 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin30.Append(leftMargin30);
            tableCellMargin30.Append(rightMargin30);

            tableCellProperties155.Append(tableCellWidth155);
            tableCellProperties155.Append(tableCellBorders46);
            tableCellProperties155.Append(shading46);
            tableCellProperties155.Append(tableCellMargin30);

            Paragraph paragraph282 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1AA7", TextId = "77777777" };

            ParagraphProperties paragraphProperties279 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties279 = new ParagraphMarkRunProperties();
            RunFonts runFonts797 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color306 = new Color() { Val = "FF0000" };
            FontSize fontSize805 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript799 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties279.Append(runFonts797);
            paragraphMarkRunProperties279.Append(color306);
            paragraphMarkRunProperties279.Append(fontSize805);
            paragraphMarkRunProperties279.Append(fontSizeComplexScript799);

            paragraphProperties279.Append(paragraphMarkRunProperties279);

            Run run571 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties606 = new RunProperties();
            RunFonts runFonts798 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color307 = new Color() { Val = "FF0000" };
            FontSize fontSize806 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript800 = new FontSizeComplexScript() { Val = "22" };

            runProperties606.Append(runFonts798);
            runProperties606.Append(color307);
            runProperties606.Append(fontSize806);
            runProperties606.Append(fontSizeComplexScript800);
            Text text539 = new Text();
            text539.Text = "NONE";

            run571.Append(runProperties606);
            run571.Append(text539);

            paragraph282.Append(paragraphProperties279);
            paragraph282.Append(run571);

            tableCell155.Append(tableCellProperties155);
            tableCell155.Append(paragraph282);

            TableCell tableCell156 = new TableCell();

            TableCellProperties tableCellProperties156 = new TableCellProperties();
            TableCellWidth tableCellWidth156 = new TableCellWidth() { Width = "1395", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders47 = new TableCellBorders();
            TopBorder topBorder51 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder50 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder50 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder50 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders47.Append(topBorder51);
            tableCellBorders47.Append(leftBorder50);
            tableCellBorders47.Append(bottomBorder50);
            tableCellBorders47.Append(rightBorder50);
            Shading shading47 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin31 = new TableCellMargin();
            LeftMargin leftMargin31 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin31 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin31.Append(leftMargin31);
            tableCellMargin31.Append(rightMargin31);

            tableCellProperties156.Append(tableCellWidth156);
            tableCellProperties156.Append(tableCellBorders47);
            tableCellProperties156.Append(shading47);
            tableCellProperties156.Append(tableCellMargin31);

            Paragraph paragraph283 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1AA8", TextId = "77777777" };

            ParagraphProperties paragraphProperties280 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties280 = new ParagraphMarkRunProperties();
            RunFonts runFonts799 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color308 = new Color() { Val = "FF0000" };
            FontSize fontSize807 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript801 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties280.Append(runFonts799);
            paragraphMarkRunProperties280.Append(color308);
            paragraphMarkRunProperties280.Append(fontSize807);
            paragraphMarkRunProperties280.Append(fontSizeComplexScript801);

            paragraphProperties280.Append(paragraphMarkRunProperties280);

            Run run572 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties607 = new RunProperties();
            RunFonts runFonts800 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color309 = new Color() { Val = "FF0000" };
            FontSize fontSize808 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript802 = new FontSizeComplexScript() { Val = "22" };

            runProperties607.Append(runFonts800);
            runProperties607.Append(color309);
            runProperties607.Append(fontSize808);
            runProperties607.Append(fontSizeComplexScript802);
            Text text540 = new Text();
            text540.Text = "D:/E:/F:/G:/L:";

            run572.Append(runProperties607);
            run572.Append(text540);

            paragraph283.Append(paragraphProperties280);
            paragraph283.Append(run572);

            tableCell156.Append(tableCellProperties156);
            tableCell156.Append(paragraph283);

            TableCell tableCell157 = new TableCell();

            TableCellProperties tableCellProperties157 = new TableCellProperties();
            TableCellWidth tableCellWidth157 = new TableCellWidth() { Width = "1279", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders48 = new TableCellBorders();
            TopBorder topBorder52 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder51 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder51 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder51 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders48.Append(topBorder52);
            tableCellBorders48.Append(leftBorder51);
            tableCellBorders48.Append(bottomBorder51);
            tableCellBorders48.Append(rightBorder51);
            Shading shading48 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin32 = new TableCellMargin();
            LeftMargin leftMargin32 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin32 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin32.Append(leftMargin32);
            tableCellMargin32.Append(rightMargin32);

            tableCellProperties157.Append(tableCellWidth157);
            tableCellProperties157.Append(tableCellBorders48);
            tableCellProperties157.Append(shading48);
            tableCellProperties157.Append(tableCellMargin32);

            Paragraph paragraph284 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1AA9", TextId = "77777777" };

            ParagraphProperties paragraphProperties281 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties281 = new ParagraphMarkRunProperties();
            RunFonts runFonts801 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color310 = new Color() { Val = "FF0000" };
            FontSize fontSize809 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript803 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties281.Append(runFonts801);
            paragraphMarkRunProperties281.Append(color310);
            paragraphMarkRunProperties281.Append(fontSize809);
            paragraphMarkRunProperties281.Append(fontSizeComplexScript803);

            paragraphProperties281.Append(paragraphMarkRunProperties281);

            Run run573 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties608 = new RunProperties();
            RunFonts runFonts802 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color311 = new Color() { Val = "FF0000" };
            FontSize fontSize810 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript804 = new FontSizeComplexScript() { Val = "22" };

            runProperties608.Append(runFonts802);
            runProperties608.Append(color311);
            runProperties608.Append(fontSize810);
            runProperties608.Append(fontSizeComplexScript804);
            Text text541 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text541.Text = "See Database configuration section ";

            run573.Append(runProperties608);
            run573.Append(text541);

            paragraph284.Append(paragraphProperties281);
            paragraph284.Append(run573);

            tableCell157.Append(tableCellProperties157);
            tableCell157.Append(paragraph284);

            tableRow35.Append(tableRowProperties22);
            tableRow35.Append(tableCell154);
            tableRow35.Append(tableCell155);
            tableRow35.Append(tableCell156);
            tableRow35.Append(tableCell157);

            table6.Append(tableProperties6);
            table6.Append(tableGrid6);
            table6.Append(tableRow31);
            table6.Append(tableRow32);
            table6.Append(tableRow33);
            table6.Append(tableRow34);
            table6.Append(tableRow35);

            Paragraph paragraph285 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00116831", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "002B0580", ParagraphId = "0AAC1AAB", TextId = "0FE24F9C" };

            ParagraphProperties paragraphProperties282 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId19 = new ParagraphStyleId() { Val = "Heading2" };

            ParagraphMarkRunProperties paragraphMarkRunProperties282 = new ParagraphMarkRunProperties();
            Underline underline74 = new Underline() { Val = UnderlineValues.Single };

            paragraphMarkRunProperties282.Append(underline74);

            paragraphProperties282.Append(paragraphStyleId19);
            paragraphProperties282.Append(paragraphMarkRunProperties282);

            Run run574 = new Run();

            RunProperties runProperties609 = new RunProperties();
            Underline underline75 = new Underline() { Val = UnderlineValues.Single };

            runProperties609.Append(underline75);
            Text text542 = new Text();
            text542.Text = "15";

            run574.Append(runProperties609);
            run574.Append(text542);

            Run run575 = new Run() { RsidRunAddition = "00E518DD" };

            RunProperties runProperties610 = new RunProperties();
            Underline underline76 = new Underline() { Val = UnderlineValues.Single };

            runProperties610.Append(underline76);
            Text text543 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text543.Text = ". ";

            run575.Append(runProperties610);
            run575.Append(text543);

            Run run576 = new Run() { RsidRunAddition = "0057090B" };

            RunProperties runProperties611 = new RunProperties();
            Underline underline77 = new Underline() { Val = UnderlineValues.Single };

            runProperties611.Append(underline77);
            Text text544 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text544.Text = "Replication ";

            run576.Append(runProperties611);
            run576.Append(text544);

            Run run577 = new Run() { RsidRunAddition = "00116FA1" };

            RunProperties runProperties612 = new RunProperties();
            Underline underline78 = new Underline() { Val = UnderlineValues.Single };

            runProperties612.Append(underline78);
            Text text545 = new Text();
            text545.Text = "C";

            run577.Append(runProperties612);
            run577.Append(text545);

            Run run578 = new Run() { RsidRunAddition = "0057090B" };

            RunProperties runProperties613 = new RunProperties();
            Underline underline79 = new Underline() { Val = UnderlineValues.Single };

            runProperties613.Append(underline79);
            Text text546 = new Text();
            text546.Text = "onfiguration";

            run578.Append(runProperties613);
            run578.Append(text546);

            Run run579 = new Run() { RsidRunProperties = "0057090B", RsidRunAddition = "0057090B" };

            RunProperties runProperties614 = new RunProperties();
            Color color312 = new Color() { Val = "FF0000" };
            Underline underline80 = new Underline() { Val = UnderlineValues.Single };

            runProperties614.Append(color312);
            runProperties614.Append(underline80);
            Text text547 = new Text();
            text547.Text = ": N/A";

            run579.Append(runProperties614);
            run579.Append(text547);

            paragraph285.Append(paragraphProperties282);
            paragraph285.Append(run574);
            paragraph285.Append(run575);
            paragraph285.Append(run576);
            paragraph285.Append(run577);
            paragraph285.Append(run578);
            paragraph285.Append(run579);

            Paragraph paragraph286 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "009D7777", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00A563A2", ParagraphId = "0AAC1AAC", TextId = "46F1132F" };

            ParagraphProperties paragraphProperties283 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties283 = new ParagraphMarkRunProperties();
            RunFonts runFonts803 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize811 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript805 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties283.Append(runFonts803);
            paragraphMarkRunProperties283.Append(fontSize811);
            paragraphMarkRunProperties283.Append(fontSizeComplexScript805);

            paragraphProperties283.Append(paragraphMarkRunProperties283);

            SdtRun sdtRun43 = new SdtRun();

            SdtProperties sdtProperties43 = new SdtProperties();

            RunProperties runProperties615 = new RunProperties();
            RunFonts runFonts804 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize812 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript806 = new FontSizeComplexScript() { Val = "22" };

            runProperties615.Append(runFonts804);
            runProperties615.Append(fontSize812);
            runProperties615.Append(fontSizeComplexScript806);
            SdtId sdtId43 = new SdtId() { Val = 32929211 };

            W14.SdtContentCheckBox sdtContentCheckBox43 = new W14.SdtContentCheckBox();
            W14.Checked checked43 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState43 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState43 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox43.Append(checked43);
            sdtContentCheckBox43.Append(checkedState43);
            sdtContentCheckBox43.Append(uncheckedState43);

            sdtProperties43.Append(runProperties615);
            sdtProperties43.Append(sdtId43);
            sdtProperties43.Append(sdtContentCheckBox43);
            SdtEndCharProperties sdtEndCharProperties43 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun43 = new SdtContentRun();

            Run run580 = new Run() { RsidRunAddition = "00F12AD5" };

            RunProperties runProperties616 = new RunProperties();
            RunFonts runFonts805 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic" };
            FontSize fontSize813 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript807 = new FontSizeComplexScript() { Val = "22" };

            runProperties616.Append(runFonts805);
            runProperties616.Append(fontSize813);
            runProperties616.Append(fontSizeComplexScript807);
            Text text548 = new Text();
            text548.Text = "☐";

            run580.Append(runProperties616);
            run580.Append(text548);

            sdtContentRun43.Append(run580);

            sdtRun43.Append(sdtProperties43);
            sdtRun43.Append(sdtEndCharProperties43);
            sdtRun43.Append(sdtContentRun43);

            Run run581 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "009D7777" };

            RunProperties runProperties617 = new RunProperties();
            RunFonts runFonts806 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize814 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript808 = new FontSizeComplexScript() { Val = "22" };

            runProperties617.Append(runFonts806);
            runProperties617.Append(fontSize814);
            runProperties617.Append(fontSizeComplexScript808);
            Text text549 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text549.Text = " ";

            run581.Append(runProperties617);
            run581.Append(text549);

            Run run582 = new Run() { RsidRunAddition = "00F97B58" };

            RunProperties runProperties618 = new RunProperties();
            RunFonts runFonts807 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize815 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript809 = new FontSizeComplexScript() { Val = "22" };

            runProperties618.Append(runFonts807);
            runProperties618.Append(fontSize815);
            runProperties618.Append(fontSizeComplexScript809);
            Text text550 = new Text();
            text550.Text = "SAN Mirror";

            run582.Append(runProperties618);
            run582.Append(text550);

            paragraph286.Append(paragraphProperties283);
            paragraph286.Append(sdtRun43);
            paragraph286.Append(run581);
            paragraph286.Append(run582);

            Paragraph paragraph287 = new Paragraph() { RsidParagraphAddition = "006A5DD3", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00A563A2", ParagraphId = "7192191D", TextId = "55DFA960" };

            ParagraphProperties paragraphProperties284 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties284 = new ParagraphMarkRunProperties();
            RunFonts runFonts808 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize816 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript810 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties284.Append(runFonts808);
            paragraphMarkRunProperties284.Append(fontSize816);
            paragraphMarkRunProperties284.Append(fontSizeComplexScript810);

            paragraphProperties284.Append(paragraphMarkRunProperties284);

            SdtRun sdtRun44 = new SdtRun();

            SdtProperties sdtProperties44 = new SdtProperties();

            RunProperties runProperties619 = new RunProperties();
            RunFonts runFonts809 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize817 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript811 = new FontSizeComplexScript() { Val = "22" };

            runProperties619.Append(runFonts809);
            runProperties619.Append(fontSize817);
            runProperties619.Append(fontSizeComplexScript811);
            SdtId sdtId44 = new SdtId() { Val = 623129963 };

            W14.SdtContentCheckBox sdtContentCheckBox44 = new W14.SdtContentCheckBox();
            W14.Checked checked44 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState44 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState44 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox44.Append(checked44);
            sdtContentCheckBox44.Append(checkedState44);
            sdtContentCheckBox44.Append(uncheckedState44);

            sdtProperties44.Append(runProperties619);
            sdtProperties44.Append(sdtId44);
            sdtProperties44.Append(sdtContentCheckBox44);
            SdtEndCharProperties sdtEndCharProperties44 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun44 = new SdtContentRun();

            Run run583 = new Run() { RsidRunAddition = "00F12AD5" };

            RunProperties runProperties620 = new RunProperties();
            RunFonts runFonts810 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic" };
            FontSize fontSize818 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript812 = new FontSizeComplexScript() { Val = "22" };

            runProperties620.Append(runFonts810);
            runProperties620.Append(fontSize818);
            runProperties620.Append(fontSizeComplexScript812);
            Text text551 = new Text();
            text551.Text = "☐";

            run583.Append(runProperties620);
            run583.Append(text551);

            sdtContentRun44.Append(run583);

            sdtRun44.Append(sdtProperties44);
            sdtRun44.Append(sdtEndCharProperties44);
            sdtRun44.Append(sdtContentRun44);

            Run run584 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "006A5DD3" };

            RunProperties runProperties621 = new RunProperties();
            RunFonts runFonts811 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize819 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript813 = new FontSizeComplexScript() { Val = "22" };

            runProperties621.Append(runFonts811);
            runProperties621.Append(fontSize819);
            runProperties621.Append(fontSizeComplexScript813);
            Text text552 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text552.Text = " ";

            run584.Append(runProperties621);
            run584.Append(text552);

            Run run585 = new Run() { RsidRunAddition = "006A5DD3" };

            RunProperties runProperties622 = new RunProperties();
            RunFonts runFonts812 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize820 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript814 = new FontSizeComplexScript() { Val = "22" };

            runProperties622.Append(runFonts812);
            runProperties622.Append(fontSize820);
            runProperties622.Append(fontSizeComplexScript814);
            Text text553 = new Text();
            text553.Text = "DFS-R Windows Replication";

            run585.Append(runProperties622);
            run585.Append(text553);

            paragraph287.Append(paragraphProperties284);
            paragraph287.Append(sdtRun44);
            paragraph287.Append(run584);
            paragraph287.Append(run585);

            Paragraph paragraph288 = new Paragraph() { RsidParagraphAddition = "00F12AD5", RsidParagraphProperties = "00F12AD5", RsidRunAdditionDefault = "00A563A2", ParagraphId = "3C6D7B03", TextId = "5502B94F" };

            ParagraphProperties paragraphProperties285 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties285 = new ParagraphMarkRunProperties();
            RunFonts runFonts813 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize821 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript815 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties285.Append(runFonts813);
            paragraphMarkRunProperties285.Append(fontSize821);
            paragraphMarkRunProperties285.Append(fontSizeComplexScript815);

            paragraphProperties285.Append(paragraphMarkRunProperties285);

            SdtRun sdtRun45 = new SdtRun();

            SdtProperties sdtProperties45 = new SdtProperties();

            RunProperties runProperties623 = new RunProperties();
            RunFonts runFonts814 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize822 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript816 = new FontSizeComplexScript() { Val = "22" };

            runProperties623.Append(runFonts814);
            runProperties623.Append(fontSize822);
            runProperties623.Append(fontSizeComplexScript816);
            SdtId sdtId45 = new SdtId() { Val = 12577621 };

            W14.SdtContentCheckBox sdtContentCheckBox45 = new W14.SdtContentCheckBox();
            W14.Checked checked45 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState45 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState45 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox45.Append(checked45);
            sdtContentCheckBox45.Append(checkedState45);
            sdtContentCheckBox45.Append(uncheckedState45);

            sdtProperties45.Append(runProperties623);
            sdtProperties45.Append(sdtId45);
            sdtProperties45.Append(sdtContentCheckBox45);
            SdtEndCharProperties sdtEndCharProperties45 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun45 = new SdtContentRun();

            Run run586 = new Run() { RsidRunAddition = "00F12AD5" };

            RunProperties runProperties624 = new RunProperties();
            RunFonts runFonts815 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic" };
            FontSize fontSize823 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript817 = new FontSizeComplexScript() { Val = "22" };

            runProperties624.Append(runFonts815);
            runProperties624.Append(fontSize823);
            runProperties624.Append(fontSizeComplexScript817);
            Text text554 = new Text();
            text554.Text = "☐";

            run586.Append(runProperties624);
            run586.Append(text554);

            sdtContentRun45.Append(run586);

            sdtRun45.Append(sdtProperties45);
            sdtRun45.Append(sdtEndCharProperties45);
            sdtRun45.Append(sdtContentRun45);

            Run run587 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "00F12AD5" };

            RunProperties runProperties625 = new RunProperties();
            RunFonts runFonts816 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize824 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript818 = new FontSizeComplexScript() { Val = "22" };

            runProperties625.Append(runFonts816);
            runProperties625.Append(fontSize824);
            runProperties625.Append(fontSizeComplexScript818);
            Text text555 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text555.Text = " ";

            run587.Append(runProperties625);
            run587.Append(text555);

            Run run588 = new Run() { RsidRunAddition = "00F12AD5" };

            RunProperties runProperties626 = new RunProperties();
            RunFonts runFonts817 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize825 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript819 = new FontSizeComplexScript() { Val = "22" };

            runProperties626.Append(runFonts817);
            runProperties626.Append(fontSize825);
            runProperties626.Append(fontSizeComplexScript819);
            Text text556 = new Text();
            text556.Text = "VMWare Site Recovery Manager";

            run588.Append(runProperties626);
            run588.Append(text556);

            paragraph288.Append(paragraphProperties285);
            paragraph288.Append(sdtRun45);
            paragraph288.Append(run587);
            paragraph288.Append(run588);

            Paragraph paragraph289 = new Paragraph() { RsidParagraphAddition = "00F12AD5", RsidParagraphProperties = "00F12AD5", RsidRunAdditionDefault = "00A563A2", ParagraphId = "3297A2FE", TextId = "1BAB5B02" };

            ParagraphProperties paragraphProperties286 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties286 = new ParagraphMarkRunProperties();
            RunFonts runFonts818 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize826 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript820 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties286.Append(runFonts818);
            paragraphMarkRunProperties286.Append(fontSize826);
            paragraphMarkRunProperties286.Append(fontSizeComplexScript820);

            paragraphProperties286.Append(paragraphMarkRunProperties286);

            SdtRun sdtRun46 = new SdtRun();

            SdtProperties sdtProperties46 = new SdtProperties();

            RunProperties runProperties627 = new RunProperties();
            RunFonts runFonts819 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize827 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript821 = new FontSizeComplexScript() { Val = "22" };

            runProperties627.Append(runFonts819);
            runProperties627.Append(fontSize827);
            runProperties627.Append(fontSizeComplexScript821);
            SdtId sdtId46 = new SdtId() { Val = -928973367 };

            W14.SdtContentCheckBox sdtContentCheckBox46 = new W14.SdtContentCheckBox();
            W14.Checked checked46 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState46 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState46 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox46.Append(checked46);
            sdtContentCheckBox46.Append(checkedState46);
            sdtContentCheckBox46.Append(uncheckedState46);

            sdtProperties46.Append(runProperties627);
            sdtProperties46.Append(sdtId46);
            sdtProperties46.Append(sdtContentCheckBox46);
            SdtEndCharProperties sdtEndCharProperties46 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun46 = new SdtContentRun();

            Run run589 = new Run() { RsidRunAddition = "00F12AD5" };

            RunProperties runProperties628 = new RunProperties();
            RunFonts runFonts820 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic" };
            FontSize fontSize828 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript822 = new FontSizeComplexScript() { Val = "22" };

            runProperties628.Append(runFonts820);
            runProperties628.Append(fontSize828);
            runProperties628.Append(fontSizeComplexScript822);
            Text text557 = new Text();
            text557.Text = "☐";

            run589.Append(runProperties628);
            run589.Append(text557);

            sdtContentRun46.Append(run589);

            sdtRun46.Append(sdtProperties46);
            sdtRun46.Append(sdtEndCharProperties46);
            sdtRun46.Append(sdtContentRun46);

            Run run590 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "00F12AD5" };

            RunProperties runProperties629 = new RunProperties();
            RunFonts runFonts821 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize829 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript823 = new FontSizeComplexScript() { Val = "22" };

            runProperties629.Append(runFonts821);
            runProperties629.Append(fontSize829);
            runProperties629.Append(fontSizeComplexScript823);
            Text text558 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text558.Text = " ";

            run590.Append(runProperties629);
            run590.Append(text558);

            Run run591 = new Run() { RsidRunAddition = "00F12AD5" };

            RunProperties runProperties630 = new RunProperties();
            RunFonts runFonts822 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize830 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript824 = new FontSizeComplexScript() { Val = "22" };

            runProperties630.Append(runFonts822);
            runProperties630.Append(fontSize830);
            runProperties630.Append(fontSizeComplexScript824);
            Text text559 = new Text();
            text559.Text = "Oracle Dataguard";

            run591.Append(runProperties630);
            run591.Append(text559);

            paragraph289.Append(paragraphProperties286);
            paragraph289.Append(sdtRun46);
            paragraph289.Append(run590);
            paragraph289.Append(run591);

            Paragraph paragraph290 = new Paragraph() { RsidParagraphAddition = "00A94A66", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "009D7777", ParagraphId = "0AAC1AAF", TextId = "2A6CB181" };

            ParagraphProperties paragraphProperties287 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties287 = new ParagraphMarkRunProperties();
            RunFonts runFonts823 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize831 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript825 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties287.Append(runFonts823);
            paragraphMarkRunProperties287.Append(fontSize831);
            paragraphMarkRunProperties287.Append(fontSizeComplexScript825);

            paragraphProperties287.Append(paragraphMarkRunProperties287);

            Run run592 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties631 = new RunProperties();
            RunFonts runFonts824 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize832 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript826 = new FontSizeComplexScript() { Val = "22" };

            runProperties631.Append(runFonts824);
            runProperties631.Append(fontSize832);
            runProperties631.Append(fontSizeComplexScript826);
            Text text560 = new Text();
            text560.Text = "Destination Server";

            run592.Append(runProperties631);
            run592.Append(text560);

            Run run593 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00F40936" };

            RunProperties runProperties632 = new RunProperties();
            RunFonts runFonts825 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize833 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript827 = new FontSizeComplexScript() { Val = "22" };

            runProperties632.Append(runFonts825);
            runProperties632.Append(fontSize833);
            runProperties632.Append(fontSizeComplexScript827);
            Text text561 = new Text();
            text561.Text = ":";

            run593.Append(runProperties632);
            run593.Append(text561);

            Run run594 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00EA764C" };

            RunProperties runProperties633 = new RunProperties();
            RunFonts runFonts826 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize834 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript828 = new FontSizeComplexScript() { Val = "22" };

            runProperties633.Append(runFonts826);
            runProperties633.Append(fontSize834);
            runProperties633.Append(fontSizeComplexScript828);
            Text text562 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text562.Text = " ";

            run594.Append(runProperties633);
            run594.Append(text562);

            Run run595 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00EA764C" };

            RunProperties runProperties634 = new RunProperties();
            RunFonts runFonts827 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color313 = new Color() { Val = "FF0000" };
            FontSize fontSize835 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript829 = new FontSizeComplexScript() { Val = "22" };

            runProperties634.Append(runFonts827);
            runProperties634.Append(color313);
            runProperties634.Append(fontSize835);
            runProperties634.Append(fontSizeComplexScript829);
            Text text563 = new Text();
            text563.Text = "BJC";

            run595.Append(runProperties634);
            run595.Append(text563);

            Run run596 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00F97B58" };

            RunProperties runProperties635 = new RunProperties();
            RunFonts runFonts828 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color314 = new Color() { Val = "FF0000" };
            FontSize fontSize836 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript830 = new FontSizeComplexScript() { Val = "22" };

            runProperties635.Append(runFonts828);
            runProperties635.Append(color314);
            runProperties635.Append(fontSize836);
            runProperties635.Append(fontSizeComplexScript830);
            Text text564 = new Text();
            text564.Text = "xxxxxxxx";

            run596.Append(runProperties635);
            run596.Append(text564);

            paragraph290.Append(paragraphProperties287);
            paragraph290.Append(run592);
            paragraph290.Append(run593);
            paragraph290.Append(run594);
            paragraph290.Append(run595);
            paragraph290.Append(run596);

            Paragraph paragraph291 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00A94A66", RsidParagraphProperties = "00A94A66", RsidRunAdditionDefault = "002B0580", ParagraphId = "0AAC1AB0", TextId = "195F9EF2" };

            ParagraphProperties paragraphProperties288 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId20 = new ParagraphStyleId() { Val = "Heading2" };

            ParagraphMarkRunProperties paragraphMarkRunProperties288 = new ParagraphMarkRunProperties();
            Underline underline81 = new Underline() { Val = UnderlineValues.Single };

            paragraphMarkRunProperties288.Append(underline81);

            paragraphProperties288.Append(paragraphStyleId20);
            paragraphProperties288.Append(paragraphMarkRunProperties288);

            Run run597 = new Run();

            RunProperties runProperties636 = new RunProperties();
            Underline underline82 = new Underline() { Val = UnderlineValues.Single };

            runProperties636.Append(underline82);
            Text text565 = new Text();
            text565.Text = "16";

            run597.Append(runProperties636);
            run597.Append(text565);

            Run run598 = new Run() { RsidRunAddition = "00E518DD" };

            RunProperties runProperties637 = new RunProperties();
            Underline underline83 = new Underline() { Val = UnderlineValues.Single };

            runProperties637.Append(underline83);
            Text text566 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text566.Text = ". ";

            run598.Append(runProperties637);
            run598.Append(text566);

            Run run599 = new Run() { RsidRunAddition = "00A94A66" };

            RunProperties runProperties638 = new RunProperties();
            Underline underline84 = new Underline() { Val = UnderlineValues.Single };

            runProperties638.Append(underline84);
            Text text567 = new Text();
            text567.Text = "Citrix Configuration";

            run599.Append(runProperties638);
            run599.Append(text567);

            Run run600 = new Run() { RsidRunProperties = "0057090B", RsidRunAddition = "0057090B" };

            RunProperties runProperties639 = new RunProperties();
            Color color315 = new Color() { Val = "FF0000" };
            Underline underline85 = new Underline() { Val = UnderlineValues.Single };

            runProperties639.Append(color315);
            runProperties639.Append(underline85);
            Text text568 = new Text();
            text568.Text = ": N/A";

            run600.Append(runProperties639);
            run600.Append(text568);

            paragraph291.Append(paragraphProperties288);
            paragraph291.Append(run597);
            paragraph291.Append(run598);
            paragraph291.Append(run599);
            paragraph291.Append(run600);

            Paragraph paragraph292 = new Paragraph() { RsidParagraphMarkRevision = "00624202", RsidParagraphAddition = "00BC048A", RsidParagraphProperties = "00624202", RsidRunAdditionDefault = "00116831", ParagraphId = "59210DC6", TextId = "1CCE8CFC" };

            ParagraphProperties paragraphProperties289 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties289 = new ParagraphMarkRunProperties();
            RunFonts runFonts829 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize837 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript831 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties289.Append(runFonts829);
            paragraphMarkRunProperties289.Append(fontSize837);
            paragraphMarkRunProperties289.Append(fontSizeComplexScript831);

            paragraphProperties289.Append(paragraphMarkRunProperties289);

            Run run601 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties640 = new RunProperties();
            RunFonts runFonts830 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize838 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript832 = new FontSizeComplexScript() { Val = "22" };

            runProperties640.Append(runFonts830);
            runProperties640.Append(fontSize838);
            runProperties640.Append(fontSizeComplexScript832);
            Text text569 = new Text();
            text569.Text = "Citrix Farm hosting this application:";

            run601.Append(runProperties640);
            run601.Append(text569);

            Run run602 = new Run() { RsidRunAddition = "00624202" };

            RunProperties runProperties641 = new RunProperties();
            RunFonts runFonts831 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize839 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript833 = new FontSizeComplexScript() { Val = "22" };

            runProperties641.Append(runFonts831);
            runProperties641.Append(fontSize839);
            runProperties641.Append(fontSizeComplexScript833);
            Text text570 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text570.Text = "  ";

            run602.Append(runProperties641);
            run602.Append(text570);

            Run run603 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00BC048A" };

            RunProperties runProperties642 = new RunProperties();
            RunFonts runFonts832 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color316 = new Color() { Val = "FF0000" };
            FontSize fontSize840 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript834 = new FontSizeComplexScript() { Val = "22" };

            runProperties642.Append(runFonts832);
            runProperties642.Append(color316);
            runProperties642.Append(fontSize840);
            runProperties642.Append(fontSizeComplexScript834);
            Text text571 = new Text();
            text571.Text = "All servers will be placed in the 6.5 farm";

            run603.Append(runProperties642);
            run603.Append(text571);

            Run run604 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00BC048A" };

            RunProperties runProperties643 = new RunProperties();
            RunFonts runFonts833 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize841 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript835 = new FontSizeComplexScript() { Val = "22" };

            runProperties643.Append(runFonts833);
            runProperties643.Append(fontSize841);
            runProperties643.Append(fontSizeComplexScript835);
            Text text572 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text572.Text = " ";

            run604.Append(runProperties643);
            run604.Append(text572);

            Run run605 = new Run() { RsidRunAddition = "00BC048A" };

            RunProperties runProperties644 = new RunProperties();
            RunFonts runFonts834 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color317 = new Color() { Val = "FF0000" };
            FontSize fontSize842 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript836 = new FontSizeComplexScript() { Val = "22" };

            runProperties644.Append(runFonts834);
            runProperties644.Append(color317);
            runProperties644.Append(fontSize842);
            runProperties644.Append(fontSizeComplexScript836);
            Text text573 = new Text();
            text573.Text = "r";

            run605.Append(runProperties644);
            run605.Append(text573);

            Run run606 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00BC048A" };

            RunProperties runProperties645 = new RunProperties();
            RunFonts runFonts835 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color318 = new Color() { Val = "FF0000" };
            FontSize fontSize843 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript837 = new FontSizeComplexScript() { Val = "22" };

            runProperties645.Append(runFonts835);
            runProperties645.Append(color318);
            runProperties645.Append(fontSize843);
            runProperties645.Append(fontSizeComplexScript837);
            Text text574 = new Text();
            text574.Text = "unning Server 2008 R2";

            run606.Append(runProperties645);
            run606.Append(text574);

            Run run607 = new Run() { RsidRunAddition = "00BC048A" };

            RunProperties runProperties646 = new RunProperties();
            RunFonts runFonts836 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color319 = new Color() { Val = "FF0000" };
            FontSize fontSize844 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript838 = new FontSizeComplexScript() { Val = "22" };

            runProperties646.Append(runFonts836);
            runProperties646.Append(color319);
            runProperties646.Append(fontSize844);
            runProperties646.Append(fontSizeComplexScript838);
            Text text575 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text575.Text = ".  ";

            run607.Append(runProperties646);
            run607.Append(text575);

            Run run608 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00BC048A" };

            RunProperties runProperties647 = new RunProperties();
            RunFonts runFonts837 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color320 = new Color() { Val = "FF0000" };
            FontSize fontSize845 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript839 = new FontSizeComplexScript() { Val = "22" };

            runProperties647.Append(runFonts837);
            runProperties647.Append(color320);
            runProperties647.Append(fontSize845);
            runProperties647.Append(fontSizeComplexScript839);
            Text text576 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text576.Text = "Anything else will require a conversation with Standards. ";

            run608.Append(runProperties647);
            run608.Append(text576);

            paragraph292.Append(paragraphProperties289);
            paragraph292.Append(run601);
            paragraph292.Append(run602);
            paragraph292.Append(run603);
            paragraph292.Append(run604);
            paragraph292.Append(run605);
            paragraph292.Append(run606);
            paragraph292.Append(run607);
            paragraph292.Append(run608);

            Paragraph paragraph293 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00A565FD", RsidParagraphProperties = "00A565FD", RsidRunAdditionDefault = "00A563A2", ParagraphId = "0AAC1AB2", TextId = "1456C203" };

            ParagraphProperties paragraphProperties290 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties290 = new ParagraphMarkRunProperties();
            RunFonts runFonts838 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize846 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript840 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties290.Append(runFonts838);
            paragraphMarkRunProperties290.Append(fontSize846);
            paragraphMarkRunProperties290.Append(fontSizeComplexScript840);

            paragraphProperties290.Append(paragraphMarkRunProperties290);

            SdtRun sdtRun47 = new SdtRun();

            SdtProperties sdtProperties47 = new SdtProperties();

            RunProperties runProperties648 = new RunProperties();
            RunFonts runFonts839 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize847 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript841 = new FontSizeComplexScript() { Val = "22" };

            runProperties648.Append(runFonts839);
            runProperties648.Append(fontSize847);
            runProperties648.Append(fontSizeComplexScript841);
            SdtId sdtId47 = new SdtId() { Val = -449857893 };

            W14.SdtContentCheckBox sdtContentCheckBox47 = new W14.SdtContentCheckBox();
            W14.Checked checked47 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState47 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState47 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox47.Append(checked47);
            sdtContentCheckBox47.Append(checkedState47);
            sdtContentCheckBox47.Append(uncheckedState47);

            sdtProperties47.Append(runProperties648);
            sdtProperties47.Append(sdtId47);
            sdtProperties47.Append(sdtContentCheckBox47);
            SdtEndCharProperties sdtEndCharProperties47 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun47 = new SdtContentRun();

            Run run609 = new Run() { RsidRunAddition = "00F12AD5" };

            RunProperties runProperties649 = new RunProperties();
            RunFonts runFonts840 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic" };
            FontSize fontSize848 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript842 = new FontSizeComplexScript() { Val = "22" };

            runProperties649.Append(runFonts840);
            runProperties649.Append(fontSize848);
            runProperties649.Append(fontSizeComplexScript842);
            Text text577 = new Text();
            text577.Text = "☐";

            run609.Append(runProperties649);
            run609.Append(text577);

            sdtContentRun47.Append(run609);

            sdtRun47.Append(sdtProperties47);
            sdtRun47.Append(sdtEndCharProperties47);
            sdtRun47.Append(sdtContentRun47);

            Run run610 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "00A565FD" };

            RunProperties runProperties650 = new RunProperties();
            RunFonts runFonts841 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize849 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript843 = new FontSizeComplexScript() { Val = "22" };

            runProperties650.Append(runFonts841);
            runProperties650.Append(fontSize849);
            runProperties650.Append(fontSizeComplexScript843);
            Text text578 = new Text();
            text578.Text = "6.5 Farm";

            run610.Append(runProperties650);
            run610.Append(text578);

            paragraph293.Append(paragraphProperties290);
            paragraph293.Append(sdtRun47);
            paragraph293.Append(run610);

            Paragraph paragraph294 = new Paragraph() { RsidParagraphAddition = "00A565FD", RsidParagraphProperties = "00A565FD", RsidRunAdditionDefault = "00A563A2", ParagraphId = "0AAC1AB3", TextId = "05A19505" };

            ParagraphProperties paragraphProperties291 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties291 = new ParagraphMarkRunProperties();
            RunFonts runFonts842 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize850 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript844 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties291.Append(runFonts842);
            paragraphMarkRunProperties291.Append(fontSize850);
            paragraphMarkRunProperties291.Append(fontSizeComplexScript844);

            paragraphProperties291.Append(paragraphMarkRunProperties291);

            SdtRun sdtRun48 = new SdtRun();

            SdtProperties sdtProperties48 = new SdtProperties();

            RunProperties runProperties651 = new RunProperties();
            RunFonts runFonts843 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize851 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript845 = new FontSizeComplexScript() { Val = "22" };

            runProperties651.Append(runFonts843);
            runProperties651.Append(fontSize851);
            runProperties651.Append(fontSizeComplexScript845);
            SdtId sdtId48 = new SdtId() { Val = 583728260 };

            W14.SdtContentCheckBox sdtContentCheckBox48 = new W14.SdtContentCheckBox();
            W14.Checked checked48 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState48 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState48 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox48.Append(checked48);
            sdtContentCheckBox48.Append(checkedState48);
            sdtContentCheckBox48.Append(uncheckedState48);

            sdtProperties48.Append(runProperties651);
            sdtProperties48.Append(sdtId48);
            sdtProperties48.Append(sdtContentCheckBox48);
            SdtEndCharProperties sdtEndCharProperties48 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun48 = new SdtContentRun();

            Run run611 = new Run() { RsidRunAddition = "00F12AD5" };

            RunProperties runProperties652 = new RunProperties();
            RunFonts runFonts844 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic" };
            FontSize fontSize852 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript846 = new FontSizeComplexScript() { Val = "22" };

            runProperties652.Append(runFonts844);
            runProperties652.Append(fontSize852);
            runProperties652.Append(fontSizeComplexScript846);
            Text text579 = new Text();
            text579.Text = "☐";

            run611.Append(runProperties652);
            run611.Append(text579);

            sdtContentRun48.Append(run611);

            sdtRun48.Append(sdtProperties48);
            sdtRun48.Append(sdtEndCharProperties48);
            sdtRun48.Append(sdtContentRun48);

            Run run612 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "00A565FD" };

            RunProperties runProperties653 = new RunProperties();
            RunFonts runFonts845 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize853 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript847 = new FontSizeComplexScript() { Val = "22" };

            runProperties653.Append(runFonts845);
            runProperties653.Append(fontSize853);
            runProperties653.Append(fontSizeComplexScript847);
            Text text580 = new Text();
            text580.Text = "6.";

            run612.Append(runProperties653);
            run612.Append(text580);

            Run run613 = new Run() { RsidRunAddition = "00A565FD" };

            RunProperties runProperties654 = new RunProperties();
            RunFonts runFonts846 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize854 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript848 = new FontSizeComplexScript() { Val = "22" };

            runProperties654.Append(runFonts846);
            runProperties654.Append(fontSize854);
            runProperties654.Append(fontSizeComplexScript848);
            Text text581 = new Text();
            text581.Text = "0";

            run613.Append(runProperties654);
            run613.Append(text581);

            Run run614 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "00A565FD" };

            RunProperties runProperties655 = new RunProperties();
            RunFonts runFonts847 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize855 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript849 = new FontSizeComplexScript() { Val = "22" };

            runProperties655.Append(runFonts847);
            runProperties655.Append(fontSize855);
            runProperties655.Append(fontSizeComplexScript849);
            Text text582 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text582.Text = " Farm";

            run614.Append(runProperties655);
            run614.Append(text582);

            paragraph294.Append(paragraphProperties291);
            paragraph294.Append(sdtRun48);
            paragraph294.Append(run612);
            paragraph294.Append(run613);
            paragraph294.Append(run614);

            Paragraph paragraph295 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00A565FD", RsidParagraphProperties = "00A565FD", RsidRunAdditionDefault = "00A563A2", ParagraphId = "0AAC1AB4", TextId = "40FD78DE" };

            ParagraphProperties paragraphProperties292 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties292 = new ParagraphMarkRunProperties();
            RunFonts runFonts848 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize856 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript850 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties292.Append(runFonts848);
            paragraphMarkRunProperties292.Append(fontSize856);
            paragraphMarkRunProperties292.Append(fontSizeComplexScript850);

            paragraphProperties292.Append(paragraphMarkRunProperties292);

            SdtRun sdtRun49 = new SdtRun();

            SdtProperties sdtProperties49 = new SdtProperties();

            RunProperties runProperties656 = new RunProperties();
            RunFonts runFonts849 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize857 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript851 = new FontSizeComplexScript() { Val = "22" };

            runProperties656.Append(runFonts849);
            runProperties656.Append(fontSize857);
            runProperties656.Append(fontSizeComplexScript851);
            SdtId sdtId49 = new SdtId() { Val = 1277376355 };

            W14.SdtContentCheckBox sdtContentCheckBox49 = new W14.SdtContentCheckBox();
            W14.Checked checked49 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState49 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState49 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox49.Append(checked49);
            sdtContentCheckBox49.Append(checkedState49);
            sdtContentCheckBox49.Append(uncheckedState49);

            sdtProperties49.Append(runProperties656);
            sdtProperties49.Append(sdtId49);
            sdtProperties49.Append(sdtContentCheckBox49);
            SdtEndCharProperties sdtEndCharProperties49 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun49 = new SdtContentRun();

            Run run615 = new Run() { RsidRunAddition = "00F12AD5" };

            RunProperties runProperties657 = new RunProperties();
            RunFonts runFonts850 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic" };
            FontSize fontSize858 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript852 = new FontSizeComplexScript() { Val = "22" };

            runProperties657.Append(runFonts850);
            runProperties657.Append(fontSize858);
            runProperties657.Append(fontSizeComplexScript852);
            Text text583 = new Text();
            text583.Text = "☐";

            run615.Append(runProperties657);
            run615.Append(text583);

            sdtContentRun49.Append(run615);

            sdtRun49.Append(sdtProperties49);
            sdtRun49.Append(sdtEndCharProperties49);
            sdtRun49.Append(sdtContentRun49);

            Run run616 = new Run() { RsidRunAddition = "00A565FD" };

            RunProperties runProperties658 = new RunProperties();
            RunFonts runFonts851 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize859 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript853 = new FontSizeComplexScript() { Val = "22" };

            runProperties658.Append(runFonts851);
            runProperties658.Append(fontSize859);
            runProperties658.Append(fontSizeComplexScript853);
            Text text584 = new Text();
            text584.Text = "Test";

            run616.Append(runProperties658);
            run616.Append(text584);

            paragraph295.Append(paragraphProperties292);
            paragraph295.Append(sdtRun49);
            paragraph295.Append(run616);

            Paragraph paragraph296 = new Paragraph() { RsidParagraphAddition = "00E8117E", RsidParagraphProperties = "00E8117E", RsidRunAdditionDefault = "00BC048A", ParagraphId = "2A69E2AC", TextId = "77777777" };

            ParagraphProperties paragraphProperties293 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties293 = new ParagraphMarkRunProperties();
            RunFonts runFonts852 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize860 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript854 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties293.Append(runFonts852);
            paragraphMarkRunProperties293.Append(fontSize860);
            paragraphMarkRunProperties293.Append(fontSizeComplexScript854);

            paragraphProperties293.Append(paragraphMarkRunProperties293);

            Run run617 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties659 = new RunProperties();
            RunFonts runFonts853 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize861 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript855 = new FontSizeComplexScript() { Val = "22" };

            runProperties659.Append(runFonts853);
            runProperties659.Append(fontSize861);
            runProperties659.Append(fontSizeComplexScript855);
            Text text585 = new Text();
            text585.Text = "Vendor Supports application in Citrix configuration Yes/No";

            run617.Append(runProperties659);
            run617.Append(text585);

            Run run618 = new Run();

            RunProperties runProperties660 = new RunProperties();
            RunFonts runFonts854 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize862 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript856 = new FontSizeComplexScript() { Val = "22" };

            runProperties660.Append(runFonts854);
            runProperties660.Append(fontSize862);
            runProperties660.Append(fontSizeComplexScript856);
            Text text586 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text586.Text = ": ";

            run618.Append(runProperties660);
            run618.Append(text586);

            Run run619 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties661 = new RunProperties();
            RunFonts runFonts855 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color321 = new Color() { Val = "FF0000" };
            FontSize fontSize863 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript857 = new FontSizeComplexScript() { Val = "22" };

            runProperties661.Append(runFonts855);
            runProperties661.Append(color321);
            runProperties661.Append(fontSize863);
            runProperties661.Append(fontSizeComplexScript857);
            Text text587 = new Text();
            text587.Text = "YES";

            run619.Append(runProperties661);
            run619.Append(text587);

            paragraph296.Append(paragraphProperties293);
            paragraph296.Append(run617);
            paragraph296.Append(run618);
            paragraph296.Append(run619);

            Paragraph paragraph297 = new Paragraph() { RsidParagraphAddition = "00E8117E", RsidParagraphProperties = "00E8117E", RsidRunAdditionDefault = "00E8117E", ParagraphId = "06A217F5", TextId = "77777777" };

            ParagraphProperties paragraphProperties294 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties294 = new ParagraphMarkRunProperties();
            RunFonts runFonts856 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize864 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript858 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties294.Append(runFonts856);
            paragraphMarkRunProperties294.Append(fontSize864);
            paragraphMarkRunProperties294.Append(fontSizeComplexScript858);

            paragraphProperties294.Append(paragraphMarkRunProperties294);

            Run run620 = new Run();

            RunProperties runProperties662 = new RunProperties();
            RunFonts runFonts857 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize865 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript859 = new FontSizeComplexScript() { Val = "22" };

            runProperties662.Append(runFonts857);
            runProperties662.Append(fontSize865);
            runProperties662.Append(fontSizeComplexScript859);
            Text text588 = new Text();
            text588.Text = "Server Reboot Schedule";

            run620.Append(runProperties662);
            run620.Append(text588);

            paragraph297.Append(paragraphProperties294);
            paragraph297.Append(run620);

            Paragraph paragraph298 = new Paragraph() { RsidParagraphAddition = "00E8117E", RsidParagraphProperties = "00E8117E", RsidRunAdditionDefault = "00DE0CB0", ParagraphId = "7BCFB1EB", TextId = "058B2FF9" };

            ParagraphProperties paragraphProperties295 = new ParagraphProperties();
            Indentation indentation23 = new Indentation() { FirstLine = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties295 = new ParagraphMarkRunProperties();
            RunFonts runFonts858 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color322 = new Color() { Val = "FF0000" };
            FontSize fontSize866 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript860 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties295.Append(runFonts858);
            paragraphMarkRunProperties295.Append(color322);
            paragraphMarkRunProperties295.Append(fontSize866);
            paragraphMarkRunProperties295.Append(fontSizeComplexScript860);

            paragraphProperties295.Append(indentation23);
            paragraphProperties295.Append(paragraphMarkRunProperties295);

            Run run621 = new Run();

            RunProperties runProperties663 = new RunProperties();
            RunFonts runFonts859 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color323 = new Color() { Val = "FF0000" };
            FontSize fontSize867 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript861 = new FontSizeComplexScript() { Val = "22" };

            runProperties663.Append(runFonts859);
            runProperties663.Append(color323);
            runProperties663.Append(fontSize867);
            runProperties663.Append(fontSizeComplexScript861);
            Text text589 = new Text();
            text589.Text = "ALL";

            run621.Append(runProperties663);
            run621.Append(text589);

            Run run622 = new Run() { RsidRunAddition = "00E8117E" };

            RunProperties runProperties664 = new RunProperties();
            RunFonts runFonts860 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color324 = new Color() { Val = "FF0000" };
            FontSize fontSize868 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript862 = new FontSizeComplexScript() { Val = "22" };

            runProperties664.Append(runFonts860);
            runProperties664.Append(color324);
            runProperties664.Append(fontSize868);
            runProperties664.Append(fontSizeComplexScript862);
            Text text590 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text590.Text = " servers need to be rebooted once weekly.  A staggered schedule is suggested.  Reboots will be proceeded by a user warning";

            run622.Append(runProperties664);
            run622.Append(text590);

            Run run623 = new Run() { RsidRunAddition = "00116413" };

            RunProperties runProperties665 = new RunProperties();
            RunFonts runFonts861 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color325 = new Color() { Val = "FF0000" };
            FontSize fontSize869 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript863 = new FontSizeComplexScript() { Val = "22" };

            runProperties665.Append(runFonts861);
            runProperties665.Append(color325);
            runProperties665.Append(fontSize869);
            runProperties665.Append(fontSizeComplexScript863);
            Text text591 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text591.Text = " & disabling of any logins";

            run623.Append(runProperties665);
            run623.Append(text591);

            Run run624 = new Run() { RsidRunAddition = "00E8117E" };

            RunProperties runProperties666 = new RunProperties();
            RunFonts runFonts862 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color326 = new Color() { Val = "FF0000" };
            FontSize fontSize870 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript864 = new FontSizeComplexScript() { Val = "22" };

            runProperties666.Append(runFonts862);
            runProperties666.Append(color326);
            runProperties666.Append(fontSize870);
            runProperties666.Append(fontSizeComplexScript864);
            Text text592 = new Text();
            text592.Text = ".";

            run624.Append(runProperties666);
            run624.Append(text592);

            paragraph298.Append(paragraphProperties295);
            paragraph298.Append(run621);
            paragraph298.Append(run622);
            paragraph298.Append(run623);
            paragraph298.Append(run624);

            Table table7 = new Table();

            TableProperties tableProperties7 = new TableProperties();
            TableWidth tableWidth7 = new TableWidth() { Width = "0", Type = TableWidthUnitValues.Auto };
            TableIndentation tableIndentation2 = new TableIndentation() { Width = 1548, Type = TableWidthUnitValues.Dxa };

            TableBorders tableBorders4 = new TableBorders();
            TopBorder topBorder53 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder52 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder52 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder52 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder4 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder4 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableBorders4.Append(topBorder53);
            tableBorders4.Append(leftBorder52);
            tableBorders4.Append(bottomBorder52);
            tableBorders4.Append(rightBorder52);
            tableBorders4.Append(insideHorizontalBorder4);
            tableBorders4.Append(insideVerticalBorder4);
            TableLook tableLook7 = new TableLook() { Val = "01E0" };

            tableProperties7.Append(tableWidth7);
            tableProperties7.Append(tableIndentation2);
            tableProperties7.Append(tableBorders4);
            tableProperties7.Append(tableLook7);

            TableGrid tableGrid7 = new TableGrid();
            GridColumn gridColumn35 = new GridColumn() { Width = "2214" };
            GridColumn gridColumn36 = new GridColumn() { Width = "2215" };
            GridColumn gridColumn37 = new GridColumn() { Width = "2215" };
            GridColumn gridColumn38 = new GridColumn() { Width = "3976" };

            tableGrid7.Append(gridColumn35);
            tableGrid7.Append(gridColumn36);
            tableGrid7.Append(gridColumn37);
            tableGrid7.Append(gridColumn38);

            TableRow tableRow36 = new TableRow() { RsidTableRowMarkRevision = "009032DC", RsidTableRowAddition = "00E8117E", RsidTableRowProperties = "0027287B", ParagraphId = "6B699E46", TextId = "0F05B52E" };

            TableCell tableCell158 = new TableCell();

            TableCellProperties tableCellProperties158 = new TableCellProperties();
            TableCellWidth tableCellWidth158 = new TableCellWidth() { Width = "2214", Type = TableWidthUnitValues.Dxa };

            tableCellProperties158.Append(tableCellWidth158);

            Paragraph paragraph299 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00E8117E", RsidParagraphProperties = "00D02406", RsidRunAdditionDefault = "00E8117E", ParagraphId = "3DDC2CCE", TextId = "5807ED4D" };

            ParagraphProperties paragraphProperties296 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties296 = new ParagraphMarkRunProperties();
            RunFonts runFonts863 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize871 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript865 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties296.Append(runFonts863);
            paragraphMarkRunProperties296.Append(fontSize871);
            paragraphMarkRunProperties296.Append(fontSizeComplexScript865);

            paragraphProperties296.Append(paragraphMarkRunProperties296);

            Run run625 = new Run();

            RunProperties runProperties667 = new RunProperties();
            RunFonts runFonts864 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize872 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript866 = new FontSizeComplexScript() { Val = "22" };

            runProperties667.Append(runFonts864);
            runProperties667.Append(fontSize872);
            runProperties667.Append(fontSizeComplexScript866);
            Text text593 = new Text();
            text593.Text = "Server Name";

            run625.Append(runProperties667);
            run625.Append(text593);

            paragraph299.Append(paragraphProperties296);
            paragraph299.Append(run625);

            tableCell158.Append(tableCellProperties158);
            tableCell158.Append(paragraph299);

            TableCell tableCell159 = new TableCell();

            TableCellProperties tableCellProperties159 = new TableCellProperties();
            TableCellWidth tableCellWidth159 = new TableCellWidth() { Width = "2215", Type = TableWidthUnitValues.Dxa };

            tableCellProperties159.Append(tableCellWidth159);

            Paragraph paragraph300 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00E8117E", RsidParagraphProperties = "00D02406", RsidRunAdditionDefault = "00E8117E", ParagraphId = "42AFA278", TextId = "5EFCF170" };

            ParagraphProperties paragraphProperties297 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties297 = new ParagraphMarkRunProperties();
            RunFonts runFonts865 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize873 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript867 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties297.Append(runFonts865);
            paragraphMarkRunProperties297.Append(fontSize873);
            paragraphMarkRunProperties297.Append(fontSizeComplexScript867);

            paragraphProperties297.Append(paragraphMarkRunProperties297);

            Run run626 = new Run();

            RunProperties runProperties668 = new RunProperties();
            RunFonts runFonts866 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize874 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript868 = new FontSizeComplexScript() { Val = "22" };

            runProperties668.Append(runFonts866);
            runProperties668.Append(fontSize874);
            runProperties668.Append(fontSizeComplexScript868);
            Text text594 = new Text();
            text594.Text = "Day of the Week";

            run626.Append(runProperties668);
            run626.Append(text594);

            paragraph300.Append(paragraphProperties297);
            paragraph300.Append(run626);

            tableCell159.Append(tableCellProperties159);
            tableCell159.Append(paragraph300);

            TableCell tableCell160 = new TableCell();

            TableCellProperties tableCellProperties160 = new TableCellProperties();
            TableCellWidth tableCellWidth160 = new TableCellWidth() { Width = "2215", Type = TableWidthUnitValues.Dxa };

            tableCellProperties160.Append(tableCellWidth160);

            Paragraph paragraph301 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00E8117E", RsidParagraphProperties = "00D02406", RsidRunAdditionDefault = "00E8117E", ParagraphId = "66F8A1F2", TextId = "7DBED0F8" };

            ParagraphProperties paragraphProperties298 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties298 = new ParagraphMarkRunProperties();
            RunFonts runFonts867 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize875 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript869 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties298.Append(runFonts867);
            paragraphMarkRunProperties298.Append(fontSize875);
            paragraphMarkRunProperties298.Append(fontSizeComplexScript869);

            paragraphProperties298.Append(paragraphMarkRunProperties298);

            Run run627 = new Run();

            RunProperties runProperties669 = new RunProperties();
            RunFonts runFonts868 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize876 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript870 = new FontSizeComplexScript() { Val = "22" };

            runProperties669.Append(runFonts868);
            runProperties669.Append(fontSize876);
            runProperties669.Append(fontSizeComplexScript870);
            Text text595 = new Text();
            text595.Text = "Time of Day";

            run627.Append(runProperties669);
            run627.Append(text595);

            paragraph301.Append(paragraphProperties298);
            paragraph301.Append(run627);

            tableCell160.Append(tableCellProperties160);
            tableCell160.Append(paragraph301);

            TableCell tableCell161 = new TableCell();

            TableCellProperties tableCellProperties161 = new TableCellProperties();
            TableCellWidth tableCellWidth161 = new TableCellWidth() { Width = "3976", Type = TableWidthUnitValues.Dxa };

            tableCellProperties161.Append(tableCellWidth161);

            Paragraph paragraph302 = new Paragraph() { RsidParagraphAddition = "00E8117E", RsidParagraphProperties = "00D02406", RsidRunAdditionDefault = "00DE0CB0", ParagraphId = "69045A29", TextId = "5E961419" };

            ParagraphProperties paragraphProperties299 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties299 = new ParagraphMarkRunProperties();
            RunFonts runFonts869 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize877 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript871 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties299.Append(runFonts869);
            paragraphMarkRunProperties299.Append(fontSize877);
            paragraphMarkRunProperties299.Append(fontSizeComplexScript871);

            paragraphProperties299.Append(paragraphMarkRunProperties299);

            Run run628 = new Run();

            RunProperties runProperties670 = new RunProperties();
            RunFonts runFonts870 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize878 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript872 = new FontSizeComplexScript() { Val = "22" };

            runProperties670.Append(runFonts870);
            runProperties670.Append(fontSize878);
            runProperties670.Append(fontSizeComplexScript872);
            Text text596 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text596.Text = "User ";

            run628.Append(runProperties670);
            run628.Append(text596);

            Run run629 = new Run() { RsidRunAddition = "00E8117E" };

            RunProperties runProperties671 = new RunProperties();
            RunFonts runFonts871 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize879 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript873 = new FontSizeComplexScript() { Val = "22" };

            runProperties671.Append(runFonts871);
            runProperties671.Append(fontSize879);
            runProperties671.Append(fontSizeComplexScript873);
            Text text597 = new Text();
            text597.Text = "Warning Interval";

            run629.Append(runProperties671);
            run629.Append(text597);

            Run run630 = new Run() { RsidRunAddition = "0027287B" };

            RunProperties runProperties672 = new RunProperties();
            RunFonts runFonts872 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize880 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript874 = new FontSizeComplexScript() { Val = "22" };

            runProperties672.Append(runFonts872);
            runProperties672.Append(fontSize880);
            runProperties672.Append(fontSizeComplexScript874);
            Text text598 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text598.Text = " (in minutes)";

            run630.Append(runProperties672);
            run630.Append(text598);

            paragraph302.Append(paragraphProperties299);
            paragraph302.Append(run628);
            paragraph302.Append(run629);
            paragraph302.Append(run630);

            tableCell161.Append(tableCellProperties161);
            tableCell161.Append(paragraph302);

            tableRow36.Append(tableCell158);
            tableRow36.Append(tableCell159);
            tableRow36.Append(tableCell160);
            tableRow36.Append(tableCell161);

            TableRow tableRow37 = new TableRow() { RsidTableRowMarkRevision = "009032DC", RsidTableRowAddition = "00E8117E", RsidTableRowProperties = "0027287B", ParagraphId = "453D417F", TextId = "6703B66D" };

            TableCell tableCell162 = new TableCell();

            TableCellProperties tableCellProperties162 = new TableCellProperties();
            TableCellWidth tableCellWidth162 = new TableCellWidth() { Width = "2214", Type = TableWidthUnitValues.Dxa };

            tableCellProperties162.Append(tableCellWidth162);

            Paragraph paragraph303 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00E8117E", RsidParagraphProperties = "00D02406", RsidRunAdditionDefault = "00E8117E", ParagraphId = "4DE9C9B5", TextId = "662CDF54" };

            ParagraphProperties paragraphProperties300 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties300 = new ParagraphMarkRunProperties();
            RunFonts runFonts873 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color327 = new Color() { Val = "FF0000" };
            FontSize fontSize881 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript875 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties300.Append(runFonts873);
            paragraphMarkRunProperties300.Append(color327);
            paragraphMarkRunProperties300.Append(fontSize881);
            paragraphMarkRunProperties300.Append(fontSizeComplexScript875);

            paragraphProperties300.Append(paragraphMarkRunProperties300);

            Run run631 = new Run();

            RunProperties runProperties673 = new RunProperties();
            RunFonts runFonts874 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color328 = new Color() { Val = "FF0000" };
            FontSize fontSize882 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript876 = new FontSizeComplexScript() { Val = "22" };

            runProperties673.Append(runFonts874);
            runProperties673.Append(color328);
            runProperties673.Append(fontSize882);
            runProperties673.Append(fontSizeComplexScript876);
            Text text599 = new Text();
            text599.Text = "BJCxxxXAP";

            run631.Append(runProperties673);
            run631.Append(text599);

            Run run632 = new Run() { RsidRunProperties = "004E361A" };

            RunProperties runProperties674 = new RunProperties();
            RunFonts runFonts875 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color329 = new Color() { Val = "FF0000" };
            FontSize fontSize883 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript877 = new FontSizeComplexScript() { Val = "22" };

            runProperties674.Append(runFonts875);
            runProperties674.Append(color329);
            runProperties674.Append(fontSize883);
            runProperties674.Append(fontSizeComplexScript877);
            Text text600 = new Text();
            text600.Text = "01";

            run632.Append(runProperties674);
            run632.Append(text600);

            paragraph303.Append(paragraphProperties300);
            paragraph303.Append(run631);
            paragraph303.Append(run632);

            tableCell162.Append(tableCellProperties162);
            tableCell162.Append(paragraph303);

            TableCell tableCell163 = new TableCell();

            TableCellProperties tableCellProperties163 = new TableCellProperties();
            TableCellWidth tableCellWidth163 = new TableCellWidth() { Width = "2215", Type = TableWidthUnitValues.Dxa };

            tableCellProperties163.Append(tableCellWidth163);

            Paragraph paragraph304 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00E8117E", RsidParagraphProperties = "00D02406", RsidRunAdditionDefault = "00E8117E", ParagraphId = "1CEBFC59", TextId = "793A2929" };

            ParagraphProperties paragraphProperties301 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties301 = new ParagraphMarkRunProperties();
            RunFonts runFonts876 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color330 = new Color() { Val = "FF0000" };
            FontSize fontSize884 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript878 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties301.Append(runFonts876);
            paragraphMarkRunProperties301.Append(color330);
            paragraphMarkRunProperties301.Append(fontSize884);
            paragraphMarkRunProperties301.Append(fontSizeComplexScript878);

            paragraphProperties301.Append(paragraphMarkRunProperties301);

            Run run633 = new Run();

            RunProperties runProperties675 = new RunProperties();
            RunFonts runFonts877 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color331 = new Color() { Val = "FF0000" };
            FontSize fontSize885 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript879 = new FontSizeComplexScript() { Val = "22" };

            runProperties675.Append(runFonts877);
            runProperties675.Append(color331);
            runProperties675.Append(fontSize885);
            runProperties675.Append(fontSizeComplexScript879);
            Text text601 = new Text();
            text601.Text = "Sunday";

            run633.Append(runProperties675);
            run633.Append(text601);

            paragraph304.Append(paragraphProperties301);
            paragraph304.Append(run633);

            tableCell163.Append(tableCellProperties163);
            tableCell163.Append(paragraph304);

            TableCell tableCell164 = new TableCell();

            TableCellProperties tableCellProperties164 = new TableCellProperties();
            TableCellWidth tableCellWidth164 = new TableCellWidth() { Width = "2215", Type = TableWidthUnitValues.Dxa };

            tableCellProperties164.Append(tableCellWidth164);

            Paragraph paragraph305 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00E8117E", RsidParagraphProperties = "00D02406", RsidRunAdditionDefault = "00E8117E", ParagraphId = "243CA2C6", TextId = "7E5E13A8" };

            ParagraphProperties paragraphProperties302 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties302 = new ParagraphMarkRunProperties();
            RunFonts runFonts878 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color332 = new Color() { Val = "FF0000" };
            FontSize fontSize886 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript880 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties302.Append(runFonts878);
            paragraphMarkRunProperties302.Append(color332);
            paragraphMarkRunProperties302.Append(fontSize886);
            paragraphMarkRunProperties302.Append(fontSizeComplexScript880);

            paragraphProperties302.Append(paragraphMarkRunProperties302);

            Run run634 = new Run();

            RunProperties runProperties676 = new RunProperties();
            RunFonts runFonts879 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color333 = new Color() { Val = "FF0000" };
            FontSize fontSize887 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript881 = new FontSizeComplexScript() { Val = "22" };

            runProperties676.Append(runFonts879);
            runProperties676.Append(color333);
            runProperties676.Append(fontSize887);
            runProperties676.Append(fontSizeComplexScript881);
            Text text602 = new Text();
            text602.Text = "12:30am";

            run634.Append(runProperties676);
            run634.Append(text602);

            paragraph305.Append(paragraphProperties302);
            paragraph305.Append(run634);

            tableCell164.Append(tableCellProperties164);
            tableCell164.Append(paragraph305);

            TableCell tableCell165 = new TableCell();

            TableCellProperties tableCellProperties165 = new TableCellProperties();
            TableCellWidth tableCellWidth165 = new TableCellWidth() { Width = "3976", Type = TableWidthUnitValues.Dxa };

            tableCellProperties165.Append(tableCellWidth165);

            Paragraph paragraph306 = new Paragraph() { RsidParagraphAddition = "00E8117E", RsidParagraphProperties = "00D02406", RsidRunAdditionDefault = "00DE0CB0", ParagraphId = "147A6425", TextId = "2DAD0F0A" };

            ParagraphProperties paragraphProperties303 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties303 = new ParagraphMarkRunProperties();
            RunFonts runFonts880 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color334 = new Color() { Val = "FF0000" };
            FontSize fontSize888 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript882 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties303.Append(runFonts880);
            paragraphMarkRunProperties303.Append(color334);
            paragraphMarkRunProperties303.Append(fontSize888);
            paragraphMarkRunProperties303.Append(fontSizeComplexScript882);

            paragraphProperties303.Append(paragraphMarkRunProperties303);

            Run run635 = new Run();

            RunProperties runProperties677 = new RunProperties();
            RunFonts runFonts881 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color335 = new Color() { Val = "FF0000" };
            FontSize fontSize889 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript883 = new FontSizeComplexScript() { Val = "22" };

            runProperties677.Append(runFonts881);
            runProperties677.Append(color335);
            runProperties677.Append(fontSize889);
            runProperties677.Append(fontSizeComplexScript883);
            Text text603 = new Text();
            text603.Text = "5, 10, 15";

            run635.Append(runProperties677);
            run635.Append(text603);

            paragraph306.Append(paragraphProperties303);
            paragraph306.Append(run635);

            tableCell165.Append(tableCellProperties165);
            tableCell165.Append(paragraph306);

            tableRow37.Append(tableCell162);
            tableRow37.Append(tableCell163);
            tableRow37.Append(tableCell164);
            tableRow37.Append(tableCell165);

            TableRow tableRow38 = new TableRow() { RsidTableRowMarkRevision = "009032DC", RsidTableRowAddition = "00E8117E", RsidTableRowProperties = "0027287B", ParagraphId = "3643E075", TextId = "36608C2D" };

            TableCell tableCell166 = new TableCell();

            TableCellProperties tableCellProperties166 = new TableCellProperties();
            TableCellWidth tableCellWidth166 = new TableCellWidth() { Width = "2214", Type = TableWidthUnitValues.Dxa };

            tableCellProperties166.Append(tableCellWidth166);

            Paragraph paragraph307 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00E8117E", RsidParagraphProperties = "00D02406", RsidRunAdditionDefault = "00E8117E", ParagraphId = "5A068E7C", TextId = "7A250A44" };

            ParagraphProperties paragraphProperties304 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties304 = new ParagraphMarkRunProperties();
            RunFonts runFonts882 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color336 = new Color() { Val = "FF0000" };
            FontSize fontSize890 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript884 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties304.Append(runFonts882);
            paragraphMarkRunProperties304.Append(color336);
            paragraphMarkRunProperties304.Append(fontSize890);
            paragraphMarkRunProperties304.Append(fontSizeComplexScript884);

            paragraphProperties304.Append(paragraphMarkRunProperties304);

            paragraph307.Append(paragraphProperties304);

            tableCell166.Append(tableCellProperties166);
            tableCell166.Append(paragraph307);

            TableCell tableCell167 = new TableCell();

            TableCellProperties tableCellProperties167 = new TableCellProperties();
            TableCellWidth tableCellWidth167 = new TableCellWidth() { Width = "2215", Type = TableWidthUnitValues.Dxa };

            tableCellProperties167.Append(tableCellWidth167);

            Paragraph paragraph308 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00E8117E", RsidParagraphProperties = "00D02406", RsidRunAdditionDefault = "00E8117E", ParagraphId = "489513B9", TextId = "7A07C4D1" };

            ParagraphProperties paragraphProperties305 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties305 = new ParagraphMarkRunProperties();
            RunFonts runFonts883 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color337 = new Color() { Val = "FF0000" };
            FontSize fontSize891 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript885 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties305.Append(runFonts883);
            paragraphMarkRunProperties305.Append(color337);
            paragraphMarkRunProperties305.Append(fontSize891);
            paragraphMarkRunProperties305.Append(fontSizeComplexScript885);

            paragraphProperties305.Append(paragraphMarkRunProperties305);

            paragraph308.Append(paragraphProperties305);

            tableCell167.Append(tableCellProperties167);
            tableCell167.Append(paragraph308);

            TableCell tableCell168 = new TableCell();

            TableCellProperties tableCellProperties168 = new TableCellProperties();
            TableCellWidth tableCellWidth168 = new TableCellWidth() { Width = "2215", Type = TableWidthUnitValues.Dxa };

            tableCellProperties168.Append(tableCellWidth168);

            Paragraph paragraph309 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00E8117E", RsidParagraphProperties = "00D02406", RsidRunAdditionDefault = "00E8117E", ParagraphId = "1A227088", TextId = "17167858" };

            ParagraphProperties paragraphProperties306 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties306 = new ParagraphMarkRunProperties();
            RunFonts runFonts884 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color338 = new Color() { Val = "FF0000" };
            FontSize fontSize892 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript886 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties306.Append(runFonts884);
            paragraphMarkRunProperties306.Append(color338);
            paragraphMarkRunProperties306.Append(fontSize892);
            paragraphMarkRunProperties306.Append(fontSizeComplexScript886);

            paragraphProperties306.Append(paragraphMarkRunProperties306);

            paragraph309.Append(paragraphProperties306);

            tableCell168.Append(tableCellProperties168);
            tableCell168.Append(paragraph309);

            TableCell tableCell169 = new TableCell();

            TableCellProperties tableCellProperties169 = new TableCellProperties();
            TableCellWidth tableCellWidth169 = new TableCellWidth() { Width = "3976", Type = TableWidthUnitValues.Dxa };

            tableCellProperties169.Append(tableCellWidth169);

            Paragraph paragraph310 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00E8117E", RsidParagraphProperties = "00D02406", RsidRunAdditionDefault = "00E8117E", ParagraphId = "30EE5EAF", TextId = "77777777" };

            ParagraphProperties paragraphProperties307 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties307 = new ParagraphMarkRunProperties();
            RunFonts runFonts885 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color339 = new Color() { Val = "FF0000" };
            FontSize fontSize893 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript887 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties307.Append(runFonts885);
            paragraphMarkRunProperties307.Append(color339);
            paragraphMarkRunProperties307.Append(fontSize893);
            paragraphMarkRunProperties307.Append(fontSizeComplexScript887);

            paragraphProperties307.Append(paragraphMarkRunProperties307);

            paragraph310.Append(paragraphProperties307);

            tableCell169.Append(tableCellProperties169);
            tableCell169.Append(paragraph310);

            tableRow38.Append(tableCell166);
            tableRow38.Append(tableCell167);
            tableRow38.Append(tableCell168);
            tableRow38.Append(tableCell169);

            table7.Append(tableProperties7);
            table7.Append(tableGrid7);
            table7.Append(tableRow36);
            table7.Append(tableRow37);
            table7.Append(tableRow38);

            Paragraph paragraph311 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00116831", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00116831", ParagraphId = "0AAC1AB6", TextId = "40D88CFB" };

            ParagraphProperties paragraphProperties308 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties308 = new ParagraphMarkRunProperties();
            RunFonts runFonts886 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize894 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript888 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties308.Append(runFonts886);
            paragraphMarkRunProperties308.Append(fontSize894);
            paragraphMarkRunProperties308.Append(fontSizeComplexScript888);

            paragraphProperties308.Append(paragraphMarkRunProperties308);

            Run run636 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties678 = new RunProperties();
            RunFonts runFonts887 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize895 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript889 = new FontSizeComplexScript() { Val = "22" };

            runProperties678.Append(runFonts887);
            runProperties678.Append(fontSize895);
            runProperties678.Append(fontSizeComplexScript889);
            Text text604 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text604.Text = "Will this server be added to an ";

            run636.Append(runProperties678);
            run636.Append(text604);

            Run run637 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties679 = new RunProperties();
            RunFonts runFonts888 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color340 = new Color() { Val = "FF0000" };
            FontSize fontSize896 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript890 = new FontSizeComplexScript() { Val = "22" };

            runProperties679.Append(runFonts888);
            runProperties679.Append(color340);
            runProperties679.Append(fontSize896);
            runProperties679.Append(fontSizeComplexScript890);
            Text text605 = new Text();
            text605.Text = "existing";

            run637.Append(runProperties679);
            run637.Append(text605);

            Run run638 = new Run() { RsidRunProperties = "003E56F4", RsidRunAddition = "003E56F4" };

            RunProperties runProperties680 = new RunProperties();
            RunFonts runFonts889 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color341 = new Color() { Val = "FF0000" };
            FontSize fontSize897 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript891 = new FontSizeComplexScript() { Val = "22" };

            runProperties680.Append(runFonts889);
            runProperties680.Append(color341);
            runProperties680.Append(fontSize897);
            runProperties680.Append(fontSizeComplexScript891);
            Text text606 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text606.Text = " ";

            run638.Append(runProperties680);
            run638.Append(text606);

            Run run639 = new Run() { RsidRunAddition = "003E56F4" };

            RunProperties runProperties681 = new RunProperties();
            RunFonts runFonts890 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize898 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript892 = new FontSizeComplexScript() { Val = "22" };

            runProperties681.Append(runFonts890);
            runProperties681.Append(fontSize898);
            runProperties681.Append(fontSizeComplexScript892);
            Text text607 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text607.Text = "or a ";

            run639.Append(runProperties681);
            run639.Append(text607);

            Run run640 = new Run() { RsidRunProperties = "003E56F4", RsidRunAddition = "003E56F4" };

            RunProperties runProperties682 = new RunProperties();
            RunFonts runFonts891 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color342 = new Color() { Val = "FF0000" };
            FontSize fontSize899 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript893 = new FontSizeComplexScript() { Val = "22" };

            runProperties682.Append(runFonts891);
            runProperties682.Append(color342);
            runProperties682.Append(fontSize899);
            runProperties682.Append(fontSizeComplexScript893);
            Text text608 = new Text();
            text608.Text = "new";

            run640.Append(runProperties682);
            run640.Append(text608);

            Run run641 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties683 = new RunProperties();
            RunFonts runFonts892 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color343 = new Color() { Val = "FF0000" };
            FontSize fontSize900 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript894 = new FontSizeComplexScript() { Val = "22" };

            runProperties683.Append(runFonts892);
            runProperties683.Append(color343);
            runProperties683.Append(fontSize900);
            runProperties683.Append(fontSizeComplexScript894);
            Text text609 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text609.Text = " ";

            run641.Append(runProperties683);
            run641.Append(text609);

            Run run642 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties684 = new RunProperties();
            RunFonts runFonts893 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize901 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript895 = new FontSizeComplexScript() { Val = "22" };

            runProperties684.Append(runFonts893);
            runProperties684.Append(fontSize901);
            runProperties684.Append(fontSizeComplexScript895);
            Text text610 = new Text();
            text610.Text = "application?";

            run642.Append(runProperties684);
            run642.Append(text610);

            paragraph311.Append(paragraphProperties308);
            paragraph311.Append(run636);
            paragraph311.Append(run637);
            paragraph311.Append(run638);
            paragraph311.Append(run639);
            paragraph311.Append(run640);
            paragraph311.Append(run641);
            paragraph311.Append(run642);

            Paragraph paragraph312 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00116831", RsidParagraphProperties = "00BC048A", RsidRunAdditionDefault = "00116831", ParagraphId = "0AAC1AB7", TextId = "31ED6912" };

            ParagraphProperties paragraphProperties309 = new ParagraphProperties();
            Indentation indentation24 = new Indentation() { FirstLine = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties309 = new ParagraphMarkRunProperties();
            RunFonts runFonts894 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize902 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript896 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties309.Append(runFonts894);
            paragraphMarkRunProperties309.Append(fontSize902);
            paragraphMarkRunProperties309.Append(fontSizeComplexScript896);

            paragraphProperties309.Append(indentation24);
            paragraphProperties309.Append(paragraphMarkRunProperties309);

            Run run643 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties685 = new RunProperties();
            RunFonts runFonts895 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize903 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript897 = new FontSizeComplexScript() { Val = "22" };

            runProperties685.Append(runFonts895);
            runProperties685.Append(fontSize903);
            runProperties685.Append(fontSizeComplexScript897);
            Text text611 = new Text();
            text611.Text = "Application Name:";

            run643.Append(runProperties685);
            run643.Append(text611);

            Run run644 = new Run() { RsidRunAddition = "00A565FD" };

            RunProperties runProperties686 = new RunProperties();
            RunFonts runFonts896 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize904 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript898 = new FontSizeComplexScript() { Val = "22" };

            runProperties686.Append(runFonts896);
            runProperties686.Append(fontSize904);
            runProperties686.Append(fontSizeComplexScript898);
            Text text612 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text612.Text = " ";

            run644.Append(runProperties686);
            run644.Append(text612);

            Run run645 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "00A565FD" };

            RunProperties runProperties687 = new RunProperties();
            RunFonts runFonts897 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color344 = new Color() { Val = "FF0000" };
            FontSize fontSize905 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript899 = new FontSizeComplexScript() { Val = "22" };

            runProperties687.Append(runFonts897);
            runProperties687.Append(color344);
            runProperties687.Append(fontSize905);
            runProperties687.Append(fontSizeComplexScript899);
            Text text613 = new Text();
            text613.Text = "BJCxxxxxxxx";

            run645.Append(runProperties687);
            run645.Append(text613);

            paragraph312.Append(paragraphProperties309);
            paragraph312.Append(run643);
            paragraph312.Append(run644);
            paragraph312.Append(run645);

            Paragraph paragraph313 = new Paragraph() { RsidParagraphAddition = "00BC048A", RsidParagraphProperties = "00BC048A", RsidRunAdditionDefault = "00BC048A", ParagraphId = "2DE10DE1", TextId = "77777777" };

            ParagraphProperties paragraphProperties310 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties310 = new ParagraphMarkRunProperties();
            RunFonts runFonts898 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize906 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript900 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties310.Append(runFonts898);
            paragraphMarkRunProperties310.Append(fontSize906);
            paragraphMarkRunProperties310.Append(fontSizeComplexScript900);

            paragraphProperties310.Append(paragraphMarkRunProperties310);

            Run run646 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties688 = new RunProperties();
            RunFonts runFonts899 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize907 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript901 = new FontSizeComplexScript() { Val = "22" };

            runProperties688.Append(runFonts899);
            runProperties688.Append(fontSize907);
            runProperties688.Append(fontSizeComplexScript901);
            TabChar tabChar39 = new TabChar();

            run646.Append(runProperties688);
            run646.Append(tabChar39);

            Run run647 = new Run();

            RunProperties runProperties689 = new RunProperties();
            RunFonts runFonts900 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize908 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript902 = new FontSizeComplexScript() { Val = "22" };

            runProperties689.Append(runFonts900);
            runProperties689.Append(fontSize908);
            runProperties689.Append(fontSizeComplexScript902);
            Text text614 = new Text();
            text614.Text = "Citrix Users group: BJC-NT\\CTXI-";

            run647.Append(runProperties689);
            run647.Append(text614);

            Run run648 = new Run() { RsidRunProperties = "00BC048A" };

            RunProperties runProperties690 = new RunProperties();
            RunFonts runFonts901 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color345 = new Color() { Val = "FF0000" };
            FontSize fontSize909 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript903 = new FontSizeComplexScript() { Val = "22" };

            runProperties690.Append(runFonts901);
            runProperties690.Append(color345);
            runProperties690.Append(fontSize909);
            runProperties690.Append(fontSizeComplexScript903);
            Text text615 = new Text();
            text615.Text = "xxxx";

            run648.Append(runProperties690);
            run648.Append(text615);

            paragraph313.Append(paragraphProperties310);
            paragraph313.Append(run646);
            paragraph313.Append(run647);
            paragraph313.Append(run648);

            Paragraph paragraph314 = new Paragraph() { RsidParagraphAddition = "00BC048A", RsidParagraphProperties = "00BC048A", RsidRunAdditionDefault = "00BC048A", ParagraphId = "2DDE39F2", TextId = "587AD59F" };

            ParagraphProperties paragraphProperties311 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties311 = new ParagraphMarkRunProperties();
            RunFonts runFonts902 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color346 = new Color() { Val = "FF0000" };
            FontSize fontSize910 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript904 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties311.Append(runFonts902);
            paragraphMarkRunProperties311.Append(color346);
            paragraphMarkRunProperties311.Append(fontSize910);
            paragraphMarkRunProperties311.Append(fontSizeComplexScript904);

            paragraphProperties311.Append(paragraphMarkRunProperties311);

            Run run649 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties691 = new RunProperties();
            RunFonts runFonts903 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize911 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript905 = new FontSizeComplexScript() { Val = "22" };

            runProperties691.Append(runFonts903);
            runProperties691.Append(fontSize911);
            runProperties691.Append(fontSizeComplexScript905);
            TabChar tabChar40 = new TabChar();

            run649.Append(runProperties691);
            run649.Append(tabChar40);

            Run run650 = new Run();

            RunProperties runProperties692 = new RunProperties();
            RunFonts runFonts904 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize912 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript906 = new FontSizeComplexScript() { Val = "22" };

            runProperties692.Append(runFonts904);
            runProperties692.Append(fontSize912);
            runProperties692.Append(fontSizeComplexScript906);
            Text text616 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text616.Text = "Publish to desktop or ACCESSBJC only: ";

            run650.Append(runProperties692);
            run650.Append(text616);

            Run run651 = new Run();

            RunProperties runProperties693 = new RunProperties();
            RunFonts runFonts905 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color347 = new Color() { Val = "FF0000" };
            FontSize fontSize913 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript907 = new FontSizeComplexScript() { Val = "22" };

            runProperties693.Append(runFonts905);
            runProperties693.Append(color347);
            runProperties693.Append(fontSize913);
            runProperties693.Append(fontSizeComplexScript907);
            Text text617 = new Text();
            text617.Text = "ACCESSBJC only";

            run651.Append(runProperties693);
            run651.Append(text617);

            paragraph314.Append(paragraphProperties311);
            paragraph314.Append(run649);
            paragraph314.Append(run650);
            paragraph314.Append(run651);

            Paragraph paragraph315 = new Paragraph() { RsidParagraphAddition = "00116831", RsidParagraphProperties = "00BC048A", RsidRunAdditionDefault = "00116831", ParagraphId = "0AAC1AB8", TextId = "148823FA" };

            ParagraphProperties paragraphProperties312 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties312 = new ParagraphMarkRunProperties();
            RunFonts runFonts906 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize914 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript908 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties312.Append(runFonts906);
            paragraphMarkRunProperties312.Append(fontSize914);
            paragraphMarkRunProperties312.Append(fontSizeComplexScript908);

            paragraphProperties312.Append(paragraphMarkRunProperties312);

            Run run652 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties694 = new RunProperties();
            RunFonts runFonts907 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize915 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript909 = new FontSizeComplexScript() { Val = "22" };

            runProperties694.Append(runFonts907);
            runProperties694.Append(fontSize915);
            runProperties694.Append(fontSizeComplexScript909);
            Text text618 = new Text();
            text618.Text = "Location of Install guide: (or insert here)";

            run652.Append(runProperties694);
            run652.Append(text618);

            paragraph315.Append(paragraphProperties312);
            paragraph315.Append(run652);

            Paragraph paragraph316 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002B0580", RsidParagraphProperties = "002B0580", RsidRunAdditionDefault = "002B0580", ParagraphId = "2C3E6CA6", TextId = "4AD05601" };

            ParagraphProperties paragraphProperties313 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId21 = new ParagraphStyleId() { Val = "Heading2" };

            ParagraphMarkRunProperties paragraphMarkRunProperties313 = new ParagraphMarkRunProperties();
            Underline underline86 = new Underline() { Val = UnderlineValues.Single };

            paragraphMarkRunProperties313.Append(underline86);

            paragraphProperties313.Append(paragraphStyleId21);
            paragraphProperties313.Append(paragraphMarkRunProperties313);

            Run run653 = new Run();

            RunProperties runProperties695 = new RunProperties();
            Underline underline87 = new Underline() { Val = UnderlineValues.Single };

            runProperties695.Append(underline87);
            Text text619 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text619.Text = "17. ";

            run653.Append(runProperties695);
            run653.Append(text619);

            Run run654 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties696 = new RunProperties();
            Underline underline88 = new Underline() { Val = UnderlineValues.Single };

            runProperties696.Append(underline88);
            Text text620 = new Text();
            text620.Text = "Dependent Configuration Items";

            run654.Append(runProperties696);
            run654.Append(text620);

            Run run655 = new Run() { RsidRunProperties = "0057090B" };

            RunProperties runProperties697 = new RunProperties();
            Color color348 = new Color() { Val = "FF0000" };
            Underline underline89 = new Underline() { Val = UnderlineValues.Single };

            runProperties697.Append(color348);
            runProperties697.Append(underline89);
            Text text621 = new Text();
            text621.Text = ": N/A";

            run655.Append(runProperties697);
            run655.Append(text621);

            paragraph316.Append(paragraphProperties313);
            paragraph316.Append(run653);
            paragraph316.Append(run654);
            paragraph316.Append(run655);

            Paragraph paragraph317 = new Paragraph() { RsidParagraphAddition = "002B0580", RsidParagraphProperties = "002B0580", RsidRunAdditionDefault = "002B0580", ParagraphId = "71DAE5A8", TextId = "77777777" };

            ParagraphProperties paragraphProperties314 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties314 = new ParagraphMarkRunProperties();
            RunFonts runFonts908 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color349 = new Color() { Val = "FF0000" };
            FontSize fontSize916 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript910 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties314.Append(runFonts908);
            paragraphMarkRunProperties314.Append(color349);
            paragraphMarkRunProperties314.Append(fontSize916);
            paragraphMarkRunProperties314.Append(fontSizeComplexScript910);

            paragraphProperties314.Append(paragraphMarkRunProperties314);

            Run run656 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties698 = new RunProperties();
            RunFonts runFonts909 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color350 = new Color() { Val = "FF0000" };
            FontSize fontSize917 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript911 = new FontSizeComplexScript() { Val = "22" };

            runProperties698.Append(runFonts909);
            runProperties698.Append(color350);
            runProperties698.Append(fontSize917);
            runProperties698.Append(fontSizeComplexScript911);
            Text text622 = new Text();
            text622.Text = "Any existing system that has a configuration needed to support this project.";

            run656.Append(runProperties698);
            run656.Append(text622);

            Run run657 = new Run();

            RunProperties runProperties699 = new RunProperties();
            RunFonts runFonts910 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color351 = new Color() { Val = "FF0000" };
            FontSize fontSize918 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript912 = new FontSizeComplexScript() { Val = "22" };

            runProperties699.Append(runFonts910);
            runProperties699.Append(color351);
            runProperties699.Append(fontSize918);
            runProperties699.Append(fontSizeComplexScript912);
            Text text623 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text623.Text = " (ex: ";

            run657.Append(runProperties699);
            run657.Append(text623);

            Run run658 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties700 = new RunProperties();
            RunFonts runFonts911 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color352 = new Color() { Val = "FF0000" };
            FontSize fontSize919 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript913 = new FontSizeComplexScript() { Val = "22" };

            runProperties700.Append(runFonts911);
            runProperties700.Append(color352);
            runProperties700.Append(fontSize919);
            runProperties700.Append(fontSizeComplexScript913);
            Text text624 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text624.Text = "Peripheral devices connect to same IP so server ";

            run658.Append(runProperties700);
            run658.Append(text624);

            Run run659 = new Run();

            RunProperties runProperties701 = new RunProperties();
            RunFonts runFonts912 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color353 = new Color() { Val = "FF0000" };
            FontSize fontSize920 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript914 = new FontSizeComplexScript() { Val = "22" };

            runProperties701.Append(runFonts912);
            runProperties701.Append(color353);
            runProperties701.Append(fontSize920);
            runProperties701.Append(fontSizeComplexScript914);
            Text text625 = new Text();
            text625.Text = "must have same IP as old server)";

            run659.Append(runProperties701);
            run659.Append(text625);

            paragraph317.Append(paragraphProperties314);
            paragraph317.Append(run656);
            paragraph317.Append(run657);
            paragraph317.Append(run658);
            paragraph317.Append(run659);

            Paragraph paragraph318 = new Paragraph() { RsidParagraphAddition = "002B0580", RsidParagraphProperties = "002B0580", RsidRunAdditionDefault = "002B0580", ParagraphId = "75A95790", TextId = "77777777" };

            ParagraphProperties paragraphProperties315 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties315 = new ParagraphMarkRunProperties();
            RunFonts runFonts913 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize921 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript915 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties315.Append(runFonts913);
            paragraphMarkRunProperties315.Append(fontSize921);
            paragraphMarkRunProperties315.Append(fontSizeComplexScript915);

            paragraphProperties315.Append(paragraphMarkRunProperties315);

            Run run660 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties702 = new RunProperties();
            RunFonts runFonts914 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize922 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript916 = new FontSizeComplexScript() { Val = "22" };

            runProperties702.Append(runFonts914);
            runProperties702.Append(fontSize922);
            runProperties702.Append(fontSizeComplexScript916);
            Text text626 = new Text();
            text626.Text = "DNS:";

            run660.Append(runProperties702);
            run660.Append(text626);

            paragraph318.Append(paragraphProperties315);
            paragraph318.Append(run660);

            Paragraph paragraph319 = new Paragraph() { RsidParagraphMarkRevision = "001A269D", RsidParagraphAddition = "002B0580", RsidParagraphProperties = "002B0580", RsidRunAdditionDefault = "002B0580", ParagraphId = "7C9120FA", TextId = "77777777" };

            ParagraphProperties paragraphProperties316 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties316 = new ParagraphMarkRunProperties();
            RunFonts runFonts915 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color354 = new Color() { Val = "FF0000" };
            FontSize fontSize923 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript917 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties316.Append(runFonts915);
            paragraphMarkRunProperties316.Append(color354);
            paragraphMarkRunProperties316.Append(fontSize923);
            paragraphMarkRunProperties316.Append(fontSizeComplexScript917);

            paragraphProperties316.Append(paragraphMarkRunProperties316);

            Run run661 = new Run();

            RunProperties runProperties703 = new RunProperties();
            RunFonts runFonts916 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize924 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript918 = new FontSizeComplexScript() { Val = "22" };

            runProperties703.Append(runFonts916);
            runProperties703.Append(fontSize924);
            runProperties703.Append(fontSizeComplexScript918);
            Text text627 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text627.Text = "Remote Access for Vendor: ";

            run661.Append(runProperties703);
            run661.Append(text627);

            Run run662 = new Run();

            RunProperties runProperties704 = new RunProperties();
            RunFonts runFonts917 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color355 = new Color() { Val = "FF0000" };
            FontSize fontSize925 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript919 = new FontSizeComplexScript() { Val = "22" };

            runProperties704.Append(runFonts917);
            runProperties704.Append(color355);
            runProperties704.Append(fontSize925);
            runProperties704.Append(fontSizeComplexScript919);
            Text text628 = new Text();
            text628.Text = "Vendor VPN will require additional Service Catalog request";

            run662.Append(runProperties704);
            run662.Append(text628);

            paragraph319.Append(paragraphProperties316);
            paragraph319.Append(run661);
            paragraph319.Append(run662);

            Paragraph paragraph320 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002B0580", RsidParagraphProperties = "002B0580", RsidRunAdditionDefault = "002B0580", ParagraphId = "66AB05C9", TextId = "77777777" };

            ParagraphProperties paragraphProperties317 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties317 = new ParagraphMarkRunProperties();
            RunFonts runFonts918 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize926 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript920 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties317.Append(runFonts918);
            paragraphMarkRunProperties317.Append(fontSize926);
            paragraphMarkRunProperties317.Append(fontSizeComplexScript920);

            paragraphProperties317.Append(paragraphMarkRunProperties317);

            Run run663 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties705 = new RunProperties();
            RunFonts runFonts919 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize927 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript921 = new FontSizeComplexScript() { Val = "22" };

            runProperties705.Append(runFonts919);
            runProperties705.Append(fontSize927);
            runProperties705.Append(fontSizeComplexScript921);
            Text text629 = new Text();
            text629.Text = "NetScaler:";

            run663.Append(runProperties705);
            run663.Append(text629);

            Run run664 = new Run();

            RunProperties runProperties706 = new RunProperties();
            RunFonts runFonts920 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize928 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript922 = new FontSizeComplexScript() { Val = "22" };

            runProperties706.Append(runFonts920);
            runProperties706.Append(fontSize928);
            runProperties706.Append(fontSizeComplexScript922);
            Text text630 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text630.Text = " ";

            run664.Append(runProperties706);
            run664.Append(text630);

            Run run665 = new Run();

            RunProperties runProperties707 = new RunProperties();
            RunFonts runFonts921 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color356 = new Color() { Val = "FF0000" };
            FontSize fontSize929 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript923 = new FontSizeComplexScript() { Val = "22" };

            runProperties707.Append(runFonts921);
            runProperties707.Append(color356);
            runProperties707.Append(fontSize929);
            runProperties707.Append(fontSizeComplexScript923);
            Text text631 = new Text();
            text631.Text = "Service Catalog request to Strategy";

            run665.Append(runProperties707);
            run665.Append(text631);

            paragraph320.Append(paragraphProperties317);
            paragraph320.Append(run663);
            paragraph320.Append(run664);
            paragraph320.Append(run665);

            Paragraph paragraph321 = new Paragraph() { RsidParagraphMarkRevision = "00BC048A", RsidParagraphAddition = "002B0580", RsidParagraphProperties = "002B0580", RsidRunAdditionDefault = "002B0580", ParagraphId = "4A09F0AC", TextId = "77777777" };

            ParagraphProperties paragraphProperties318 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties318 = new ParagraphMarkRunProperties();
            RunFonts runFonts922 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize930 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript924 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties318.Append(runFonts922);
            paragraphMarkRunProperties318.Append(fontSize930);
            paragraphMarkRunProperties318.Append(fontSizeComplexScript924);

            paragraphProperties318.Append(paragraphMarkRunProperties318);

            Run run666 = new Run() { RsidRunProperties = "00BC048A" };

            RunProperties runProperties708 = new RunProperties();
            RunFonts runFonts923 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize931 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript925 = new FontSizeComplexScript() { Val = "22" };

            runProperties708.Append(runFonts923);
            runProperties708.Append(fontSize931);
            runProperties708.Append(fontSizeComplexScript925);
            Text text632 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text632.Text = "Telephony: ";

            run666.Append(runProperties708);
            run666.Append(text632);

            Run run667 = new Run() { RsidRunProperties = "00BC048A" };

            RunProperties runProperties709 = new RunProperties();
            RunFonts runFonts924 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color357 = new Color() { Val = "FF0000" };
            FontSize fontSize932 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript926 = new FontSizeComplexScript() { Val = "22" };

            runProperties709.Append(runFonts924);
            runProperties709.Append(color357);
            runProperties709.Append(fontSize932);
            runProperties709.Append(fontSizeComplexScript926);
            Text text633 = new Text();
            text633.Text = "T1 configuration will need to be handled by";

            run667.Append(runProperties709);
            run667.Append(text633);

            Run run668 = new Run();

            RunProperties runProperties710 = new RunProperties();
            RunFonts runFonts925 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color358 = new Color() { Val = "FF0000" };
            FontSize fontSize933 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript927 = new FontSizeComplexScript() { Val = "22" };

            runProperties710.Append(runFonts925);
            runProperties710.Append(color358);
            runProperties710.Append(fontSize933);
            runProperties710.Append(fontSizeComplexScript927);
            Text text634 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text634.Text = " Service Catalog request to";

            run668.Append(runProperties710);
            run668.Append(text634);

            Run run669 = new Run() { RsidRunProperties = "00BC048A" };

            RunProperties runProperties711 = new RunProperties();
            RunFonts runFonts926 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color359 = new Color() { Val = "FF0000" };
            FontSize fontSize934 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript928 = new FontSizeComplexScript() { Val = "22" };

            runProperties711.Append(runFonts926);
            runProperties711.Append(color359);
            runProperties711.Append(fontSize934);
            runProperties711.Append(fontSizeComplexScript928);
            Text text635 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text635.Text = " ";

            run669.Append(runProperties711);
            run669.Append(text635);

            Run run670 = new Run() { RsidRunProperties = "002B0580" };

            RunProperties runProperties712 = new RunProperties();
            RunFonts runFonts927 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color360 = new Color() { Val = "FF0000" };
            FontSize fontSize935 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript929 = new FontSizeComplexScript() { Val = "22" };

            runProperties712.Append(runFonts927);
            runProperties712.Append(color360);
            runProperties712.Append(fontSize935);
            runProperties712.Append(fontSizeComplexScript929);
            Text text636 = new Text();
            text636.Text = "Move Existing Phone, Fax, or Modem";

            run670.Append(runProperties712);
            run670.Append(text636);

            paragraph321.Append(paragraphProperties318);
            paragraph321.Append(run666);
            paragraph321.Append(run667);
            paragraph321.Append(run668);
            paragraph321.Append(run669);
            paragraph321.Append(run670);

            Paragraph paragraph322 = new Paragraph() { RsidParagraphAddition = "002B0580", RsidParagraphProperties = "002B0580", RsidRunAdditionDefault = "002B0580", ParagraphId = "7A62CB9A", TextId = "77777777" };

            ParagraphProperties paragraphProperties319 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties319 = new ParagraphMarkRunProperties();
            RunFonts runFonts928 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize936 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript930 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties319.Append(runFonts928);
            paragraphMarkRunProperties319.Append(fontSize936);
            paragraphMarkRunProperties319.Append(fontSizeComplexScript930);

            paragraphProperties319.Append(paragraphMarkRunProperties319);

            Run run671 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties713 = new RunProperties();
            RunFonts runFonts929 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize937 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript931 = new FontSizeComplexScript() { Val = "22" };

            runProperties713.Append(runFonts929);
            runProperties713.Append(fontSize937);
            runProperties713.Append(fontSizeComplexScript931);
            LastRenderedPageBreak lastRenderedPageBreak7 = new LastRenderedPageBreak();
            Text text637 = new Text();
            text637.Text = "Other:";

            run671.Append(runProperties713);
            run671.Append(lastRenderedPageBreak7);
            run671.Append(text637);

            paragraph322.Append(paragraphProperties319);
            paragraph322.Append(run671);

            Paragraph paragraph323 = new Paragraph() { RsidParagraphMarkRevision = "00F12AD5", RsidParagraphAddition = "00F12AD5", RsidParagraphProperties = "00F12AD5", RsidRunAdditionDefault = "00F12AD5", ParagraphId = "737F4846", TextId = "5D813F4B" };

            ParagraphProperties paragraphProperties320 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId22 = new ParagraphStyleId() { Val = "Heading2" };

            ParagraphMarkRunProperties paragraphMarkRunProperties320 = new ParagraphMarkRunProperties();
            Underline underline90 = new Underline() { Val = UnderlineValues.Single };

            paragraphMarkRunProperties320.Append(underline90);

            paragraphProperties320.Append(paragraphStyleId22);
            paragraphProperties320.Append(paragraphMarkRunProperties320);

            Run run672 = new Run();

            RunProperties runProperties714 = new RunProperties();
            Underline underline91 = new Underline() { Val = UnderlineValues.Single };

            runProperties714.Append(underline91);
            Text text638 = new Text();
            text638.Text = "Work Logbook:";

            run672.Append(runProperties714);
            run672.Append(text638);

            paragraph323.Append(paragraphProperties320);
            paragraph323.Append(run672);
            BookmarkEnd bookmarkEnd3 = new BookmarkEnd() { Id = "2" };

            Paragraph paragraph324 = new Paragraph() { RsidParagraphMarkRevision = "002B0580", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "002B0580", ParagraphId = "4DCBEAD1", TextId = "7AC5E5DC" };

            ParagraphProperties paragraphProperties321 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId23 = new ParagraphStyleId() { Val = "Heading2" };

            ParagraphMarkRunProperties paragraphMarkRunProperties321 = new ParagraphMarkRunProperties();
            RunFonts runFonts930 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize938 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript932 = new FontSizeComplexScript() { Val = "22" };
            Underline underline92 = new Underline() { Val = UnderlineValues.Single };

            paragraphMarkRunProperties321.Append(runFonts930);
            paragraphMarkRunProperties321.Append(fontSize938);
            paragraphMarkRunProperties321.Append(fontSizeComplexScript932);
            paragraphMarkRunProperties321.Append(underline92);

            paragraphProperties321.Append(paragraphStyleId23);
            paragraphProperties321.Append(paragraphMarkRunProperties321);

            Run run673 = new Run() { RsidRunProperties = "002B0580" };

            RunProperties runProperties715 = new RunProperties();
            RunFonts runFonts931 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize939 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript933 = new FontSizeComplexScript() { Val = "22" };
            Underline underline93 = new Underline() { Val = UnderlineValues.Single };

            runProperties715.Append(runFonts931);
            runProperties715.Append(fontSize939);
            runProperties715.Append(fontSizeComplexScript933);
            runProperties715.Append(underline93);
            Text text639 = new Text();
            text639.Text = "PROJECT REVISION HISTORY";

            run673.Append(runProperties715);
            run673.Append(text639);

            paragraph324.Append(paragraphProperties321);
            paragraph324.Append(run673);

            Table table8 = new Table();

            TableProperties tableProperties8 = new TableProperties();
            TableWidth tableWidth8 = new TableWidth() { Width = "12330", Type = TableWidthUnitValues.Dxa };
            TableIndentation tableIndentation3 = new TableIndentation() { Width = 108, Type = TableWidthUnitValues.Dxa };
            TableLook tableLook8 = new TableLook() { Val = "01E0" };

            tableProperties8.Append(tableWidth8);
            tableProperties8.Append(tableIndentation3);
            tableProperties8.Append(tableLook8);

            TableGrid tableGrid8 = new TableGrid();
            GridColumn gridColumn39 = new GridColumn() { Width = "1676" };
            GridColumn gridColumn40 = new GridColumn() { Width = "8044" };
            GridColumn gridColumn41 = new GridColumn() { Width = "2610" };

            tableGrid8.Append(gridColumn39);
            tableGrid8.Append(gridColumn40);
            tableGrid8.Append(gridColumn41);

            TableRow tableRow39 = new TableRow() { RsidTableRowMarkRevision = "002B0580", RsidTableRowAddition = "005763A4", RsidTableRowProperties = "005763A4", ParagraphId = "1CD30953", TextId = "77777777" };

            TableRowProperties tableRowProperties23 = new TableRowProperties();
            CantSplit cantSplit1 = new CantSplit();
            TableRowHeight tableRowHeight23 = new TableRowHeight() { Val = (UInt32Value)20U };
            TableHeader tableHeader1 = new TableHeader();

            tableRowProperties23.Append(cantSplit1);
            tableRowProperties23.Append(tableRowHeight23);
            tableRowProperties23.Append(tableHeader1);

            TableCell tableCell170 = new TableCell();

            TableCellProperties tableCellProperties170 = new TableCellProperties();
            TableCellWidth tableCellWidth170 = new TableCellWidth() { Width = "1676", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders49 = new TableCellBorders();
            BottomBorder bottomBorder53 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders49.Append(bottomBorder53);
            Shading shading49 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "000080" };

            tableCellProperties170.Append(tableCellWidth170);
            tableCellProperties170.Append(tableCellBorders49);
            tableCellProperties170.Append(shading49);

            Paragraph paragraph325 = new Paragraph() { RsidParagraphMarkRevision = "002B0580", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "22FC3A7C", TextId = "77777777" };

            ParagraphProperties paragraphProperties322 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties322 = new ParagraphMarkRunProperties();
            RunFonts runFonts932 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize940 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript934 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties322.Append(runFonts932);
            paragraphMarkRunProperties322.Append(fontSize940);
            paragraphMarkRunProperties322.Append(fontSizeComplexScript934);

            paragraphProperties322.Append(paragraphMarkRunProperties322);

            Run run674 = new Run() { RsidRunProperties = "002B0580" };

            RunProperties runProperties716 = new RunProperties();
            RunFonts runFonts933 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize941 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript935 = new FontSizeComplexScript() { Val = "22" };

            runProperties716.Append(runFonts933);
            runProperties716.Append(fontSize941);
            runProperties716.Append(fontSizeComplexScript935);
            Text text640 = new Text();
            text640.Text = "Date";

            run674.Append(runProperties716);
            run674.Append(text640);

            paragraph325.Append(paragraphProperties322);
            paragraph325.Append(run674);

            tableCell170.Append(tableCellProperties170);
            tableCell170.Append(paragraph325);

            TableCell tableCell171 = new TableCell();

            TableCellProperties tableCellProperties171 = new TableCellProperties();
            TableCellWidth tableCellWidth171 = new TableCellWidth() { Width = "8044", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders50 = new TableCellBorders();
            BottomBorder bottomBorder54 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders50.Append(bottomBorder54);
            Shading shading50 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "000080" };

            tableCellProperties171.Append(tableCellWidth171);
            tableCellProperties171.Append(tableCellBorders50);
            tableCellProperties171.Append(shading50);

            Paragraph paragraph326 = new Paragraph() { RsidParagraphMarkRevision = "002B0580", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "415C7BF1", TextId = "77777777" };

            ParagraphProperties paragraphProperties323 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties323 = new ParagraphMarkRunProperties();
            RunFonts runFonts934 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize942 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript936 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties323.Append(runFonts934);
            paragraphMarkRunProperties323.Append(fontSize942);
            paragraphMarkRunProperties323.Append(fontSizeComplexScript936);

            paragraphProperties323.Append(paragraphMarkRunProperties323);

            Run run675 = new Run() { RsidRunProperties = "002B0580" };

            RunProperties runProperties717 = new RunProperties();
            RunFonts runFonts935 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize943 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript937 = new FontSizeComplexScript() { Val = "22" };

            runProperties717.Append(runFonts935);
            runProperties717.Append(fontSize943);
            runProperties717.Append(fontSizeComplexScript937);
            Text text641 = new Text();
            text641.Text = "Description of Change";

            run675.Append(runProperties717);
            run675.Append(text641);

            paragraph326.Append(paragraphProperties323);
            paragraph326.Append(run675);

            tableCell171.Append(tableCellProperties171);
            tableCell171.Append(paragraph326);

            TableCell tableCell172 = new TableCell();

            TableCellProperties tableCellProperties172 = new TableCellProperties();
            TableCellWidth tableCellWidth172 = new TableCellWidth() { Width = "2610", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders51 = new TableCellBorders();
            BottomBorder bottomBorder55 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders51.Append(bottomBorder55);
            Shading shading51 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "000080" };

            tableCellProperties172.Append(tableCellWidth172);
            tableCellProperties172.Append(tableCellBorders51);
            tableCellProperties172.Append(shading51);

            Paragraph paragraph327 = new Paragraph() { RsidParagraphMarkRevision = "002B0580", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "140B9EAD", TextId = "77777777" };

            ParagraphProperties paragraphProperties324 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties324 = new ParagraphMarkRunProperties();
            RunFonts runFonts936 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize944 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript938 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties324.Append(runFonts936);
            paragraphMarkRunProperties324.Append(fontSize944);
            paragraphMarkRunProperties324.Append(fontSizeComplexScript938);

            paragraphProperties324.Append(paragraphMarkRunProperties324);

            Run run676 = new Run() { RsidRunProperties = "002B0580" };

            RunProperties runProperties718 = new RunProperties();
            RunFonts runFonts937 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize945 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript939 = new FontSizeComplexScript() { Val = "22" };

            runProperties718.Append(runFonts937);
            runProperties718.Append(fontSize945);
            runProperties718.Append(fontSizeComplexScript939);
            Text text642 = new Text();
            text642.Text = "Author & Information";

            run676.Append(runProperties718);
            run676.Append(text642);

            paragraph327.Append(paragraphProperties324);
            paragraph327.Append(run676);

            tableCell172.Append(tableCellProperties172);
            tableCell172.Append(paragraph327);

            tableRow39.Append(tableRowProperties23);
            tableRow39.Append(tableCell170);
            tableRow39.Append(tableCell171);
            tableRow39.Append(tableCell172);

            TableRow tableRow40 = new TableRow() { RsidTableRowMarkRevision = "002B0580", RsidTableRowAddition = "005763A4", RsidTableRowProperties = "005763A4", ParagraphId = "55298438", TextId = "77777777" };

            TableRowProperties tableRowProperties24 = new TableRowProperties();
            TableRowHeight tableRowHeight24 = new TableRowHeight() { Val = (UInt32Value)20U };

            tableRowProperties24.Append(tableRowHeight24);

            TableCell tableCell173 = new TableCell();

            TableCellProperties tableCellProperties173 = new TableCellProperties();
            TableCellWidth tableCellWidth173 = new TableCellWidth() { Width = "1676", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders52 = new TableCellBorders();
            TopBorder topBorder54 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder53 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder56 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder53 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders52.Append(topBorder54);
            tableCellBorders52.Append(leftBorder53);
            tableCellBorders52.Append(bottomBorder56);
            tableCellBorders52.Append(rightBorder53);

            tableCellProperties173.Append(tableCellWidth173);
            tableCellProperties173.Append(tableCellBorders52);

            Paragraph paragraph328 = new Paragraph() { RsidParagraphMarkRevision = "002B0580", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "00FF18D7", RsidRunAdditionDefault = "002B0580", ParagraphId = "67196AA6", TextId = "021B2172" };

            ParagraphProperties paragraphProperties325 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties325 = new ParagraphMarkRunProperties();
            RunFonts runFonts938 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color361 = new Color() { Val = "FF0000" };
            FontSize fontSize946 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript940 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties325.Append(runFonts938);
            paragraphMarkRunProperties325.Append(color361);
            paragraphMarkRunProperties325.Append(fontSize946);
            paragraphMarkRunProperties325.Append(fontSizeComplexScript940);

            paragraphProperties325.Append(paragraphMarkRunProperties325);

            Run run677 = new Run() { RsidRunProperties = "002B0580" };

            RunProperties runProperties719 = new RunProperties();
            RunFonts runFonts939 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color362 = new Color() { Val = "FF0000" };
            FontSize fontSize947 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript941 = new FontSizeComplexScript() { Val = "22" };

            runProperties719.Append(runFonts939);
            runProperties719.Append(color362);
            runProperties719.Append(fontSize947);
            runProperties719.Append(fontSizeComplexScript941);
            Text text643 = new Text();
            text643.Text = "xx";

            run677.Append(runProperties719);
            run677.Append(text643);

            Run run678 = new Run() { RsidRunProperties = "002B0580", RsidRunAddition = "005763A4" };

            RunProperties runProperties720 = new RunProperties();
            RunFonts runFonts940 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color363 = new Color() { Val = "FF0000" };
            FontSize fontSize948 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript942 = new FontSizeComplexScript() { Val = "22" };

            runProperties720.Append(runFonts940);
            runProperties720.Append(color363);
            runProperties720.Append(fontSize948);
            runProperties720.Append(fontSizeComplexScript942);
            Text text644 = new Text();
            text644.Text = "/";

            run678.Append(runProperties720);
            run678.Append(text644);

            Run run679 = new Run() { RsidRunProperties = "002B0580" };

            RunProperties runProperties721 = new RunProperties();
            RunFonts runFonts941 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color364 = new Color() { Val = "FF0000" };
            FontSize fontSize949 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript943 = new FontSizeComplexScript() { Val = "22" };

            runProperties721.Append(runFonts941);
            runProperties721.Append(color364);
            runProperties721.Append(fontSize949);
            runProperties721.Append(fontSizeComplexScript943);
            Text text645 = new Text();
            text645.Text = "xx";

            run679.Append(runProperties721);
            run679.Append(text645);

            Run run680 = new Run() { RsidRunProperties = "002B0580", RsidRunAddition = "005763A4" };

            RunProperties runProperties722 = new RunProperties();
            RunFonts runFonts942 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color365 = new Color() { Val = "FF0000" };
            FontSize fontSize950 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript944 = new FontSizeComplexScript() { Val = "22" };

            runProperties722.Append(runFonts942);
            runProperties722.Append(color365);
            runProperties722.Append(fontSize950);
            runProperties722.Append(fontSizeComplexScript944);
            Text text646 = new Text();
            text646.Text = "/201";

            run680.Append(runProperties722);
            run680.Append(text646);

            Run run681 = new Run() { RsidRunAddition = "00FF18D7" };

            RunProperties runProperties723 = new RunProperties();
            RunFonts runFonts943 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color366 = new Color() { Val = "FF0000" };
            FontSize fontSize951 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript945 = new FontSizeComplexScript() { Val = "22" };

            runProperties723.Append(runFonts943);
            runProperties723.Append(color366);
            runProperties723.Append(fontSize951);
            runProperties723.Append(fontSizeComplexScript945);
            Text text647 = new Text();
            text647.Text = "5";

            run681.Append(runProperties723);
            run681.Append(text647);

            paragraph328.Append(paragraphProperties325);
            paragraph328.Append(run677);
            paragraph328.Append(run678);
            paragraph328.Append(run679);
            paragraph328.Append(run680);
            paragraph328.Append(run681);

            tableCell173.Append(tableCellProperties173);
            tableCell173.Append(paragraph328);

            TableCell tableCell174 = new TableCell();

            TableCellProperties tableCellProperties174 = new TableCellProperties();
            TableCellWidth tableCellWidth174 = new TableCellWidth() { Width = "8044", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders53 = new TableCellBorders();
            TopBorder topBorder55 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder54 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder57 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder54 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders53.Append(topBorder55);
            tableCellBorders53.Append(leftBorder54);
            tableCellBorders53.Append(bottomBorder57);
            tableCellBorders53.Append(rightBorder54);

            tableCellProperties174.Append(tableCellWidth174);
            tableCellProperties174.Append(tableCellBorders53);

            Paragraph paragraph329 = new Paragraph() { RsidParagraphMarkRevision = "002B0580", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "551D56AB", TextId = "77777777" };

            ParagraphProperties paragraphProperties326 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties326 = new ParagraphMarkRunProperties();
            RunFonts runFonts944 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize952 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript946 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties326.Append(runFonts944);
            paragraphMarkRunProperties326.Append(fontSize952);
            paragraphMarkRunProperties326.Append(fontSizeComplexScript946);

            paragraphProperties326.Append(paragraphMarkRunProperties326);

            Run run682 = new Run() { RsidRunProperties = "002B0580" };

            RunProperties runProperties724 = new RunProperties();
            RunFonts runFonts945 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize953 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript947 = new FontSizeComplexScript() { Val = "22" };

            runProperties724.Append(runFonts945);
            runProperties724.Append(fontSize953);
            runProperties724.Append(fontSizeComplexScript947);
            Text text648 = new Text();
            text648.Text = "Initial Release";

            run682.Append(runProperties724);
            run682.Append(text648);

            paragraph329.Append(paragraphProperties326);
            paragraph329.Append(run682);

            tableCell174.Append(tableCellProperties174);
            tableCell174.Append(paragraph329);

            TableCell tableCell175 = new TableCell();

            TableCellProperties tableCellProperties175 = new TableCellProperties();
            TableCellWidth tableCellWidth175 = new TableCellWidth() { Width = "2610", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders54 = new TableCellBorders();
            TopBorder topBorder56 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder55 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder58 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder55 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders54.Append(topBorder56);
            tableCellBorders54.Append(leftBorder55);
            tableCellBorders54.Append(bottomBorder58);
            tableCellBorders54.Append(rightBorder55);

            tableCellProperties175.Append(tableCellWidth175);
            tableCellProperties175.Append(tableCellBorders54);

            Paragraph paragraph330 = new Paragraph() { RsidParagraphMarkRevision = "002B0580", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "002B0580", ParagraphId = "6192BB55", TextId = "7469E388" };

            ParagraphProperties paragraphProperties327 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties327 = new ParagraphMarkRunProperties();
            RunFonts runFonts946 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color367 = new Color() { Val = "FF0000" };
            FontSize fontSize954 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript948 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties327.Append(runFonts946);
            paragraphMarkRunProperties327.Append(color367);
            paragraphMarkRunProperties327.Append(fontSize954);
            paragraphMarkRunProperties327.Append(fontSizeComplexScript948);

            paragraphProperties327.Append(paragraphMarkRunProperties327);

            Run run683 = new Run() { RsidRunProperties = "002B0580" };

            RunProperties runProperties725 = new RunProperties();
            RunFonts runFonts947 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color368 = new Color() { Val = "FF0000" };
            FontSize fontSize955 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript949 = new FontSizeComplexScript() { Val = "22" };

            runProperties725.Append(runFonts947);
            runProperties725.Append(color368);
            runProperties725.Append(fontSize955);
            runProperties725.Append(fontSizeComplexScript949);
            Text text649 = new Text();
            text649.Text = "JohnQPublic";

            run683.Append(runProperties725);
            run683.Append(text649);

            paragraph330.Append(paragraphProperties327);
            paragraph330.Append(run683);

            tableCell175.Append(tableCellProperties175);
            tableCell175.Append(paragraph330);

            tableRow40.Append(tableRowProperties24);
            tableRow40.Append(tableCell173);
            tableRow40.Append(tableCell174);
            tableRow40.Append(tableCell175);

            TableRow tableRow41 = new TableRow() { RsidTableRowMarkRevision = "002B0580", RsidTableRowAddition = "005763A4", RsidTableRowProperties = "005763A4", ParagraphId = "2A76AE8A", TextId = "77777777" };

            TableRowProperties tableRowProperties25 = new TableRowProperties();
            TableRowHeight tableRowHeight25 = new TableRowHeight() { Val = (UInt32Value)20U };

            tableRowProperties25.Append(tableRowHeight25);

            TableCell tableCell176 = new TableCell();

            TableCellProperties tableCellProperties176 = new TableCellProperties();
            TableCellWidth tableCellWidth176 = new TableCellWidth() { Width = "1676", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders55 = new TableCellBorders();
            TopBorder topBorder57 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder56 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder59 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder56 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders55.Append(topBorder57);
            tableCellBorders55.Append(leftBorder56);
            tableCellBorders55.Append(bottomBorder59);
            tableCellBorders55.Append(rightBorder56);

            tableCellProperties176.Append(tableCellWidth176);
            tableCellProperties176.Append(tableCellBorders55);

            Paragraph paragraph331 = new Paragraph() { RsidParagraphMarkRevision = "002B0580", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "002B0580", ParagraphId = "34C2381A", TextId = "2DDC1332" };

            ParagraphProperties paragraphProperties328 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties328 = new ParagraphMarkRunProperties();
            RunFonts runFonts948 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color369 = new Color() { Val = "FF0000" };
            FontSize fontSize956 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript950 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties328.Append(runFonts948);
            paragraphMarkRunProperties328.Append(color369);
            paragraphMarkRunProperties328.Append(fontSize956);
            paragraphMarkRunProperties328.Append(fontSizeComplexScript950);

            paragraphProperties328.Append(paragraphMarkRunProperties328);

            Run run684 = new Run() { RsidRunProperties = "002B0580" };

            RunProperties runProperties726 = new RunProperties();
            RunFonts runFonts949 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color370 = new Color() { Val = "FF0000" };
            FontSize fontSize957 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript951 = new FontSizeComplexScript() { Val = "22" };

            runProperties726.Append(runFonts949);
            runProperties726.Append(color370);
            runProperties726.Append(fontSize957);
            runProperties726.Append(fontSizeComplexScript951);
            Text text650 = new Text();
            text650.Text = "xx/xx/201";

            run684.Append(runProperties726);
            run684.Append(text650);

            Run run685 = new Run() { RsidRunAddition = "00FF18D7" };

            RunProperties runProperties727 = new RunProperties();
            RunFonts runFonts950 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color371 = new Color() { Val = "FF0000" };
            FontSize fontSize958 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript952 = new FontSizeComplexScript() { Val = "22" };

            runProperties727.Append(runFonts950);
            runProperties727.Append(color371);
            runProperties727.Append(fontSize958);
            runProperties727.Append(fontSizeComplexScript952);
            Text text651 = new Text();
            text651.Text = "5";

            run685.Append(runProperties727);
            run685.Append(text651);

            paragraph331.Append(paragraphProperties328);
            paragraph331.Append(run684);
            paragraph331.Append(run685);

            tableCell176.Append(tableCellProperties176);
            tableCell176.Append(paragraph331);

            TableCell tableCell177 = new TableCell();

            TableCellProperties tableCellProperties177 = new TableCellProperties();
            TableCellWidth tableCellWidth177 = new TableCellWidth() { Width = "8044", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders56 = new TableCellBorders();
            TopBorder topBorder58 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder57 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder60 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder57 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders56.Append(topBorder58);
            tableCellBorders56.Append(leftBorder57);
            tableCellBorders56.Append(bottomBorder60);
            tableCellBorders56.Append(rightBorder57);

            tableCellProperties177.Append(tableCellWidth177);
            tableCellProperties177.Append(tableCellBorders56);

            Paragraph paragraph332 = new Paragraph() { RsidParagraphMarkRevision = "002B0580", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "002B0580", ParagraphId = "19EF1C88", TextId = "791F7222" };

            ParagraphProperties paragraphProperties329 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties329 = new ParagraphMarkRunProperties();
            RunFonts runFonts951 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize959 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript953 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties329.Append(runFonts951);
            paragraphMarkRunProperties329.Append(fontSize959);
            paragraphMarkRunProperties329.Append(fontSizeComplexScript953);

            paragraphProperties329.Append(paragraphMarkRunProperties329);

            Run run686 = new Run() { RsidRunProperties = "002B0580" };

            RunProperties runProperties728 = new RunProperties();
            RunFonts runFonts952 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color372 = new Color() { Val = "FF0000" };
            FontSize fontSize960 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript954 = new FontSizeComplexScript() { Val = "22" };

            runProperties728.Append(runFonts952);
            runProperties728.Append(color372);
            runProperties728.Append(fontSize960);
            runProperties728.Append(fontSizeComplexScript954);
            Text text652 = new Text();
            text652.Text = "xxxx";

            run686.Append(runProperties728);
            run686.Append(text652);

            paragraph332.Append(paragraphProperties329);
            paragraph332.Append(run686);

            tableCell177.Append(tableCellProperties177);
            tableCell177.Append(paragraph332);

            TableCell tableCell178 = new TableCell();

            TableCellProperties tableCellProperties178 = new TableCellProperties();
            TableCellWidth tableCellWidth178 = new TableCellWidth() { Width = "2610", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders57 = new TableCellBorders();
            TopBorder topBorder59 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder58 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder61 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder58 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders57.Append(topBorder59);
            tableCellBorders57.Append(leftBorder58);
            tableCellBorders57.Append(bottomBorder61);
            tableCellBorders57.Append(rightBorder58);

            tableCellProperties178.Append(tableCellWidth178);
            tableCellProperties178.Append(tableCellBorders57);

            Paragraph paragraph333 = new Paragraph() { RsidParagraphMarkRevision = "002B0580", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "002B0580", ParagraphId = "05265424", TextId = "17958CE6" };

            ParagraphProperties paragraphProperties330 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties330 = new ParagraphMarkRunProperties();
            RunFonts runFonts953 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color373 = new Color() { Val = "FF0000" };
            FontSize fontSize961 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript955 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties330.Append(runFonts953);
            paragraphMarkRunProperties330.Append(color373);
            paragraphMarkRunProperties330.Append(fontSize961);
            paragraphMarkRunProperties330.Append(fontSizeComplexScript955);

            paragraphProperties330.Append(paragraphMarkRunProperties330);

            Run run687 = new Run() { RsidRunProperties = "002B0580" };

            RunProperties runProperties729 = new RunProperties();
            RunFonts runFonts954 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color374 = new Color() { Val = "FF0000" };
            FontSize fontSize962 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript956 = new FontSizeComplexScript() { Val = "22" };

            runProperties729.Append(runFonts954);
            runProperties729.Append(color374);
            runProperties729.Append(fontSize962);
            runProperties729.Append(fontSizeComplexScript956);
            Text text653 = new Text();
            text653.Text = "JohnQPublic";

            run687.Append(runProperties729);
            run687.Append(text653);

            paragraph333.Append(paragraphProperties330);
            paragraph333.Append(run687);

            tableCell178.Append(tableCellProperties178);
            tableCell178.Append(paragraph333);

            tableRow41.Append(tableRowProperties25);
            tableRow41.Append(tableCell176);
            tableRow41.Append(tableCell177);
            tableRow41.Append(tableCell178);

            table8.Append(tableProperties8);
            table8.Append(tableGrid8);
            table8.Append(tableRow39);
            table8.Append(tableRow40);
            table8.Append(tableRow41);

            Paragraph paragraph334 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "0481B723", TextId = "77777777" };

            ParagraphProperties paragraphProperties331 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId24 = new ParagraphStyleId() { Val = "Heading2" };

            ParagraphMarkRunProperties paragraphMarkRunProperties331 = new ParagraphMarkRunProperties();
            FontSize fontSize963 = new FontSize() { Val = "20" };
            Underline underline94 = new Underline() { Val = UnderlineValues.Single };

            paragraphMarkRunProperties331.Append(fontSize963);
            paragraphMarkRunProperties331.Append(underline94);

            paragraphProperties331.Append(paragraphStyleId24);
            paragraphProperties331.Append(paragraphMarkRunProperties331);

            Run run688 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties730 = new RunProperties();
            FontSize fontSize964 = new FontSize() { Val = "20" };
            Underline underline95 = new Underline() { Val = UnderlineValues.Single };

            runProperties730.Append(fontSize964);
            runProperties730.Append(underline95);
            Text text654 = new Text();
            text654.Text = "Template Revision History";

            run688.Append(runProperties730);
            run688.Append(text654);

            paragraph334.Append(paragraphProperties331);
            paragraph334.Append(run688);

            Table table9 = new Table();

            TableProperties tableProperties9 = new TableProperties();
            TableWidth tableWidth9 = new TableWidth() { Width = "12330", Type = TableWidthUnitValues.Dxa };
            TableIndentation tableIndentation4 = new TableIndentation() { Width = 108, Type = TableWidthUnitValues.Dxa };
            TableLook tableLook9 = new TableLook() { Val = "01E0" };

            tableProperties9.Append(tableWidth9);
            tableProperties9.Append(tableIndentation4);
            tableProperties9.Append(tableLook9);

            TableGrid tableGrid9 = new TableGrid();
            GridColumn gridColumn42 = new GridColumn() { Width = "1676" };
            GridColumn gridColumn43 = new GridColumn() { Width = "8044" };
            GridColumn gridColumn44 = new GridColumn() { Width = "2610" };

            tableGrid9.Append(gridColumn42);
            tableGrid9.Append(gridColumn43);
            tableGrid9.Append(gridColumn44);

            TableRow tableRow42 = new TableRow() { RsidTableRowMarkRevision = "003E56F4", RsidTableRowAddition = "005763A4", RsidTableRowProperties = "005763A4", ParagraphId = "498628EA", TextId = "77777777" };

            TableRowProperties tableRowProperties26 = new TableRowProperties();
            CantSplit cantSplit2 = new CantSplit();
            TableRowHeight tableRowHeight26 = new TableRowHeight() { Val = (UInt32Value)20U };
            TableHeader tableHeader2 = new TableHeader();

            tableRowProperties26.Append(cantSplit2);
            tableRowProperties26.Append(tableRowHeight26);
            tableRowProperties26.Append(tableHeader2);

            TableCell tableCell179 = new TableCell();

            TableCellProperties tableCellProperties179 = new TableCellProperties();
            TableCellWidth tableCellWidth179 = new TableCellWidth() { Width = "1676", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders58 = new TableCellBorders();
            BottomBorder bottomBorder62 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders58.Append(bottomBorder62);
            Shading shading52 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "000080" };

            tableCellProperties179.Append(tableCellWidth179);
            tableCellProperties179.Append(tableCellBorders58);
            tableCellProperties179.Append(shading52);

            Paragraph paragraph335 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "7F5B7A39", TextId = "77777777" };

            ParagraphProperties paragraphProperties332 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties332 = new ParagraphMarkRunProperties();
            RunFonts runFonts955 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize965 = new FontSize() { Val = "18" };

            paragraphMarkRunProperties332.Append(runFonts955);
            paragraphMarkRunProperties332.Append(fontSize965);

            paragraphProperties332.Append(paragraphMarkRunProperties332);

            Run run689 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties731 = new RunProperties();
            RunFonts runFonts956 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize966 = new FontSize() { Val = "18" };

            runProperties731.Append(runFonts956);
            runProperties731.Append(fontSize966);
            Text text655 = new Text();
            text655.Text = "Date";

            run689.Append(runProperties731);
            run689.Append(text655);

            paragraph335.Append(paragraphProperties332);
            paragraph335.Append(run689);

            tableCell179.Append(tableCellProperties179);
            tableCell179.Append(paragraph335);

            TableCell tableCell180 = new TableCell();

            TableCellProperties tableCellProperties180 = new TableCellProperties();
            TableCellWidth tableCellWidth180 = new TableCellWidth() { Width = "8044", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders59 = new TableCellBorders();
            BottomBorder bottomBorder63 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders59.Append(bottomBorder63);
            Shading shading53 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "000080" };

            tableCellProperties180.Append(tableCellWidth180);
            tableCellProperties180.Append(tableCellBorders59);
            tableCellProperties180.Append(shading53);

            Paragraph paragraph336 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "736CEBF8", TextId = "77777777" };

            ParagraphProperties paragraphProperties333 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties333 = new ParagraphMarkRunProperties();
            RunFonts runFonts957 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize967 = new FontSize() { Val = "18" };

            paragraphMarkRunProperties333.Append(runFonts957);
            paragraphMarkRunProperties333.Append(fontSize967);

            paragraphProperties333.Append(paragraphMarkRunProperties333);

            Run run690 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties732 = new RunProperties();
            RunFonts runFonts958 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize968 = new FontSize() { Val = "18" };

            runProperties732.Append(runFonts958);
            runProperties732.Append(fontSize968);
            Text text656 = new Text();
            text656.Text = "Description of Change";

            run690.Append(runProperties732);
            run690.Append(text656);

            paragraph336.Append(paragraphProperties333);
            paragraph336.Append(run690);

            tableCell180.Append(tableCellProperties180);
            tableCell180.Append(paragraph336);

            TableCell tableCell181 = new TableCell();

            TableCellProperties tableCellProperties181 = new TableCellProperties();
            TableCellWidth tableCellWidth181 = new TableCellWidth() { Width = "2610", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders60 = new TableCellBorders();
            BottomBorder bottomBorder64 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders60.Append(bottomBorder64);
            Shading shading54 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "000080" };

            tableCellProperties181.Append(tableCellWidth181);
            tableCellProperties181.Append(tableCellBorders60);
            tableCellProperties181.Append(shading54);

            Paragraph paragraph337 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "34A56E53", TextId = "77777777" };

            ParagraphProperties paragraphProperties334 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties334 = new ParagraphMarkRunProperties();
            RunFonts runFonts959 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize969 = new FontSize() { Val = "18" };

            paragraphMarkRunProperties334.Append(runFonts959);
            paragraphMarkRunProperties334.Append(fontSize969);

            paragraphProperties334.Append(paragraphMarkRunProperties334);

            Run run691 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties733 = new RunProperties();
            RunFonts runFonts960 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize970 = new FontSize() { Val = "18" };

            runProperties733.Append(runFonts960);
            runProperties733.Append(fontSize970);
            Text text657 = new Text();
            text657.Text = "Author & Information";

            run691.Append(runProperties733);
            run691.Append(text657);

            paragraph337.Append(paragraphProperties334);
            paragraph337.Append(run691);

            tableCell181.Append(tableCellProperties181);
            tableCell181.Append(paragraph337);

            tableRow42.Append(tableRowProperties26);
            tableRow42.Append(tableCell179);
            tableRow42.Append(tableCell180);
            tableRow42.Append(tableCell181);

            TableRow tableRow43 = new TableRow() { RsidTableRowMarkRevision = "003E56F4", RsidTableRowAddition = "005763A4", RsidTableRowProperties = "005763A4", ParagraphId = "7FEAA169", TextId = "77777777" };

            TableRowProperties tableRowProperties27 = new TableRowProperties();
            TableRowHeight tableRowHeight27 = new TableRowHeight() { Val = (UInt32Value)20U };

            tableRowProperties27.Append(tableRowHeight27);

            TableCell tableCell182 = new TableCell();

            TableCellProperties tableCellProperties182 = new TableCellProperties();
            TableCellWidth tableCellWidth182 = new TableCellWidth() { Width = "1676", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders61 = new TableCellBorders();
            TopBorder topBorder60 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder59 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder65 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder59 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders61.Append(topBorder60);
            tableCellBorders61.Append(leftBorder59);
            tableCellBorders61.Append(bottomBorder65);
            tableCellBorders61.Append(rightBorder59);

            tableCellProperties182.Append(tableCellWidth182);
            tableCellProperties182.Append(tableCellBorders61);

            Paragraph paragraph338 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "3ADC6CC7", TextId = "77777777" };

            ParagraphProperties paragraphProperties335 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties335 = new ParagraphMarkRunProperties();
            RunFonts runFonts961 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize971 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript957 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties335.Append(runFonts961);
            paragraphMarkRunProperties335.Append(fontSize971);
            paragraphMarkRunProperties335.Append(fontSizeComplexScript957);

            paragraphProperties335.Append(paragraphMarkRunProperties335);

            Run run692 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties734 = new RunProperties();
            RunFonts runFonts962 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize972 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript958 = new FontSizeComplexScript() { Val = "22" };

            runProperties734.Append(runFonts962);
            runProperties734.Append(fontSize972);
            runProperties734.Append(fontSizeComplexScript958);
            Text text658 = new Text();
            text658.Text = "05/21/2013";

            run692.Append(runProperties734);
            run692.Append(text658);

            paragraph338.Append(paragraphProperties335);
            paragraph338.Append(run692);

            tableCell182.Append(tableCellProperties182);
            tableCell182.Append(paragraph338);

            TableCell tableCell183 = new TableCell();

            TableCellProperties tableCellProperties183 = new TableCellProperties();
            TableCellWidth tableCellWidth183 = new TableCellWidth() { Width = "8044", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders62 = new TableCellBorders();
            TopBorder topBorder61 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder60 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder66 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder60 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders62.Append(topBorder61);
            tableCellBorders62.Append(leftBorder60);
            tableCellBorders62.Append(bottomBorder66);
            tableCellBorders62.Append(rightBorder60);

            tableCellProperties183.Append(tableCellWidth183);
            tableCellProperties183.Append(tableCellBorders62);

            Paragraph paragraph339 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "3545EAFB", TextId = "77777777" };

            ParagraphProperties paragraphProperties336 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties336 = new ParagraphMarkRunProperties();
            RunFonts runFonts963 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize973 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript959 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties336.Append(runFonts963);
            paragraphMarkRunProperties336.Append(fontSize973);
            paragraphMarkRunProperties336.Append(fontSizeComplexScript959);

            paragraphProperties336.Append(paragraphMarkRunProperties336);

            Run run693 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties735 = new RunProperties();
            RunFonts runFonts964 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize974 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript960 = new FontSizeComplexScript() { Val = "22" };

            runProperties735.Append(runFonts964);
            runProperties735.Append(fontSize974);
            runProperties735.Append(fontSizeComplexScript960);
            Text text659 = new Text();
            text659.Text = "Initial Release";

            run693.Append(runProperties735);
            run693.Append(text659);

            paragraph339.Append(paragraphProperties336);
            paragraph339.Append(run693);

            tableCell183.Append(tableCellProperties183);
            tableCell183.Append(paragraph339);

            TableCell tableCell184 = new TableCell();

            TableCellProperties tableCellProperties184 = new TableCellProperties();
            TableCellWidth tableCellWidth184 = new TableCellWidth() { Width = "2610", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders63 = new TableCellBorders();
            TopBorder topBorder62 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder61 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder67 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder61 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders63.Append(topBorder62);
            tableCellBorders63.Append(leftBorder61);
            tableCellBorders63.Append(bottomBorder67);
            tableCellBorders63.Append(rightBorder61);

            tableCellProperties184.Append(tableCellWidth184);
            tableCellProperties184.Append(tableCellBorders63);

            Paragraph paragraph340 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "56546D1C", TextId = "77777777" };

            ParagraphProperties paragraphProperties337 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties337 = new ParagraphMarkRunProperties();
            RunFonts runFonts965 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize975 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript961 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties337.Append(runFonts965);
            paragraphMarkRunProperties337.Append(fontSize975);
            paragraphMarkRunProperties337.Append(fontSizeComplexScript961);

            paragraphProperties337.Append(paragraphMarkRunProperties337);

            Run run694 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties736 = new RunProperties();
            RunFonts runFonts966 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize976 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript962 = new FontSizeComplexScript() { Val = "22" };

            runProperties736.Append(runFonts966);
            runProperties736.Append(fontSize976);
            runProperties736.Append(fontSizeComplexScript962);
            Text text660 = new Text();
            text660.Text = "Tech E. Interviewer III";

            run694.Append(runProperties736);
            run694.Append(text660);

            paragraph340.Append(paragraphProperties337);
            paragraph340.Append(run694);

            tableCell184.Append(tableCellProperties184);
            tableCell184.Append(paragraph340);

            tableRow43.Append(tableRowProperties27);
            tableRow43.Append(tableCell182);
            tableRow43.Append(tableCell183);
            tableRow43.Append(tableCell184);

            TableRow tableRow44 = new TableRow() { RsidTableRowMarkRevision = "003E56F4", RsidTableRowAddition = "005763A4", RsidTableRowProperties = "005763A4", ParagraphId = "2300D970", TextId = "77777777" };

            TableRowProperties tableRowProperties28 = new TableRowProperties();
            TableRowHeight tableRowHeight28 = new TableRowHeight() { Val = (UInt32Value)20U };

            tableRowProperties28.Append(tableRowHeight28);

            TableCell tableCell185 = new TableCell();

            TableCellProperties tableCellProperties185 = new TableCellProperties();
            TableCellWidth tableCellWidth185 = new TableCellWidth() { Width = "1676", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders64 = new TableCellBorders();
            TopBorder topBorder63 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder62 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder68 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder62 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders64.Append(topBorder63);
            tableCellBorders64.Append(leftBorder62);
            tableCellBorders64.Append(bottomBorder68);
            tableCellBorders64.Append(rightBorder62);

            tableCellProperties185.Append(tableCellWidth185);
            tableCellProperties185.Append(tableCellBorders64);

            Paragraph paragraph341 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "673F3BF8", TextId = "77777777" };

            ParagraphProperties paragraphProperties338 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties338 = new ParagraphMarkRunProperties();
            RunFonts runFonts967 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize977 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript963 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties338.Append(runFonts967);
            paragraphMarkRunProperties338.Append(fontSize977);
            paragraphMarkRunProperties338.Append(fontSizeComplexScript963);

            paragraphProperties338.Append(paragraphMarkRunProperties338);

            Run run695 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties737 = new RunProperties();
            RunFonts runFonts968 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize978 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript964 = new FontSizeComplexScript() { Val = "22" };

            runProperties737.Append(runFonts968);
            runProperties737.Append(fontSize978);
            runProperties737.Append(fontSizeComplexScript964);
            Text text661 = new Text();
            text661.Text = "06/03/2013";

            run695.Append(runProperties737);
            run695.Append(text661);

            paragraph341.Append(paragraphProperties338);
            paragraph341.Append(run695);

            tableCell185.Append(tableCellProperties185);
            tableCell185.Append(paragraph341);

            TableCell tableCell186 = new TableCell();

            TableCellProperties tableCellProperties186 = new TableCellProperties();
            TableCellWidth tableCellWidth186 = new TableCellWidth() { Width = "8044", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders65 = new TableCellBorders();
            TopBorder topBorder64 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder63 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder69 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder63 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders65.Append(topBorder64);
            tableCellBorders65.Append(leftBorder63);
            tableCellBorders65.Append(bottomBorder69);
            tableCellBorders65.Append(rightBorder63);

            tableCellProperties186.Append(tableCellWidth186);
            tableCellProperties186.Append(tableCellBorders65);

            Paragraph paragraph342 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "7FEC7879", TextId = "77777777" };

            ParagraphProperties paragraphProperties339 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties339 = new ParagraphMarkRunProperties();
            RunFonts runFonts969 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize979 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript965 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties339.Append(runFonts969);
            paragraphMarkRunProperties339.Append(fontSize979);
            paragraphMarkRunProperties339.Append(fontSizeComplexScript965);

            paragraphProperties339.Append(paragraphMarkRunProperties339);

            Run run696 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties738 = new RunProperties();
            RunFonts runFonts970 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize980 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript966 = new FontSizeComplexScript() { Val = "22" };

            runProperties738.Append(runFonts970);
            runProperties738.Append(fontSize980);
            runProperties738.Append(fontSizeComplexScript966);
            Text text662 = new Text();
            text662.Text = "Cleared Test Data";

            run696.Append(runProperties738);
            run696.Append(text662);

            paragraph342.Append(paragraphProperties339);
            paragraph342.Append(run696);

            tableCell186.Append(tableCellProperties186);
            tableCell186.Append(paragraph342);

            TableCell tableCell187 = new TableCell();

            TableCellProperties tableCellProperties187 = new TableCellProperties();
            TableCellWidth tableCellWidth187 = new TableCellWidth() { Width = "2610", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders66 = new TableCellBorders();
            TopBorder topBorder65 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder64 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder70 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder64 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders66.Append(topBorder65);
            tableCellBorders66.Append(leftBorder64);
            tableCellBorders66.Append(bottomBorder70);
            tableCellBorders66.Append(rightBorder64);

            tableCellProperties187.Append(tableCellWidth187);
            tableCellProperties187.Append(tableCellBorders66);

            Paragraph paragraph343 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "2DD6C2ED", TextId = "77777777" };

            ParagraphProperties paragraphProperties340 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties340 = new ParagraphMarkRunProperties();
            RunFonts runFonts971 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize981 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript967 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties340.Append(runFonts971);
            paragraphMarkRunProperties340.Append(fontSize981);
            paragraphMarkRunProperties340.Append(fontSizeComplexScript967);

            paragraphProperties340.Append(paragraphMarkRunProperties340);

            Run run697 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties739 = new RunProperties();
            RunFonts runFonts972 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize982 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript968 = new FontSizeComplexScript() { Val = "22" };

            runProperties739.Append(runFonts972);
            runProperties739.Append(fontSize982);
            runProperties739.Append(fontSizeComplexScript968);
            Text text663 = new Text();
            text663.Text = "Philip E Scherry";

            run697.Append(runProperties739);
            run697.Append(text663);

            paragraph343.Append(paragraphProperties340);
            paragraph343.Append(run697);

            tableCell187.Append(tableCellProperties187);
            tableCell187.Append(paragraph343);

            tableRow44.Append(tableRowProperties28);
            tableRow44.Append(tableCell185);
            tableRow44.Append(tableCell186);
            tableRow44.Append(tableCell187);

            TableRow tableRow45 = new TableRow() { RsidTableRowMarkRevision = "003E56F4", RsidTableRowAddition = "005763A4", RsidTableRowProperties = "005763A4", ParagraphId = "0579DCE4", TextId = "77777777" };

            TableRowProperties tableRowProperties29 = new TableRowProperties();
            TableRowHeight tableRowHeight29 = new TableRowHeight() { Val = (UInt32Value)20U };

            tableRowProperties29.Append(tableRowHeight29);

            TableCell tableCell188 = new TableCell();

            TableCellProperties tableCellProperties188 = new TableCellProperties();
            TableCellWidth tableCellWidth188 = new TableCellWidth() { Width = "1676", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders67 = new TableCellBorders();
            TopBorder topBorder66 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder65 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder71 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder65 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders67.Append(topBorder66);
            tableCellBorders67.Append(leftBorder65);
            tableCellBorders67.Append(bottomBorder71);
            tableCellBorders67.Append(rightBorder65);

            tableCellProperties188.Append(tableCellWidth188);
            tableCellProperties188.Append(tableCellBorders67);

            Paragraph paragraph344 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "72A26145", TextId = "77777777" };

            ParagraphProperties paragraphProperties341 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties341 = new ParagraphMarkRunProperties();
            RunFonts runFonts973 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize983 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript969 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties341.Append(runFonts973);
            paragraphMarkRunProperties341.Append(fontSize983);
            paragraphMarkRunProperties341.Append(fontSizeComplexScript969);

            paragraphProperties341.Append(paragraphMarkRunProperties341);

            Run run698 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties740 = new RunProperties();
            RunFonts runFonts974 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize984 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript970 = new FontSizeComplexScript() { Val = "22" };

            runProperties740.Append(runFonts974);
            runProperties740.Append(fontSize984);
            runProperties740.Append(fontSizeComplexScript970);
            Text text664 = new Text();
            text664.Text = "09/17/2013";

            run698.Append(runProperties740);
            run698.Append(text664);

            paragraph344.Append(paragraphProperties341);
            paragraph344.Append(run698);

            tableCell188.Append(tableCellProperties188);
            tableCell188.Append(paragraph344);

            TableCell tableCell189 = new TableCell();

            TableCellProperties tableCellProperties189 = new TableCellProperties();
            TableCellWidth tableCellWidth189 = new TableCellWidth() { Width = "8044", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders68 = new TableCellBorders();
            TopBorder topBorder67 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder66 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder72 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder66 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders68.Append(topBorder67);
            tableCellBorders68.Append(leftBorder66);
            tableCellBorders68.Append(bottomBorder72);
            tableCellBorders68.Append(rightBorder66);

            tableCellProperties189.Append(tableCellWidth189);
            tableCellProperties189.Append(tableCellBorders68);

            Paragraph paragraph345 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "5A7A8E20", TextId = "77777777" };

            ParagraphProperties paragraphProperties342 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties342 = new ParagraphMarkRunProperties();
            RunFonts runFonts975 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize985 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript971 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties342.Append(runFonts975);
            paragraphMarkRunProperties342.Append(fontSize985);
            paragraphMarkRunProperties342.Append(fontSizeComplexScript971);

            paragraphProperties342.Append(paragraphMarkRunProperties342);

            Run run699 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties741 = new RunProperties();
            RunFonts runFonts976 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize986 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript972 = new FontSizeComplexScript() { Val = "22" };

            runProperties741.Append(runFonts976);
            runProperties741.Append(fontSize986);
            runProperties741.Append(fontSizeComplexScript972);
            Text text665 = new Text();
            text665.Text = "Change page orientation, add VLAN & Clarity info";

            run699.Append(runProperties741);
            run699.Append(text665);

            paragraph345.Append(paragraphProperties342);
            paragraph345.Append(run699);

            tableCell189.Append(tableCellProperties189);
            tableCell189.Append(paragraph345);

            TableCell tableCell190 = new TableCell();

            TableCellProperties tableCellProperties190 = new TableCellProperties();
            TableCellWidth tableCellWidth190 = new TableCellWidth() { Width = "2610", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders69 = new TableCellBorders();
            TopBorder topBorder68 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder67 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder73 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder67 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders69.Append(topBorder68);
            tableCellBorders69.Append(leftBorder67);
            tableCellBorders69.Append(bottomBorder73);
            tableCellBorders69.Append(rightBorder67);

            tableCellProperties190.Append(tableCellWidth190);
            tableCellProperties190.Append(tableCellBorders69);

            Paragraph paragraph346 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "2AAB376B", TextId = "77777777" };

            ParagraphProperties paragraphProperties343 = new ParagraphProperties();

            Tabs tabs1 = new Tabs();
            TabStop tabStop1 = new TabStop() { Val = TabStopValues.Left, Position = 2250 };

            tabs1.Append(tabStop1);

            ParagraphMarkRunProperties paragraphMarkRunProperties343 = new ParagraphMarkRunProperties();
            RunFonts runFonts977 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize987 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript973 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties343.Append(runFonts977);
            paragraphMarkRunProperties343.Append(fontSize987);
            paragraphMarkRunProperties343.Append(fontSizeComplexScript973);

            paragraphProperties343.Append(tabs1);
            paragraphProperties343.Append(paragraphMarkRunProperties343);

            Run run700 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties742 = new RunProperties();
            RunFonts runFonts978 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize988 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript974 = new FontSizeComplexScript() { Val = "22" };

            runProperties742.Append(runFonts978);
            runProperties742.Append(fontSize988);
            runProperties742.Append(fontSizeComplexScript974);
            Text text666 = new Text();
            text666.Text = "Philip E Scherry";

            run700.Append(runProperties742);
            run700.Append(text666);

            paragraph346.Append(paragraphProperties343);
            paragraph346.Append(run700);

            tableCell190.Append(tableCellProperties190);
            tableCell190.Append(paragraph346);

            tableRow45.Append(tableRowProperties29);
            tableRow45.Append(tableCell188);
            tableRow45.Append(tableCell189);
            tableRow45.Append(tableCell190);

            TableRow tableRow46 = new TableRow() { RsidTableRowMarkRevision = "003E56F4", RsidTableRowAddition = "005763A4", RsidTableRowProperties = "005763A4", ParagraphId = "79DD4939", TextId = "77777777" };

            TableRowProperties tableRowProperties30 = new TableRowProperties();
            TableRowHeight tableRowHeight30 = new TableRowHeight() { Val = (UInt32Value)20U };

            tableRowProperties30.Append(tableRowHeight30);

            TableCell tableCell191 = new TableCell();

            TableCellProperties tableCellProperties191 = new TableCellProperties();
            TableCellWidth tableCellWidth191 = new TableCellWidth() { Width = "1676", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders70 = new TableCellBorders();
            TopBorder topBorder69 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder68 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder74 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder68 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders70.Append(topBorder69);
            tableCellBorders70.Append(leftBorder68);
            tableCellBorders70.Append(bottomBorder74);
            tableCellBorders70.Append(rightBorder68);

            tableCellProperties191.Append(tableCellWidth191);
            tableCellProperties191.Append(tableCellBorders70);

            Paragraph paragraph347 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "2F1BC237", TextId = "77777777" };

            ParagraphProperties paragraphProperties344 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties344 = new ParagraphMarkRunProperties();
            RunFonts runFonts979 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize989 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript975 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties344.Append(runFonts979);
            paragraphMarkRunProperties344.Append(fontSize989);
            paragraphMarkRunProperties344.Append(fontSizeComplexScript975);

            paragraphProperties344.Append(paragraphMarkRunProperties344);

            Run run701 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties743 = new RunProperties();
            RunFonts runFonts980 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize990 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript976 = new FontSizeComplexScript() { Val = "22" };

            runProperties743.Append(runFonts980);
            runProperties743.Append(fontSize990);
            runProperties743.Append(fontSizeComplexScript976);
            Text text667 = new Text();
            text667.Text = "09/26/2013";

            run701.Append(runProperties743);
            run701.Append(text667);

            paragraph347.Append(paragraphProperties344);
            paragraph347.Append(run701);

            tableCell191.Append(tableCellProperties191);
            tableCell191.Append(paragraph347);

            TableCell tableCell192 = new TableCell();

            TableCellProperties tableCellProperties192 = new TableCellProperties();
            TableCellWidth tableCellWidth192 = new TableCellWidth() { Width = "8044", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders71 = new TableCellBorders();
            TopBorder topBorder70 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder69 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder75 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder69 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders71.Append(topBorder70);
            tableCellBorders71.Append(leftBorder69);
            tableCellBorders71.Append(bottomBorder75);
            tableCellBorders71.Append(rightBorder69);

            tableCellProperties192.Append(tableCellWidth192);
            tableCellProperties192.Append(tableCellBorders71);

            Paragraph paragraph348 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "56F671F9", TextId = "77777777" };

            ParagraphProperties paragraphProperties345 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties345 = new ParagraphMarkRunProperties();
            RunFonts runFonts981 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize991 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript977 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties345.Append(runFonts981);
            paragraphMarkRunProperties345.Append(fontSize991);
            paragraphMarkRunProperties345.Append(fontSizeComplexScript977);

            paragraphProperties345.Append(paragraphMarkRunProperties345);

            Run run702 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties744 = new RunProperties();
            RunFonts runFonts982 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize992 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript978 = new FontSizeComplexScript() { Val = "22" };

            runProperties744.Append(runFonts982);
            runProperties744.Append(fontSize992);
            runProperties744.Append(fontSizeComplexScript978);
            Text text668 = new Text();
            text668.Text = "Added VPN & Vendor Contact Fields.  Removed Storage section";

            run702.Append(runProperties744);
            run702.Append(text668);

            paragraph348.Append(paragraphProperties345);
            paragraph348.Append(run702);

            tableCell192.Append(tableCellProperties192);
            tableCell192.Append(paragraph348);

            TableCell tableCell193 = new TableCell();

            TableCellProperties tableCellProperties193 = new TableCellProperties();
            TableCellWidth tableCellWidth193 = new TableCellWidth() { Width = "2610", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders72 = new TableCellBorders();
            TopBorder topBorder71 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder70 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder76 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder70 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders72.Append(topBorder71);
            tableCellBorders72.Append(leftBorder70);
            tableCellBorders72.Append(bottomBorder76);
            tableCellBorders72.Append(rightBorder70);

            tableCellProperties193.Append(tableCellWidth193);
            tableCellProperties193.Append(tableCellBorders72);

            Paragraph paragraph349 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "477F4DED", TextId = "77777777" };

            ParagraphProperties paragraphProperties346 = new ParagraphProperties();

            Tabs tabs2 = new Tabs();
            TabStop tabStop2 = new TabStop() { Val = TabStopValues.Left, Position = 2250 };

            tabs2.Append(tabStop2);

            ParagraphMarkRunProperties paragraphMarkRunProperties346 = new ParagraphMarkRunProperties();
            RunFonts runFonts983 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize993 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript979 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties346.Append(runFonts983);
            paragraphMarkRunProperties346.Append(fontSize993);
            paragraphMarkRunProperties346.Append(fontSizeComplexScript979);

            paragraphProperties346.Append(tabs2);
            paragraphProperties346.Append(paragraphMarkRunProperties346);

            Run run703 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties745 = new RunProperties();
            RunFonts runFonts984 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize994 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript980 = new FontSizeComplexScript() { Val = "22" };

            runProperties745.Append(runFonts984);
            runProperties745.Append(fontSize994);
            runProperties745.Append(fontSizeComplexScript980);
            Text text669 = new Text();
            text669.Text = "Philip E Scherry";

            run703.Append(runProperties745);
            run703.Append(text669);

            Run run704 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties746 = new RunProperties();
            RunFonts runFonts985 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize995 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript981 = new FontSizeComplexScript() { Val = "22" };

            runProperties746.Append(runFonts985);
            runProperties746.Append(fontSize995);
            runProperties746.Append(fontSizeComplexScript981);
            TabChar tabChar41 = new TabChar();

            run704.Append(runProperties746);
            run704.Append(tabChar41);

            paragraph349.Append(paragraphProperties346);
            paragraph349.Append(run703);
            paragraph349.Append(run704);

            tableCell193.Append(tableCellProperties193);
            tableCell193.Append(paragraph349);

            tableRow46.Append(tableRowProperties30);
            tableRow46.Append(tableCell191);
            tableRow46.Append(tableCell192);
            tableRow46.Append(tableCell193);

            TableRow tableRow47 = new TableRow() { RsidTableRowMarkRevision = "003E56F4", RsidTableRowAddition = "005763A4", RsidTableRowProperties = "005763A4", ParagraphId = "334F4E00", TextId = "77777777" };

            TableRowProperties tableRowProperties31 = new TableRowProperties();
            TableRowHeight tableRowHeight31 = new TableRowHeight() { Val = (UInt32Value)20U };

            tableRowProperties31.Append(tableRowHeight31);

            TableCell tableCell194 = new TableCell();

            TableCellProperties tableCellProperties194 = new TableCellProperties();
            TableCellWidth tableCellWidth194 = new TableCellWidth() { Width = "1676", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders73 = new TableCellBorders();
            TopBorder topBorder72 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder71 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder77 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder71 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders73.Append(topBorder72);
            tableCellBorders73.Append(leftBorder71);
            tableCellBorders73.Append(bottomBorder77);
            tableCellBorders73.Append(rightBorder71);

            tableCellProperties194.Append(tableCellWidth194);
            tableCellProperties194.Append(tableCellBorders73);

            Paragraph paragraph350 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "394EFE87", TextId = "77777777" };

            ParagraphProperties paragraphProperties347 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties347 = new ParagraphMarkRunProperties();
            RunFonts runFonts986 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize996 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript982 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties347.Append(runFonts986);
            paragraphMarkRunProperties347.Append(fontSize996);
            paragraphMarkRunProperties347.Append(fontSizeComplexScript982);

            paragraphProperties347.Append(paragraphMarkRunProperties347);

            Run run705 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties747 = new RunProperties();
            RunFonts runFonts987 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize997 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript983 = new FontSizeComplexScript() { Val = "22" };

            runProperties747.Append(runFonts987);
            runProperties747.Append(fontSize997);
            runProperties747.Append(fontSizeComplexScript983);
            Text text670 = new Text();
            text670.Text = "11/22/2013";

            run705.Append(runProperties747);
            run705.Append(text670);

            paragraph350.Append(paragraphProperties347);
            paragraph350.Append(run705);

            tableCell194.Append(tableCellProperties194);
            tableCell194.Append(paragraph350);

            TableCell tableCell195 = new TableCell();

            TableCellProperties tableCellProperties195 = new TableCellProperties();
            TableCellWidth tableCellWidth195 = new TableCellWidth() { Width = "8044", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders74 = new TableCellBorders();
            TopBorder topBorder73 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder72 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder78 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder72 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders74.Append(topBorder73);
            tableCellBorders74.Append(leftBorder72);
            tableCellBorders74.Append(bottomBorder78);
            tableCellBorders74.Append(rightBorder72);

            tableCellProperties195.Append(tableCellWidth195);
            tableCellProperties195.Append(tableCellBorders74);

            Paragraph paragraph351 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "26874D66", TextId = "77777777" };

            ParagraphProperties paragraphProperties348 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties348 = new ParagraphMarkRunProperties();
            RunFonts runFonts988 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize998 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript984 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties348.Append(runFonts988);
            paragraphMarkRunProperties348.Append(fontSize998);
            paragraphMarkRunProperties348.Append(fontSizeComplexScript984);

            paragraphProperties348.Append(paragraphMarkRunProperties348);

            Run run706 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties748 = new RunProperties();
            RunFonts runFonts989 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize999 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript985 = new FontSizeComplexScript() { Val = "22" };

            runProperties748.Append(runFonts989);
            runProperties748.Append(fontSize999);
            runProperties748.Append(fontSizeComplexScript985);
            Text text671 = new Text();
            text671.Text = "Updated for ServiceNow & Dates fields";

            run706.Append(runProperties748);
            run706.Append(text671);

            Run run707 = new Run();

            RunProperties runProperties749 = new RunProperties();
            RunFonts runFonts990 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1000 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript986 = new FontSizeComplexScript() { Val = "22" };

            runProperties749.Append(runFonts990);
            runProperties749.Append(fontSize1000);
            runProperties749.Append(fontSizeComplexScript986);
            Text text672 = new Text();
            text672.Text = ".  Update Citrix questions.  Added: WSP, Admins, Telephony";

            run707.Append(runProperties749);
            run707.Append(text672);

            paragraph351.Append(paragraphProperties348);
            paragraph351.Append(run706);
            paragraph351.Append(run707);

            tableCell195.Append(tableCellProperties195);
            tableCell195.Append(paragraph351);

            TableCell tableCell196 = new TableCell();

            TableCellProperties tableCellProperties196 = new TableCellProperties();
            TableCellWidth tableCellWidth196 = new TableCellWidth() { Width = "2610", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders75 = new TableCellBorders();
            TopBorder topBorder74 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder73 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder79 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder73 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders75.Append(topBorder74);
            tableCellBorders75.Append(leftBorder73);
            tableCellBorders75.Append(bottomBorder79);
            tableCellBorders75.Append(rightBorder73);

            tableCellProperties196.Append(tableCellWidth196);
            tableCellProperties196.Append(tableCellBorders75);

            Paragraph paragraph352 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "2FB0F90E", TextId = "77777777" };

            ParagraphProperties paragraphProperties349 = new ParagraphProperties();

            Tabs tabs3 = new Tabs();
            TabStop tabStop3 = new TabStop() { Val = TabStopValues.Left, Position = 2250 };

            tabs3.Append(tabStop3);

            ParagraphMarkRunProperties paragraphMarkRunProperties349 = new ParagraphMarkRunProperties();
            RunFonts runFonts991 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1001 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript987 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties349.Append(runFonts991);
            paragraphMarkRunProperties349.Append(fontSize1001);
            paragraphMarkRunProperties349.Append(fontSizeComplexScript987);

            paragraphProperties349.Append(tabs3);
            paragraphProperties349.Append(paragraphMarkRunProperties349);

            Run run708 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties750 = new RunProperties();
            RunFonts runFonts992 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1002 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript988 = new FontSizeComplexScript() { Val = "22" };

            runProperties750.Append(runFonts992);
            runProperties750.Append(fontSize1002);
            runProperties750.Append(fontSizeComplexScript988);
            Text text673 = new Text();
            text673.Text = "Philip E Scherry";

            run708.Append(runProperties750);
            run708.Append(text673);

            Run run709 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties751 = new RunProperties();
            RunFonts runFonts993 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1003 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript989 = new FontSizeComplexScript() { Val = "22" };

            runProperties751.Append(runFonts993);
            runProperties751.Append(fontSize1003);
            runProperties751.Append(fontSizeComplexScript989);
            TabChar tabChar42 = new TabChar();

            run709.Append(runProperties751);
            run709.Append(tabChar42);

            paragraph352.Append(paragraphProperties349);
            paragraph352.Append(run708);
            paragraph352.Append(run709);

            tableCell196.Append(tableCellProperties196);
            tableCell196.Append(paragraph352);

            tableRow47.Append(tableRowProperties31);
            tableRow47.Append(tableCell194);
            tableRow47.Append(tableCell195);
            tableRow47.Append(tableCell196);

            TableRow tableRow48 = new TableRow() { RsidTableRowMarkRevision = "003E56F4", RsidTableRowAddition = "00712EF0", RsidTableRowProperties = "0094109A", ParagraphId = "14628193", TextId = "77777777" };

            TableRowProperties tableRowProperties32 = new TableRowProperties();
            TableRowHeight tableRowHeight32 = new TableRowHeight() { Val = (UInt32Value)20U };

            tableRowProperties32.Append(tableRowHeight32);

            TableCell tableCell197 = new TableCell();

            TableCellProperties tableCellProperties197 = new TableCellProperties();
            TableCellWidth tableCellWidth197 = new TableCellWidth() { Width = "1676", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders76 = new TableCellBorders();
            TopBorder topBorder75 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder74 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder80 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder74 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders76.Append(topBorder75);
            tableCellBorders76.Append(leftBorder74);
            tableCellBorders76.Append(bottomBorder80);
            tableCellBorders76.Append(rightBorder74);

            tableCellProperties197.Append(tableCellWidth197);
            tableCellProperties197.Append(tableCellBorders76);

            Paragraph paragraph353 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "00712EF0", RsidParagraphProperties = "0094109A", RsidRunAdditionDefault = "00712EF0", ParagraphId = "187329C3", TextId = "77777777" };

            ParagraphProperties paragraphProperties350 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties350 = new ParagraphMarkRunProperties();
            RunFonts runFonts994 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1004 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript990 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties350.Append(runFonts994);
            paragraphMarkRunProperties350.Append(fontSize1004);
            paragraphMarkRunProperties350.Append(fontSizeComplexScript990);

            paragraphProperties350.Append(paragraphMarkRunProperties350);

            Run run710 = new Run();

            RunProperties runProperties752 = new RunProperties();
            RunFonts runFonts995 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1005 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript991 = new FontSizeComplexScript() { Val = "22" };

            runProperties752.Append(runFonts995);
            runProperties752.Append(fontSize1005);
            runProperties752.Append(fontSizeComplexScript991);
            Text text674 = new Text();
            text674.Text = "12/02";

            run710.Append(runProperties752);
            run710.Append(text674);

            Run run711 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties753 = new RunProperties();
            RunFonts runFonts996 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1006 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript992 = new FontSizeComplexScript() { Val = "22" };

            runProperties753.Append(runFonts996);
            runProperties753.Append(fontSize1006);
            runProperties753.Append(fontSizeComplexScript992);
            Text text675 = new Text();
            text675.Text = "/2013";

            run711.Append(runProperties753);
            run711.Append(text675);

            paragraph353.Append(paragraphProperties350);
            paragraph353.Append(run710);
            paragraph353.Append(run711);

            tableCell197.Append(tableCellProperties197);
            tableCell197.Append(paragraph353);

            TableCell tableCell198 = new TableCell();

            TableCellProperties tableCellProperties198 = new TableCellProperties();
            TableCellWidth tableCellWidth198 = new TableCellWidth() { Width = "8044", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders77 = new TableCellBorders();
            TopBorder topBorder76 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder75 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder81 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder75 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders77.Append(topBorder76);
            tableCellBorders77.Append(leftBorder75);
            tableCellBorders77.Append(bottomBorder81);
            tableCellBorders77.Append(rightBorder75);

            tableCellProperties198.Append(tableCellWidth198);
            tableCellProperties198.Append(tableCellBorders77);

            Paragraph paragraph354 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "00712EF0", RsidParagraphProperties = "0094109A", RsidRunAdditionDefault = "00712EF0", ParagraphId = "1515DA29", TextId = "77777777" };

            ParagraphProperties paragraphProperties351 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties351 = new ParagraphMarkRunProperties();
            RunFonts runFonts997 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1007 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript993 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties351.Append(runFonts997);
            paragraphMarkRunProperties351.Append(fontSize1007);
            paragraphMarkRunProperties351.Append(fontSizeComplexScript993);

            paragraphProperties351.Append(paragraphMarkRunProperties351);

            Run run712 = new Run();

            RunProperties runProperties754 = new RunProperties();
            RunFonts runFonts998 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1008 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript994 = new FontSizeComplexScript() { Val = "22" };

            runProperties754.Append(runFonts998);
            runProperties754.Append(fontSize1008);
            runProperties754.Append(fontSizeComplexScript994);
            Text text676 = new Text();
            text676.Text = "Added section numbers & improved page #s.  Added Project Revision section & 64vs32 bit questions";

            run712.Append(runProperties754);
            run712.Append(text676);

            paragraph354.Append(paragraphProperties351);
            paragraph354.Append(run712);

            tableCell198.Append(tableCellProperties198);
            tableCell198.Append(paragraph354);

            TableCell tableCell199 = new TableCell();

            TableCellProperties tableCellProperties199 = new TableCellProperties();
            TableCellWidth tableCellWidth199 = new TableCellWidth() { Width = "2610", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders78 = new TableCellBorders();
            TopBorder topBorder77 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder76 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder82 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder76 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders78.Append(topBorder77);
            tableCellBorders78.Append(leftBorder76);
            tableCellBorders78.Append(bottomBorder82);
            tableCellBorders78.Append(rightBorder76);

            tableCellProperties199.Append(tableCellWidth199);
            tableCellProperties199.Append(tableCellBorders78);

            Paragraph paragraph355 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "00712EF0", RsidParagraphProperties = "0094109A", RsidRunAdditionDefault = "00712EF0", ParagraphId = "025F12D7", TextId = "77777777" };

            ParagraphProperties paragraphProperties352 = new ParagraphProperties();

            Tabs tabs4 = new Tabs();
            TabStop tabStop4 = new TabStop() { Val = TabStopValues.Left, Position = 2250 };

            tabs4.Append(tabStop4);

            ParagraphMarkRunProperties paragraphMarkRunProperties352 = new ParagraphMarkRunProperties();
            RunFonts runFonts999 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1009 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript995 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties352.Append(runFonts999);
            paragraphMarkRunProperties352.Append(fontSize1009);
            paragraphMarkRunProperties352.Append(fontSizeComplexScript995);

            paragraphProperties352.Append(tabs4);
            paragraphProperties352.Append(paragraphMarkRunProperties352);

            Run run713 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties755 = new RunProperties();
            RunFonts runFonts1000 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1010 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript996 = new FontSizeComplexScript() { Val = "22" };

            runProperties755.Append(runFonts1000);
            runProperties755.Append(fontSize1010);
            runProperties755.Append(fontSizeComplexScript996);
            Text text677 = new Text();
            text677.Text = "Philip E Scherry";

            run713.Append(runProperties755);
            run713.Append(text677);

            Run run714 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties756 = new RunProperties();
            RunFonts runFonts1001 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1011 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript997 = new FontSizeComplexScript() { Val = "22" };

            runProperties756.Append(runFonts1001);
            runProperties756.Append(fontSize1011);
            runProperties756.Append(fontSizeComplexScript997);
            TabChar tabChar43 = new TabChar();

            run714.Append(runProperties756);
            run714.Append(tabChar43);

            paragraph355.Append(paragraphProperties352);
            paragraph355.Append(run713);
            paragraph355.Append(run714);

            tableCell199.Append(tableCellProperties199);
            tableCell199.Append(paragraph355);

            tableRow48.Append(tableRowProperties32);
            tableRow48.Append(tableCell197);
            tableRow48.Append(tableCell198);
            tableRow48.Append(tableCell199);

            TableRow tableRow49 = new TableRow() { RsidTableRowMarkRevision = "003E56F4", RsidTableRowAddition = "005763A4", RsidTableRowProperties = "005763A4", ParagraphId = "2DB56C84", TextId = "77777777" };

            TableRowProperties tableRowProperties33 = new TableRowProperties();
            TableRowHeight tableRowHeight33 = new TableRowHeight() { Val = (UInt32Value)20U };

            tableRowProperties33.Append(tableRowHeight33);

            TableCell tableCell200 = new TableCell();

            TableCellProperties tableCellProperties200 = new TableCellProperties();
            TableCellWidth tableCellWidth200 = new TableCellWidth() { Width = "1676", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders79 = new TableCellBorders();
            TopBorder topBorder78 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder77 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder83 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder77 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders79.Append(topBorder78);
            tableCellBorders79.Append(leftBorder77);
            tableCellBorders79.Append(bottomBorder83);
            tableCellBorders79.Append(rightBorder77);

            tableCellProperties200.Append(tableCellWidth200);
            tableCellProperties200.Append(tableCellBorders79);

            Paragraph paragraph356 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "00712EF0", RsidRunAdditionDefault = "00712EF0", ParagraphId = "04702D85", TextId = "4C3B1D9A" };

            ParagraphProperties paragraphProperties353 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties353 = new ParagraphMarkRunProperties();
            RunFonts runFonts1002 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1012 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript998 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties353.Append(runFonts1002);
            paragraphMarkRunProperties353.Append(fontSize1012);
            paragraphMarkRunProperties353.Append(fontSizeComplexScript998);

            paragraphProperties353.Append(paragraphMarkRunProperties353);

            Run run715 = new Run();

            RunProperties runProperties757 = new RunProperties();
            RunFonts runFonts1003 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1013 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript999 = new FontSizeComplexScript() { Val = "22" };

            runProperties757.Append(runFonts1003);
            runProperties757.Append(fontSize1013);
            runProperties757.Append(fontSizeComplexScript999);
            Text text678 = new Text();
            text678.Text = "01";

            run715.Append(runProperties757);
            run715.Append(text678);

            Run run716 = new Run() { RsidRunAddition = "005763A4" };

            RunProperties runProperties758 = new RunProperties();
            RunFonts runFonts1004 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1014 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1000 = new FontSizeComplexScript() { Val = "22" };

            runProperties758.Append(runFonts1004);
            runProperties758.Append(fontSize1014);
            runProperties758.Append(fontSizeComplexScript1000);
            Text text679 = new Text();
            text679.Text = "/2";

            run716.Append(runProperties758);
            run716.Append(text679);

            Run run717 = new Run();

            RunProperties runProperties759 = new RunProperties();
            RunFonts runFonts1005 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1015 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1001 = new FontSizeComplexScript() { Val = "22" };

            runProperties759.Append(runFonts1005);
            runProperties759.Append(fontSize1015);
            runProperties759.Append(fontSizeComplexScript1001);
            Text text680 = new Text();
            text680.Text = "1";

            run717.Append(runProperties759);
            run717.Append(text680);

            Run run718 = new Run() { RsidRunProperties = "003E56F4", RsidRunAddition = "005763A4" };

            RunProperties runProperties760 = new RunProperties();
            RunFonts runFonts1006 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1016 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1002 = new FontSizeComplexScript() { Val = "22" };

            runProperties760.Append(runFonts1006);
            runProperties760.Append(fontSize1016);
            runProperties760.Append(fontSizeComplexScript1002);
            Text text681 = new Text();
            text681.Text = "/201";

            run718.Append(runProperties760);
            run718.Append(text681);

            Run run719 = new Run();

            RunProperties runProperties761 = new RunProperties();
            RunFonts runFonts1007 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1017 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1003 = new FontSizeComplexScript() { Val = "22" };

            runProperties761.Append(runFonts1007);
            runProperties761.Append(fontSize1017);
            runProperties761.Append(fontSizeComplexScript1003);
            Text text682 = new Text();
            text682.Text = "4";

            run719.Append(runProperties761);
            run719.Append(text682);

            paragraph356.Append(paragraphProperties353);
            paragraph356.Append(run715);
            paragraph356.Append(run716);
            paragraph356.Append(run717);
            paragraph356.Append(run718);
            paragraph356.Append(run719);

            tableCell200.Append(tableCellProperties200);
            tableCell200.Append(paragraph356);

            TableCell tableCell201 = new TableCell();

            TableCellProperties tableCellProperties201 = new TableCellProperties();
            TableCellWidth tableCellWidth201 = new TableCellWidth() { Width = "8044", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders80 = new TableCellBorders();
            TopBorder topBorder79 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder78 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder84 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder78 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders80.Append(topBorder79);
            tableCellBorders80.Append(leftBorder78);
            tableCellBorders80.Append(bottomBorder84);
            tableCellBorders80.Append(rightBorder78);

            tableCellProperties201.Append(tableCellWidth201);
            tableCellProperties201.Append(tableCellBorders80);

            Paragraph paragraph357 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "00712EF0", ParagraphId = "5E8F00C9", TextId = "399928DE" };

            ParagraphProperties paragraphProperties354 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties354 = new ParagraphMarkRunProperties();
            RunFonts runFonts1008 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1018 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1004 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties354.Append(runFonts1008);
            paragraphMarkRunProperties354.Append(fontSize1018);
            paragraphMarkRunProperties354.Append(fontSizeComplexScript1004);

            paragraphProperties354.Append(paragraphMarkRunProperties354);

            Run run720 = new Run();

            RunProperties runProperties762 = new RunProperties();
            RunFonts runFonts1009 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1019 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1005 = new FontSizeComplexScript() { Val = "22" };

            runProperties762.Append(runFonts1009);
            runProperties762.Append(fontSize1019);
            runProperties762.Append(fontSizeComplexScript1005);
            Text text683 = new Text();
            text683.Text = "Removed SQL Always-On Options";

            run720.Append(runProperties762);
            run720.Append(text683);

            paragraph357.Append(paragraphProperties354);
            paragraph357.Append(run720);

            tableCell201.Append(tableCellProperties201);
            tableCell201.Append(paragraph357);

            TableCell tableCell202 = new TableCell();

            TableCellProperties tableCellProperties202 = new TableCellProperties();
            TableCellWidth tableCellWidth202 = new TableCellWidth() { Width = "2610", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders81 = new TableCellBorders();
            TopBorder topBorder80 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder79 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder85 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder79 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders81.Append(topBorder80);
            tableCellBorders81.Append(leftBorder79);
            tableCellBorders81.Append(bottomBorder85);
            tableCellBorders81.Append(rightBorder79);

            tableCellProperties202.Append(tableCellWidth202);
            tableCellProperties202.Append(tableCellBorders81);

            Paragraph paragraph358 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "2F1E0513", TextId = "77777777" };

            ParagraphProperties paragraphProperties355 = new ParagraphProperties();

            Tabs tabs5 = new Tabs();
            TabStop tabStop5 = new TabStop() { Val = TabStopValues.Left, Position = 2250 };

            tabs5.Append(tabStop5);

            ParagraphMarkRunProperties paragraphMarkRunProperties355 = new ParagraphMarkRunProperties();
            RunFonts runFonts1010 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1020 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1006 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties355.Append(runFonts1010);
            paragraphMarkRunProperties355.Append(fontSize1020);
            paragraphMarkRunProperties355.Append(fontSizeComplexScript1006);

            paragraphProperties355.Append(tabs5);
            paragraphProperties355.Append(paragraphMarkRunProperties355);

            Run run721 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties763 = new RunProperties();
            RunFonts runFonts1011 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1021 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1007 = new FontSizeComplexScript() { Val = "22" };

            runProperties763.Append(runFonts1011);
            runProperties763.Append(fontSize1021);
            runProperties763.Append(fontSizeComplexScript1007);
            Text text684 = new Text();
            text684.Text = "Philip E Scherry";

            run721.Append(runProperties763);
            run721.Append(text684);

            Run run722 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties764 = new RunProperties();
            RunFonts runFonts1012 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1022 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1008 = new FontSizeComplexScript() { Val = "22" };

            runProperties764.Append(runFonts1012);
            runProperties764.Append(fontSize1022);
            runProperties764.Append(fontSizeComplexScript1008);
            TabChar tabChar44 = new TabChar();

            run722.Append(runProperties764);
            run722.Append(tabChar44);

            paragraph358.Append(paragraphProperties355);
            paragraph358.Append(run721);
            paragraph358.Append(run722);

            tableCell202.Append(tableCellProperties202);
            tableCell202.Append(paragraph358);

            tableRow49.Append(tableRowProperties33);
            tableRow49.Append(tableCell200);
            tableRow49.Append(tableCell201);
            tableRow49.Append(tableCell202);

            TableRow tableRow50 = new TableRow() { RsidTableRowMarkRevision = "003E56F4", RsidTableRowAddition = "00104E8D", RsidTableRowProperties = "0094109A", ParagraphId = "6D273222", TextId = "77777777" };

            TableRowProperties tableRowProperties34 = new TableRowProperties();
            TableRowHeight tableRowHeight34 = new TableRowHeight() { Val = (UInt32Value)20U };

            tableRowProperties34.Append(tableRowHeight34);

            TableCell tableCell203 = new TableCell();

            TableCellProperties tableCellProperties203 = new TableCellProperties();
            TableCellWidth tableCellWidth203 = new TableCellWidth() { Width = "1676", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders82 = new TableCellBorders();
            TopBorder topBorder81 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder80 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder86 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder80 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders82.Append(topBorder81);
            tableCellBorders82.Append(leftBorder80);
            tableCellBorders82.Append(bottomBorder86);
            tableCellBorders82.Append(rightBorder80);

            tableCellProperties203.Append(tableCellWidth203);
            tableCellProperties203.Append(tableCellBorders82);

            Paragraph paragraph359 = new Paragraph() { RsidParagraphAddition = "00104E8D", RsidParagraphProperties = "0094109A", RsidRunAdditionDefault = "00104E8D", ParagraphId = "68498EFB", TextId = "77777777" };

            ParagraphProperties paragraphProperties356 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties356 = new ParagraphMarkRunProperties();
            RunFonts runFonts1013 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1023 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1009 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties356.Append(runFonts1013);
            paragraphMarkRunProperties356.Append(fontSize1023);
            paragraphMarkRunProperties356.Append(fontSizeComplexScript1009);

            paragraphProperties356.Append(paragraphMarkRunProperties356);

            Run run723 = new Run();

            RunProperties runProperties765 = new RunProperties();
            RunFonts runFonts1014 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1024 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1010 = new FontSizeComplexScript() { Val = "22" };

            runProperties765.Append(runFonts1014);
            runProperties765.Append(fontSize1024);
            runProperties765.Append(fontSizeComplexScript1010);
            Text text685 = new Text();
            text685.Text = "07/21/2014";

            run723.Append(runProperties765);
            run723.Append(text685);

            paragraph359.Append(paragraphProperties356);
            paragraph359.Append(run723);

            tableCell203.Append(tableCellProperties203);
            tableCell203.Append(paragraph359);

            TableCell tableCell204 = new TableCell();

            TableCellProperties tableCellProperties204 = new TableCellProperties();
            TableCellWidth tableCellWidth204 = new TableCellWidth() { Width = "8044", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders83 = new TableCellBorders();
            TopBorder topBorder82 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder81 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder87 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder81 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders83.Append(topBorder82);
            tableCellBorders83.Append(leftBorder81);
            tableCellBorders83.Append(bottomBorder87);
            tableCellBorders83.Append(rightBorder81);

            tableCellProperties204.Append(tableCellWidth204);
            tableCellProperties204.Append(tableCellBorders83);

            Paragraph paragraph360 = new Paragraph() { RsidParagraphAddition = "00104E8D", RsidParagraphProperties = "0094109A", RsidRunAdditionDefault = "00104E8D", ParagraphId = "68FF3256", TextId = "77777777" };

            ParagraphProperties paragraphProperties357 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties357 = new ParagraphMarkRunProperties();
            RunFonts runFonts1015 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1025 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1011 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties357.Append(runFonts1015);
            paragraphMarkRunProperties357.Append(fontSize1025);
            paragraphMarkRunProperties357.Append(fontSizeComplexScript1011);

            paragraphProperties357.Append(paragraphMarkRunProperties357);

            Run run724 = new Run();

            RunProperties runProperties766 = new RunProperties();
            RunFonts runFonts1016 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1026 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1012 = new FontSizeComplexScript() { Val = "22" };

            runProperties766.Append(runFonts1016);
            runProperties766.Append(fontSize1026);
            runProperties766.Append(fontSizeComplexScript1012);
            Text text686 = new Text();
            text686.Text = "Added SQL drive 10 GB minimum comment section 13";

            run724.Append(runProperties766);
            run724.Append(text686);

            paragraph360.Append(paragraphProperties357);
            paragraph360.Append(run724);

            tableCell204.Append(tableCellProperties204);
            tableCell204.Append(paragraph360);

            TableCell tableCell205 = new TableCell();

            TableCellProperties tableCellProperties205 = new TableCellProperties();
            TableCellWidth tableCellWidth205 = new TableCellWidth() { Width = "2610", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders84 = new TableCellBorders();
            TopBorder topBorder83 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder82 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder88 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder82 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders84.Append(topBorder83);
            tableCellBorders84.Append(leftBorder82);
            tableCellBorders84.Append(bottomBorder88);
            tableCellBorders84.Append(rightBorder82);

            tableCellProperties205.Append(tableCellWidth205);
            tableCellProperties205.Append(tableCellBorders84);

            Paragraph paragraph361 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "00104E8D", RsidParagraphProperties = "0094109A", RsidRunAdditionDefault = "00104E8D", ParagraphId = "213AF073", TextId = "77777777" };

            ParagraphProperties paragraphProperties358 = new ParagraphProperties();

            Tabs tabs6 = new Tabs();
            TabStop tabStop6 = new TabStop() { Val = TabStopValues.Left, Position = 2250 };

            tabs6.Append(tabStop6);

            ParagraphMarkRunProperties paragraphMarkRunProperties358 = new ParagraphMarkRunProperties();
            RunFonts runFonts1017 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1027 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1013 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties358.Append(runFonts1017);
            paragraphMarkRunProperties358.Append(fontSize1027);
            paragraphMarkRunProperties358.Append(fontSizeComplexScript1013);

            paragraphProperties358.Append(tabs6);
            paragraphProperties358.Append(paragraphMarkRunProperties358);

            Run run725 = new Run();

            RunProperties runProperties767 = new RunProperties();
            RunFonts runFonts1018 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1028 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1014 = new FontSizeComplexScript() { Val = "22" };

            runProperties767.Append(runFonts1018);
            runProperties767.Append(fontSize1028);
            runProperties767.Append(fontSizeComplexScript1014);
            Text text687 = new Text();
            text687.Text = "Darrell Faerber";

            run725.Append(runProperties767);
            run725.Append(text687);

            paragraph361.Append(paragraphProperties358);
            paragraph361.Append(run725);

            tableCell205.Append(tableCellProperties205);
            tableCell205.Append(paragraph361);

            tableRow50.Append(tableRowProperties34);
            tableRow50.Append(tableCell203);
            tableRow50.Append(tableCell204);
            tableRow50.Append(tableCell205);

            TableRow tableRow51 = new TableRow() { RsidTableRowMarkRevision = "003E56F4", RsidTableRowAddition = "003B502F", RsidTableRowProperties = "005763A4", ParagraphId = "0321723C", TextId = "77777777" };

            TableRowProperties tableRowProperties35 = new TableRowProperties();
            TableRowHeight tableRowHeight35 = new TableRowHeight() { Val = (UInt32Value)20U };

            tableRowProperties35.Append(tableRowHeight35);

            TableCell tableCell206 = new TableCell();

            TableCellProperties tableCellProperties206 = new TableCellProperties();
            TableCellWidth tableCellWidth206 = new TableCellWidth() { Width = "1676", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders85 = new TableCellBorders();
            TopBorder topBorder84 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder83 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder89 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder83 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders85.Append(topBorder84);
            tableCellBorders85.Append(leftBorder83);
            tableCellBorders85.Append(bottomBorder89);
            tableCellBorders85.Append(rightBorder83);

            tableCellProperties206.Append(tableCellWidth206);
            tableCellProperties206.Append(tableCellBorders85);

            Paragraph paragraph362 = new Paragraph() { RsidParagraphAddition = "003B502F", RsidParagraphProperties = "00104E8D", RsidRunAdditionDefault = "003B502F", ParagraphId = "5BEB9B4A", TextId = "21CBFAC1" };

            ParagraphProperties paragraphProperties359 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties359 = new ParagraphMarkRunProperties();
            RunFonts runFonts1019 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1029 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1015 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties359.Append(runFonts1019);
            paragraphMarkRunProperties359.Append(fontSize1029);
            paragraphMarkRunProperties359.Append(fontSizeComplexScript1015);

            paragraphProperties359.Append(paragraphMarkRunProperties359);

            Run run726 = new Run();

            RunProperties runProperties768 = new RunProperties();
            RunFonts runFonts1020 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1030 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1016 = new FontSizeComplexScript() { Val = "22" };

            runProperties768.Append(runFonts1020);
            runProperties768.Append(fontSize1030);
            runProperties768.Append(fontSizeComplexScript1016);
            Text text688 = new Text();
            text688.Text = "0";

            run726.Append(runProperties768);
            run726.Append(text688);

            Run run727 = new Run() { RsidRunAddition = "00104E8D" };

            RunProperties runProperties769 = new RunProperties();
            RunFonts runFonts1021 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1031 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1017 = new FontSizeComplexScript() { Val = "22" };

            runProperties769.Append(runFonts1021);
            runProperties769.Append(fontSize1031);
            runProperties769.Append(fontSizeComplexScript1017);
            Text text689 = new Text();
            text689.Text = "9";

            run727.Append(runProperties769);
            run727.Append(text689);

            Run run728 = new Run();

            RunProperties runProperties770 = new RunProperties();
            RunFonts runFonts1022 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1032 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1018 = new FontSizeComplexScript() { Val = "22" };

            runProperties770.Append(runFonts1022);
            runProperties770.Append(fontSize1032);
            runProperties770.Append(fontSizeComplexScript1018);
            Text text690 = new Text();
            text690.Text = "/2";

            run728.Append(runProperties770);
            run728.Append(text690);

            Run run729 = new Run() { RsidRunAddition = "00104E8D" };

            RunProperties runProperties771 = new RunProperties();
            RunFonts runFonts1023 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1033 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1019 = new FontSizeComplexScript() { Val = "22" };

            runProperties771.Append(runFonts1023);
            runProperties771.Append(fontSize1033);
            runProperties771.Append(fontSizeComplexScript1019);
            Text text691 = new Text();
            text691.Text = "2";

            run729.Append(runProperties771);
            run729.Append(text691);

            Run run730 = new Run();

            RunProperties runProperties772 = new RunProperties();
            RunFonts runFonts1024 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1034 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1020 = new FontSizeComplexScript() { Val = "22" };

            runProperties772.Append(runFonts1024);
            runProperties772.Append(fontSize1034);
            runProperties772.Append(fontSizeComplexScript1020);
            Text text692 = new Text();
            text692.Text = "/2014";

            run730.Append(runProperties772);
            run730.Append(text692);

            paragraph362.Append(paragraphProperties359);
            paragraph362.Append(run726);
            paragraph362.Append(run727);
            paragraph362.Append(run728);
            paragraph362.Append(run729);
            paragraph362.Append(run730);

            tableCell206.Append(tableCellProperties206);
            tableCell206.Append(paragraph362);

            TableCell tableCell207 = new TableCell();

            TableCellProperties tableCellProperties207 = new TableCellProperties();
            TableCellWidth tableCellWidth207 = new TableCellWidth() { Width = "8044", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders86 = new TableCellBorders();
            TopBorder topBorder85 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder84 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder90 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder84 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders86.Append(topBorder85);
            tableCellBorders86.Append(leftBorder84);
            tableCellBorders86.Append(bottomBorder90);
            tableCellBorders86.Append(rightBorder84);

            tableCellProperties207.Append(tableCellWidth207);
            tableCellProperties207.Append(tableCellBorders86);

            Paragraph paragraph363 = new Paragraph() { RsidParagraphAddition = "003B502F", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "00104E8D", ParagraphId = "78B14D5B", TextId = "4DB9055C" };

            ParagraphProperties paragraphProperties360 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties360 = new ParagraphMarkRunProperties();
            RunFonts runFonts1025 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1035 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1021 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties360.Append(runFonts1025);
            paragraphMarkRunProperties360.Append(fontSize1035);
            paragraphMarkRunProperties360.Append(fontSizeComplexScript1021);

            paragraphProperties360.Append(paragraphMarkRunProperties360);

            Run run731 = new Run();

            RunProperties runProperties773 = new RunProperties();
            RunFonts runFonts1026 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1036 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1022 = new FontSizeComplexScript() { Val = "22" };

            runProperties773.Append(runFonts1026);
            runProperties773.Append(fontSize1036);
            runProperties773.Append(fontSizeComplexScript1022);
            Text text693 = new Text();
            text693.Text = "Added SP2 for SQL 2012";

            run731.Append(runProperties773);
            run731.Append(text693);

            paragraph363.Append(paragraphProperties360);
            paragraph363.Append(run731);

            tableCell207.Append(tableCellProperties207);
            tableCell207.Append(paragraph363);

            TableCell tableCell208 = new TableCell();

            TableCellProperties tableCellProperties208 = new TableCellProperties();
            TableCellWidth tableCellWidth208 = new TableCellWidth() { Width = "2610", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders87 = new TableCellBorders();
            TopBorder topBorder86 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder85 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder91 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder85 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders87.Append(topBorder86);
            tableCellBorders87.Append(leftBorder85);
            tableCellBorders87.Append(bottomBorder91);
            tableCellBorders87.Append(rightBorder85);

            tableCellProperties208.Append(tableCellWidth208);
            tableCellProperties208.Append(tableCellBorders87);

            Paragraph paragraph364 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "003B502F", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "00104E8D", ParagraphId = "44F19657", TextId = "607D6D0B" };

            ParagraphProperties paragraphProperties361 = new ParagraphProperties();

            Tabs tabs7 = new Tabs();
            TabStop tabStop7 = new TabStop() { Val = TabStopValues.Left, Position = 2250 };

            tabs7.Append(tabStop7);

            ParagraphMarkRunProperties paragraphMarkRunProperties361 = new ParagraphMarkRunProperties();
            RunFonts runFonts1027 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1037 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1023 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties361.Append(runFonts1027);
            paragraphMarkRunProperties361.Append(fontSize1037);
            paragraphMarkRunProperties361.Append(fontSizeComplexScript1023);

            paragraphProperties361.Append(tabs7);
            paragraphProperties361.Append(paragraphMarkRunProperties361);

            Run run732 = new Run();

            RunProperties runProperties774 = new RunProperties();
            RunFonts runFonts1028 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1038 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1024 = new FontSizeComplexScript() { Val = "22" };

            runProperties774.Append(runFonts1028);
            runProperties774.Append(fontSize1038);
            runProperties774.Append(fontSizeComplexScript1024);
            Text text694 = new Text();
            text694.Text = "Philip E Scherry";

            run732.Append(runProperties774);
            run732.Append(text694);

            paragraph364.Append(paragraphProperties361);
            paragraph364.Append(run732);

            tableCell208.Append(tableCellProperties208);
            tableCell208.Append(paragraph364);

            tableRow51.Append(tableRowProperties35);
            tableRow51.Append(tableCell206);
            tableRow51.Append(tableCell207);
            tableRow51.Append(tableCell208);

            TableRow tableRow52 = new TableRow() { RsidTableRowMarkRevision = "003E56F4", RsidTableRowAddition = "00E8117E", RsidTableRowProperties = "005763A4", ParagraphId = "0A103113", TextId = "77777777" };

            TableRowProperties tableRowProperties36 = new TableRowProperties();
            TableRowHeight tableRowHeight36 = new TableRowHeight() { Val = (UInt32Value)20U };

            tableRowProperties36.Append(tableRowHeight36);

            TableCell tableCell209 = new TableCell();

            TableCellProperties tableCellProperties209 = new TableCellProperties();
            TableCellWidth tableCellWidth209 = new TableCellWidth() { Width = "1676", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders88 = new TableCellBorders();
            TopBorder topBorder87 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder86 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder92 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder86 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders88.Append(topBorder87);
            tableCellBorders88.Append(leftBorder86);
            tableCellBorders88.Append(bottomBorder92);
            tableCellBorders88.Append(rightBorder86);

            tableCellProperties209.Append(tableCellWidth209);
            tableCellProperties209.Append(tableCellBorders88);

            Paragraph paragraph365 = new Paragraph() { RsidParagraphAddition = "00E8117E", RsidParagraphProperties = "00104E8D", RsidRunAdditionDefault = "00E8117E", ParagraphId = "655E0B0B", TextId = "2A3765E5" };

            ParagraphProperties paragraphProperties362 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties362 = new ParagraphMarkRunProperties();
            RunFonts runFonts1029 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1039 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1025 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties362.Append(runFonts1029);
            paragraphMarkRunProperties362.Append(fontSize1039);
            paragraphMarkRunProperties362.Append(fontSizeComplexScript1025);

            paragraphProperties362.Append(paragraphMarkRunProperties362);

            Run run733 = new Run();

            RunProperties runProperties775 = new RunProperties();
            RunFonts runFonts1030 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1040 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1026 = new FontSizeComplexScript() { Val = "22" };

            runProperties775.Append(runFonts1030);
            runProperties775.Append(fontSize1040);
            runProperties775.Append(fontSizeComplexScript1026);
            Text text695 = new Text();
            text695.Text = "07/22/2015";

            run733.Append(runProperties775);
            run733.Append(text695);

            paragraph365.Append(paragraphProperties362);
            paragraph365.Append(run733);

            tableCell209.Append(tableCellProperties209);
            tableCell209.Append(paragraph365);

            TableCell tableCell210 = new TableCell();

            TableCellProperties tableCellProperties210 = new TableCellProperties();
            TableCellWidth tableCellWidth210 = new TableCellWidth() { Width = "8044", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders89 = new TableCellBorders();
            TopBorder topBorder88 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder87 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder93 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder87 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders89.Append(topBorder88);
            tableCellBorders89.Append(leftBorder87);
            tableCellBorders89.Append(bottomBorder93);
            tableCellBorders89.Append(rightBorder87);

            tableCellProperties210.Append(tableCellWidth210);
            tableCellProperties210.Append(tableCellBorders89);

            Paragraph paragraph366 = new Paragraph() { RsidParagraphAddition = "00E8117E", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "00E8117E", ParagraphId = "63DAA259", TextId = "524DC51D" };

            ParagraphProperties paragraphProperties363 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties363 = new ParagraphMarkRunProperties();
            RunFonts runFonts1031 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1041 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1027 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties363.Append(runFonts1031);
            paragraphMarkRunProperties363.Append(fontSize1041);
            paragraphMarkRunProperties363.Append(fontSizeComplexScript1027);

            paragraphProperties363.Append(paragraphMarkRunProperties363);

            Run run734 = new Run();

            RunProperties runProperties776 = new RunProperties();
            RunFonts runFonts1032 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1042 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1028 = new FontSizeComplexScript() { Val = "22" };

            runProperties776.Append(runFonts1032);
            runProperties776.Append(fontSize1042);
            runProperties776.Append(fontSizeComplexScript1028);
            Text text696 = new Text();
            text696.Text = "Removed network switch info";

            run734.Append(runProperties776);
            run734.Append(text696);

            Run run735 = new Run() { RsidRunAddition = "00DE0CB0" };

            RunProperties runProperties777 = new RunProperties();
            RunFonts runFonts1033 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1043 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1029 = new FontSizeComplexScript() { Val = "22" };

            runProperties777.Append(runFonts1033);
            runProperties777.Append(fontSize1043);
            runProperties777.Append(fontSizeComplexScript1029);
            Text text697 = new Text();
            text697.Text = ", Added Citrix Reboots & responsibility matrix";

            run735.Append(runProperties777);
            run735.Append(text697);

            Run run736 = new Run() { RsidRunAddition = "003C2F92" };

            RunProperties runProperties778 = new RunProperties();
            RunFonts runFonts1034 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1044 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1030 = new FontSizeComplexScript() { Val = "22" };

            runProperties778.Append(runFonts1034);
            runProperties778.Append(fontSize1044);
            runProperties778.Append(fontSizeComplexScript1030);
            Text text698 = new Text();
            text698.Text = ", Added Linux volume info";

            run736.Append(runProperties778);
            run736.Append(text698);

            paragraph366.Append(paragraphProperties363);
            paragraph366.Append(run734);
            paragraph366.Append(run735);
            paragraph366.Append(run736);

            tableCell210.Append(tableCellProperties210);
            tableCell210.Append(paragraph366);

            TableCell tableCell211 = new TableCell();

            TableCellProperties tableCellProperties211 = new TableCellProperties();
            TableCellWidth tableCellWidth211 = new TableCellWidth() { Width = "2610", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders90 = new TableCellBorders();
            TopBorder topBorder89 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder88 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder94 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder88 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders90.Append(topBorder89);
            tableCellBorders90.Append(leftBorder88);
            tableCellBorders90.Append(bottomBorder94);
            tableCellBorders90.Append(rightBorder88);

            tableCellProperties211.Append(tableCellWidth211);
            tableCellProperties211.Append(tableCellBorders90);

            Paragraph paragraph367 = new Paragraph() { RsidParagraphAddition = "00E8117E", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "00E8117E", ParagraphId = "55932C1D", TextId = "5C946AC6" };

            ParagraphProperties paragraphProperties364 = new ParagraphProperties();

            Tabs tabs8 = new Tabs();
            TabStop tabStop8 = new TabStop() { Val = TabStopValues.Left, Position = 2250 };

            tabs8.Append(tabStop8);

            ParagraphMarkRunProperties paragraphMarkRunProperties364 = new ParagraphMarkRunProperties();
            RunFonts runFonts1035 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1045 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1031 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties364.Append(runFonts1035);
            paragraphMarkRunProperties364.Append(fontSize1045);
            paragraphMarkRunProperties364.Append(fontSizeComplexScript1031);

            paragraphProperties364.Append(tabs8);
            paragraphProperties364.Append(paragraphMarkRunProperties364);

            Run run737 = new Run();

            RunProperties runProperties779 = new RunProperties();
            RunFonts runFonts1036 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1046 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1032 = new FontSizeComplexScript() { Val = "22" };

            runProperties779.Append(runFonts1036);
            runProperties779.Append(fontSize1046);
            runProperties779.Append(fontSizeComplexScript1032);
            Text text699 = new Text();
            text699.Text = "Philip E Scherry";

            run737.Append(runProperties779);
            run737.Append(text699);

            paragraph367.Append(paragraphProperties364);
            paragraph367.Append(run737);

            tableCell211.Append(tableCellProperties211);
            tableCell211.Append(paragraph367);

            tableRow52.Append(tableRowProperties36);
            tableRow52.Append(tableCell209);
            tableRow52.Append(tableCell210);
            tableRow52.Append(tableCell211);

            table9.Append(tableProperties9);
            table9.Append(tableGrid9);
            table9.Append(tableRow42);
            table9.Append(tableRow43);
            table9.Append(tableRow44);
            table9.Append(tableRow45);
            table9.Append(tableRow46);
            table9.Append(tableRow47);
            table9.Append(tableRow48);
            table9.Append(tableRow49);
            table9.Append(tableRow50);
            table9.Append(tableRow51);
            table9.Append(tableRow52);

            Paragraph paragraph368 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "00466521", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "00466521", ParagraphId = "62FB4B10", TextId = "77777777" };

            ParagraphProperties paragraphProperties365 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId25 = new ParagraphStyleId() { Val = "Heading2" };

            ParagraphMarkRunProperties paragraphMarkRunProperties365 = new ParagraphMarkRunProperties();
            RunFonts runFonts1037 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1047 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript1033 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties365.Append(runFonts1037);
            paragraphMarkRunProperties365.Append(fontSize1047);
            paragraphMarkRunProperties365.Append(fontSizeComplexScript1033);

            paragraphProperties365.Append(paragraphStyleId25);
            paragraphProperties365.Append(paragraphMarkRunProperties365);

            paragraph368.Append(paragraphProperties365);

            SectionProperties sectionProperties1 = new SectionProperties() { RsidRPr = "003E56F4", RsidR = "00466521", RsidSect = "003A7AC6" };
            HeaderReference headerReference1 = new HeaderReference() { Type = HeaderFooterValues.Default, Id = "rId12" };
            FooterReference footerReference1 = new FooterReference() { Type = HeaderFooterValues.Default, Id = "rId13" };
            PageSize pageSize1 = new PageSize() { Width = (UInt32Value)15840U, Height = (UInt32Value)12240U, Orient = PageOrientationValues.Landscape };
            PageMargin pageMargin1 = new PageMargin() { Top = 1080, Right = (UInt32Value)1440U, Bottom = 1080, Left = (UInt32Value)1440U, Header = (UInt32Value)720U, Footer = (UInt32Value)720U, Gutter = (UInt32Value)0U };
            Columns columns1 = new Columns() { Space = "720" };
            DocGrid docGrid1 = new DocGrid() { LinePitch = 360 };

            sectionProperties1.Append(headerReference1);
            sectionProperties1.Append(footerReference1);
            sectionProperties1.Append(pageSize1);
            sectionProperties1.Append(pageMargin1);
            sectionProperties1.Append(columns1);
            sectionProperties1.Append(docGrid1);

            body1.Append(paragraph1);
            body1.Append(paragraph2);
            body1.Append(paragraph3);
            body1.Append(paragraph4);
            body1.Append(paragraph5);
            body1.Append(paragraph6);
            body1.Append(paragraph7);
            body1.Append(paragraph8);
            body1.Append(paragraph9);
            body1.Append(paragraph10);
            body1.Append(paragraph11);
            body1.Append(paragraph12);
            body1.Append(paragraph13);
            body1.Append(paragraph14);
            body1.Append(paragraph15);
            body1.Append(paragraph16);
            body1.Append(paragraph17);
            body1.Append(paragraph18);
            body1.Append(paragraph19);
            body1.Append(paragraph20);
            body1.Append(paragraph21);
            body1.Append(paragraph22);
            body1.Append(paragraph23);
            body1.Append(paragraph24);
            body1.Append(paragraph25);
            body1.Append(paragraph26);
            body1.Append(paragraph27);
            body1.Append(paragraph28);
            body1.Append(paragraph29);
            body1.Append(paragraph30);
            body1.Append(paragraph31);
            body1.Append(paragraph32);
            body1.Append(paragraph33);
            body1.Append(paragraph34);
            body1.Append(paragraph35);
            body1.Append(paragraph36);
            body1.Append(paragraph37);
            body1.Append(paragraph38);
            body1.Append(paragraph39);
            body1.Append(paragraph40);
            body1.Append(paragraph41);
            body1.Append(paragraph42);
            body1.Append(paragraph43);
            body1.Append(paragraph44);
            body1.Append(paragraph45);
            body1.Append(paragraph46);
            body1.Append(paragraph47);
            body1.Append(paragraph48);
            body1.Append(paragraph49);
            body1.Append(paragraph50);
            body1.Append(paragraph51);
            body1.Append(paragraph52);
            body1.Append(paragraph53);
            body1.Append(paragraph54);
            body1.Append(paragraph55);
            body1.Append(paragraph56);
            body1.Append(table1);
            body1.Append(paragraph73);
            body1.Append(paragraph74);
            body1.Append(paragraph75);
            body1.Append(paragraph76);
            body1.Append(paragraph77);
            body1.Append(paragraph78);
            body1.Append(paragraph79);
            body1.Append(paragraph80);
            body1.Append(paragraph81);
            body1.Append(paragraph82);
            body1.Append(paragraph83);
            body1.Append(table2);
            body1.Append(paragraph123);
            body1.Append(paragraph124);
            body1.Append(paragraph125);
            body1.Append(table3);
            body1.Append(paragraph156);
            body1.Append(paragraph157);
            body1.Append(paragraph158);
            body1.Append(paragraph159);
            body1.Append(table4);
            body1.Append(paragraph172);
            body1.Append(paragraph173);
            body1.Append(paragraph174);
            body1.Append(paragraph175);
            body1.Append(paragraph176);
            body1.Append(paragraph177);
            body1.Append(paragraph178);
            body1.Append(paragraph179);
            body1.Append(paragraph180);
            body1.Append(paragraph181);
            body1.Append(paragraph182);
            body1.Append(paragraph183);
            body1.Append(paragraph184);
            body1.Append(paragraph185);
            body1.Append(paragraph186);
            body1.Append(paragraph187);
            body1.Append(paragraph188);
            body1.Append(paragraph189);
            body1.Append(paragraph190);
            body1.Append(paragraph191);
            body1.Append(paragraph192);
            body1.Append(paragraph193);
            body1.Append(paragraph194);
            body1.Append(paragraph195);
            body1.Append(paragraph196);
            body1.Append(paragraph197);
            body1.Append(paragraph198);
            body1.Append(table5);
            body1.Append(paragraph249);
            body1.Append(paragraph250);
            body1.Append(paragraph251);
            body1.Append(paragraph252);
            body1.Append(paragraph253);
            body1.Append(paragraph254);
            body1.Append(paragraph255);
            body1.Append(paragraph256);
            body1.Append(paragraph257);
            body1.Append(paragraph258);
            body1.Append(paragraph259);
            body1.Append(paragraph260);
            body1.Append(paragraph261);
            body1.Append(paragraph262);
            body1.Append(paragraph263);
            body1.Append(paragraph264);
            body1.Append(table6);
            body1.Append(paragraph285);
            body1.Append(paragraph286);
            body1.Append(paragraph287);
            body1.Append(paragraph288);
            body1.Append(paragraph289);
            body1.Append(paragraph290);
            body1.Append(paragraph291);
            body1.Append(paragraph292);
            body1.Append(paragraph293);
            body1.Append(paragraph294);
            body1.Append(paragraph295);
            body1.Append(paragraph296);
            body1.Append(paragraph297);
            body1.Append(paragraph298);
            body1.Append(table7);
            body1.Append(paragraph311);
            body1.Append(paragraph312);
            body1.Append(paragraph313);
            body1.Append(paragraph314);
            body1.Append(paragraph315);
            body1.Append(paragraph316);
            body1.Append(paragraph317);
            body1.Append(paragraph318);
            body1.Append(paragraph319);
            body1.Append(paragraph320);
            body1.Append(paragraph321);
            body1.Append(paragraph322);
            body1.Append(paragraph323);
            body1.Append(bookmarkEnd3);
            body1.Append(paragraph324);
            body1.Append(table8);
            body1.Append(paragraph334);
            body1.Append(table9);
            body1.Append(paragraph368);
            body1.Append(sectionProperties1);

            document1.Append(body1);

            mainDocumentPart1.Document = document1;
        }
Ejemplo n.º 50
0
        // Generates content of presentationPart1.
        private void GeneratePresentationPart1Content(PresentationPart presentationPart1)
        {
            P.Presentation presentation1 = new P.Presentation(){ SaveSubsetFonts = true };
            presentation1.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");
            presentation1.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            presentation1.AddNamespaceDeclaration("p", "http://schemas.openxmlformats.org/presentationml/2006/main");

            SlideMasterIdList slideMasterIdList1 = new SlideMasterIdList();
            SlideMasterId slideMasterId1 = new SlideMasterId(){ Id = (UInt32Value)2147483648U, RelationshipId = "rId1" };

            slideMasterIdList1.Append(slideMasterId1);

            NotesMasterIdList notesMasterIdList1 = new NotesMasterIdList();
            NotesMasterId notesMasterId1 = new NotesMasterId(){ Id = "rId3" };

            notesMasterIdList1.Append(notesMasterId1);

            SlideIdList slideIdList1 = new SlideIdList();
            SlideId slideId1 = new SlideId(){ Id = (UInt32Value)256U, RelationshipId = "rId2" };

            slideIdList1.Append(slideId1);
            SlideSize slideSize1 = new SlideSize(){ Cx = 9144000, Cy = 6858000, Type = SlideSizeValues.Screen4x3 };
            NotesSize notesSize1 = new NotesSize(){ Cx = 9144000L, Cy = 6858000L };

            DefaultTextStyle defaultTextStyle1 = new DefaultTextStyle();

            A.DefaultParagraphProperties defaultParagraphProperties1 = new A.DefaultParagraphProperties();
            A.DefaultRunProperties defaultRunProperties1 = new A.DefaultRunProperties(){ Language = "en-US" };

            defaultParagraphProperties1.Append(defaultRunProperties1);

            A.Level1ParagraphProperties level1ParagraphProperties1 = new A.Level1ParagraphProperties(){ LeftMargin = 0, Alignment = A.TextAlignmentTypeValues.Left, DefaultTabSize = 914400, RightToLeft = false, EastAsianLineBreak = true, LatinLineBreak = false, Height = true };

            A.DefaultRunProperties defaultRunProperties2 = new A.DefaultRunProperties(){ FontSize = 1800, Kerning = 1200 };

            A.SolidFill solidFill1 = new A.SolidFill();
            A.SchemeColor schemeColor1 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill1.Append(schemeColor1);
            A.LatinFont latinFont1 = new A.LatinFont(){ Typeface = "+mn-lt" };
            A.EastAsianFont eastAsianFont1 = new A.EastAsianFont(){ Typeface = "+mn-ea" };
            A.ComplexScriptFont complexScriptFont1 = new A.ComplexScriptFont(){ Typeface = "+mn-cs" };

            defaultRunProperties2.Append(solidFill1);
            defaultRunProperties2.Append(latinFont1);
            defaultRunProperties2.Append(eastAsianFont1);
            defaultRunProperties2.Append(complexScriptFont1);

            level1ParagraphProperties1.Append(defaultRunProperties2);

            A.Level2ParagraphProperties level2ParagraphProperties1 = new A.Level2ParagraphProperties(){ LeftMargin = 457200, Alignment = A.TextAlignmentTypeValues.Left, DefaultTabSize = 914400, RightToLeft = false, EastAsianLineBreak = true, LatinLineBreak = false, Height = true };

            A.DefaultRunProperties defaultRunProperties3 = new A.DefaultRunProperties(){ FontSize = 1800, Kerning = 1200 };

            A.SolidFill solidFill2 = new A.SolidFill();
            A.SchemeColor schemeColor2 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill2.Append(schemeColor2);
            A.LatinFont latinFont2 = new A.LatinFont(){ Typeface = "+mn-lt" };
            A.EastAsianFont eastAsianFont2 = new A.EastAsianFont(){ Typeface = "+mn-ea" };
            A.ComplexScriptFont complexScriptFont2 = new A.ComplexScriptFont(){ Typeface = "+mn-cs" };

            defaultRunProperties3.Append(solidFill2);
            defaultRunProperties3.Append(latinFont2);
            defaultRunProperties3.Append(eastAsianFont2);
            defaultRunProperties3.Append(complexScriptFont2);

            level2ParagraphProperties1.Append(defaultRunProperties3);

            A.Level3ParagraphProperties level3ParagraphProperties1 = new A.Level3ParagraphProperties(){ LeftMargin = 914400, Alignment = A.TextAlignmentTypeValues.Left, DefaultTabSize = 914400, RightToLeft = false, EastAsianLineBreak = true, LatinLineBreak = false, Height = true };

            A.DefaultRunProperties defaultRunProperties4 = new A.DefaultRunProperties(){ FontSize = 1800, Kerning = 1200 };

            A.SolidFill solidFill3 = new A.SolidFill();
            A.SchemeColor schemeColor3 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill3.Append(schemeColor3);
            A.LatinFont latinFont3 = new A.LatinFont(){ Typeface = "+mn-lt" };
            A.EastAsianFont eastAsianFont3 = new A.EastAsianFont(){ Typeface = "+mn-ea" };
            A.ComplexScriptFont complexScriptFont3 = new A.ComplexScriptFont(){ Typeface = "+mn-cs" };

            defaultRunProperties4.Append(solidFill3);
            defaultRunProperties4.Append(latinFont3);
            defaultRunProperties4.Append(eastAsianFont3);
            defaultRunProperties4.Append(complexScriptFont3);

            level3ParagraphProperties1.Append(defaultRunProperties4);

            A.Level4ParagraphProperties level4ParagraphProperties1 = new A.Level4ParagraphProperties(){ LeftMargin = 1371600, Alignment = A.TextAlignmentTypeValues.Left, DefaultTabSize = 914400, RightToLeft = false, EastAsianLineBreak = true, LatinLineBreak = false, Height = true };

            A.DefaultRunProperties defaultRunProperties5 = new A.DefaultRunProperties(){ FontSize = 1800, Kerning = 1200 };

            A.SolidFill solidFill4 = new A.SolidFill();
            A.SchemeColor schemeColor4 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill4.Append(schemeColor4);
            A.LatinFont latinFont4 = new A.LatinFont(){ Typeface = "+mn-lt" };
            A.EastAsianFont eastAsianFont4 = new A.EastAsianFont(){ Typeface = "+mn-ea" };
            A.ComplexScriptFont complexScriptFont4 = new A.ComplexScriptFont(){ Typeface = "+mn-cs" };

            defaultRunProperties5.Append(solidFill4);
            defaultRunProperties5.Append(latinFont4);
            defaultRunProperties5.Append(eastAsianFont4);
            defaultRunProperties5.Append(complexScriptFont4);

            level4ParagraphProperties1.Append(defaultRunProperties5);

            A.Level5ParagraphProperties level5ParagraphProperties1 = new A.Level5ParagraphProperties(){ LeftMargin = 1828800, Alignment = A.TextAlignmentTypeValues.Left, DefaultTabSize = 914400, RightToLeft = false, EastAsianLineBreak = true, LatinLineBreak = false, Height = true };

            A.DefaultRunProperties defaultRunProperties6 = new A.DefaultRunProperties(){ FontSize = 1800, Kerning = 1200 };

            A.SolidFill solidFill5 = new A.SolidFill();
            A.SchemeColor schemeColor5 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill5.Append(schemeColor5);
            A.LatinFont latinFont5 = new A.LatinFont(){ Typeface = "+mn-lt" };
            A.EastAsianFont eastAsianFont5 = new A.EastAsianFont(){ Typeface = "+mn-ea" };
            A.ComplexScriptFont complexScriptFont5 = new A.ComplexScriptFont(){ Typeface = "+mn-cs" };

            defaultRunProperties6.Append(solidFill5);
            defaultRunProperties6.Append(latinFont5);
            defaultRunProperties6.Append(eastAsianFont5);
            defaultRunProperties6.Append(complexScriptFont5);

            level5ParagraphProperties1.Append(defaultRunProperties6);

            A.Level6ParagraphProperties level6ParagraphProperties1 = new A.Level6ParagraphProperties(){ LeftMargin = 2286000, Alignment = A.TextAlignmentTypeValues.Left, DefaultTabSize = 914400, RightToLeft = false, EastAsianLineBreak = true, LatinLineBreak = false, Height = true };

            A.DefaultRunProperties defaultRunProperties7 = new A.DefaultRunProperties(){ FontSize = 1800, Kerning = 1200 };

            A.SolidFill solidFill6 = new A.SolidFill();
            A.SchemeColor schemeColor6 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill6.Append(schemeColor6);
            A.LatinFont latinFont6 = new A.LatinFont(){ Typeface = "+mn-lt" };
            A.EastAsianFont eastAsianFont6 = new A.EastAsianFont(){ Typeface = "+mn-ea" };
            A.ComplexScriptFont complexScriptFont6 = new A.ComplexScriptFont(){ Typeface = "+mn-cs" };

            defaultRunProperties7.Append(solidFill6);
            defaultRunProperties7.Append(latinFont6);
            defaultRunProperties7.Append(eastAsianFont6);
            defaultRunProperties7.Append(complexScriptFont6);

            level6ParagraphProperties1.Append(defaultRunProperties7);

            A.Level7ParagraphProperties level7ParagraphProperties1 = new A.Level7ParagraphProperties(){ LeftMargin = 2743200, Alignment = A.TextAlignmentTypeValues.Left, DefaultTabSize = 914400, RightToLeft = false, EastAsianLineBreak = true, LatinLineBreak = false, Height = true };

            A.DefaultRunProperties defaultRunProperties8 = new A.DefaultRunProperties(){ FontSize = 1800, Kerning = 1200 };

            A.SolidFill solidFill7 = new A.SolidFill();
            A.SchemeColor schemeColor7 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill7.Append(schemeColor7);
            A.LatinFont latinFont7 = new A.LatinFont(){ Typeface = "+mn-lt" };
            A.EastAsianFont eastAsianFont7 = new A.EastAsianFont(){ Typeface = "+mn-ea" };
            A.ComplexScriptFont complexScriptFont7 = new A.ComplexScriptFont(){ Typeface = "+mn-cs" };

            defaultRunProperties8.Append(solidFill7);
            defaultRunProperties8.Append(latinFont7);
            defaultRunProperties8.Append(eastAsianFont7);
            defaultRunProperties8.Append(complexScriptFont7);

            level7ParagraphProperties1.Append(defaultRunProperties8);

            A.Level8ParagraphProperties level8ParagraphProperties1 = new A.Level8ParagraphProperties(){ LeftMargin = 3200400, Alignment = A.TextAlignmentTypeValues.Left, DefaultTabSize = 914400, RightToLeft = false, EastAsianLineBreak = true, LatinLineBreak = false, Height = true };

            A.DefaultRunProperties defaultRunProperties9 = new A.DefaultRunProperties(){ FontSize = 1800, Kerning = 1200 };

            A.SolidFill solidFill8 = new A.SolidFill();
            A.SchemeColor schemeColor8 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill8.Append(schemeColor8);
            A.LatinFont latinFont8 = new A.LatinFont(){ Typeface = "+mn-lt" };
            A.EastAsianFont eastAsianFont8 = new A.EastAsianFont(){ Typeface = "+mn-ea" };
            A.ComplexScriptFont complexScriptFont8 = new A.ComplexScriptFont(){ Typeface = "+mn-cs" };

            defaultRunProperties9.Append(solidFill8);
            defaultRunProperties9.Append(latinFont8);
            defaultRunProperties9.Append(eastAsianFont8);
            defaultRunProperties9.Append(complexScriptFont8);

            level8ParagraphProperties1.Append(defaultRunProperties9);

            A.Level9ParagraphProperties level9ParagraphProperties1 = new A.Level9ParagraphProperties(){ LeftMargin = 3657600, Alignment = A.TextAlignmentTypeValues.Left, DefaultTabSize = 914400, RightToLeft = false, EastAsianLineBreak = true, LatinLineBreak = false, Height = true };

            A.DefaultRunProperties defaultRunProperties10 = new A.DefaultRunProperties(){ FontSize = 1800, Kerning = 1200 };

            A.SolidFill solidFill9 = new A.SolidFill();
            A.SchemeColor schemeColor9 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill9.Append(schemeColor9);
            A.LatinFont latinFont9 = new A.LatinFont(){ Typeface = "+mn-lt" };
            A.EastAsianFont eastAsianFont9 = new A.EastAsianFont(){ Typeface = "+mn-ea" };
            A.ComplexScriptFont complexScriptFont9 = new A.ComplexScriptFont(){ Typeface = "+mn-cs" };

            defaultRunProperties10.Append(solidFill9);
            defaultRunProperties10.Append(latinFont9);
            defaultRunProperties10.Append(eastAsianFont9);
            defaultRunProperties10.Append(complexScriptFont9);

            level9ParagraphProperties1.Append(defaultRunProperties10);

            defaultTextStyle1.Append(defaultParagraphProperties1);
            defaultTextStyle1.Append(level1ParagraphProperties1);
            defaultTextStyle1.Append(level2ParagraphProperties1);
            defaultTextStyle1.Append(level3ParagraphProperties1);
            defaultTextStyle1.Append(level4ParagraphProperties1);
            defaultTextStyle1.Append(level5ParagraphProperties1);
            defaultTextStyle1.Append(level6ParagraphProperties1);
            defaultTextStyle1.Append(level7ParagraphProperties1);
            defaultTextStyle1.Append(level8ParagraphProperties1);
            defaultTextStyle1.Append(level9ParagraphProperties1);

            PresentationExtensionList presentationExtensionList1 = new PresentationExtensionList();

            PresentationExtension presentationExtension1 = new PresentationExtension(){ Uri = "{EFAFB233-063F-42B5-8137-9DF3F51BA10A}" };

            P15.SlideGuideList slideGuideList1 = new P15.SlideGuideList();
            slideGuideList1.AddNamespaceDeclaration("p15", "http://schemas.microsoft.com/office/powerpoint/2012/main");

            P15.ExtendedGuide extendedGuide1 = new P15.ExtendedGuide(){ Id = (UInt32Value)1U, Orientation = DirectionValues.Horizontal, Position = 2160 };

            P15.ColorType colorType1 = new P15.ColorType();
            A.RgbColorModelHex rgbColorModelHex1 = new A.RgbColorModelHex(){ Val = "A4A3A4" };

            colorType1.Append(rgbColorModelHex1);

            extendedGuide1.Append(colorType1);

            P15.ExtendedGuide extendedGuide2 = new P15.ExtendedGuide(){ Id = (UInt32Value)2U, Position = 2880 };

            P15.ColorType colorType2 = new P15.ColorType();
            A.RgbColorModelHex rgbColorModelHex2 = new A.RgbColorModelHex(){ Val = "A4A3A4" };

            colorType2.Append(rgbColorModelHex2);

            extendedGuide2.Append(colorType2);

            slideGuideList1.Append(extendedGuide1);
            slideGuideList1.Append(extendedGuide2);

            presentationExtension1.Append(slideGuideList1);

            PresentationExtension presentationExtension2 = new PresentationExtension(){ Uri = "{2D200454-40CA-4A62-9FC3-DE9A4176ACB9}" };

            P15.NotesGuideList notesGuideList1 = new P15.NotesGuideList();
            notesGuideList1.AddNamespaceDeclaration("p15", "http://schemas.microsoft.com/office/powerpoint/2012/main");

            P15.ExtendedGuide extendedGuide3 = new P15.ExtendedGuide(){ Id = (UInt32Value)1U, Orientation = DirectionValues.Horizontal, Position = 2160 };

            P15.ColorType colorType3 = new P15.ColorType();
            A.RgbColorModelHex rgbColorModelHex3 = new A.RgbColorModelHex(){ Val = "A4A3A4" };

            colorType3.Append(rgbColorModelHex3);

            extendedGuide3.Append(colorType3);

            P15.ExtendedGuide extendedGuide4 = new P15.ExtendedGuide(){ Id = (UInt32Value)2U, Position = 2880 };

            P15.ColorType colorType4 = new P15.ColorType();
            A.RgbColorModelHex rgbColorModelHex4 = new A.RgbColorModelHex(){ Val = "A4A3A4" };

            colorType4.Append(rgbColorModelHex4);

            extendedGuide4.Append(colorType4);

            notesGuideList1.Append(extendedGuide3);
            notesGuideList1.Append(extendedGuide4);

            presentationExtension2.Append(notesGuideList1);

            presentationExtensionList1.Append(presentationExtension1);
            presentationExtensionList1.Append(presentationExtension2);

            presentation1.Append(slideMasterIdList1);
            presentation1.Append(notesMasterIdList1);
            presentation1.Append(slideIdList1);
            presentation1.Append(slideSize1);
            presentation1.Append(notesSize1);
            presentation1.Append(defaultTextStyle1);
            presentation1.Append(presentationExtensionList1);

            presentationPart1.Presentation = presentation1;
        }
Ejemplo n.º 51
0
        // Generates content of themePart1.
        private void GenerateThemePart1Content(ThemePart themePart1)
        {
            A.Theme theme1 = new A.Theme(){ Name = "Office Theme", ThemeId = "{62F939B6-93AF-4DB8-9C6B-D6C7DFDC589F}", MCAttributes = new MarkupCompatibilityAttributes(){ Ignorable = "thm15" }  };
            theme1.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");
            theme1.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
            theme1.AddNamespaceDeclaration("thm15", "http://schemas.microsoft.com/office/thememl/2012/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 rgbColorModelHex1 = new A.RgbColorModelHex(){ Val = "6E747A" };

            dark2Color1.Append(rgbColorModelHex1);

            A.Light2Color light2Color1 = new A.Light2Color();
            A.RgbColorModelHex rgbColorModelHex2 = new A.RgbColorModelHex(){ Val = "E7E6E6" };

            light2Color1.Append(rgbColorModelHex2);

            A.Accent1Color accent1Color1 = new A.Accent1Color();
            A.RgbColorModelHex rgbColorModelHex3 = new A.RgbColorModelHex(){ Val = "5B9BD5" };

            accent1Color1.Append(rgbColorModelHex3);

            A.Accent2Color accent2Color1 = new A.Accent2Color();
            A.RgbColorModelHex rgbColorModelHex4 = new A.RgbColorModelHex(){ Val = "ED7D31" };

            accent2Color1.Append(rgbColorModelHex4);

            A.Accent3Color accent3Color1 = new A.Accent3Color();
            A.RgbColorModelHex rgbColorModelHex5 = new A.RgbColorModelHex(){ Val = "A5A5A5" };

            accent3Color1.Append(rgbColorModelHex5);

            A.Accent4Color accent4Color1 = new A.Accent4Color();
            A.RgbColorModelHex rgbColorModelHex6 = new A.RgbColorModelHex(){ Val = "FFC000" };

            accent4Color1.Append(rgbColorModelHex6);

            A.Accent5Color accent5Color1 = new A.Accent5Color();
            A.RgbColorModelHex rgbColorModelHex7 = new A.RgbColorModelHex(){ Val = "4472C4" };

            accent5Color1.Append(rgbColorModelHex7);

            A.Accent6Color accent6Color1 = new A.Accent6Color();
            A.RgbColorModelHex rgbColorModelHex8 = new A.RgbColorModelHex(){ Val = "70AD47" };

            accent6Color1.Append(rgbColorModelHex8);

            A.Hyperlink hyperlink1 = new A.Hyperlink();
            A.RgbColorModelHex rgbColorModelHex9 = new A.RgbColorModelHex(){ Val = "085296" };

            hyperlink1.Append(rgbColorModelHex9);

            A.FollowedHyperlinkColor followedHyperlinkColor1 = new A.FollowedHyperlinkColor();
            A.RgbColorModelHex rgbColorModelHex10 = new A.RgbColorModelHex(){ Val = "993366" };

            followedHyperlinkColor1.Append(rgbColorModelHex10);

            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 fontScheme1 = new A.FontScheme(){ Name = "Office" };

            A.MajorFont majorFont1 = new A.MajorFont();
            A.LatinFont latinFont1 = new A.LatinFont(){ Typeface = "Arial" };
            A.EastAsianFont eastAsianFont1 = new A.EastAsianFont(){ Typeface = "" };
            A.ComplexScriptFont complexScriptFont1 = new A.ComplexScriptFont(){ Typeface = "" };
            A.SupplementalFont supplementalFont1 = new A.SupplementalFont(){ Script = "Jpan", Typeface = "MS ゴシック" };
            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 = "Angsana New" };
            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" };
            A.SupplementalFont supplementalFont30 = new A.SupplementalFont(){ Script = "Geor", Typeface = "Sylfaen" };

            majorFont1.Append(latinFont1);
            majorFont1.Append(eastAsianFont1);
            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);
            majorFont1.Append(supplementalFont30);

            A.MinorFont minorFont1 = new A.MinorFont();
            A.LatinFont latinFont2 = new A.LatinFont(){ Typeface = "Century" };
            A.EastAsianFont eastAsianFont2 = new A.EastAsianFont(){ Typeface = "" };
            A.ComplexScriptFont complexScriptFont2 = new A.ComplexScriptFont(){ Typeface = "" };
            A.SupplementalFont supplementalFont31 = new A.SupplementalFont(){ Script = "Jpan", Typeface = "MS 明朝" };
            A.SupplementalFont supplementalFont32 = new A.SupplementalFont(){ Script = "Hang", Typeface = "맑은 고딕" };
            A.SupplementalFont supplementalFont33 = new A.SupplementalFont(){ Script = "Hans", Typeface = "宋体" };
            A.SupplementalFont supplementalFont34 = new A.SupplementalFont(){ Script = "Hant", Typeface = "新細明體" };
            A.SupplementalFont supplementalFont35 = new A.SupplementalFont(){ Script = "Arab", Typeface = "Arial" };
            A.SupplementalFont supplementalFont36 = new A.SupplementalFont(){ Script = "Hebr", Typeface = "Arial" };
            A.SupplementalFont supplementalFont37 = new A.SupplementalFont(){ Script = "Thai", Typeface = "Cordia New" };
            A.SupplementalFont supplementalFont38 = new A.SupplementalFont(){ Script = "Ethi", Typeface = "Nyala" };
            A.SupplementalFont supplementalFont39 = new A.SupplementalFont(){ Script = "Beng", Typeface = "Vrinda" };
            A.SupplementalFont supplementalFont40 = new A.SupplementalFont(){ Script = "Gujr", Typeface = "Shruti" };
            A.SupplementalFont supplementalFont41 = new A.SupplementalFont(){ Script = "Khmr", Typeface = "DaunPenh" };
            A.SupplementalFont supplementalFont42 = new A.SupplementalFont(){ Script = "Knda", Typeface = "Tunga" };
            A.SupplementalFont supplementalFont43 = new A.SupplementalFont(){ Script = "Guru", Typeface = "Raavi" };
            A.SupplementalFont supplementalFont44 = new A.SupplementalFont(){ Script = "Cans", Typeface = "Euphemia" };
            A.SupplementalFont supplementalFont45 = new A.SupplementalFont(){ Script = "Cher", Typeface = "Plantagenet Cherokee" };
            A.SupplementalFont supplementalFont46 = new A.SupplementalFont(){ Script = "Yiii", Typeface = "Microsoft Yi Baiti" };
            A.SupplementalFont supplementalFont47 = new A.SupplementalFont(){ Script = "Tibt", Typeface = "Microsoft Himalaya" };
            A.SupplementalFont supplementalFont48 = new A.SupplementalFont(){ Script = "Thaa", Typeface = "MV Boli" };
            A.SupplementalFont supplementalFont49 = new A.SupplementalFont(){ Script = "Deva", Typeface = "Mangal" };
            A.SupplementalFont supplementalFont50 = new A.SupplementalFont(){ Script = "Telu", Typeface = "Gautami" };
            A.SupplementalFont supplementalFont51 = new A.SupplementalFont(){ Script = "Taml", Typeface = "Latha" };
            A.SupplementalFont supplementalFont52 = new A.SupplementalFont(){ Script = "Syrc", Typeface = "Estrangelo Edessa" };
            A.SupplementalFont supplementalFont53 = new A.SupplementalFont(){ Script = "Orya", Typeface = "Kalinga" };
            A.SupplementalFont supplementalFont54 = new A.SupplementalFont(){ Script = "Mlym", Typeface = "Kartika" };
            A.SupplementalFont supplementalFont55 = new A.SupplementalFont(){ Script = "Laoo", Typeface = "DokChampa" };
            A.SupplementalFont supplementalFont56 = new A.SupplementalFont(){ Script = "Sinh", Typeface = "Iskoola Pota" };
            A.SupplementalFont supplementalFont57 = new A.SupplementalFont(){ Script = "Mong", Typeface = "Mongolian Baiti" };
            A.SupplementalFont supplementalFont58 = new A.SupplementalFont(){ Script = "Viet", Typeface = "Arial" };
            A.SupplementalFont supplementalFont59 = new A.SupplementalFont(){ Script = "Uigh", Typeface = "Microsoft Uighur" };
            A.SupplementalFont supplementalFont60 = new A.SupplementalFont(){ Script = "Geor", Typeface = "Sylfaen" };

            minorFont1.Append(latinFont2);
            minorFont1.Append(eastAsianFont2);
            minorFont1.Append(complexScriptFont2);
            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);
            minorFont1.Append(supplementalFont59);
            minorFont1.Append(supplementalFont60);

            fontScheme1.Append(majorFont1);
            fontScheme1.Append(minorFont1);

            A.FormatScheme formatScheme1 = new A.FormatScheme(){ Name = "Office" };

            A.FillStyleList fillStyleList1 = new A.FillStyleList();

            A.SolidFill solidFill1 = new A.SolidFill();
            A.SchemeColor schemeColor1 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };

            solidFill1.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.LuminanceModulation luminanceModulation1 = new A.LuminanceModulation(){ Val = 157000 };
            A.SaturationModulation saturationModulation1 = new A.SaturationModulation(){ Val = 101000 };

            schemeColor2.Append(luminanceModulation1);
            schemeColor2.Append(saturationModulation1);

            gradientStop1.Append(schemeColor2);

            A.GradientStop gradientStop2 = new A.GradientStop(){ Position = 50000 };

            A.SchemeColor schemeColor3 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.LuminanceModulation luminanceModulation2 = new A.LuminanceModulation(){ Val = 137000 };
            A.SaturationModulation saturationModulation2 = new A.SaturationModulation(){ Val = 103000 };

            schemeColor3.Append(luminanceModulation2);
            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.LuminanceModulation luminanceModulation3 = new A.LuminanceModulation(){ Val = 115000 };
            A.SaturationModulation saturationModulation3 = new A.SaturationModulation(){ Val = 109000 };

            schemeColor4.Append(luminanceModulation3);
            schemeColor4.Append(saturationModulation3);

            gradientStop3.Append(schemeColor4);

            gradientStopList1.Append(gradientStop1);
            gradientStopList1.Append(gradientStop2);
            gradientStopList1.Append(gradientStop3);
            A.LinearGradientFill linearGradientFill1 = new A.LinearGradientFill(){ Angle = 5400000, Scaled = false };

            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.SaturationModulation saturationModulation4 = new A.SaturationModulation(){ Val = 103000 };
            A.LuminanceModulation luminanceModulation4 = new A.LuminanceModulation(){ Val = 118000 };

            schemeColor5.Append(saturationModulation4);
            schemeColor5.Append(luminanceModulation4);

            gradientStop4.Append(schemeColor5);

            A.GradientStop gradientStop5 = new A.GradientStop(){ Position = 50000 };

            A.SchemeColor schemeColor6 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.SaturationModulation saturationModulation5 = new A.SaturationModulation(){ Val = 89000 };
            A.LuminanceModulation luminanceModulation5 = new A.LuminanceModulation(){ Val = 91000 };

            schemeColor6.Append(saturationModulation5);
            schemeColor6.Append(luminanceModulation5);

            gradientStop5.Append(schemeColor6);

            A.GradientStop gradientStop6 = new A.GradientStop(){ Position = 100000 };

            A.SchemeColor schemeColor7 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.LuminanceModulation luminanceModulation6 = new A.LuminanceModulation(){ Val = 69000 };

            schemeColor7.Append(luminanceModulation6);

            gradientStop6.Append(schemeColor7);

            gradientStopList2.Append(gradientStop4);
            gradientStopList2.Append(gradientStop5);
            gradientStopList2.Append(gradientStop6);
            A.LinearGradientFill linearGradientFill2 = new A.LinearGradientFill(){ Angle = 5400000, Scaled = false };

            gradientFill2.Append(gradientStopList2);
            gradientFill2.Append(linearGradientFill2);

            fillStyleList1.Append(solidFill1);
            fillStyleList1.Append(gradientFill1);
            fillStyleList1.Append(gradientFill2);

            A.LineStyleList lineStyleList1 = new A.LineStyleList();

            A.Outline outline1 = new A.Outline(){ Width = 6350, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill2 = new A.SolidFill();
            A.SchemeColor schemeColor8 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };

            solidFill2.Append(schemeColor8);
            A.PresetDash presetDash1 = new A.PresetDash(){ Val = A.PresetLineDashValues.Solid };

            outline1.Append(solidFill2);
            outline1.Append(presetDash1);

            A.Outline outline2 = new A.Outline(){ Width = 12700, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill3 = new A.SolidFill();
            A.SchemeColor schemeColor9 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };

            solidFill3.Append(schemeColor9);
            A.PresetDash presetDash2 = new A.PresetDash(){ Val = A.PresetLineDashValues.Solid };

            outline2.Append(solidFill3);
            outline2.Append(presetDash2);

            A.Outline outline3 = new A.Outline(){ Width = 19050, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill4 = new A.SolidFill();
            A.SchemeColor schemeColor10 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };

            solidFill4.Append(schemeColor10);
            A.PresetDash presetDash3 = new A.PresetDash(){ Val = A.PresetLineDashValues.Solid };

            outline3.Append(solidFill4);
            outline3.Append(presetDash3);

            lineStyleList1.Append(outline1);
            lineStyleList1.Append(outline2);
            lineStyleList1.Append(outline3);

            A.EffectStyleList effectStyleList1 = new A.EffectStyleList();

            A.EffectStyle effectStyle1 = new A.EffectStyle();
            A.EffectList effectList1 = new A.EffectList();

            effectStyle1.Append(effectList1);

            A.EffectStyle effectStyle2 = new A.EffectStyle();
            A.EffectList effectList2 = new A.EffectList();

            effectStyle2.Append(effectList2);

            A.EffectStyle effectStyle3 = new A.EffectStyle();

            A.EffectList effectList3 = new A.EffectList();

            A.OuterShadow outerShadow1 = new A.OuterShadow(){ BlurRadius = 57150L, Distance = 19050L, Direction = 5400000, Alignment = A.RectangleAlignmentValues.Center, RotateWithShape = false };

            A.RgbColorModelHex rgbColorModelHex11 = new A.RgbColorModelHex(){ Val = "000000" };
            A.Alpha alpha1 = new A.Alpha(){ Val = 63000 };

            rgbColorModelHex11.Append(alpha1);

            outerShadow1.Append(rgbColorModelHex11);

            effectList3.Append(outerShadow1);

            effectStyle3.Append(effectList3);

            effectStyleList1.Append(effectStyle1);
            effectStyleList1.Append(effectStyle2);
            effectStyleList1.Append(effectStyle3);

            A.BackgroundFillStyleList backgroundFillStyleList1 = new A.BackgroundFillStyleList();

            A.SolidFill solidFill5 = new A.SolidFill();
            A.SchemeColor schemeColor11 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };

            solidFill5.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 tint1 = new A.Tint(){ Val = 100000 };
            A.SaturationModulation saturationModulation6 = new A.SaturationModulation(){ Val = 100000 };
            A.Shade shade1 = new A.Shade(){ Val = 0 };

            schemeColor12.Append(tint1);
            schemeColor12.Append(saturationModulation6);
            schemeColor12.Append(shade1);

            gradientStop7.Append(schemeColor12);

            A.GradientStop gradientStop8 = new A.GradientStop(){ Position = 0 };
            A.RgbColorModelPercentage rgbColorModelPercentage1 = new A.RgbColorModelPercentage(){ RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            gradientStop8.Append(rgbColorModelPercentage1);

            A.GradientStop gradientStop9 = new A.GradientStop(){ Position = 100000 };

            A.SchemeColor schemeColor13 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Shade shade2 = new A.Shade(){ Val = 100000 };
            A.SaturationModulation saturationModulation7 = new A.SaturationModulation(){ Val = 100000 };

            schemeColor13.Append(shade2);
            schemeColor13.Append(saturationModulation7);

            gradientStop9.Append(schemeColor13);

            gradientStopList3.Append(gradientStop7);
            gradientStopList3.Append(gradientStop8);
            gradientStopList3.Append(gradientStop9);
            A.LinearGradientFill linearGradientFill3 = new A.LinearGradientFill(){ Angle = 5400000, Scaled = false };

            gradientFill3.Append(gradientStopList3);
            gradientFill3.Append(linearGradientFill3);

            A.GradientFill gradientFill4 = new A.GradientFill(){ RotateWithShape = true };

            A.GradientStopList gradientStopList4 = new A.GradientStopList();

            A.GradientStop gradientStop10 = new A.GradientStop(){ Position = 0 };

            A.SchemeColor schemeColor14 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint2 = new A.Tint(){ Val = 80000 };
            A.SaturationModulation saturationModulation8 = new A.SaturationModulation(){ Val = 300000 };

            schemeColor14.Append(tint2);
            schemeColor14.Append(saturationModulation8);

            gradientStop10.Append(schemeColor14);

            A.GradientStop gradientStop11 = new A.GradientStop(){ Position = 100000 };

            A.SchemeColor schemeColor15 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Shade shade3 = new A.Shade(){ Val = 30000 };
            A.SaturationModulation saturationModulation9 = new A.SaturationModulation(){ Val = 200000 };

            schemeColor15.Append(shade3);
            schemeColor15.Append(saturationModulation9);

            gradientStop11.Append(schemeColor15);

            gradientStopList4.Append(gradientStop10);
            gradientStopList4.Append(gradientStop11);

            A.PathGradientFill pathGradientFill1 = new A.PathGradientFill(){ Path = A.PathShadeValues.Circle };
            A.FillToRectangle fillToRectangle1 = new A.FillToRectangle(){ Left = 50000, Top = 50000, Right = 50000, Bottom = 50000 };

            pathGradientFill1.Append(fillToRectangle1);

            gradientFill4.Append(gradientStopList4);
            gradientFill4.Append(pathGradientFill1);

            backgroundFillStyleList1.Append(solidFill5);
            backgroundFillStyleList1.Append(gradientFill3);
            backgroundFillStyleList1.Append(gradientFill4);

            formatScheme1.Append(fillStyleList1);
            formatScheme1.Append(lineStyleList1);
            formatScheme1.Append(effectStyleList1);
            formatScheme1.Append(backgroundFillStyleList1);

            themeElements1.Append(colorScheme1);
            themeElements1.Append(fontScheme1);
            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;
        }
Ejemplo n.º 52
0
        // Generates content of slideMasterPart1.
        private void GenerateSlideMasterPart1Content(SlideMasterPart slideMasterPart1)
        {
            SlideMaster slideMaster1 = new SlideMaster();
            slideMaster1.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");
            slideMaster1.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            slideMaster1.AddNamespaceDeclaration("p", "http://schemas.openxmlformats.org/presentationml/2006/main");

            CommonSlideData commonSlideData3 = new CommonSlideData();

            Background background1 = new Background();

            BackgroundStyleReference backgroundStyleReference1 = new BackgroundStyleReference(){ Index = (UInt32Value)1003U };
            A.SchemeColor schemeColor14 = new A.SchemeColor(){ Val = A.SchemeColorValues.Background2 };

            backgroundStyleReference1.Append(schemeColor14);

            background1.Append(backgroundStyleReference1);

            ShapeTree shapeTree3 = new ShapeTree();

            NonVisualGroupShapeProperties nonVisualGroupShapeProperties3 = new NonVisualGroupShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties10 = new NonVisualDrawingProperties(){ Id = (UInt32Value)1U, Name = "" };
            NonVisualGroupShapeDrawingProperties nonVisualGroupShapeDrawingProperties3 = new NonVisualGroupShapeDrawingProperties();
            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties10 = new ApplicationNonVisualDrawingProperties();

            nonVisualGroupShapeProperties3.Append(nonVisualDrawingProperties10);
            nonVisualGroupShapeProperties3.Append(nonVisualGroupShapeDrawingProperties3);
            nonVisualGroupShapeProperties3.Append(applicationNonVisualDrawingProperties10);

            GroupShapeProperties groupShapeProperties3 = new GroupShapeProperties();

            A.TransformGroup transformGroup3 = new A.TransformGroup();
            A.Offset offset5 = new A.Offset(){ X = 0L, Y = 0L };
            A.Extents extents5 = new A.Extents(){ Cx = 0L, Cy = 0L };
            A.ChildOffset childOffset3 = new A.ChildOffset(){ X = 0L, Y = 0L };
            A.ChildExtents childExtents3 = new A.ChildExtents(){ Cx = 0L, Cy = 0L };

            transformGroup3.Append(offset5);
            transformGroup3.Append(extents5);
            transformGroup3.Append(childOffset3);
            transformGroup3.Append(childExtents3);

            groupShapeProperties3.Append(transformGroup3);

            Shape shape8 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties8 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties11 = new NonVisualDrawingProperties(){ Id = (UInt32Value)22U, Name = "Title Placeholder 21" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties8 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks8 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties8.Append(shapeLocks8);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties11 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape8 = new PlaceholderShape(){ Type = PlaceholderValues.Title };

            applicationNonVisualDrawingProperties11.Append(placeholderShape8);

            nonVisualShapeProperties8.Append(nonVisualDrawingProperties11);
            nonVisualShapeProperties8.Append(nonVisualShapeDrawingProperties8);
            nonVisualShapeProperties8.Append(applicationNonVisualDrawingProperties11);

            ShapeProperties shapeProperties8 = new ShapeProperties();

            A.Transform2D transform2D3 = new A.Transform2D();
            A.Offset offset6 = new A.Offset(){ X = 609600L, Y = 274638L };
            A.Extents extents6 = new A.Extents(){ Cx = 10972800L, Cy = 1143000L };

            transform2D3.Append(offset6);
            transform2D3.Append(extents6);

            A.PresetGeometry presetGeometry1 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Rectangle };
            A.AdjustValueList adjustValueList1 = new A.AdjustValueList();

            presetGeometry1.Append(adjustValueList1);

            shapeProperties8.Append(transform2D3);
            shapeProperties8.Append(presetGeometry1);

            TextBody textBody8 = new TextBody();

            A.BodyProperties bodyProperties8 = new A.BodyProperties(){ Vertical = A.TextVerticalValues.Horizontal, Anchor = A.TextAnchoringTypeValues.Center };
            A.NormalAutoFit normalAutoFit2 = new A.NormalAutoFit();

            A.Scene3DType scene3DType2 = new A.Scene3DType();
            A.Camera camera2 = new A.Camera(){ Preset = A.PresetCameraValues.OrthographicFront };

            A.LightRig lightRig2 = new A.LightRig(){ Rig = A.LightRigValues.Soft, Direction = A.LightRigDirectionValues.Top };
            A.Rotation rotation2 = new A.Rotation(){ Latitude = 0, Longitude = 0, Revolution = 16800000 };

            lightRig2.Append(rotation2);

            scene3DType2.Append(camera2);
            scene3DType2.Append(lightRig2);

            A.Shape3DType shape3DType2 = new A.Shape3DType(){ PresetMaterial = A.PresetMaterialTypeValues.SoftEdge };
            A.BevelTop bevelTop2 = new A.BevelTop(){ Width = 38100L, Height = 38100L };

            shape3DType2.Append(bevelTop2);

            bodyProperties8.Append(normalAutoFit2);
            bodyProperties8.Append(scene3DType2);
            bodyProperties8.Append(shape3DType2);
            A.ListStyle listStyle8 = new A.ListStyle();

            A.Paragraph paragraph8 = new A.Paragraph();

            A.Run run3 = new A.Run();

            A.RunProperties runProperties5 = new A.RunProperties(){ Kumimoji = false, Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties5.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text5 = new A.Text();
            text5.Text = "Click to edit Master title style";

            run3.Append(runProperties5);
            run3.Append(text5);
            A.EndParagraphRunProperties endParagraphRunProperties8 = new A.EndParagraphRunProperties(){ Kumimoji = false, Language = "en-US" };

            paragraph8.Append(run3);
            paragraph8.Append(endParagraphRunProperties8);

            textBody8.Append(bodyProperties8);
            textBody8.Append(listStyle8);
            textBody8.Append(paragraph8);

            shape8.Append(nonVisualShapeProperties8);
            shape8.Append(shapeProperties8);
            shape8.Append(textBody8);

            Shape shape9 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties9 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties12 = new NonVisualDrawingProperties(){ Id = (UInt32Value)13U, Name = "Text Placeholder 12" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties9 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks9 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties9.Append(shapeLocks9);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties12 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape9 = new PlaceholderShape(){ Type = PlaceholderValues.Body, Index = (UInt32Value)1U };

            applicationNonVisualDrawingProperties12.Append(placeholderShape9);

            nonVisualShapeProperties9.Append(nonVisualDrawingProperties12);
            nonVisualShapeProperties9.Append(nonVisualShapeDrawingProperties9);
            nonVisualShapeProperties9.Append(applicationNonVisualDrawingProperties12);

            ShapeProperties shapeProperties9 = new ShapeProperties();

            A.Transform2D transform2D4 = new A.Transform2D();
            A.Offset offset7 = new A.Offset(){ X = 609600L, Y = 1600200L };
            A.Extents extents7 = new A.Extents(){ Cx = 10972800L, Cy = 4709160L };

            transform2D4.Append(offset7);
            transform2D4.Append(extents7);

            A.PresetGeometry presetGeometry2 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Rectangle };
            A.AdjustValueList adjustValueList2 = new A.AdjustValueList();

            presetGeometry2.Append(adjustValueList2);

            shapeProperties9.Append(transform2D4);
            shapeProperties9.Append(presetGeometry2);

            TextBody textBody9 = new TextBody();

            A.BodyProperties bodyProperties9 = new A.BodyProperties(){ Vertical = A.TextVerticalValues.Horizontal };
            A.NormalAutoFit normalAutoFit3 = new A.NormalAutoFit();

            bodyProperties9.Append(normalAutoFit3);
            A.ListStyle listStyle9 = new A.ListStyle();

            A.Paragraph paragraph9 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties1 = new A.ParagraphProperties(){ Level = 0, EastAsianLineBreak = true, LatinLineBreak = false, Height = true };

            A.Run run4 = new A.Run();

            A.RunProperties runProperties6 = new A.RunProperties(){ Kumimoji = false, Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties6.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text6 = new A.Text();
            text6.Text = "Click to edit Master text styles";

            run4.Append(runProperties6);
            run4.Append(text6);

            paragraph9.Append(paragraphProperties1);
            paragraph9.Append(run4);

            A.Paragraph paragraph10 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties2 = new A.ParagraphProperties(){ Level = 1, EastAsianLineBreak = true, LatinLineBreak = false, Height = true };

            A.Run run5 = new A.Run();

            A.RunProperties runProperties7 = new A.RunProperties(){ Kumimoji = false, Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties7.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text7 = new A.Text();
            text7.Text = "Second level";

            run5.Append(runProperties7);
            run5.Append(text7);

            paragraph10.Append(paragraphProperties2);
            paragraph10.Append(run5);

            A.Paragraph paragraph11 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties3 = new A.ParagraphProperties(){ Level = 2, EastAsianLineBreak = true, LatinLineBreak = false, Height = true };

            A.Run run6 = new A.Run();

            A.RunProperties runProperties8 = new A.RunProperties(){ Kumimoji = false, Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties8.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text8 = new A.Text();
            text8.Text = "Third level";

            run6.Append(runProperties8);
            run6.Append(text8);

            paragraph11.Append(paragraphProperties3);
            paragraph11.Append(run6);

            A.Paragraph paragraph12 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties4 = new A.ParagraphProperties(){ Level = 3, EastAsianLineBreak = true, LatinLineBreak = false, Height = true };

            A.Run run7 = new A.Run();

            A.RunProperties runProperties9 = new A.RunProperties(){ Kumimoji = false, Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties9.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text9 = new A.Text();
            text9.Text = "Fourth level";

            run7.Append(runProperties9);
            run7.Append(text9);

            paragraph12.Append(paragraphProperties4);
            paragraph12.Append(run7);

            A.Paragraph paragraph13 = new A.Paragraph();
            A.ParagraphProperties paragraphProperties5 = new A.ParagraphProperties(){ Level = 4, EastAsianLineBreak = true, LatinLineBreak = false, Height = true };

            A.Run run8 = new A.Run();

            A.RunProperties runProperties10 = new A.RunProperties(){ Kumimoji = false, Language = "en-US", AlternativeLanguage = "ja-JP" };
            runProperties10.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text10 = new A.Text();
            text10.Text = "Fifth level";

            run8.Append(runProperties10);
            run8.Append(text10);
            A.EndParagraphRunProperties endParagraphRunProperties9 = new A.EndParagraphRunProperties(){ Kumimoji = false, Language = "en-US" };

            paragraph13.Append(paragraphProperties5);
            paragraph13.Append(run8);
            paragraph13.Append(endParagraphRunProperties9);

            textBody9.Append(bodyProperties9);
            textBody9.Append(listStyle9);
            textBody9.Append(paragraph9);
            textBody9.Append(paragraph10);
            textBody9.Append(paragraph11);
            textBody9.Append(paragraph12);
            textBody9.Append(paragraph13);

            shape9.Append(nonVisualShapeProperties9);
            shape9.Append(shapeProperties9);
            shape9.Append(textBody9);

            Shape shape10 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties10 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties13 = new NonVisualDrawingProperties(){ Id = (UInt32Value)14U, Name = "Date Placeholder 13" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties10 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks10 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties10.Append(shapeLocks10);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties13 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape10 = new PlaceholderShape(){ Type = PlaceholderValues.DateAndTime, Size = PlaceholderSizeValues.Half, Index = (UInt32Value)2U };

            applicationNonVisualDrawingProperties13.Append(placeholderShape10);

            nonVisualShapeProperties10.Append(nonVisualDrawingProperties13);
            nonVisualShapeProperties10.Append(nonVisualShapeDrawingProperties10);
            nonVisualShapeProperties10.Append(applicationNonVisualDrawingProperties13);

            ShapeProperties shapeProperties10 = new ShapeProperties();

            A.Transform2D transform2D5 = new A.Transform2D();
            A.Offset offset8 = new A.Offset(){ X = 609600L, Y = 6416676L };
            A.Extents extents8 = new A.Extents(){ Cx = 2844800L, Cy = 365125L };

            transform2D5.Append(offset8);
            transform2D5.Append(extents8);

            A.PresetGeometry presetGeometry3 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Rectangle };
            A.AdjustValueList adjustValueList3 = new A.AdjustValueList();

            presetGeometry3.Append(adjustValueList3);

            shapeProperties10.Append(transform2D5);
            shapeProperties10.Append(presetGeometry3);

            TextBody textBody10 = new TextBody();
            A.BodyProperties bodyProperties10 = new A.BodyProperties(){ Vertical = A.TextVerticalValues.Horizontal, Anchor = A.TextAnchoringTypeValues.Bottom };

            A.ListStyle listStyle10 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties4 = new A.Level1ParagraphProperties(){ Alignment = A.TextAlignmentTypeValues.Left, EastAsianLineBreak = true, LatinLineBreak = false, Height = true };

            A.DefaultRunProperties defaultRunProperties13 = new A.DefaultRunProperties(){ Kumimoji = false, FontSize = 1200 };

            A.SolidFill solidFill11 = new A.SolidFill();

            A.SchemeColor schemeColor15 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Shade shade1 = new A.Shade(){ Val = 50000 };

            schemeColor15.Append(shade1);

            solidFill11.Append(schemeColor15);

            defaultRunProperties13.Append(solidFill11);

            level1ParagraphProperties4.Append(defaultRunProperties13);

            listStyle10.Append(level1ParagraphProperties4);

            A.Paragraph paragraph14 = new A.Paragraph();

            A.Field field3 = new A.Field(){ Id = "{8263865E-5382-4BDD-A09E-2B63F38BCE59}", Type = "datetimeFigureOut" };

            A.RunProperties runProperties11 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties11.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text11 = new A.Text();
            text11.Text = "2012/10/3";

            field3.Append(runProperties11);
            field3.Append(text11);
            A.EndParagraphRunProperties endParagraphRunProperties10 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph14.Append(field3);
            paragraph14.Append(endParagraphRunProperties10);

            textBody10.Append(bodyProperties10);
            textBody10.Append(listStyle10);
            textBody10.Append(paragraph14);

            shape10.Append(nonVisualShapeProperties10);
            shape10.Append(shapeProperties10);
            shape10.Append(textBody10);

            Shape shape11 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties11 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties14 = new NonVisualDrawingProperties(){ Id = (UInt32Value)3U, Name = "Footer Placeholder 2" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties11 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks11 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties11.Append(shapeLocks11);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties14 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape11 = new PlaceholderShape(){ Type = PlaceholderValues.Footer, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)3U };

            applicationNonVisualDrawingProperties14.Append(placeholderShape11);

            nonVisualShapeProperties11.Append(nonVisualDrawingProperties14);
            nonVisualShapeProperties11.Append(nonVisualShapeDrawingProperties11);
            nonVisualShapeProperties11.Append(applicationNonVisualDrawingProperties14);

            ShapeProperties shapeProperties11 = new ShapeProperties();

            A.Transform2D transform2D6 = new A.Transform2D();
            A.Offset offset9 = new A.Offset(){ X = 4165600L, Y = 6416676L };
            A.Extents extents9 = new A.Extents(){ Cx = 3860800L, Cy = 365125L };

            transform2D6.Append(offset9);
            transform2D6.Append(extents9);

            A.PresetGeometry presetGeometry4 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Rectangle };
            A.AdjustValueList adjustValueList4 = new A.AdjustValueList();

            presetGeometry4.Append(adjustValueList4);

            shapeProperties11.Append(transform2D6);
            shapeProperties11.Append(presetGeometry4);

            TextBody textBody11 = new TextBody();
            A.BodyProperties bodyProperties11 = new A.BodyProperties(){ Vertical = A.TextVerticalValues.Horizontal, Anchor = A.TextAnchoringTypeValues.Bottom };

            A.ListStyle listStyle11 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties5 = new A.Level1ParagraphProperties(){ Alignment = A.TextAlignmentTypeValues.Center, EastAsianLineBreak = true, LatinLineBreak = false, Height = true };

            A.DefaultRunProperties defaultRunProperties14 = new A.DefaultRunProperties(){ Kumimoji = false, FontSize = 1200 };

            A.SolidFill solidFill12 = new A.SolidFill();

            A.SchemeColor schemeColor16 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Shade shade2 = new A.Shade(){ Val = 50000 };

            schemeColor16.Append(shade2);

            solidFill12.Append(schemeColor16);

            defaultRunProperties14.Append(solidFill12);

            level1ParagraphProperties5.Append(defaultRunProperties14);

            listStyle11.Append(level1ParagraphProperties5);

            A.Paragraph paragraph15 = new A.Paragraph();
            A.EndParagraphRunProperties endParagraphRunProperties11 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph15.Append(endParagraphRunProperties11);

            textBody11.Append(bodyProperties11);
            textBody11.Append(listStyle11);
            textBody11.Append(paragraph15);

            shape11.Append(nonVisualShapeProperties11);
            shape11.Append(shapeProperties11);
            shape11.Append(textBody11);

            Shape shape12 = new Shape();

            NonVisualShapeProperties nonVisualShapeProperties12 = new NonVisualShapeProperties();
            NonVisualDrawingProperties nonVisualDrawingProperties15 = new NonVisualDrawingProperties(){ Id = (UInt32Value)23U, Name = "Slide Number Placeholder 22" };

            NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties12 = new NonVisualShapeDrawingProperties();
            A.ShapeLocks shapeLocks12 = new A.ShapeLocks(){ NoGrouping = true };

            nonVisualShapeDrawingProperties12.Append(shapeLocks12);

            ApplicationNonVisualDrawingProperties applicationNonVisualDrawingProperties15 = new ApplicationNonVisualDrawingProperties();
            PlaceholderShape placeholderShape12 = new PlaceholderShape(){ Type = PlaceholderValues.SlideNumber, Size = PlaceholderSizeValues.Quarter, Index = (UInt32Value)4U };

            applicationNonVisualDrawingProperties15.Append(placeholderShape12);

            nonVisualShapeProperties12.Append(nonVisualDrawingProperties15);
            nonVisualShapeProperties12.Append(nonVisualShapeDrawingProperties12);
            nonVisualShapeProperties12.Append(applicationNonVisualDrawingProperties15);

            ShapeProperties shapeProperties12 = new ShapeProperties();

            A.Transform2D transform2D7 = new A.Transform2D();
            A.Offset offset10 = new A.Offset(){ X = 10566400L, Y = 6416676L };
            A.Extents extents10 = new A.Extents(){ Cx = 1016000L, Cy = 365125L };

            transform2D7.Append(offset10);
            transform2D7.Append(extents10);

            A.PresetGeometry presetGeometry5 = new A.PresetGeometry(){ Preset = A.ShapeTypeValues.Rectangle };
            A.AdjustValueList adjustValueList5 = new A.AdjustValueList();

            presetGeometry5.Append(adjustValueList5);

            shapeProperties12.Append(transform2D7);
            shapeProperties12.Append(presetGeometry5);

            TextBody textBody12 = new TextBody();
            A.BodyProperties bodyProperties12 = new A.BodyProperties(){ Vertical = A.TextVerticalValues.Horizontal, LeftInset = 0, RightInset = 0, Anchor = A.TextAnchoringTypeValues.Bottom };

            A.ListStyle listStyle12 = new A.ListStyle();

            A.Level1ParagraphProperties level1ParagraphProperties6 = new A.Level1ParagraphProperties(){ Alignment = A.TextAlignmentTypeValues.Right, EastAsianLineBreak = true, LatinLineBreak = false, Height = true };

            A.DefaultRunProperties defaultRunProperties15 = new A.DefaultRunProperties(){ Kumimoji = false, FontSize = 1200 };

            A.SolidFill solidFill13 = new A.SolidFill();

            A.SchemeColor schemeColor17 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Shade shade3 = new A.Shade(){ Val = 50000 };

            schemeColor17.Append(shade3);

            solidFill13.Append(schemeColor17);

            defaultRunProperties15.Append(solidFill13);

            level1ParagraphProperties6.Append(defaultRunProperties15);

            listStyle12.Append(level1ParagraphProperties6);

            A.Paragraph paragraph16 = new A.Paragraph();

            A.Field field4 = new A.Field(){ Id = "{DF0B8B9E-EDC2-479A-B980-EDD8632819B1}", Type = "slidenum" };

            A.RunProperties runProperties12 = new A.RunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };
            runProperties12.SetAttribute(new OpenXmlAttribute("", "smtClean", "", "0"));
            A.Text text12 = new A.Text();
            text12.Text = "‹#›";

            field4.Append(runProperties12);
            field4.Append(text12);
            A.EndParagraphRunProperties endParagraphRunProperties12 = new A.EndParagraphRunProperties(){ Kumimoji = true, Language = "ja-JP", AlternativeLanguage = "en-US" };

            paragraph16.Append(field4);
            paragraph16.Append(endParagraphRunProperties12);

            textBody12.Append(bodyProperties12);
            textBody12.Append(listStyle12);
            textBody12.Append(paragraph16);

            shape12.Append(nonVisualShapeProperties12);
            shape12.Append(shapeProperties12);
            shape12.Append(textBody12);

            shapeTree3.Append(nonVisualGroupShapeProperties3);
            shapeTree3.Append(groupShapeProperties3);
            shapeTree3.Append(shape8);
            shapeTree3.Append(shape9);
            shapeTree3.Append(shape10);
            shapeTree3.Append(shape11);
            shapeTree3.Append(shape12);

            CommonSlideDataExtensionList commonSlideDataExtensionList3 = new CommonSlideDataExtensionList();

            CommonSlideDataExtension commonSlideDataExtension3 = new CommonSlideDataExtension(){ Uri = "{BB962C8B-B14F-4D97-AF65-F5344CB8AC3E}" };

            P14.CreationId creationId3 = new P14.CreationId(){ Val = (UInt32Value)2409212196U };
            creationId3.AddNamespaceDeclaration("p14", "http://schemas.microsoft.com/office/powerpoint/2010/main");

            commonSlideDataExtension3.Append(creationId3);

            commonSlideDataExtensionList3.Append(commonSlideDataExtension3);

            commonSlideData3.Append(background1);
            commonSlideData3.Append(shapeTree3);
            commonSlideData3.Append(commonSlideDataExtensionList3);
            ColorMap colorMap1 = new ColorMap(){ Background1 = A.ColorSchemeIndexValues.Dark1, Text1 = A.ColorSchemeIndexValues.Light1, Background2 = A.ColorSchemeIndexValues.Dark2, Text2 = A.ColorSchemeIndexValues.Light2, Accent1 = A.ColorSchemeIndexValues.Accent1, Accent2 = A.ColorSchemeIndexValues.Accent2, Accent3 = A.ColorSchemeIndexValues.Accent3, Accent4 = A.ColorSchemeIndexValues.Accent4, Accent5 = A.ColorSchemeIndexValues.Accent5, Accent6 = A.ColorSchemeIndexValues.Accent6, Hyperlink = A.ColorSchemeIndexValues.Hyperlink, FollowedHyperlink = A.ColorSchemeIndexValues.FollowedHyperlink };

            SlideLayoutIdList slideLayoutIdList1 = new SlideLayoutIdList();
            SlideLayoutId slideLayoutId1 = new SlideLayoutId(){ Id = (UInt32Value)2147483661U, RelationshipId = "rId1" };
            SlideLayoutId slideLayoutId2 = new SlideLayoutId(){ Id = (UInt32Value)2147483662U, RelationshipId = "rId2" };
            SlideLayoutId slideLayoutId3 = new SlideLayoutId(){ Id = (UInt32Value)2147483663U, RelationshipId = "rId3" };
            SlideLayoutId slideLayoutId4 = new SlideLayoutId(){ Id = (UInt32Value)2147483664U, RelationshipId = "rId4" };
            SlideLayoutId slideLayoutId5 = new SlideLayoutId(){ Id = (UInt32Value)2147483665U, RelationshipId = "rId5" };
            SlideLayoutId slideLayoutId6 = new SlideLayoutId(){ Id = (UInt32Value)2147483666U, RelationshipId = "rId6" };
            SlideLayoutId slideLayoutId7 = new SlideLayoutId(){ Id = (UInt32Value)2147483667U, RelationshipId = "rId7" };
            SlideLayoutId slideLayoutId8 = new SlideLayoutId(){ Id = (UInt32Value)2147483668U, RelationshipId = "rId8" };
            SlideLayoutId slideLayoutId9 = new SlideLayoutId(){ Id = (UInt32Value)2147483669U, RelationshipId = "rId9" };
            SlideLayoutId slideLayoutId10 = new SlideLayoutId(){ Id = (UInt32Value)2147483670U, RelationshipId = "rId10" };
            SlideLayoutId slideLayoutId11 = new SlideLayoutId(){ Id = (UInt32Value)2147483671U, RelationshipId = "rId11" };

            slideLayoutIdList1.Append(slideLayoutId1);
            slideLayoutIdList1.Append(slideLayoutId2);
            slideLayoutIdList1.Append(slideLayoutId3);
            slideLayoutIdList1.Append(slideLayoutId4);
            slideLayoutIdList1.Append(slideLayoutId5);
            slideLayoutIdList1.Append(slideLayoutId6);
            slideLayoutIdList1.Append(slideLayoutId7);
            slideLayoutIdList1.Append(slideLayoutId8);
            slideLayoutIdList1.Append(slideLayoutId9);
            slideLayoutIdList1.Append(slideLayoutId10);
            slideLayoutIdList1.Append(slideLayoutId11);

            TextStyles textStyles1 = new TextStyles();

            TitleStyle titleStyle1 = new TitleStyle();

            A.Level1ParagraphProperties level1ParagraphProperties7 = new A.Level1ParagraphProperties(){ Alignment = A.TextAlignmentTypeValues.Center, RightToLeft = false, EastAsianLineBreak = true, LatinLineBreak = false, Height = true };

            A.SpaceBefore spaceBefore1 = new A.SpaceBefore();
            A.SpacingPercent spacingPercent1 = new A.SpacingPercent(){ Val = 0 };

            spaceBefore1.Append(spacingPercent1);
            A.NoBullet noBullet10 = new A.NoBullet();

            A.DefaultRunProperties defaultRunProperties16 = new A.DefaultRunProperties(){ Kumimoji = true, FontSize = 4100, Bold = true, Kerning = 1200, Capital = A.TextCapsValues.None, Baseline = 0 };

            A.Outline outline2 = new A.Outline(){ Width = 6350 };
            A.NoFill noFill2 = new A.NoFill();

            outline2.Append(noFill2);

            A.GradientFill gradientFill2 = new A.GradientFill();

            A.GradientStopList gradientStopList2 = new A.GradientStopList();

            A.GradientStop gradientStop4 = new A.GradientStop(){ Position = 0 };

            A.SchemeColor schemeColor18 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };
            A.Tint tint4 = new A.Tint(){ Val = 73000 };
            A.SaturationModulation saturationModulation4 = new A.SaturationModulation(){ Val = 145000 };

            schemeColor18.Append(tint4);
            schemeColor18.Append(saturationModulation4);

            gradientStop4.Append(schemeColor18);

            A.GradientStop gradientStop5 = new A.GradientStop(){ Position = 73000 };

            A.SchemeColor schemeColor19 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };
            A.Tint tint5 = new A.Tint(){ Val = 73000 };
            A.SaturationModulation saturationModulation5 = new A.SaturationModulation(){ Val = 145000 };

            schemeColor19.Append(tint5);
            schemeColor19.Append(saturationModulation5);

            gradientStop5.Append(schemeColor19);

            A.GradientStop gradientStop6 = new A.GradientStop(){ Position = 100000 };

            A.SchemeColor schemeColor20 = new A.SchemeColor(){ Val = A.SchemeColorValues.Accent1 };
            A.Tint tint6 = new A.Tint(){ Val = 83000 };
            A.SaturationModulation saturationModulation6 = new A.SaturationModulation(){ Val = 143000 };

            schemeColor20.Append(tint6);
            schemeColor20.Append(saturationModulation6);

            gradientStop6.Append(schemeColor20);

            gradientStopList2.Append(gradientStop4);
            gradientStopList2.Append(gradientStop5);
            gradientStopList2.Append(gradientStop6);
            A.LinearGradientFill linearGradientFill2 = new A.LinearGradientFill(){ Angle = 4800000, Scaled = true };

            gradientFill2.Append(gradientStopList2);
            gradientFill2.Append(linearGradientFill2);

            A.EffectList effectList2 = new A.EffectList();

            A.OuterShadow outerShadow2 = new A.OuterShadow(){ BlurRadius = 114300L, Distance = 101600L, Direction = 2700000, Alignment = A.RectangleAlignmentValues.TopLeft, RotateWithShape = false };

            A.RgbColorModelHex rgbColorModelHex2 = new A.RgbColorModelHex(){ Val = "000000" };
            A.Alpha alpha2 = new A.Alpha(){ Val = 40000 };

            rgbColorModelHex2.Append(alpha2);

            outerShadow2.Append(rgbColorModelHex2);

            effectList2.Append(outerShadow2);
            A.LatinFont latinFont10 = new A.LatinFont(){ Typeface = "+mj-lt" };
            A.EastAsianFont eastAsianFont10 = new A.EastAsianFont(){ Typeface = "+mj-ea" };
            A.ComplexScriptFont complexScriptFont10 = new A.ComplexScriptFont(){ Typeface = "+mj-cs" };

            defaultRunProperties16.Append(outline2);
            defaultRunProperties16.Append(gradientFill2);
            defaultRunProperties16.Append(effectList2);
            defaultRunProperties16.Append(latinFont10);
            defaultRunProperties16.Append(eastAsianFont10);
            defaultRunProperties16.Append(complexScriptFont10);

            level1ParagraphProperties7.Append(spaceBefore1);
            level1ParagraphProperties7.Append(noBullet10);
            level1ParagraphProperties7.Append(defaultRunProperties16);

            titleStyle1.Append(level1ParagraphProperties7);

            BodyStyle bodyStyle1 = new BodyStyle();

            A.Level1ParagraphProperties level1ParagraphProperties8 = new A.Level1ParagraphProperties(){ LeftMargin = 548640, Indent = -411480, Alignment = A.TextAlignmentTypeValues.Left, RightToLeft = false, EastAsianLineBreak = true, LatinLineBreak = false, Height = true };

            A.SpaceBefore spaceBefore2 = new A.SpaceBefore();
            A.SpacingPercent spacingPercent2 = new A.SpacingPercent(){ Val = 20000 };

            spaceBefore2.Append(spacingPercent2);

            A.BulletColor bulletColor1 = new A.BulletColor();

            A.SchemeColor schemeColor21 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };
            A.Shade shade4 = new A.Shade(){ Val = 95000 };

            schemeColor21.Append(shade4);

            bulletColor1.Append(schemeColor21);
            A.BulletSizePercentage bulletSizePercentage1 = new A.BulletSizePercentage(){ Val = 65000 };
            A.BulletFont bulletFont1 = new A.BulletFont(){ Typeface = "Wingdings 2" };
            A.CharacterBullet characterBullet1 = new A.CharacterBullet(){ Char = "" };

            A.DefaultRunProperties defaultRunProperties17 = new A.DefaultRunProperties(){ Kumimoji = true, FontSize = 2800, Kerning = 1200 };

            A.SolidFill solidFill14 = new A.SolidFill();
            A.SchemeColor schemeColor22 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill14.Append(schemeColor22);
            A.LatinFont latinFont11 = new A.LatinFont(){ Typeface = "+mn-lt" };
            A.EastAsianFont eastAsianFont11 = new A.EastAsianFont(){ Typeface = "+mn-ea" };
            A.ComplexScriptFont complexScriptFont11 = new A.ComplexScriptFont(){ Typeface = "+mn-cs" };

            defaultRunProperties17.Append(solidFill14);
            defaultRunProperties17.Append(latinFont11);
            defaultRunProperties17.Append(eastAsianFont11);
            defaultRunProperties17.Append(complexScriptFont11);

            level1ParagraphProperties8.Append(spaceBefore2);
            level1ParagraphProperties8.Append(bulletColor1);
            level1ParagraphProperties8.Append(bulletSizePercentage1);
            level1ParagraphProperties8.Append(bulletFont1);
            level1ParagraphProperties8.Append(characterBullet1);
            level1ParagraphProperties8.Append(defaultRunProperties17);

            A.Level2ParagraphProperties level2ParagraphProperties3 = new A.Level2ParagraphProperties(){ LeftMargin = 868680, Indent = -283464, Alignment = A.TextAlignmentTypeValues.Left, RightToLeft = false, EastAsianLineBreak = true, LatinLineBreak = false, Height = true };

            A.SpaceBefore spaceBefore3 = new A.SpaceBefore();
            A.SpacingPercent spacingPercent3 = new A.SpacingPercent(){ Val = 20000 };

            spaceBefore3.Append(spacingPercent3);

            A.BulletColor bulletColor2 = new A.BulletColor();
            A.SchemeColor schemeColor23 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            bulletColor2.Append(schemeColor23);
            A.BulletSizePercentage bulletSizePercentage2 = new A.BulletSizePercentage(){ Val = 80000 };
            A.BulletFont bulletFont2 = new A.BulletFont(){ Typeface = "Wingdings 2" };
            A.CharacterBullet characterBullet2 = new A.CharacterBullet(){ Char = "" };

            A.DefaultRunProperties defaultRunProperties18 = new A.DefaultRunProperties(){ Kumimoji = true, FontSize = 2400, Kerning = 1200 };

            A.SolidFill solidFill15 = new A.SolidFill();
            A.SchemeColor schemeColor24 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill15.Append(schemeColor24);
            A.LatinFont latinFont12 = new A.LatinFont(){ Typeface = "+mn-lt" };
            A.EastAsianFont eastAsianFont12 = new A.EastAsianFont(){ Typeface = "+mn-ea" };
            A.ComplexScriptFont complexScriptFont12 = new A.ComplexScriptFont(){ Typeface = "+mn-cs" };

            defaultRunProperties18.Append(solidFill15);
            defaultRunProperties18.Append(latinFont12);
            defaultRunProperties18.Append(eastAsianFont12);
            defaultRunProperties18.Append(complexScriptFont12);

            level2ParagraphProperties3.Append(spaceBefore3);
            level2ParagraphProperties3.Append(bulletColor2);
            level2ParagraphProperties3.Append(bulletSizePercentage2);
            level2ParagraphProperties3.Append(bulletFont2);
            level2ParagraphProperties3.Append(characterBullet2);
            level2ParagraphProperties3.Append(defaultRunProperties18);

            A.Level3ParagraphProperties level3ParagraphProperties3 = new A.Level3ParagraphProperties(){ LeftMargin = 1133856, Indent = -228600, Alignment = A.TextAlignmentTypeValues.Left, RightToLeft = false, EastAsianLineBreak = true, LatinLineBreak = false, Height = true };

            A.SpaceBefore spaceBefore4 = new A.SpaceBefore();
            A.SpacingPercent spacingPercent4 = new A.SpacingPercent(){ Val = 20000 };

            spaceBefore4.Append(spacingPercent4);

            A.BulletColor bulletColor3 = new A.BulletColor();
            A.SchemeColor schemeColor25 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            bulletColor3.Append(schemeColor25);
            A.BulletSizePercentage bulletSizePercentage3 = new A.BulletSizePercentage(){ Val = 95000 };
            A.BulletFont bulletFont3 = new A.BulletFont(){ Typeface = "Wingdings" };
            A.CharacterBullet characterBullet3 = new A.CharacterBullet(){ Char = "" };

            A.DefaultRunProperties defaultRunProperties19 = new A.DefaultRunProperties(){ Kumimoji = true, FontSize = 2200, Kerning = 1200 };

            A.SolidFill solidFill16 = new A.SolidFill();
            A.SchemeColor schemeColor26 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill16.Append(schemeColor26);
            A.LatinFont latinFont13 = new A.LatinFont(){ Typeface = "+mn-lt" };
            A.EastAsianFont eastAsianFont13 = new A.EastAsianFont(){ Typeface = "+mn-ea" };
            A.ComplexScriptFont complexScriptFont13 = new A.ComplexScriptFont(){ Typeface = "+mn-cs" };

            defaultRunProperties19.Append(solidFill16);
            defaultRunProperties19.Append(latinFont13);
            defaultRunProperties19.Append(eastAsianFont13);
            defaultRunProperties19.Append(complexScriptFont13);

            level3ParagraphProperties3.Append(spaceBefore4);
            level3ParagraphProperties3.Append(bulletColor3);
            level3ParagraphProperties3.Append(bulletSizePercentage3);
            level3ParagraphProperties3.Append(bulletFont3);
            level3ParagraphProperties3.Append(characterBullet3);
            level3ParagraphProperties3.Append(defaultRunProperties19);

            A.Level4ParagraphProperties level4ParagraphProperties3 = new A.Level4ParagraphProperties(){ LeftMargin = 1353312, Indent = -182880, Alignment = A.TextAlignmentTypeValues.Left, RightToLeft = false, EastAsianLineBreak = true, LatinLineBreak = false, Height = true };

            A.SpaceBefore spaceBefore5 = new A.SpaceBefore();
            A.SpacingPercent spacingPercent5 = new A.SpacingPercent(){ Val = 20000 };

            spaceBefore5.Append(spacingPercent5);

            A.BulletColor bulletColor4 = new A.BulletColor();
            A.SchemeColor schemeColor27 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            bulletColor4.Append(schemeColor27);
            A.BulletSizePercentage bulletSizePercentage4 = new A.BulletSizePercentage(){ Val = 100000 };
            A.BulletFont bulletFont4 = new A.BulletFont(){ Typeface = "Wingdings 3" };
            A.CharacterBullet characterBullet4 = new A.CharacterBullet(){ Char = "" };

            A.DefaultRunProperties defaultRunProperties20 = new A.DefaultRunProperties(){ Kumimoji = true, FontSize = 2000, Kerning = 1200 };

            A.SolidFill solidFill17 = new A.SolidFill();
            A.SchemeColor schemeColor28 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill17.Append(schemeColor28);
            A.LatinFont latinFont14 = new A.LatinFont(){ Typeface = "+mn-lt" };
            A.EastAsianFont eastAsianFont14 = new A.EastAsianFont(){ Typeface = "+mn-ea" };
            A.ComplexScriptFont complexScriptFont14 = new A.ComplexScriptFont(){ Typeface = "+mn-cs" };

            defaultRunProperties20.Append(solidFill17);
            defaultRunProperties20.Append(latinFont14);
            defaultRunProperties20.Append(eastAsianFont14);
            defaultRunProperties20.Append(complexScriptFont14);

            level4ParagraphProperties3.Append(spaceBefore5);
            level4ParagraphProperties3.Append(bulletColor4);
            level4ParagraphProperties3.Append(bulletSizePercentage4);
            level4ParagraphProperties3.Append(bulletFont4);
            level4ParagraphProperties3.Append(characterBullet4);
            level4ParagraphProperties3.Append(defaultRunProperties20);

            A.Level5ParagraphProperties level5ParagraphProperties3 = new A.Level5ParagraphProperties(){ LeftMargin = 1545336, Indent = -182880, Alignment = A.TextAlignmentTypeValues.Left, RightToLeft = false, EastAsianLineBreak = true, LatinLineBreak = false, Height = true };

            A.SpaceBefore spaceBefore6 = new A.SpaceBefore();
            A.SpacingPercent spacingPercent6 = new A.SpacingPercent(){ Val = 20000 };

            spaceBefore6.Append(spacingPercent6);

            A.BulletColor bulletColor5 = new A.BulletColor();
            A.SchemeColor schemeColor29 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            bulletColor5.Append(schemeColor29);
            A.BulletFont bulletFont5 = new A.BulletFont(){ Typeface = "Wingdings 2" };
            A.CharacterBullet characterBullet5 = new A.CharacterBullet(){ Char = "" };

            A.DefaultRunProperties defaultRunProperties21 = new A.DefaultRunProperties(){ Kumimoji = true, FontSize = 2000, Kerning = 1200 };

            A.SolidFill solidFill18 = new A.SolidFill();
            A.SchemeColor schemeColor30 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill18.Append(schemeColor30);
            A.LatinFont latinFont15 = new A.LatinFont(){ Typeface = "+mn-lt" };
            A.EastAsianFont eastAsianFont15 = new A.EastAsianFont(){ Typeface = "+mn-ea" };
            A.ComplexScriptFont complexScriptFont15 = new A.ComplexScriptFont(){ Typeface = "+mn-cs" };

            defaultRunProperties21.Append(solidFill18);
            defaultRunProperties21.Append(latinFont15);
            defaultRunProperties21.Append(eastAsianFont15);
            defaultRunProperties21.Append(complexScriptFont15);

            level5ParagraphProperties3.Append(spaceBefore6);
            level5ParagraphProperties3.Append(bulletColor5);
            level5ParagraphProperties3.Append(bulletFont5);
            level5ParagraphProperties3.Append(characterBullet5);
            level5ParagraphProperties3.Append(defaultRunProperties21);

            A.Level6ParagraphProperties level6ParagraphProperties3 = new A.Level6ParagraphProperties(){ LeftMargin = 1764792, Indent = -182880, Alignment = A.TextAlignmentTypeValues.Left, RightToLeft = false, EastAsianLineBreak = true, LatinLineBreak = false, Height = true };

            A.SpaceBefore spaceBefore7 = new A.SpaceBefore();
            A.SpacingPercent spacingPercent7 = new A.SpacingPercent(){ Val = 20000 };

            spaceBefore7.Append(spacingPercent7);

            A.BulletColor bulletColor6 = new A.BulletColor();
            A.SchemeColor schemeColor31 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            bulletColor6.Append(schemeColor31);
            A.BulletFont bulletFont6 = new A.BulletFont(){ Typeface = "Wingdings 3" };
            A.CharacterBullet characterBullet6 = new A.CharacterBullet(){ Char = "" };

            A.DefaultRunProperties defaultRunProperties22 = new A.DefaultRunProperties(){ Kumimoji = true, FontSize = 1800, Kerning = 1200 };

            A.SolidFill solidFill19 = new A.SolidFill();
            A.SchemeColor schemeColor32 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill19.Append(schemeColor32);
            A.LatinFont latinFont16 = new A.LatinFont(){ Typeface = "+mn-lt" };
            A.EastAsianFont eastAsianFont16 = new A.EastAsianFont(){ Typeface = "+mn-ea" };
            A.ComplexScriptFont complexScriptFont16 = new A.ComplexScriptFont(){ Typeface = "+mn-cs" };

            defaultRunProperties22.Append(solidFill19);
            defaultRunProperties22.Append(latinFont16);
            defaultRunProperties22.Append(eastAsianFont16);
            defaultRunProperties22.Append(complexScriptFont16);

            level6ParagraphProperties3.Append(spaceBefore7);
            level6ParagraphProperties3.Append(bulletColor6);
            level6ParagraphProperties3.Append(bulletFont6);
            level6ParagraphProperties3.Append(characterBullet6);
            level6ParagraphProperties3.Append(defaultRunProperties22);

            A.Level7ParagraphProperties level7ParagraphProperties3 = new A.Level7ParagraphProperties(){ LeftMargin = 1965960, Indent = -182880, Alignment = A.TextAlignmentTypeValues.Left, RightToLeft = false, EastAsianLineBreak = true, LatinLineBreak = false, Height = true };

            A.SpaceBefore spaceBefore8 = new A.SpaceBefore();
            A.SpacingPercent spacingPercent8 = new A.SpacingPercent(){ Val = 20000 };

            spaceBefore8.Append(spacingPercent8);

            A.BulletColor bulletColor7 = new A.BulletColor();
            A.SchemeColor schemeColor33 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            bulletColor7.Append(schemeColor33);
            A.BulletFont bulletFont7 = new A.BulletFont(){ Typeface = "Wingdings 2" };
            A.CharacterBullet characterBullet7 = new A.CharacterBullet(){ Char = "" };

            A.DefaultRunProperties defaultRunProperties23 = new A.DefaultRunProperties(){ Kumimoji = true, FontSize = 1600, Kerning = 1200 };

            A.SolidFill solidFill20 = new A.SolidFill();
            A.SchemeColor schemeColor34 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill20.Append(schemeColor34);
            A.LatinFont latinFont17 = new A.LatinFont(){ Typeface = "+mn-lt" };
            A.EastAsianFont eastAsianFont17 = new A.EastAsianFont(){ Typeface = "+mn-ea" };
            A.ComplexScriptFont complexScriptFont17 = new A.ComplexScriptFont(){ Typeface = "+mn-cs" };

            defaultRunProperties23.Append(solidFill20);
            defaultRunProperties23.Append(latinFont17);
            defaultRunProperties23.Append(eastAsianFont17);
            defaultRunProperties23.Append(complexScriptFont17);

            level7ParagraphProperties3.Append(spaceBefore8);
            level7ParagraphProperties3.Append(bulletColor7);
            level7ParagraphProperties3.Append(bulletFont7);
            level7ParagraphProperties3.Append(characterBullet7);
            level7ParagraphProperties3.Append(defaultRunProperties23);

            A.Level8ParagraphProperties level8ParagraphProperties3 = new A.Level8ParagraphProperties(){ LeftMargin = 2167128, Indent = -182880, Alignment = A.TextAlignmentTypeValues.Left, RightToLeft = false, EastAsianLineBreak = true, LatinLineBreak = false, Height = true };

            A.SpaceBefore spaceBefore9 = new A.SpaceBefore();
            A.SpacingPercent spacingPercent9 = new A.SpacingPercent(){ Val = 20000 };

            spaceBefore9.Append(spacingPercent9);

            A.BulletColor bulletColor8 = new A.BulletColor();
            A.SchemeColor schemeColor35 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            bulletColor8.Append(schemeColor35);
            A.BulletFont bulletFont8 = new A.BulletFont(){ Typeface = "Wingdings 2" };
            A.CharacterBullet characterBullet8 = new A.CharacterBullet(){ Char = "" };

            A.DefaultRunProperties defaultRunProperties24 = new A.DefaultRunProperties(){ Kumimoji = true, FontSize = 1400, Kerning = 1200 };

            A.SolidFill solidFill21 = new A.SolidFill();
            A.SchemeColor schemeColor36 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill21.Append(schemeColor36);
            A.LatinFont latinFont18 = new A.LatinFont(){ Typeface = "+mn-lt" };
            A.EastAsianFont eastAsianFont18 = new A.EastAsianFont(){ Typeface = "+mn-ea" };
            A.ComplexScriptFont complexScriptFont18 = new A.ComplexScriptFont(){ Typeface = "+mn-cs" };

            defaultRunProperties24.Append(solidFill21);
            defaultRunProperties24.Append(latinFont18);
            defaultRunProperties24.Append(eastAsianFont18);
            defaultRunProperties24.Append(complexScriptFont18);

            level8ParagraphProperties3.Append(spaceBefore9);
            level8ParagraphProperties3.Append(bulletColor8);
            level8ParagraphProperties3.Append(bulletFont8);
            level8ParagraphProperties3.Append(characterBullet8);
            level8ParagraphProperties3.Append(defaultRunProperties24);

            A.Level9ParagraphProperties level9ParagraphProperties3 = new A.Level9ParagraphProperties(){ LeftMargin = 2368296, Indent = -182880, Alignment = A.TextAlignmentTypeValues.Left, RightToLeft = false, EastAsianLineBreak = true, LatinLineBreak = false, Height = true };

            A.SpaceBefore spaceBefore10 = new A.SpaceBefore();
            A.SpacingPercent spacingPercent10 = new A.SpacingPercent(){ Val = 20000 };

            spaceBefore10.Append(spacingPercent10);

            A.BulletColor bulletColor9 = new A.BulletColor();
            A.SchemeColor schemeColor37 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            bulletColor9.Append(schemeColor37);
            A.BulletFont bulletFont9 = new A.BulletFont(){ Typeface = "Wingdings 2" };
            A.CharacterBullet characterBullet9 = new A.CharacterBullet(){ Char = "" };

            A.DefaultRunProperties defaultRunProperties25 = new A.DefaultRunProperties(){ Kumimoji = true, FontSize = 1400, Kerning = 1200, Baseline = 0 };

            A.SolidFill solidFill22 = new A.SolidFill();
            A.SchemeColor schemeColor38 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill22.Append(schemeColor38);
            A.LatinFont latinFont19 = new A.LatinFont(){ Typeface = "+mn-lt" };
            A.EastAsianFont eastAsianFont19 = new A.EastAsianFont(){ Typeface = "+mn-ea" };
            A.ComplexScriptFont complexScriptFont19 = new A.ComplexScriptFont(){ Typeface = "+mn-cs" };

            defaultRunProperties25.Append(solidFill22);
            defaultRunProperties25.Append(latinFont19);
            defaultRunProperties25.Append(eastAsianFont19);
            defaultRunProperties25.Append(complexScriptFont19);

            level9ParagraphProperties3.Append(spaceBefore10);
            level9ParagraphProperties3.Append(bulletColor9);
            level9ParagraphProperties3.Append(bulletFont9);
            level9ParagraphProperties3.Append(characterBullet9);
            level9ParagraphProperties3.Append(defaultRunProperties25);

            bodyStyle1.Append(level1ParagraphProperties8);
            bodyStyle1.Append(level2ParagraphProperties3);
            bodyStyle1.Append(level3ParagraphProperties3);
            bodyStyle1.Append(level4ParagraphProperties3);
            bodyStyle1.Append(level5ParagraphProperties3);
            bodyStyle1.Append(level6ParagraphProperties3);
            bodyStyle1.Append(level7ParagraphProperties3);
            bodyStyle1.Append(level8ParagraphProperties3);
            bodyStyle1.Append(level9ParagraphProperties3);

            OtherStyle otherStyle1 = new OtherStyle();

            A.Level1ParagraphProperties level1ParagraphProperties9 = new A.Level1ParagraphProperties(){ LeftMargin = 0, Alignment = A.TextAlignmentTypeValues.Left, RightToLeft = false, EastAsianLineBreak = true, LatinLineBreak = false, Height = true };

            A.DefaultRunProperties defaultRunProperties26 = new A.DefaultRunProperties(){ Kumimoji = true, Kerning = 1200 };

            A.SolidFill solidFill23 = new A.SolidFill();
            A.SchemeColor schemeColor39 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill23.Append(schemeColor39);
            A.LatinFont latinFont20 = new A.LatinFont(){ Typeface = "+mn-lt" };
            A.EastAsianFont eastAsianFont20 = new A.EastAsianFont(){ Typeface = "+mn-ea" };
            A.ComplexScriptFont complexScriptFont20 = new A.ComplexScriptFont(){ Typeface = "+mn-cs" };

            defaultRunProperties26.Append(solidFill23);
            defaultRunProperties26.Append(latinFont20);
            defaultRunProperties26.Append(eastAsianFont20);
            defaultRunProperties26.Append(complexScriptFont20);

            level1ParagraphProperties9.Append(defaultRunProperties26);

            A.Level2ParagraphProperties level2ParagraphProperties4 = new A.Level2ParagraphProperties(){ LeftMargin = 457200, Alignment = A.TextAlignmentTypeValues.Left, RightToLeft = false, EastAsianLineBreak = true, LatinLineBreak = false, Height = true };

            A.DefaultRunProperties defaultRunProperties27 = new A.DefaultRunProperties(){ Kumimoji = true, Kerning = 1200 };

            A.SolidFill solidFill24 = new A.SolidFill();
            A.SchemeColor schemeColor40 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill24.Append(schemeColor40);
            A.LatinFont latinFont21 = new A.LatinFont(){ Typeface = "+mn-lt" };
            A.EastAsianFont eastAsianFont21 = new A.EastAsianFont(){ Typeface = "+mn-ea" };
            A.ComplexScriptFont complexScriptFont21 = new A.ComplexScriptFont(){ Typeface = "+mn-cs" };

            defaultRunProperties27.Append(solidFill24);
            defaultRunProperties27.Append(latinFont21);
            defaultRunProperties27.Append(eastAsianFont21);
            defaultRunProperties27.Append(complexScriptFont21);

            level2ParagraphProperties4.Append(defaultRunProperties27);

            A.Level3ParagraphProperties level3ParagraphProperties4 = new A.Level3ParagraphProperties(){ LeftMargin = 914400, Alignment = A.TextAlignmentTypeValues.Left, RightToLeft = false, EastAsianLineBreak = true, LatinLineBreak = false, Height = true };

            A.DefaultRunProperties defaultRunProperties28 = new A.DefaultRunProperties(){ Kumimoji = true, Kerning = 1200 };

            A.SolidFill solidFill25 = new A.SolidFill();
            A.SchemeColor schemeColor41 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill25.Append(schemeColor41);
            A.LatinFont latinFont22 = new A.LatinFont(){ Typeface = "+mn-lt" };
            A.EastAsianFont eastAsianFont22 = new A.EastAsianFont(){ Typeface = "+mn-ea" };
            A.ComplexScriptFont complexScriptFont22 = new A.ComplexScriptFont(){ Typeface = "+mn-cs" };

            defaultRunProperties28.Append(solidFill25);
            defaultRunProperties28.Append(latinFont22);
            defaultRunProperties28.Append(eastAsianFont22);
            defaultRunProperties28.Append(complexScriptFont22);

            level3ParagraphProperties4.Append(defaultRunProperties28);

            A.Level4ParagraphProperties level4ParagraphProperties4 = new A.Level4ParagraphProperties(){ LeftMargin = 1371600, Alignment = A.TextAlignmentTypeValues.Left, RightToLeft = false, EastAsianLineBreak = true, LatinLineBreak = false, Height = true };

            A.DefaultRunProperties defaultRunProperties29 = new A.DefaultRunProperties(){ Kumimoji = true, Kerning = 1200 };

            A.SolidFill solidFill26 = new A.SolidFill();
            A.SchemeColor schemeColor42 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill26.Append(schemeColor42);
            A.LatinFont latinFont23 = new A.LatinFont(){ Typeface = "+mn-lt" };
            A.EastAsianFont eastAsianFont23 = new A.EastAsianFont(){ Typeface = "+mn-ea" };
            A.ComplexScriptFont complexScriptFont23 = new A.ComplexScriptFont(){ Typeface = "+mn-cs" };

            defaultRunProperties29.Append(solidFill26);
            defaultRunProperties29.Append(latinFont23);
            defaultRunProperties29.Append(eastAsianFont23);
            defaultRunProperties29.Append(complexScriptFont23);

            level4ParagraphProperties4.Append(defaultRunProperties29);

            A.Level5ParagraphProperties level5ParagraphProperties4 = new A.Level5ParagraphProperties(){ LeftMargin = 1828800, Alignment = A.TextAlignmentTypeValues.Left, RightToLeft = false, EastAsianLineBreak = true, LatinLineBreak = false, Height = true };

            A.DefaultRunProperties defaultRunProperties30 = new A.DefaultRunProperties(){ Kumimoji = true, Kerning = 1200 };

            A.SolidFill solidFill27 = new A.SolidFill();
            A.SchemeColor schemeColor43 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill27.Append(schemeColor43);
            A.LatinFont latinFont24 = new A.LatinFont(){ Typeface = "+mn-lt" };
            A.EastAsianFont eastAsianFont24 = new A.EastAsianFont(){ Typeface = "+mn-ea" };
            A.ComplexScriptFont complexScriptFont24 = new A.ComplexScriptFont(){ Typeface = "+mn-cs" };

            defaultRunProperties30.Append(solidFill27);
            defaultRunProperties30.Append(latinFont24);
            defaultRunProperties30.Append(eastAsianFont24);
            defaultRunProperties30.Append(complexScriptFont24);

            level5ParagraphProperties4.Append(defaultRunProperties30);

            A.Level6ParagraphProperties level6ParagraphProperties4 = new A.Level6ParagraphProperties(){ LeftMargin = 2286000, Alignment = A.TextAlignmentTypeValues.Left, RightToLeft = false, EastAsianLineBreak = true, LatinLineBreak = false, Height = true };

            A.DefaultRunProperties defaultRunProperties31 = new A.DefaultRunProperties(){ Kumimoji = true, Kerning = 1200 };

            A.SolidFill solidFill28 = new A.SolidFill();
            A.SchemeColor schemeColor44 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill28.Append(schemeColor44);
            A.LatinFont latinFont25 = new A.LatinFont(){ Typeface = "+mn-lt" };
            A.EastAsianFont eastAsianFont25 = new A.EastAsianFont(){ Typeface = "+mn-ea" };
            A.ComplexScriptFont complexScriptFont25 = new A.ComplexScriptFont(){ Typeface = "+mn-cs" };

            defaultRunProperties31.Append(solidFill28);
            defaultRunProperties31.Append(latinFont25);
            defaultRunProperties31.Append(eastAsianFont25);
            defaultRunProperties31.Append(complexScriptFont25);

            level6ParagraphProperties4.Append(defaultRunProperties31);

            A.Level7ParagraphProperties level7ParagraphProperties4 = new A.Level7ParagraphProperties(){ LeftMargin = 2743200, Alignment = A.TextAlignmentTypeValues.Left, RightToLeft = false, EastAsianLineBreak = true, LatinLineBreak = false, Height = true };

            A.DefaultRunProperties defaultRunProperties32 = new A.DefaultRunProperties(){ Kumimoji = true, Kerning = 1200 };

            A.SolidFill solidFill29 = new A.SolidFill();
            A.SchemeColor schemeColor45 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill29.Append(schemeColor45);
            A.LatinFont latinFont26 = new A.LatinFont(){ Typeface = "+mn-lt" };
            A.EastAsianFont eastAsianFont26 = new A.EastAsianFont(){ Typeface = "+mn-ea" };
            A.ComplexScriptFont complexScriptFont26 = new A.ComplexScriptFont(){ Typeface = "+mn-cs" };

            defaultRunProperties32.Append(solidFill29);
            defaultRunProperties32.Append(latinFont26);
            defaultRunProperties32.Append(eastAsianFont26);
            defaultRunProperties32.Append(complexScriptFont26);

            level7ParagraphProperties4.Append(defaultRunProperties32);

            A.Level8ParagraphProperties level8ParagraphProperties4 = new A.Level8ParagraphProperties(){ LeftMargin = 3200400, Alignment = A.TextAlignmentTypeValues.Left, RightToLeft = false, EastAsianLineBreak = true, LatinLineBreak = false, Height = true };

            A.DefaultRunProperties defaultRunProperties33 = new A.DefaultRunProperties(){ Kumimoji = true, Kerning = 1200 };

            A.SolidFill solidFill30 = new A.SolidFill();
            A.SchemeColor schemeColor46 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill30.Append(schemeColor46);
            A.LatinFont latinFont27 = new A.LatinFont(){ Typeface = "+mn-lt" };
            A.EastAsianFont eastAsianFont27 = new A.EastAsianFont(){ Typeface = "+mn-ea" };
            A.ComplexScriptFont complexScriptFont27 = new A.ComplexScriptFont(){ Typeface = "+mn-cs" };

            defaultRunProperties33.Append(solidFill30);
            defaultRunProperties33.Append(latinFont27);
            defaultRunProperties33.Append(eastAsianFont27);
            defaultRunProperties33.Append(complexScriptFont27);

            level8ParagraphProperties4.Append(defaultRunProperties33);

            A.Level9ParagraphProperties level9ParagraphProperties4 = new A.Level9ParagraphProperties(){ LeftMargin = 3657600, Alignment = A.TextAlignmentTypeValues.Left, RightToLeft = false, EastAsianLineBreak = true, LatinLineBreak = false, Height = true };

            A.DefaultRunProperties defaultRunProperties34 = new A.DefaultRunProperties(){ Kumimoji = true, Kerning = 1200 };

            A.SolidFill solidFill31 = new A.SolidFill();
            A.SchemeColor schemeColor47 = new A.SchemeColor(){ Val = A.SchemeColorValues.Text1 };

            solidFill31.Append(schemeColor47);
            A.LatinFont latinFont28 = new A.LatinFont(){ Typeface = "+mn-lt" };
            A.EastAsianFont eastAsianFont28 = new A.EastAsianFont(){ Typeface = "+mn-ea" };
            A.ComplexScriptFont complexScriptFont28 = new A.ComplexScriptFont(){ Typeface = "+mn-cs" };

            defaultRunProperties34.Append(solidFill31);
            defaultRunProperties34.Append(latinFont28);
            defaultRunProperties34.Append(eastAsianFont28);
            defaultRunProperties34.Append(complexScriptFont28);

            level9ParagraphProperties4.Append(defaultRunProperties34);

            otherStyle1.Append(level1ParagraphProperties9);
            otherStyle1.Append(level2ParagraphProperties4);
            otherStyle1.Append(level3ParagraphProperties4);
            otherStyle1.Append(level4ParagraphProperties4);
            otherStyle1.Append(level5ParagraphProperties4);
            otherStyle1.Append(level6ParagraphProperties4);
            otherStyle1.Append(level7ParagraphProperties4);
            otherStyle1.Append(level8ParagraphProperties4);
            otherStyle1.Append(level9ParagraphProperties4);

            textStyles1.Append(titleStyle1);
            textStyles1.Append(bodyStyle1);
            textStyles1.Append(otherStyle1);

            slideMaster1.Append(commonSlideData3);
            slideMaster1.Append(colorMap1);
            slideMaster1.Append(slideLayoutIdList1);
            slideMaster1.Append(textStyles1);

            slideMasterPart1.SlideMaster = slideMaster1;
        }