Repository: anthropics/skills Branch: main Commit: b0cbd3df1533 Files: 319 Total size: 4.2 MB Directory structure: gitextract_57gdutra/ ├── .claude-plugin/ │ └── marketplace.json ├── .gitignore ├── README.md ├── THIRD_PARTY_NOTICES.md ├── skills/ │ ├── algorithmic-art/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ └── templates/ │ │ ├── generator_template.js │ │ └── viewer.html │ ├── brand-guidelines/ │ │ ├── LICENSE.txt │ │ └── SKILL.md │ ├── canvas-design/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ └── canvas-fonts/ │ │ ├── ArsenalSC-OFL.txt │ │ ├── BigShoulders-OFL.txt │ │ ├── Boldonse-OFL.txt │ │ ├── BricolageGrotesque-OFL.txt │ │ ├── CrimsonPro-OFL.txt │ │ ├── DMMono-OFL.txt │ │ ├── EricaOne-OFL.txt │ │ ├── GeistMono-OFL.txt │ │ ├── Gloock-OFL.txt │ │ ├── IBMPlexMono-OFL.txt │ │ ├── InstrumentSans-OFL.txt │ │ ├── Italiana-OFL.txt │ │ ├── JetBrainsMono-OFL.txt │ │ ├── Jura-OFL.txt │ │ ├── LibreBaskerville-OFL.txt │ │ ├── Lora-OFL.txt │ │ ├── NationalPark-OFL.txt │ │ ├── NothingYouCouldDo-OFL.txt │ │ ├── Outfit-OFL.txt │ │ ├── PixelifySans-OFL.txt │ │ ├── PoiretOne-OFL.txt │ │ ├── RedHatMono-OFL.txt │ │ ├── Silkscreen-OFL.txt │ │ ├── SmoochSans-OFL.txt │ │ ├── Tektur-OFL.txt │ │ ├── WorkSans-OFL.txt │ │ └── YoungSerif-OFL.txt │ ├── claude-api/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── csharp/ │ │ │ └── claude-api.md │ │ ├── curl/ │ │ │ └── examples.md │ │ ├── go/ │ │ │ └── claude-api.md │ │ ├── java/ │ │ │ └── claude-api.md │ │ ├── php/ │ │ │ └── claude-api.md │ │ ├── python/ │ │ │ ├── agent-sdk/ │ │ │ │ ├── README.md │ │ │ │ └── patterns.md │ │ │ └── claude-api/ │ │ │ ├── README.md │ │ │ ├── batches.md │ │ │ ├── files-api.md │ │ │ ├── streaming.md │ │ │ └── tool-use.md │ │ ├── ruby/ │ │ │ └── claude-api.md │ │ ├── shared/ │ │ │ ├── error-codes.md │ │ │ ├── live-sources.md │ │ │ ├── models.md │ │ │ └── tool-use-concepts.md │ │ └── typescript/ │ │ ├── agent-sdk/ │ │ │ ├── README.md │ │ │ └── patterns.md │ │ └── claude-api/ │ │ ├── README.md │ │ ├── batches.md │ │ ├── files-api.md │ │ ├── streaming.md │ │ └── tool-use.md │ ├── doc-coauthoring/ │ │ └── SKILL.md │ ├── docx/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ └── scripts/ │ │ ├── __init__.py │ │ ├── accept_changes.py │ │ ├── comment.py │ │ ├── office/ │ │ │ ├── helpers/ │ │ │ │ ├── __init__.py │ │ │ │ ├── merge_runs.py │ │ │ │ └── simplify_redlines.py │ │ │ ├── pack.py │ │ │ ├── schemas/ │ │ │ │ ├── ISO-IEC29500-4_2016/ │ │ │ │ │ ├── dml-chart.xsd │ │ │ │ │ ├── dml-chartDrawing.xsd │ │ │ │ │ ├── dml-diagram.xsd │ │ │ │ │ ├── dml-lockedCanvas.xsd │ │ │ │ │ ├── dml-main.xsd │ │ │ │ │ ├── dml-picture.xsd │ │ │ │ │ ├── dml-spreadsheetDrawing.xsd │ │ │ │ │ ├── dml-wordprocessingDrawing.xsd │ │ │ │ │ ├── pml.xsd │ │ │ │ │ ├── shared-additionalCharacteristics.xsd │ │ │ │ │ ├── shared-bibliography.xsd │ │ │ │ │ ├── shared-commonSimpleTypes.xsd │ │ │ │ │ ├── shared-customXmlDataProperties.xsd │ │ │ │ │ ├── shared-customXmlSchemaProperties.xsd │ │ │ │ │ ├── shared-documentPropertiesCustom.xsd │ │ │ │ │ ├── shared-documentPropertiesExtended.xsd │ │ │ │ │ ├── shared-documentPropertiesVariantTypes.xsd │ │ │ │ │ ├── shared-math.xsd │ │ │ │ │ ├── shared-relationshipReference.xsd │ │ │ │ │ ├── sml.xsd │ │ │ │ │ ├── vml-main.xsd │ │ │ │ │ ├── vml-officeDrawing.xsd │ │ │ │ │ ├── vml-presentationDrawing.xsd │ │ │ │ │ ├── vml-spreadsheetDrawing.xsd │ │ │ │ │ ├── vml-wordprocessingDrawing.xsd │ │ │ │ │ ├── wml.xsd │ │ │ │ │ └── xml.xsd │ │ │ │ ├── ecma/ │ │ │ │ │ └── fouth-edition/ │ │ │ │ │ ├── opc-contentTypes.xsd │ │ │ │ │ ├── opc-coreProperties.xsd │ │ │ │ │ ├── opc-digSig.xsd │ │ │ │ │ └── opc-relationships.xsd │ │ │ │ ├── mce/ │ │ │ │ │ └── mc.xsd │ │ │ │ └── microsoft/ │ │ │ │ ├── wml-2010.xsd │ │ │ │ ├── wml-2012.xsd │ │ │ │ ├── wml-2018.xsd │ │ │ │ ├── wml-cex-2018.xsd │ │ │ │ ├── wml-cid-2016.xsd │ │ │ │ ├── wml-sdtdatahash-2020.xsd │ │ │ │ └── wml-symex-2015.xsd │ │ │ ├── soffice.py │ │ │ ├── unpack.py │ │ │ ├── validate.py │ │ │ └── validators/ │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── docx.py │ │ │ ├── pptx.py │ │ │ └── redlining.py │ │ └── templates/ │ │ ├── comments.xml │ │ ├── commentsExtended.xml │ │ ├── commentsExtensible.xml │ │ ├── commentsIds.xml │ │ └── people.xml │ ├── frontend-design/ │ │ ├── LICENSE.txt │ │ └── SKILL.md │ ├── internal-comms/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ └── examples/ │ │ ├── 3p-updates.md │ │ ├── company-newsletter.md │ │ ├── faq-answers.md │ │ └── general-comms.md │ ├── mcp-builder/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── reference/ │ │ │ ├── evaluation.md │ │ │ ├── mcp_best_practices.md │ │ │ ├── node_mcp_server.md │ │ │ └── python_mcp_server.md │ │ └── scripts/ │ │ ├── connections.py │ │ ├── evaluation.py │ │ ├── example_evaluation.xml │ │ └── requirements.txt │ ├── pdf/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── forms.md │ │ ├── reference.md │ │ └── scripts/ │ │ ├── check_bounding_boxes.py │ │ ├── check_fillable_fields.py │ │ ├── convert_pdf_to_images.py │ │ ├── create_validation_image.py │ │ ├── extract_form_field_info.py │ │ ├── extract_form_structure.py │ │ ├── fill_fillable_fields.py │ │ └── fill_pdf_form_with_annotations.py │ ├── pptx/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── editing.md │ │ ├── pptxgenjs.md │ │ └── scripts/ │ │ ├── __init__.py │ │ ├── add_slide.py │ │ ├── clean.py │ │ ├── office/ │ │ │ ├── helpers/ │ │ │ │ ├── __init__.py │ │ │ │ ├── merge_runs.py │ │ │ │ └── simplify_redlines.py │ │ │ ├── pack.py │ │ │ ├── schemas/ │ │ │ │ ├── ISO-IEC29500-4_2016/ │ │ │ │ │ ├── dml-chart.xsd │ │ │ │ │ ├── dml-chartDrawing.xsd │ │ │ │ │ ├── dml-diagram.xsd │ │ │ │ │ ├── dml-lockedCanvas.xsd │ │ │ │ │ ├── dml-main.xsd │ │ │ │ │ ├── dml-picture.xsd │ │ │ │ │ ├── dml-spreadsheetDrawing.xsd │ │ │ │ │ ├── dml-wordprocessingDrawing.xsd │ │ │ │ │ ├── pml.xsd │ │ │ │ │ ├── shared-additionalCharacteristics.xsd │ │ │ │ │ ├── shared-bibliography.xsd │ │ │ │ │ ├── shared-commonSimpleTypes.xsd │ │ │ │ │ ├── shared-customXmlDataProperties.xsd │ │ │ │ │ ├── shared-customXmlSchemaProperties.xsd │ │ │ │ │ ├── shared-documentPropertiesCustom.xsd │ │ │ │ │ ├── shared-documentPropertiesExtended.xsd │ │ │ │ │ ├── shared-documentPropertiesVariantTypes.xsd │ │ │ │ │ ├── shared-math.xsd │ │ │ │ │ ├── shared-relationshipReference.xsd │ │ │ │ │ ├── sml.xsd │ │ │ │ │ ├── vml-main.xsd │ │ │ │ │ ├── vml-officeDrawing.xsd │ │ │ │ │ ├── vml-presentationDrawing.xsd │ │ │ │ │ ├── vml-spreadsheetDrawing.xsd │ │ │ │ │ ├── vml-wordprocessingDrawing.xsd │ │ │ │ │ ├── wml.xsd │ │ │ │ │ └── xml.xsd │ │ │ │ ├── ecma/ │ │ │ │ │ └── fouth-edition/ │ │ │ │ │ ├── opc-contentTypes.xsd │ │ │ │ │ ├── opc-coreProperties.xsd │ │ │ │ │ ├── opc-digSig.xsd │ │ │ │ │ └── opc-relationships.xsd │ │ │ │ ├── mce/ │ │ │ │ │ └── mc.xsd │ │ │ │ └── microsoft/ │ │ │ │ ├── wml-2010.xsd │ │ │ │ ├── wml-2012.xsd │ │ │ │ ├── wml-2018.xsd │ │ │ │ ├── wml-cex-2018.xsd │ │ │ │ ├── wml-cid-2016.xsd │ │ │ │ ├── wml-sdtdatahash-2020.xsd │ │ │ │ └── wml-symex-2015.xsd │ │ │ ├── soffice.py │ │ │ ├── unpack.py │ │ │ ├── validate.py │ │ │ └── validators/ │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── docx.py │ │ │ ├── pptx.py │ │ │ └── redlining.py │ │ └── thumbnail.py │ ├── skill-creator/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── agents/ │ │ │ ├── analyzer.md │ │ │ ├── comparator.md │ │ │ └── grader.md │ │ ├── assets/ │ │ │ └── eval_review.html │ │ ├── eval-viewer/ │ │ │ ├── generate_review.py │ │ │ └── viewer.html │ │ ├── references/ │ │ │ └── schemas.md │ │ └── scripts/ │ │ ├── __init__.py │ │ ├── aggregate_benchmark.py │ │ ├── generate_report.py │ │ ├── improve_description.py │ │ ├── package_skill.py │ │ ├── quick_validate.py │ │ ├── run_eval.py │ │ ├── run_loop.py │ │ └── utils.py │ ├── slack-gif-creator/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── core/ │ │ │ ├── easing.py │ │ │ ├── frame_composer.py │ │ │ ├── gif_builder.py │ │ │ └── validators.py │ │ └── requirements.txt │ ├── theme-factory/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ └── themes/ │ │ ├── arctic-frost.md │ │ ├── botanical-garden.md │ │ ├── desert-rose.md │ │ ├── forest-canopy.md │ │ ├── golden-hour.md │ │ ├── midnight-galaxy.md │ │ ├── modern-minimalist.md │ │ ├── ocean-depths.md │ │ ├── sunset-boulevard.md │ │ └── tech-innovation.md │ ├── web-artifacts-builder/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ └── scripts/ │ │ ├── bundle-artifact.sh │ │ └── init-artifact.sh │ ├── webapp-testing/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── examples/ │ │ │ ├── console_logging.py │ │ │ ├── element_discovery.py │ │ │ └── static_html_automation.py │ │ └── scripts/ │ │ └── with_server.py │ └── xlsx/ │ ├── LICENSE.txt │ ├── SKILL.md │ └── scripts/ │ ├── office/ │ │ ├── helpers/ │ │ │ ├── __init__.py │ │ │ ├── merge_runs.py │ │ │ └── simplify_redlines.py │ │ ├── pack.py │ │ ├── schemas/ │ │ │ ├── ISO-IEC29500-4_2016/ │ │ │ │ ├── dml-chart.xsd │ │ │ │ ├── dml-chartDrawing.xsd │ │ │ │ ├── dml-diagram.xsd │ │ │ │ ├── dml-lockedCanvas.xsd │ │ │ │ ├── dml-main.xsd │ │ │ │ ├── dml-picture.xsd │ │ │ │ ├── dml-spreadsheetDrawing.xsd │ │ │ │ ├── dml-wordprocessingDrawing.xsd │ │ │ │ ├── pml.xsd │ │ │ │ ├── shared-additionalCharacteristics.xsd │ │ │ │ ├── shared-bibliography.xsd │ │ │ │ ├── shared-commonSimpleTypes.xsd │ │ │ │ ├── shared-customXmlDataProperties.xsd │ │ │ │ ├── shared-customXmlSchemaProperties.xsd │ │ │ │ ├── shared-documentPropertiesCustom.xsd │ │ │ │ ├── shared-documentPropertiesExtended.xsd │ │ │ │ ├── shared-documentPropertiesVariantTypes.xsd │ │ │ │ ├── shared-math.xsd │ │ │ │ ├── shared-relationshipReference.xsd │ │ │ │ ├── sml.xsd │ │ │ │ ├── vml-main.xsd │ │ │ │ ├── vml-officeDrawing.xsd │ │ │ │ ├── vml-presentationDrawing.xsd │ │ │ │ ├── vml-spreadsheetDrawing.xsd │ │ │ │ ├── vml-wordprocessingDrawing.xsd │ │ │ │ ├── wml.xsd │ │ │ │ └── xml.xsd │ │ │ ├── ecma/ │ │ │ │ └── fouth-edition/ │ │ │ │ ├── opc-contentTypes.xsd │ │ │ │ ├── opc-coreProperties.xsd │ │ │ │ ├── opc-digSig.xsd │ │ │ │ └── opc-relationships.xsd │ │ │ ├── mce/ │ │ │ │ └── mc.xsd │ │ │ └── microsoft/ │ │ │ ├── wml-2010.xsd │ │ │ ├── wml-2012.xsd │ │ │ ├── wml-2018.xsd │ │ │ ├── wml-cex-2018.xsd │ │ │ ├── wml-cid-2016.xsd │ │ │ ├── wml-sdtdatahash-2020.xsd │ │ │ └── wml-symex-2015.xsd │ │ ├── soffice.py │ │ ├── unpack.py │ │ ├── validate.py │ │ └── validators/ │ │ ├── __init__.py │ │ ├── base.py │ │ ├── docx.py │ │ ├── pptx.py │ │ └── redlining.py │ └── recalc.py ├── spec/ │ └── agent-skills-spec.md └── template/ └── SKILL.md ================================================ FILE CONTENTS ================================================ ================================================ FILE: .claude-plugin/marketplace.json ================================================ { "name": "anthropic-agent-skills", "owner": { "name": "Keith Lazuka", "email": "klazuka@anthropic.com" }, "metadata": { "description": "Anthropic example skills", "version": "1.0.0" }, "plugins": [ { "name": "document-skills", "description": "Collection of document processing suite including Excel, Word, PowerPoint, and PDF capabilities", "source": "./", "strict": false, "skills": [ "./skills/xlsx", "./skills/docx", "./skills/pptx", "./skills/pdf" ] }, { "name": "example-skills", "description": "Collection of example skills demonstrating various capabilities including skill creation, MCP building, visual design, algorithmic art, internal communications, web testing, artifact building, Slack GIFs, and theme styling", "source": "./", "strict": false, "skills": [ "./skills/algorithmic-art", "./skills/brand-guidelines", "./skills/canvas-design", "./skills/doc-coauthoring", "./skills/frontend-design", "./skills/internal-comms", "./skills/mcp-builder", "./skills/skill-creator", "./skills/slack-gif-creator", "./skills/theme-factory", "./skills/web-artifacts-builder", "./skills/webapp-testing" ] } , { "name": "claude-api", "description": "Claude API and SDK documentation skill for building LLM-powered applications", "source": "./", "strict": false, "skills": [ "./skills/claude-api" ] } ] } ================================================ FILE: .gitignore ================================================ .DS_Store __pycache__/ .idea/ .vscode/ ================================================ FILE: README.md ================================================ > **Note:** This repository contains Anthropic's implementation of skills for Claude. For information about the Agent Skills standard, see [agentskills.io](http://agentskills.io). # Skills Skills are folders of instructions, scripts, and resources that Claude loads dynamically to improve performance on specialized tasks. Skills teach Claude how to complete specific tasks in a repeatable way, whether that's creating documents with your company's brand guidelines, analyzing data using your organization's specific workflows, or automating personal tasks. For more information, check out: - [What are skills?](https://support.claude.com/en/articles/12512176-what-are-skills) - [Using skills in Claude](https://support.claude.com/en/articles/12512180-using-skills-in-claude) - [How to create custom skills](https://support.claude.com/en/articles/12512198-creating-custom-skills) - [Equipping agents for the real world with Agent Skills](https://anthropic.com/engineering/equipping-agents-for-the-real-world-with-agent-skills) # About This Repository This repository contains skills that demonstrate what's possible with Claude's skills system. These skills range from creative applications (art, music, design) to technical tasks (testing web apps, MCP server generation) to enterprise workflows (communications, branding, etc.). Each skill is self-contained in its own folder with a `SKILL.md` file containing the instructions and metadata that Claude uses. Browse through these skills to get inspiration for your own skills or to understand different patterns and approaches. Many skills in this repo are open source (Apache 2.0). We've also included the document creation & editing skills that power [Claude's document capabilities](https://www.anthropic.com/news/create-files) under the hood in the [`skills/docx`](./skills/docx), [`skills/pdf`](./skills/pdf), [`skills/pptx`](./skills/pptx), and [`skills/xlsx`](./skills/xlsx) subfolders. These are source-available, not open source, but we wanted to share these with developers as a reference for more complex skills that are actively used in a production AI application. ## Disclaimer **These skills are provided for demonstration and educational purposes only.** While some of these capabilities may be available in Claude, the implementations and behaviors you receive from Claude may differ from what is shown in these skills. These skills are meant to illustrate patterns and possibilities. Always test skills thoroughly in your own environment before relying on them for critical tasks. # Skill Sets - [./skills](./skills): Skill examples for Creative & Design, Development & Technical, Enterprise & Communication, and Document Skills - [./spec](./spec): The Agent Skills specification - [./template](./template): Skill template # Try in Claude Code, Claude.ai, and the API ## Claude Code You can register this repository as a Claude Code Plugin marketplace by running the following command in Claude Code: ``` /plugin marketplace add anthropics/skills ``` Then, to install a specific set of skills: 1. Select `Browse and install plugins` 2. Select `anthropic-agent-skills` 3. Select `document-skills` or `example-skills` 4. Select `Install now` Alternatively, directly install either Plugin via: ``` /plugin install document-skills@anthropic-agent-skills /plugin install example-skills@anthropic-agent-skills ``` After installing the plugin, you can use the skill by just mentioning it. For instance, if you install the `document-skills` plugin from the marketplace, you can ask Claude Code to do something like: "Use the PDF skill to extract the form fields from `path/to/some-file.pdf`" ## Claude.ai These example skills are all already available to paid plans in Claude.ai. To use any skill from this repository or upload custom skills, follow the instructions in [Using skills in Claude](https://support.claude.com/en/articles/12512180-using-skills-in-claude#h_a4222fa77b). ## Claude API You can use Anthropic's pre-built skills, and upload custom skills, via the Claude API. See the [Skills API Quickstart](https://docs.claude.com/en/api/skills-guide#creating-a-skill) for more. # Creating a Basic Skill Skills are simple to create - just a folder with a `SKILL.md` file containing YAML frontmatter and instructions. You can use the **template-skill** in this repository as a starting point: ```markdown --- name: my-skill-name description: A clear description of what this skill does and when to use it --- # My Skill Name [Add your instructions here that Claude will follow when this skill is active] ## Examples - Example usage 1 - Example usage 2 ## Guidelines - Guideline 1 - Guideline 2 ``` The frontmatter requires only two fields: - `name` - A unique identifier for your skill (lowercase, hyphens for spaces) - `description` - A complete description of what the skill does and when to use it The markdown content below contains the instructions, examples, and guidelines that Claude will follow. For more details, see [How to create custom skills](https://support.claude.com/en/articles/12512198-creating-custom-skills). # Partner Skills Skills are a great way to teach Claude how to get better at using specific pieces of software. As we see awesome example skills from partners, we may highlight some of them here: - **Notion** - [Notion Skills for Claude](https://www.notion.so/notiondevs/Notion-Skills-for-Claude-28da4445d27180c7af1df7d8615723d0) ================================================ FILE: THIRD_PARTY_NOTICES.md ================================================ # **Third-Party Notices** THE FOLLOWING SETS FORTH ATTRIBUTION NOTICES FOR THIRD PARTY SOFTWARE THAT MAY BE CONTAINED IN PORTIONS OF THIS PRODUCT. --- ## **BSD 2-Clause License** The following components are licensed under BSD 2-Clause License reproduced below: **imageio 2.37.0**, Copyright (c) 2014-2022, imageio developers **imageio-ffmpeg 0.6.0**, Copyright (c) 2019-2025, imageio **License Text:** Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --- ## **GNU General Public License v3.0** The following components are licensed under GNU General Public License v3.0 reproduced below: **FFmpeg 7.0.2**, Copyright (c) 2000-2024 the FFmpeg developers Source Code: [https://ffmpeg.org/releases/ffmpeg-7.0.2.tar.xz](https://ffmpeg.org/releases/ffmpeg-7.0.2.tar.xz) **License Text:** GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright © 2007 Free Software Foundation, Inc. [https://fsf.org/](https://fsf.org/) Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7\. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10\. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10\. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007\. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16\. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. \ Copyright (C) \ \ This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see [https://www.gnu.org/licenses/](https://www.gnu.org/licenses/). Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: \ Copyright (C) \ \ This program comes with ABSOLUTELY NO WARRANTY; for details type 'show w'. This is free software, and you are welcome to redistribute it under certain conditions; type 'show c' for details. The hypothetical commands 'show w' and 'show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see [https://www.gnu.org/licenses/](https://www.gnu.org/licenses/). The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read [https://www.gnu.org/licenses/why-not-lgpl.html](https://www.gnu.org/licenses/why-not-lgpl.html). --- ## **MIT-CMU License (HPND)** The following components are licensed under MIT-CMU License (HPND) reproduced below: **Pillow 11.3.0**, Copyright © 1997-2011 by Secret Labs AB, Copyright © 1995-2011 by Fredrik Lundh and contributors, Copyright © 2010 by Jeffrey A. Clark and contributors **License Text:** By obtaining, using, and/or copying this software and/or its associated documentation, you agree that you have read, understood, and will comply with the following terms and conditions: Permission to use, copy, modify and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appears in all copies, and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of Secret Labs AB or the author not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. SECRET LABS AB AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL SECRET LABS AB OR THE AUTHOR BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. --- ## **SIL Open Font License v1.1** The following fonts are licensed under SIL Open Font License v1.1 reproduced below: **Arsenal SC**, Copyright 2012 The Arsenal Project Authors ([andrij.design@gmail.com](mailto:andrij.design@gmail.com)) **Big Shoulders**, Copyright 2019 The Big Shoulders Project Authors ([https://github.com/xotypeco/big\_shoulders](https://github.com/xotypeco/big_shoulders)) **Boldonse**, Copyright 2024 The Boldonse Project Authors ([https://github.com/googlefonts/boldonse](https://github.com/googlefonts/boldonse)) **Bricolage Grotesque**, Copyright 2022 The Bricolage Grotesque Project Authors ([https://github.com/ateliertriay/bricolage](https://github.com/ateliertriay/bricolage)) **Crimson Pro**, Copyright 2018 The Crimson Pro Project Authors ([https://github.com/Fonthausen/CrimsonPro](https://github.com/Fonthausen/CrimsonPro)) **DM Mono**, Copyright 2020 The DM Mono Project Authors ([https://www.github.com/googlefonts/dm-mono](https://www.github.com/googlefonts/dm-mono)) **Erica One**, Copyright (c) 2011 by LatinoType Limitada ([luciano@latinotype.com](mailto:luciano@latinotype.com)), with Reserved Font Name "Erica One" **Geist Mono**, Copyright 2024 The Geist Project Authors ([https://github.com/vercel/geist-font.git](https://github.com/vercel/geist-font.git)) **Gloock**, Copyright 2022 The Gloock Project Authors ([https://github.com/duartp/gloock](https://github.com/duartp/gloock)) **IBM Plex Mono**, Copyright © 2017 IBM Corp., with Reserved Font Name "Plex" **Instrument Sans**, Copyright 2022 The Instrument Sans Project Authors ([https://github.com/Instrument/instrument-sans](https://github.com/Instrument/instrument-sans)) **Italiana**, Copyright (c) 2011, Santiago Orozco ([hi@typemade.mx](mailto:hi@typemade.mx)), with Reserved Font Name "Italiana" **JetBrains Mono**, Copyright 2020 The JetBrains Mono Project Authors ([https://github.com/JetBrains/JetBrainsMono](https://github.com/JetBrains/JetBrainsMono)) **Jura**, Copyright 2019 The Jura Project Authors ([https://github.com/ossobuffo/jura](https://github.com/ossobuffo/jura)) **Libre Baskerville**, Copyright 2012 The Libre Baskerville Project Authors ([https://github.com/impallari/Libre-Baskerville](https://github.com/impallari/Libre-Baskerville)), with Reserved Font Name "Libre Baskerville" **Lora**, Copyright 2011 The Lora Project Authors ([https://github.com/cyrealtype/Lora-Cyrillic](https://github.com/cyrealtype/Lora-Cyrillic)), with Reserved Font Name "Lora" **National Park**, Copyright 2025 The National Park Project Authors ([https://github.com/benhoepner/National-Park](https://github.com/benhoepner/National-Park)) **Nothing You Could Do**, Copyright (c) 2010, Kimberly Geswein (kimberlygeswein.com) **Outfit**, Copyright 2021 The Outfit Project Authors ([https://github.com/Outfitio/Outfit-Fonts](https://github.com/Outfitio/Outfit-Fonts)) **Pixelify Sans**, Copyright 2021 The Pixelify Sans Project Authors ([https://github.com/eifetx/Pixelify-Sans](https://github.com/eifetx/Pixelify-Sans)) **Poiret One**, Copyright (c) 2011, Denis Masharov ([denis.masharov@gmail.com](mailto:denis.masharov@gmail.com)) **Red Hat Mono**, Copyright 2024 The Red Hat Project Authors ([https://github.com/RedHatOfficial/RedHatFont](https://github.com/RedHatOfficial/RedHatFont)) **Silkscreen**, Copyright 2001 The Silkscreen Project Authors ([https://github.com/googlefonts/silkscreen](https://github.com/googlefonts/silkscreen)) **Smooch Sans**, Copyright 2016 The Smooch Sans Project Authors ([https://github.com/googlefonts/smooch-sans](https://github.com/googlefonts/smooch-sans)) **Tektur**, Copyright 2023 The Tektur Project Authors ([https://www.github.com/hyvyys/Tektur](https://www.github.com/hyvyys/Tektur)) **Work Sans**, Copyright 2019 The Work Sans Project Authors ([https://github.com/weiweihuanghuang/Work-Sans](https://github.com/weiweihuanghuang/Work-Sans)) **Young Serif**, Copyright 2023 The Young Serif Project Authors ([https://github.com/noirblancrouge/YoungSerif](https://github.com/noirblancrouge/YoungSerif)) **License Text:** --- ## **SIL OPEN FONT LICENSE Version 1.1 \- 26 February 2007** PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. DEFINITIONS "Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. "Reserved Font Name" refers to any names specified as such after the copyright statement(s). "Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). "Modified Version" refers to any derivative made by adding to, deleting, or substituting \-- in part or in whole \-- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. "Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. PERMISSION & CONDITIONS Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. TERMINATION This license becomes null and void if any of the above conditions are not met. DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. ================================================ FILE: skills/algorithmic-art/LICENSE.txt ================================================ Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ================================================ FILE: skills/algorithmic-art/SKILL.md ================================================ --- name: algorithmic-art description: Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations. license: Complete terms in LICENSE.txt --- Algorithmic philosophies are computational aesthetic movements that are then expressed through code. Output .md files (philosophy), .html files (interactive viewer), and .js files (generative algorithms). This happens in two steps: 1. Algorithmic Philosophy Creation (.md file) 2. Express by creating p5.js generative art (.html + .js files) First, undertake this task: ## ALGORITHMIC PHILOSOPHY CREATION To begin, create an ALGORITHMIC PHILOSOPHY (not static images or templates) that will be interpreted through: - Computational processes, emergent behavior, mathematical beauty - Seeded randomness, noise fields, organic systems - Particles, flows, fields, forces - Parametric variation and controlled chaos ### THE CRITICAL UNDERSTANDING - What is received: Some subtle input or instructions by the user to take into account, but use as a foundation; it should not constrain creative freedom. - What is created: An algorithmic philosophy/generative aesthetic movement. - What happens next: The same version receives the philosophy and EXPRESSES IT IN CODE - creating p5.js sketches that are 90% algorithmic generation, 10% essential parameters. Consider this approach: - Write a manifesto for a generative art movement - The next phase involves writing the algorithm that brings it to life The philosophy must emphasize: Algorithmic expression. Emergent behavior. Computational beauty. Seeded variation. ### HOW TO GENERATE AN ALGORITHMIC PHILOSOPHY **Name the movement** (1-2 words): "Organic Turbulence" / "Quantum Harmonics" / "Emergent Stillness" **Articulate the philosophy** (4-6 paragraphs - concise but complete): To capture the ALGORITHMIC essence, express how this philosophy manifests through: - Computational processes and mathematical relationships? - Noise functions and randomness patterns? - Particle behaviors and field dynamics? - Temporal evolution and system states? - Parametric variation and emergent complexity? **CRITICAL GUIDELINES:** - **Avoid redundancy**: Each algorithmic aspect should be mentioned once. Avoid repeating concepts about noise theory, particle dynamics, or mathematical principles unless adding new depth. - **Emphasize craftsmanship REPEATEDLY**: The philosophy MUST stress multiple times that the final algorithm should appear as though it took countless hours to develop, was refined with care, and comes from someone at the absolute top of their field. This framing is essential - repeat phrases like "meticulously crafted algorithm," "the product of deep computational expertise," "painstaking optimization," "master-level implementation." - **Leave creative space**: Be specific about the algorithmic direction, but concise enough that the next Claude has room to make interpretive implementation choices at an extremely high level of craftsmanship. The philosophy must guide the next version to express ideas ALGORITHMICALLY, not through static images. Beauty lives in the process, not the final frame. ### PHILOSOPHY EXAMPLES **"Organic Turbulence"** Philosophy: Chaos constrained by natural law, order emerging from disorder. Algorithmic expression: Flow fields driven by layered Perlin noise. Thousands of particles following vector forces, their trails accumulating into organic density maps. Multiple noise octaves create turbulent regions and calm zones. Color emerges from velocity and density - fast particles burn bright, slow ones fade to shadow. The algorithm runs until equilibrium - a meticulously tuned balance where every parameter was refined through countless iterations by a master of computational aesthetics. **"Quantum Harmonics"** Philosophy: Discrete entities exhibiting wave-like interference patterns. Algorithmic expression: Particles initialized on a grid, each carrying a phase value that evolves through sine waves. When particles are near, their phases interfere - constructive interference creates bright nodes, destructive creates voids. Simple harmonic motion generates complex emergent mandalas. The result of painstaking frequency calibration where every ratio was carefully chosen to produce resonant beauty. **"Recursive Whispers"** Philosophy: Self-similarity across scales, infinite depth in finite space. Algorithmic expression: Branching structures that subdivide recursively. Each branch slightly randomized but constrained by golden ratios. L-systems or recursive subdivision generate tree-like forms that feel both mathematical and organic. Subtle noise perturbations break perfect symmetry. Line weights diminish with each recursion level. Every branching angle the product of deep mathematical exploration. **"Field Dynamics"** Philosophy: Invisible forces made visible through their effects on matter. Algorithmic expression: Vector fields constructed from mathematical functions or noise. Particles born at edges, flowing along field lines, dying when they reach equilibrium or boundaries. Multiple fields can attract, repel, or rotate particles. The visualization shows only the traces - ghost-like evidence of invisible forces. A computational dance meticulously choreographed through force balance. **"Stochastic Crystallization"** Philosophy: Random processes crystallizing into ordered structures. Algorithmic expression: Randomized circle packing or Voronoi tessellation. Start with random points, let them evolve through relaxation algorithms. Cells push apart until equilibrium. Color based on cell size, neighbor count, or distance from center. The organic tiling that emerges feels both random and inevitable. Every seed produces unique crystalline beauty - the mark of a master-level generative algorithm. *These are condensed examples. The actual algorithmic philosophy should be 4-6 substantial paragraphs.* ### ESSENTIAL PRINCIPLES - **ALGORITHMIC PHILOSOPHY**: Creating a computational worldview to be expressed through code - **PROCESS OVER PRODUCT**: Always emphasize that beauty emerges from the algorithm's execution - each run is unique - **PARAMETRIC EXPRESSION**: Ideas communicate through mathematical relationships, forces, behaviors - not static composition - **ARTISTIC FREEDOM**: The next Claude interprets the philosophy algorithmically - provide creative implementation room - **PURE GENERATIVE ART**: This is about making LIVING ALGORITHMS, not static images with randomness - **EXPERT CRAFTSMANSHIP**: Repeatedly emphasize the final algorithm must feel meticulously crafted, refined through countless iterations, the product of deep expertise by someone at the absolute top of their field in computational aesthetics **The algorithmic philosophy should be 4-6 paragraphs long.** Fill it with poetic computational philosophy that brings together the intended vision. Avoid repeating the same points. Output this algorithmic philosophy as a .md file. --- ## DEDUCING THE CONCEPTUAL SEED **CRITICAL STEP**: Before implementing the algorithm, identify the subtle conceptual thread from the original request. **THE ESSENTIAL PRINCIPLE**: The concept is a **subtle, niche reference embedded within the algorithm itself** - not always literal, always sophisticated. Someone familiar with the subject should feel it intuitively, while others simply experience a masterful generative composition. The algorithmic philosophy provides the computational language. The deduced concept provides the soul - the quiet conceptual DNA woven invisibly into parameters, behaviors, and emergence patterns. This is **VERY IMPORTANT**: The reference must be so refined that it enhances the work's depth without announcing itself. Think like a jazz musician quoting another song through algorithmic harmony - only those who know will catch it, but everyone appreciates the generative beauty. --- ## P5.JS IMPLEMENTATION With the philosophy AND conceptual framework established, express it through code. Pause to gather thoughts before proceeding. Use only the algorithmic philosophy created and the instructions below. ### ⚠️ STEP 0: READ THE TEMPLATE FIRST ⚠️ **CRITICAL: BEFORE writing any HTML:** 1. **Read** `templates/viewer.html` using the Read tool 2. **Study** the exact structure, styling, and Anthropic branding 3. **Use that file as the LITERAL STARTING POINT** - not just inspiration 4. **Keep all FIXED sections exactly as shown** (header, sidebar structure, Anthropic colors/fonts, seed controls, action buttons) 5. **Replace only the VARIABLE sections** marked in the file's comments (algorithm, parameters, UI controls for parameters) **Avoid:** - ❌ Creating HTML from scratch - ❌ Inventing custom styling or color schemes - ❌ Using system fonts or dark themes - ❌ Changing the sidebar structure **Follow these practices:** - ✅ Copy the template's exact HTML structure - ✅ Keep Anthropic branding (Poppins/Lora fonts, light colors, gradient backdrop) - ✅ Maintain the sidebar layout (Seed → Parameters → Colors? → Actions) - ✅ Replace only the p5.js algorithm and parameter controls The template is the foundation. Build on it, don't rebuild it. --- To create gallery-quality computational art that lives and breathes, use the algorithmic philosophy as the foundation. ### TECHNICAL REQUIREMENTS **Seeded Randomness (Art Blocks Pattern)**: ```javascript // ALWAYS use a seed for reproducibility let seed = 12345; // or hash from user input randomSeed(seed); noiseSeed(seed); ``` **Parameter Structure - FOLLOW THE PHILOSOPHY**: To establish parameters that emerge naturally from the algorithmic philosophy, consider: "What qualities of this system can be adjusted?" ```javascript let params = { seed: 12345, // Always include seed for reproducibility // colors // Add parameters that control YOUR algorithm: // - Quantities (how many?) // - Scales (how big? how fast?) // - Probabilities (how likely?) // - Ratios (what proportions?) // - Angles (what direction?) // - Thresholds (when does behavior change?) }; ``` **To design effective parameters, focus on the properties the system needs to be tunable rather than thinking in terms of "pattern types".** **Core Algorithm - EXPRESS THE PHILOSOPHY**: **CRITICAL**: The algorithmic philosophy should dictate what to build. To express the philosophy through code, avoid thinking "which pattern should I use?" and instead think "how to express this philosophy through code?" If the philosophy is about **organic emergence**, consider using: - Elements that accumulate or grow over time - Random processes constrained by natural rules - Feedback loops and interactions If the philosophy is about **mathematical beauty**, consider using: - Geometric relationships and ratios - Trigonometric functions and harmonics - Precise calculations creating unexpected patterns If the philosophy is about **controlled chaos**, consider using: - Random variation within strict boundaries - Bifurcation and phase transitions - Order emerging from disorder **The algorithm flows from the philosophy, not from a menu of options.** To guide the implementation, let the conceptual essence inform creative and original choices. Build something that expresses the vision for this particular request. **Canvas Setup**: Standard p5.js structure: ```javascript function setup() { createCanvas(1200, 1200); // Initialize your system } function draw() { // Your generative algorithm // Can be static (noLoop) or animated } ``` ### CRAFTSMANSHIP REQUIREMENTS **CRITICAL**: To achieve mastery, create algorithms that feel like they emerged through countless iterations by a master generative artist. Tune every parameter carefully. Ensure every pattern emerges with purpose. This is NOT random noise - this is CONTROLLED CHAOS refined through deep expertise. - **Balance**: Complexity without visual noise, order without rigidity - **Color Harmony**: Thoughtful palettes, not random RGB values - **Composition**: Even in randomness, maintain visual hierarchy and flow - **Performance**: Smooth execution, optimized for real-time if animated - **Reproducibility**: Same seed ALWAYS produces identical output ### OUTPUT FORMAT Output: 1. **Algorithmic Philosophy** - As markdown or text explaining the generative aesthetic 2. **Single HTML Artifact** - Self-contained interactive generative art built from `templates/viewer.html` (see STEP 0 and next section) The HTML artifact contains everything: p5.js (from CDN), the algorithm, parameter controls, and UI - all in one file that works immediately in claude.ai artifacts or any browser. Start from the template file, not from scratch. --- ## INTERACTIVE ARTIFACT CREATION **REMINDER: `templates/viewer.html` should have already been read (see STEP 0). Use that file as the starting point.** To allow exploration of the generative art, create a single, self-contained HTML artifact. Ensure this artifact works immediately in claude.ai or any browser - no setup required. Embed everything inline. ### CRITICAL: WHAT'S FIXED VS VARIABLE The `templates/viewer.html` file is the foundation. It contains the exact structure and styling needed. **FIXED (always include exactly as shown):** - Layout structure (header, sidebar, main canvas area) - Anthropic branding (UI colors, fonts, gradients) - Seed section in sidebar: - Seed display - Previous/Next buttons - Random button - Jump to seed input + Go button - Actions section in sidebar: - Regenerate button - Reset button **VARIABLE (customize for each artwork):** - The entire p5.js algorithm (setup/draw/classes) - The parameters object (define what the art needs) - The Parameters section in sidebar: - Number of parameter controls - Parameter names - Min/max/step values for sliders - Control types (sliders, inputs, etc.) - Colors section (optional): - Some art needs color pickers - Some art might use fixed colors - Some art might be monochrome (no color controls needed) - Decide based on the art's needs **Every artwork should have unique parameters and algorithm!** The fixed parts provide consistent UX - everything else expresses the unique vision. ### REQUIRED FEATURES **1. Parameter Controls** - Sliders for numeric parameters (particle count, noise scale, speed, etc.) - Color pickers for palette colors - Real-time updates when parameters change - Reset button to restore defaults **2. Seed Navigation** - Display current seed number - "Previous" and "Next" buttons to cycle through seeds - "Random" button for random seed - Input field to jump to specific seed - Generate 100 variations when requested (seeds 1-100) **3. Single Artifact Structure** ```html
``` **CRITICAL**: This is a single artifact. No external files, no imports (except p5.js CDN). Everything inline. **4. Implementation Details - BUILD THE SIDEBAR** The sidebar structure: **1. Seed (FIXED)** - Always include exactly as shown: - Seed display - Prev/Next/Random/Jump buttons **2. Parameters (VARIABLE)** - Create controls for the art: ```html
...
``` Add as many control-group divs as there are parameters. **3. Colors (OPTIONAL/VARIABLE)** - Include if the art needs adjustable colors: - Add color pickers if users should control palette - Skip this section if the art uses fixed colors - Skip if the art is monochrome **4. Actions (FIXED)** - Always include exactly as shown: - Regenerate button - Reset button - Download PNG button **Requirements**: - Seed controls must work (prev/next/random/jump/display) - All parameters must have UI controls - Regenerate, Reset, Download buttons must work - Keep Anthropic branding (UI styling, not art colors) ### USING THE ARTIFACT The HTML artifact works immediately: 1. **In claude.ai**: Displayed as an interactive artifact - runs instantly 2. **As a file**: Save and open in any browser - no server needed 3. **Sharing**: Send the HTML file - it's completely self-contained --- ## VARIATIONS & EXPLORATION The artifact includes seed navigation by default (prev/next/random buttons), allowing users to explore variations without creating multiple files. If the user wants specific variations highlighted: - Include seed presets (buttons for "Variation 1: Seed 42", "Variation 2: Seed 127", etc.) - Add a "Gallery Mode" that shows thumbnails of multiple seeds side-by-side - All within the same single artifact This is like creating a series of prints from the same plate - the algorithm is consistent, but each seed reveals different facets of its potential. The interactive nature means users discover their own favorites by exploring the seed space. --- ## THE CREATIVE PROCESS **User request** → **Algorithmic philosophy** → **Implementation** Each request is unique. The process involves: 1. **Interpret the user's intent** - What aesthetic is being sought? 2. **Create an algorithmic philosophy** (4-6 paragraphs) describing the computational approach 3. **Implement it in code** - Build the algorithm that expresses this philosophy 4. **Design appropriate parameters** - What should be tunable? 5. **Build matching UI controls** - Sliders/inputs for those parameters **The constants**: - Anthropic branding (colors, fonts, layout) - Seed navigation (always present) - Self-contained HTML artifact **Everything else is variable**: - The algorithm itself - The parameters - The UI controls - The visual outcome To achieve the best results, trust creativity and let the philosophy guide the implementation. --- ## RESOURCES This skill includes helpful templates and documentation: - **templates/viewer.html**: REQUIRED STARTING POINT for all HTML artifacts. - This is the foundation - contains the exact structure and Anthropic branding - **Keep unchanged**: Layout structure, sidebar organization, Anthropic colors/fonts, seed controls, action buttons - **Replace**: The p5.js algorithm, parameter definitions, and UI controls in Parameters section - The extensive comments in the file mark exactly what to keep vs replace - **templates/generator_template.js**: Reference for p5.js best practices and code structure principles. - Shows how to organize parameters, use seeded randomness, structure classes - NOT a pattern menu - use these principles to build unique algorithms - Embed algorithms inline in the HTML artifact (don't create separate .js files) **Critical reminder**: - The **template is the STARTING POINT**, not inspiration - The **algorithm is where to create** something unique - Don't copy the flow field example - build what the philosophy demands - But DO keep the exact UI structure and Anthropic branding from the template ================================================ FILE: skills/algorithmic-art/templates/generator_template.js ================================================ /** * ═══════════════════════════════════════════════════════════════════════════ * P5.JS GENERATIVE ART - BEST PRACTICES * ═══════════════════════════════════════════════════════════════════════════ * * This file shows STRUCTURE and PRINCIPLES for p5.js generative art. * It does NOT prescribe what art you should create. * * Your algorithmic philosophy should guide what you build. * These are just best practices for how to structure your code. * * ═══════════════════════════════════════════════════════════════════════════ */ // ============================================================================ // 1. PARAMETER ORGANIZATION // ============================================================================ // Keep all tunable parameters in one object // This makes it easy to: // - Connect to UI controls // - Reset to defaults // - Serialize/save configurations let params = { // Define parameters that match YOUR algorithm // Examples (customize for your art): // - Counts: how many elements (particles, circles, branches, etc.) // - Scales: size, speed, spacing // - Probabilities: likelihood of events // - Angles: rotation, direction // - Colors: palette arrays seed: 12345, // define colorPalette as an array -- choose whatever colors you'd like ['#d97757', '#6a9bcc', '#788c5d', '#b0aea5'] // Add YOUR parameters here based on your algorithm }; // ============================================================================ // 2. SEEDED RANDOMNESS (Critical for reproducibility) // ============================================================================ // ALWAYS use seeded random for Art Blocks-style reproducible output function initializeSeed(seed) { randomSeed(seed); noiseSeed(seed); // Now all random() and noise() calls will be deterministic } // ============================================================================ // 3. P5.JS LIFECYCLE // ============================================================================ function setup() { createCanvas(800, 800); // Initialize seed first initializeSeed(params.seed); // Set up your generative system // This is where you initialize: // - Arrays of objects // - Grid structures // - Initial positions // - Starting states // For static art: call noLoop() at the end of setup // For animated art: let draw() keep running } function draw() { // Option 1: Static generation (runs once, then stops) // - Generate everything in setup() // - Call noLoop() in setup() // - draw() doesn't do much or can be empty // Option 2: Animated generation (continuous) // - Update your system each frame // - Common patterns: particle movement, growth, evolution // - Can optionally call noLoop() after N frames // Option 3: User-triggered regeneration // - Use noLoop() by default // - Call redraw() when parameters change } // ============================================================================ // 4. CLASS STRUCTURE (When you need objects) // ============================================================================ // Use classes when your algorithm involves multiple entities // Examples: particles, agents, cells, nodes, etc. class Entity { constructor() { // Initialize entity properties // Use random() here - it will be seeded } update() { // Update entity state // This might involve: // - Physics calculations // - Behavioral rules // - Interactions with neighbors } display() { // Render the entity // Keep rendering logic separate from update logic } } // ============================================================================ // 5. PERFORMANCE CONSIDERATIONS // ============================================================================ // For large numbers of elements: // - Pre-calculate what you can // - Use simple collision detection (spatial hashing if needed) // - Limit expensive operations (sqrt, trig) when possible // - Consider using p5 vectors efficiently // For smooth animation: // - Aim for 60fps // - Profile if things are slow // - Consider reducing particle counts or simplifying calculations // ============================================================================ // 6. UTILITY FUNCTIONS // ============================================================================ // Color utilities function hexToRgb(hex) { const result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hex); return result ? { r: parseInt(result[1], 16), g: parseInt(result[2], 16), b: parseInt(result[3], 16) } : null; } function colorFromPalette(index) { return params.colorPalette[index % params.colorPalette.length]; } // Mapping and easing function mapRange(value, inMin, inMax, outMin, outMax) { return outMin + (outMax - outMin) * ((value - inMin) / (inMax - inMin)); } function easeInOutCubic(t) { return t < 0.5 ? 4 * t * t * t : 1 - Math.pow(-2 * t + 2, 3) / 2; } // Constrain to bounds function wrapAround(value, max) { if (value < 0) return max; if (value > max) return 0; return value; } // ============================================================================ // 7. PARAMETER UPDATES (Connect to UI) // ============================================================================ function updateParameter(paramName, value) { params[paramName] = value; // Decide if you need to regenerate or just update // Some params can update in real-time, others need full regeneration } function regenerate() { // Reinitialize your generative system // Useful when parameters change significantly initializeSeed(params.seed); // Then regenerate your system } // ============================================================================ // 8. COMMON P5.JS PATTERNS // ============================================================================ // Drawing with transparency for trails/fading function fadeBackground(opacity) { fill(250, 249, 245, opacity); // Anthropic light with alpha noStroke(); rect(0, 0, width, height); } // Using noise for organic variation function getNoiseValue(x, y, scale = 0.01) { return noise(x * scale, y * scale); } // Creating vectors from angles function vectorFromAngle(angle, magnitude = 1) { return createVector(cos(angle), sin(angle)).mult(magnitude); } // ============================================================================ // 9. EXPORT FUNCTIONS // ============================================================================ function exportImage() { saveCanvas('generative-art-' + params.seed, 'png'); } // ============================================================================ // REMEMBER // ============================================================================ // // These are TOOLS and PRINCIPLES, not a recipe. // Your algorithmic philosophy should guide WHAT you create. // This structure helps you create it WELL. // // Focus on: // - Clean, readable code // - Parameterized for exploration // - Seeded for reproducibility // - Performant execution // // The art itself is entirely up to you! // // ============================================================================ ================================================ FILE: skills/algorithmic-art/templates/viewer.html ================================================ Generative Art Viewer
Initializing generative art...
================================================ FILE: skills/brand-guidelines/LICENSE.txt ================================================ Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ================================================ FILE: skills/brand-guidelines/SKILL.md ================================================ --- name: brand-guidelines description: Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply. license: Complete terms in LICENSE.txt --- # Anthropic Brand Styling ## Overview To access Anthropic's official brand identity and style resources, use this skill. **Keywords**: branding, corporate identity, visual identity, post-processing, styling, brand colors, typography, Anthropic brand, visual formatting, visual design ## Brand Guidelines ### Colors **Main Colors:** - Dark: `#141413` - Primary text and dark backgrounds - Light: `#faf9f5` - Light backgrounds and text on dark - Mid Gray: `#b0aea5` - Secondary elements - Light Gray: `#e8e6dc` - Subtle backgrounds **Accent Colors:** - Orange: `#d97757` - Primary accent - Blue: `#6a9bcc` - Secondary accent - Green: `#788c5d` - Tertiary accent ### Typography - **Headings**: Poppins (with Arial fallback) - **Body Text**: Lora (with Georgia fallback) - **Note**: Fonts should be pre-installed in your environment for best results ## Features ### Smart Font Application - Applies Poppins font to headings (24pt and larger) - Applies Lora font to body text - Automatically falls back to Arial/Georgia if custom fonts unavailable - Preserves readability across all systems ### Text Styling - Headings (24pt+): Poppins font - Body text: Lora font - Smart color selection based on background - Preserves text hierarchy and formatting ### Shape and Accent Colors - Non-text shapes use accent colors - Cycles through orange, blue, and green accents - Maintains visual interest while staying on-brand ## Technical Details ### Font Management - Uses system-installed Poppins and Lora fonts when available - Provides automatic fallback to Arial (headings) and Georgia (body) - No font installation required - works with existing system fonts - For best results, pre-install Poppins and Lora fonts in your environment ### Color Application - Uses RGB color values for precise brand matching - Applied via python-pptx's RGBColor class - Maintains color fidelity across different systems ================================================ FILE: skills/canvas-design/LICENSE.txt ================================================ Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ================================================ FILE: skills/canvas-design/SKILL.md ================================================ --- name: canvas-design description: Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations. license: Complete terms in LICENSE.txt --- These are instructions for creating design philosophies - aesthetic movements that are then EXPRESSED VISUALLY. Output only .md files, .pdf files, and .png files. Complete this in two steps: 1. Design Philosophy Creation (.md file) 2. Express by creating it on a canvas (.pdf file or .png file) First, undertake this task: ## DESIGN PHILOSOPHY CREATION To begin, create a VISUAL PHILOSOPHY (not layouts or templates) that will be interpreted through: - Form, space, color, composition - Images, graphics, shapes, patterns - Minimal text as visual accent ### THE CRITICAL UNDERSTANDING - What is received: Some subtle input or instructions by the user that should be taken into account, but used as a foundation; it should not constrain creative freedom. - What is created: A design philosophy/aesthetic movement. - What happens next: Then, the same version receives the philosophy and EXPRESSES IT VISUALLY - creating artifacts that are 90% visual design, 10% essential text. Consider this approach: - Write a manifesto for an art movement - The next phase involves making the artwork The philosophy must emphasize: Visual expression. Spatial communication. Artistic interpretation. Minimal words. ### HOW TO GENERATE A VISUAL PHILOSOPHY **Name the movement** (1-2 words): "Brutalist Joy" / "Chromatic Silence" / "Metabolist Dreams" **Articulate the philosophy** (4-6 paragraphs - concise but complete): To capture the VISUAL essence, express how the philosophy manifests through: - Space and form - Color and material - Scale and rhythm - Composition and balance - Visual hierarchy **CRITICAL GUIDELINES:** - **Avoid redundancy**: Each design aspect should be mentioned once. Avoid repeating points about color theory, spatial relationships, or typographic principles unless adding new depth. - **Emphasize craftsmanship REPEATEDLY**: The philosophy MUST stress multiple times that the final work should appear as though it took countless hours to create, was labored over with care, and comes from someone at the absolute top of their field. This framing is essential - repeat phrases like "meticulously crafted," "the product of deep expertise," "painstaking attention," "master-level execution." - **Leave creative space**: Remain specific about the aesthetic direction, but concise enough that the next Claude has room to make interpretive choices also at a extremely high level of craftmanship. The philosophy must guide the next version to express ideas VISUALLY, not through text. Information lives in design, not paragraphs. ### PHILOSOPHY EXAMPLES **"Concrete Poetry"** Philosophy: Communication through monumental form and bold geometry. Visual expression: Massive color blocks, sculptural typography (huge single words, tiny labels), Brutalist spatial divisions, Polish poster energy meets Le Corbusier. Ideas expressed through visual weight and spatial tension, not explanation. Text as rare, powerful gesture - never paragraphs, only essential words integrated into the visual architecture. Every element placed with the precision of a master craftsman. **"Chromatic Language"** Philosophy: Color as the primary information system. Visual expression: Geometric precision where color zones create meaning. Typography minimal - small sans-serif labels letting chromatic fields communicate. Think Josef Albers' interaction meets data visualization. Information encoded spatially and chromatically. Words only to anchor what color already shows. The result of painstaking chromatic calibration. **"Analog Meditation"** Philosophy: Quiet visual contemplation through texture and breathing room. Visual expression: Paper grain, ink bleeds, vast negative space. Photography and illustration dominate. Typography whispered (small, restrained, serving the visual). Japanese photobook aesthetic. Images breathe across pages. Text appears sparingly - short phrases, never explanatory blocks. Each composition balanced with the care of a meditation practice. **"Organic Systems"** Philosophy: Natural clustering and modular growth patterns. Visual expression: Rounded forms, organic arrangements, color from nature through architecture. Information shown through visual diagrams, spatial relationships, iconography. Text only for key labels floating in space. The composition tells the story through expert spatial orchestration. **"Geometric Silence"** Philosophy: Pure order and restraint. Visual expression: Grid-based precision, bold photography or stark graphics, dramatic negative space. Typography precise but minimal - small essential text, large quiet zones. Swiss formalism meets Brutalist material honesty. Structure communicates, not words. Every alignment the work of countless refinements. *These are condensed examples. The actual design philosophy should be 4-6 substantial paragraphs.* ### ESSENTIAL PRINCIPLES - **VISUAL PHILOSOPHY**: Create an aesthetic worldview to be expressed through design - **MINIMAL TEXT**: Always emphasize that text is sparse, essential-only, integrated as visual element - never lengthy - **SPATIAL EXPRESSION**: Ideas communicate through space, form, color, composition - not paragraphs - **ARTISTIC FREEDOM**: The next Claude interprets the philosophy visually - provide creative room - **PURE DESIGN**: This is about making ART OBJECTS, not documents with decoration - **EXPERT CRAFTSMANSHIP**: Repeatedly emphasize the final work must look meticulously crafted, labored over with care, the product of countless hours by someone at the top of their field **The design philosophy should be 4-6 paragraphs long.** Fill it with poetic design philosophy that brings together the core vision. Avoid repeating the same points. Keep the design philosophy generic without mentioning the intention of the art, as if it can be used wherever. Output the design philosophy as a .md file. --- ## DEDUCING THE SUBTLE REFERENCE **CRITICAL STEP**: Before creating the canvas, identify the subtle conceptual thread from the original request. **THE ESSENTIAL PRINCIPLE**: The topic is a **subtle, niche reference embedded within the art itself** - not always literal, always sophisticated. Someone familiar with the subject should feel it intuitively, while others simply experience a masterful abstract composition. The design philosophy provides the aesthetic language. The deduced topic provides the soul - the quiet conceptual DNA woven invisibly into form, color, and composition. This is **VERY IMPORTANT**: The reference must be refined so it enhances the work's depth without announcing itself. Think like a jazz musician quoting another song - only those who know will catch it, but everyone appreciates the music. --- ## CANVAS CREATION With both the philosophy and the conceptual framework established, express it on a canvas. Take a moment to gather thoughts and clear the mind. Use the design philosophy created and the instructions below to craft a masterpiece, embodying all aspects of the philosophy with expert craftsmanship. **IMPORTANT**: For any type of content, even if the user requests something for a movie/game/book, the approach should still be sophisticated. Never lose sight of the idea that this should be art, not something that's cartoony or amateur. To create museum or magazine quality work, use the design philosophy as the foundation. Create one single page, highly visual, design-forward PDF or PNG output (unless asked for more pages). Generally use repeating patterns and perfect shapes. Treat the abstract philosophical design as if it were a scientific bible, borrowing the visual language of systematic observation—dense accumulation of marks, repeated elements, or layered patterns that build meaning through patient repetition and reward sustained viewing. Add sparse, clinical typography and systematic reference markers that suggest this could be a diagram from an imaginary discipline, treating the invisible subject with the same reverence typically reserved for documenting observable phenomena. Anchor the piece with simple phrase(s) or details positioned subtly, using a limited color palette that feels intentional and cohesive. Embrace the paradox of using analytical visual language to express ideas about human experience: the result should feel like an artifact that proves something ephemeral can be studied, mapped, and understood through careful attention. This is true art. **Text as a contextual element**: Text is always minimal and visual-first, but let context guide whether that means whisper-quiet labels or bold typographic gestures. A punk venue poster might have larger, more aggressive type than a minimalist ceramics studio identity. Most of the time, font should be thin. All use of fonts must be design-forward and prioritize visual communication. Regardless of text scale, nothing falls off the page and nothing overlaps. Every element must be contained within the canvas boundaries with proper margins. Check carefully that all text, graphics, and visual elements have breathing room and clear separation. This is non-negotiable for professional execution. **IMPORTANT: Use different fonts if writing text. Search the `./canvas-fonts` directory. Regardless of approach, sophistication is non-negotiable.** Download and use whatever fonts are needed to make this a reality. Get creative by making the typography actually part of the art itself -- if the art is abstract, bring the font onto the canvas, not typeset digitally. To push boundaries, follow design instinct/intuition while using the philosophy as a guiding principle. Embrace ultimate design freedom and choice. Push aesthetics and design to the frontier. **CRITICAL**: To achieve human-crafted quality (not AI-generated), create work that looks like it took countless hours. Make it appear as though someone at the absolute top of their field labored over every detail with painstaking care. Ensure the composition, spacing, color choices, typography - everything screams expert-level craftsmanship. Double-check that nothing overlaps, formatting is flawless, every detail perfect. Create something that could be shown to people to prove expertise and rank as undeniably impressive. Output the final result as a single, downloadable .pdf or .png file, alongside the design philosophy used as a .md file. --- ## FINAL STEP **IMPORTANT**: The user ALREADY said "It isn't perfect enough. It must be pristine, a masterpiece if craftsmanship, as if it were about to be displayed in a museum." **CRITICAL**: To refine the work, avoid adding more graphics; instead refine what has been created and make it extremely crisp, respecting the design philosophy and the principles of minimalism entirely. Rather than adding a fun filter or refactoring a font, consider how to make the existing composition more cohesive with the art. If the instinct is to call a new function or draw a new shape, STOP and instead ask: "How can I make what's already here more of a piece of art?" Take a second pass. Go back to the code and refine/polish further to make this a philosophically designed masterpiece. ## MULTI-PAGE OPTION To create additional pages when requested, create more creative pages along the same lines as the design philosophy but distinctly different as well. Bundle those pages in the same .pdf or many .pngs. Treat the first page as just a single page in a whole coffee table book waiting to be filled. Make the next pages unique twists and memories of the original. Have them almost tell a story in a very tasteful way. Exercise full creative freedom. ================================================ FILE: skills/canvas-design/canvas-fonts/ArsenalSC-OFL.txt ================================================ Copyright 2012 The Arsenal Project Authors (andrij.design@gmail.com) This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: https://openfontlicense.org ----------------------------------------------------------- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ----------------------------------------------------------- PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. DEFINITIONS "Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. "Reserved Font Name" refers to any names specified as such after the copyright statement(s). "Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). "Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. "Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. PERMISSION & CONDITIONS Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. TERMINATION This license becomes null and void if any of the above conditions are not met. DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. ================================================ FILE: skills/canvas-design/canvas-fonts/BigShoulders-OFL.txt ================================================ Copyright 2019 The Big Shoulders Project Authors (https://github.com/xotypeco/big_shoulders) This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: https://openfontlicense.org ----------------------------------------------------------- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ----------------------------------------------------------- PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. DEFINITIONS "Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. "Reserved Font Name" refers to any names specified as such after the copyright statement(s). "Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). "Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. "Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. PERMISSION & CONDITIONS Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. TERMINATION This license becomes null and void if any of the above conditions are not met. DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. ================================================ FILE: skills/canvas-design/canvas-fonts/Boldonse-OFL.txt ================================================ Copyright 2024 The Boldonse Project Authors (https://github.com/googlefonts/boldonse) This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: https://openfontlicense.org ----------------------------------------------------------- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ----------------------------------------------------------- PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. DEFINITIONS "Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. "Reserved Font Name" refers to any names specified as such after the copyright statement(s). "Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). "Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. "Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. PERMISSION & CONDITIONS Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. TERMINATION This license becomes null and void if any of the above conditions are not met. DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. ================================================ FILE: skills/canvas-design/canvas-fonts/BricolageGrotesque-OFL.txt ================================================ Copyright 2022 The Bricolage Grotesque Project Authors (https://github.com/ateliertriay/bricolage) This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: https://openfontlicense.org ----------------------------------------------------------- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ----------------------------------------------------------- PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. DEFINITIONS "Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. "Reserved Font Name" refers to any names specified as such after the copyright statement(s). "Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). "Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. "Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. PERMISSION & CONDITIONS Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. TERMINATION This license becomes null and void if any of the above conditions are not met. DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. ================================================ FILE: skills/canvas-design/canvas-fonts/CrimsonPro-OFL.txt ================================================ Copyright 2018 The Crimson Pro Project Authors (https://github.com/Fonthausen/CrimsonPro) This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: https://openfontlicense.org ----------------------------------------------------------- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ----------------------------------------------------------- PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. DEFINITIONS "Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. "Reserved Font Name" refers to any names specified as such after the copyright statement(s). "Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). "Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. "Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. PERMISSION & CONDITIONS Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. TERMINATION This license becomes null and void if any of the above conditions are not met. DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. ================================================ FILE: skills/canvas-design/canvas-fonts/DMMono-OFL.txt ================================================ Copyright 2020 The DM Mono Project Authors (https://www.github.com/googlefonts/dm-mono) This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: https://openfontlicense.org ----------------------------------------------------------- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ----------------------------------------------------------- PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. DEFINITIONS "Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. "Reserved Font Name" refers to any names specified as such after the copyright statement(s). "Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). "Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. "Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. PERMISSION & CONDITIONS Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. TERMINATION This license becomes null and void if any of the above conditions are not met. DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. ================================================ FILE: skills/canvas-design/canvas-fonts/EricaOne-OFL.txt ================================================ Copyright (c) 2011 by LatinoType Limitada (luciano@latinotype.com), with Reserved Font Names "Erica One" This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: https://openfontlicense.org ----------------------------------------------------------- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ----------------------------------------------------------- PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. DEFINITIONS "Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. "Reserved Font Name" refers to any names specified as such after the copyright statement(s). "Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). "Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. "Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. PERMISSION & CONDITIONS Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. TERMINATION This license becomes null and void if any of the above conditions are not met. DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. ================================================ FILE: skills/canvas-design/canvas-fonts/GeistMono-OFL.txt ================================================ Copyright 2024 The Geist Project Authors (https://github.com/vercel/geist-font.git) This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: https://openfontlicense.org ----------------------------------------------------------- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ----------------------------------------------------------- PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. DEFINITIONS "Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. "Reserved Font Name" refers to any names specified as such after the copyright statement(s). "Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). "Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. "Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. PERMISSION & CONDITIONS Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. TERMINATION This license becomes null and void if any of the above conditions are not met. DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. ================================================ FILE: skills/canvas-design/canvas-fonts/Gloock-OFL.txt ================================================ Copyright 2022 The Gloock Project Authors (https://github.com/duartp/gloock) This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: https://openfontlicense.org ----------------------------------------------------------- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ----------------------------------------------------------- PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. DEFINITIONS "Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. "Reserved Font Name" refers to any names specified as such after the copyright statement(s). "Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). "Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. "Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. PERMISSION & CONDITIONS Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. TERMINATION This license becomes null and void if any of the above conditions are not met. DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. ================================================ FILE: skills/canvas-design/canvas-fonts/IBMPlexMono-OFL.txt ================================================ Copyright © 2017 IBM Corp. with Reserved Font Name "Plex" This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: https://openfontlicense.org ----------------------------------------------------------- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ----------------------------------------------------------- PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. DEFINITIONS "Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. "Reserved Font Name" refers to any names specified as such after the copyright statement(s). "Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). "Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. "Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. PERMISSION & CONDITIONS Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. TERMINATION This license becomes null and void if any of the above conditions are not met. DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. ================================================ FILE: skills/canvas-design/canvas-fonts/InstrumentSans-OFL.txt ================================================ Copyright 2022 The Instrument Sans Project Authors (https://github.com/Instrument/instrument-sans) This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: https://openfontlicense.org ----------------------------------------------------------- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ----------------------------------------------------------- PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. DEFINITIONS "Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. "Reserved Font Name" refers to any names specified as such after the copyright statement(s). "Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). "Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. "Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. PERMISSION & CONDITIONS Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. TERMINATION This license becomes null and void if any of the above conditions are not met. DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. ================================================ FILE: skills/canvas-design/canvas-fonts/Italiana-OFL.txt ================================================ Copyright (c) 2011, Santiago Orozco (hi@typemade.mx), with Reserved Font Name "Italiana". This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: https://openfontlicense.org ----------------------------------------------------------- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ----------------------------------------------------------- PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. DEFINITIONS "Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. "Reserved Font Name" refers to any names specified as such after the copyright statement(s). "Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). "Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. "Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. PERMISSION & CONDITIONS Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. TERMINATION This license becomes null and void if any of the above conditions are not met. DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. ================================================ FILE: skills/canvas-design/canvas-fonts/JetBrainsMono-OFL.txt ================================================ Copyright 2020 The JetBrains Mono Project Authors (https://github.com/JetBrains/JetBrainsMono) This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: https://openfontlicense.org ----------------------------------------------------------- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ----------------------------------------------------------- PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. DEFINITIONS "Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. "Reserved Font Name" refers to any names specified as such after the copyright statement(s). "Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). "Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. "Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. PERMISSION & CONDITIONS Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. TERMINATION This license becomes null and void if any of the above conditions are not met. DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. ================================================ FILE: skills/canvas-design/canvas-fonts/Jura-OFL.txt ================================================ Copyright 2019 The Jura Project Authors (https://github.com/ossobuffo/jura) This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: https://openfontlicense.org ----------------------------------------------------------- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ----------------------------------------------------------- PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. DEFINITIONS "Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. "Reserved Font Name" refers to any names specified as such after the copyright statement(s). "Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). "Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. "Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. PERMISSION & CONDITIONS Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. TERMINATION This license becomes null and void if any of the above conditions are not met. DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. ================================================ FILE: skills/canvas-design/canvas-fonts/LibreBaskerville-OFL.txt ================================================ Copyright 2012 The Libre Baskerville Project Authors (https://github.com/impallari/Libre-Baskerville) with Reserved Font Name Libre Baskerville. This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: https://openfontlicense.org ----------------------------------------------------------- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ----------------------------------------------------------- PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. DEFINITIONS "Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. "Reserved Font Name" refers to any names specified as such after the copyright statement(s). "Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). "Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. "Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. PERMISSION & CONDITIONS Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. TERMINATION This license becomes null and void if any of the above conditions are not met. DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. ================================================ FILE: skills/canvas-design/canvas-fonts/Lora-OFL.txt ================================================ Copyright 2011 The Lora Project Authors (https://github.com/cyrealtype/Lora-Cyrillic), with Reserved Font Name "Lora". This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: https://openfontlicense.org ----------------------------------------------------------- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ----------------------------------------------------------- PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. DEFINITIONS "Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. "Reserved Font Name" refers to any names specified as such after the copyright statement(s). "Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). "Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. "Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. PERMISSION & CONDITIONS Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. TERMINATION This license becomes null and void if any of the above conditions are not met. DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. ================================================ FILE: skills/canvas-design/canvas-fonts/NationalPark-OFL.txt ================================================ Copyright 2025 The National Park Project Authors (https://github.com/benhoepner/National-Park) This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: https://openfontlicense.org ----------------------------------------------------------- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ----------------------------------------------------------- PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. DEFINITIONS "Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. "Reserved Font Name" refers to any names specified as such after the copyright statement(s). "Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). "Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. "Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. PERMISSION & CONDITIONS Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. TERMINATION This license becomes null and void if any of the above conditions are not met. DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. ================================================ FILE: skills/canvas-design/canvas-fonts/NothingYouCouldDo-OFL.txt ================================================ Copyright (c) 2010, Kimberly Geswein (kimberlygeswein.com) This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: https://openfontlicense.org ----------------------------------------------------------- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ----------------------------------------------------------- PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. DEFINITIONS "Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. "Reserved Font Name" refers to any names specified as such after the copyright statement(s). "Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). "Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. "Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. PERMISSION & CONDITIONS Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. TERMINATION This license becomes null and void if any of the above conditions are not met. DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. ================================================ FILE: skills/canvas-design/canvas-fonts/Outfit-OFL.txt ================================================ Copyright 2021 The Outfit Project Authors (https://github.com/Outfitio/Outfit-Fonts) This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: https://openfontlicense.org ----------------------------------------------------------- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ----------------------------------------------------------- PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. DEFINITIONS "Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. "Reserved Font Name" refers to any names specified as such after the copyright statement(s). "Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). "Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. "Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. PERMISSION & CONDITIONS Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. TERMINATION This license becomes null and void if any of the above conditions are not met. DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. ================================================ FILE: skills/canvas-design/canvas-fonts/PixelifySans-OFL.txt ================================================ Copyright 2021 The Pixelify Sans Project Authors (https://github.com/eifetx/Pixelify-Sans) This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: https://openfontlicense.org ----------------------------------------------------------- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ----------------------------------------------------------- PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. DEFINITIONS "Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. "Reserved Font Name" refers to any names specified as such after the copyright statement(s). "Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). "Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. "Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. PERMISSION & CONDITIONS Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. TERMINATION This license becomes null and void if any of the above conditions are not met. DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. ================================================ FILE: skills/canvas-design/canvas-fonts/PoiretOne-OFL.txt ================================================ Copyright (c) 2011, Denis Masharov (denis.masharov@gmail.com) This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: https://openfontlicense.org ----------------------------------------------------------- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ----------------------------------------------------------- PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. DEFINITIONS "Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. "Reserved Font Name" refers to any names specified as such after the copyright statement(s). "Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). "Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. "Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. PERMISSION & CONDITIONS Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. TERMINATION This license becomes null and void if any of the above conditions are not met. DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. ================================================ FILE: skills/canvas-design/canvas-fonts/RedHatMono-OFL.txt ================================================ Copyright 2024 The Red Hat Project Authors (https://github.com/RedHatOfficial/RedHatFont) This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: https://openfontlicense.org ----------------------------------------------------------- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ----------------------------------------------------------- PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. DEFINITIONS "Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. "Reserved Font Name" refers to any names specified as such after the copyright statement(s). "Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). "Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. "Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. PERMISSION & CONDITIONS Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. TERMINATION This license becomes null and void if any of the above conditions are not met. DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. ================================================ FILE: skills/canvas-design/canvas-fonts/Silkscreen-OFL.txt ================================================ Copyright 2001 The Silkscreen Project Authors (https://github.com/googlefonts/silkscreen) This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: https://openfontlicense.org ----------------------------------------------------------- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ----------------------------------------------------------- PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. DEFINITIONS "Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. "Reserved Font Name" refers to any names specified as such after the copyright statement(s). "Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). "Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. "Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. PERMISSION & CONDITIONS Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. TERMINATION This license becomes null and void if any of the above conditions are not met. DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. ================================================ FILE: skills/canvas-design/canvas-fonts/SmoochSans-OFL.txt ================================================ Copyright 2016 The Smooch Sans Project Authors (https://github.com/googlefonts/smooch-sans) This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: https://openfontlicense.org ----------------------------------------------------------- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ----------------------------------------------------------- PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. DEFINITIONS "Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. "Reserved Font Name" refers to any names specified as such after the copyright statement(s). "Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). "Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. "Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. PERMISSION & CONDITIONS Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. TERMINATION This license becomes null and void if any of the above conditions are not met. DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. ================================================ FILE: skills/canvas-design/canvas-fonts/Tektur-OFL.txt ================================================ Copyright 2023 The Tektur Project Authors (https://www.github.com/hyvyys/Tektur) This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: https://openfontlicense.org ----------------------------------------------------------- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ----------------------------------------------------------- PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. DEFINITIONS "Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. "Reserved Font Name" refers to any names specified as such after the copyright statement(s). "Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). "Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. "Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. PERMISSION & CONDITIONS Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. TERMINATION This license becomes null and void if any of the above conditions are not met. DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. ================================================ FILE: skills/canvas-design/canvas-fonts/WorkSans-OFL.txt ================================================ Copyright 2019 The Work Sans Project Authors (https://github.com/weiweihuanghuang/Work-Sans) This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: https://openfontlicense.org ----------------------------------------------------------- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ----------------------------------------------------------- PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. DEFINITIONS "Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. "Reserved Font Name" refers to any names specified as such after the copyright statement(s). "Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). "Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. "Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. PERMISSION & CONDITIONS Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. TERMINATION This license becomes null and void if any of the above conditions are not met. DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. ================================================ FILE: skills/canvas-design/canvas-fonts/YoungSerif-OFL.txt ================================================ Copyright 2023 The Young Serif Project Authors (https://github.com/noirblancrouge/YoungSerif) This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: https://openfontlicense.org ----------------------------------------------------------- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ----------------------------------------------------------- PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. DEFINITIONS "Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. "Reserved Font Name" refers to any names specified as such after the copyright statement(s). "Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). "Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. "Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. PERMISSION & CONDITIONS Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. TERMINATION This license becomes null and void if any of the above conditions are not met. DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. ================================================ FILE: skills/claude-api/LICENSE.txt ================================================ Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ================================================ FILE: skills/claude-api/SKILL.md ================================================ --- name: claude-api description: "Build apps with the Claude API or Anthropic SDK. TRIGGER when: code imports `anthropic`/`@anthropic-ai/sdk`/`claude_agent_sdk`, or user asks to use Claude API, Anthropic SDKs, or Agent SDK. DO NOT TRIGGER when: code imports `openai`/other AI SDK, general programming, or ML/data-science tasks." license: Complete terms in LICENSE.txt --- # Building LLM-Powered Applications with Claude This skill helps you build LLM-powered applications with Claude. Choose the right surface based on your needs, detect the project language, then read the relevant language-specific documentation. ## Defaults Unless the user requests otherwise: For the Claude model version, please use Claude Opus 4.6, which you can access via the exact model string `claude-opus-4-6`. Please default to using adaptive thinking (`thinking: {type: "adaptive"}`) for anything remotely complicated. And finally, please default to streaming for any request that may involve long input, long output, or high `max_tokens` — it prevents hitting request timeouts. Use the SDK's `.get_final_message()` / `.finalMessage()` helper to get the complete response if you don't need to handle individual stream events --- ## Language Detection Before reading code examples, determine which language the user is working in: 1. **Look at project files** to infer the language: - `*.py`, `requirements.txt`, `pyproject.toml`, `setup.py`, `Pipfile` → **Python** — read from `python/` - `*.ts`, `*.tsx`, `package.json`, `tsconfig.json` → **TypeScript** — read from `typescript/` - `*.js`, `*.jsx` (no `.ts` files present) → **TypeScript** — JS uses the same SDK, read from `typescript/` - `*.java`, `pom.xml`, `build.gradle` → **Java** — read from `java/` - `*.kt`, `*.kts`, `build.gradle.kts` → **Java** — Kotlin uses the Java SDK, read from `java/` - `*.scala`, `build.sbt` → **Java** — Scala uses the Java SDK, read from `java/` - `*.go`, `go.mod` → **Go** — read from `go/` - `*.rb`, `Gemfile` → **Ruby** — read from `ruby/` - `*.cs`, `*.csproj` → **C#** — read from `csharp/` - `*.php`, `composer.json` → **PHP** — read from `php/` 2. **If multiple languages detected** (e.g., both Python and TypeScript files): - Check which language the user's current file or question relates to - If still ambiguous, ask: "I detected both Python and TypeScript files. Which language are you using for the Claude API integration?" 3. **If language can't be inferred** (empty project, no source files, or unsupported language): - Use AskUserQuestion with options: Python, TypeScript, Java, Go, Ruby, cURL/raw HTTP, C#, PHP - If AskUserQuestion is unavailable, default to Python examples and note: "Showing Python examples. Let me know if you need a different language." 4. **If unsupported language detected** (Rust, Swift, C++, Elixir, etc.): - Suggest cURL/raw HTTP examples from `curl/` and note that community SDKs may exist - Offer to show Python or TypeScript examples as reference implementations 5. **If user needs cURL/raw HTTP examples**, read from `curl/`. ### Language-Specific Feature Support | Language | Tool Runner | Agent SDK | Notes | | ---------- | ----------- | --------- | ------------------------------------- | | Python | Yes (beta) | Yes | Full support — `@beta_tool` decorator | | TypeScript | Yes (beta) | Yes | Full support — `betaZodTool` + Zod | | Java | Yes (beta) | No | Beta tool use with annotated classes | | Go | Yes (beta) | No | `BetaToolRunner` in `toolrunner` pkg | | Ruby | Yes (beta) | No | `BaseTool` + `tool_runner` in beta | | cURL | N/A | N/A | Raw HTTP, no SDK features | | C# | No | No | Official SDK | | PHP | No | No | Official SDK | --- ## Which Surface Should I Use? > **Start simple.** Default to the simplest tier that meets your needs. Single API calls and workflows handle most use cases — only reach for agents when the task genuinely requires open-ended, model-driven exploration. | Use Case | Tier | Recommended Surface | Why | | ----------------------------------------------- | --------------- | ------------------------- | --------------------------------------- | | Classification, summarization, extraction, Q&A | Single LLM call | **Claude API** | One request, one response | | Batch processing or embeddings | Single LLM call | **Claude API** | Specialized endpoints | | Multi-step pipelines with code-controlled logic | Workflow | **Claude API + tool use** | You orchestrate the loop | | Custom agent with your own tools | Agent | **Claude API + tool use** | Maximum flexibility | | AI agent with file/web/terminal access | Agent | **Agent SDK** | Built-in tools, safety, and MCP support | | Agentic coding assistant | Agent | **Agent SDK** | Designed for this use case | | Want built-in permissions and guardrails | Agent | **Agent SDK** | Safety features included | > **Note:** The Agent SDK is for when you want built-in file/web/terminal tools, permissions, and MCP out of the box. If you want to build an agent with your own tools, Claude API is the right choice — use the tool runner for automatic loop handling, or the manual loop for fine-grained control (approval gates, custom logging, conditional execution). ### Decision Tree ``` What does your application need? 1. Single LLM call (classification, summarization, extraction, Q&A) └── Claude API — one request, one response 2. Does Claude need to read/write files, browse the web, or run shell commands as part of its work? (Not: does your app read a file and hand it to Claude — does Claude itself need to discover and access files/web/shell?) └── Yes → Agent SDK — built-in tools, don't reimplement them Examples: "scan a codebase for bugs", "summarize every file in a directory", "find bugs using subagents", "research a topic via web search" 3. Workflow (multi-step, code-orchestrated, with your own tools) └── Claude API with tool use — you control the loop 4. Open-ended agent (model decides its own trajectory, your own tools) └── Claude API agentic loop (maximum flexibility) ``` ### Should I Build an Agent? Before choosing the agent tier, check all four criteria: - **Complexity** — Is the task multi-step and hard to fully specify in advance? (e.g., "turn this design doc into a PR" vs. "extract the title from this PDF") - **Value** — Does the outcome justify higher cost and latency? - **Viability** — Is Claude capable at this task type? - **Cost of error** — Can errors be caught and recovered from? (tests, review, rollback) If the answer is "no" to any of these, stay at a simpler tier (single call or workflow). --- ## Architecture Everything goes through `POST /v1/messages`. Tools and output constraints are features of this single endpoint — not separate APIs. **User-defined tools** — You define tools (via decorators, Zod schemas, or raw JSON), and the SDK's tool runner handles calling the API, executing your functions, and looping until Claude is done. For full control, you can write the loop manually. **Server-side tools** — Anthropic-hosted tools that run on Anthropic's infrastructure. Code execution is fully server-side (declare it in `tools`, Claude runs code automatically). Computer use can be server-hosted or self-hosted. **Structured outputs** — Constrains the Messages API response format (`output_config.format`) and/or tool parameter validation (`strict: true`). The recommended approach is `client.messages.parse()` which validates responses against your schema automatically. Note: the old `output_format` parameter is deprecated; use `output_config: {format: {...}}` on `messages.create()`. **Supporting endpoints** — Batches (`POST /v1/messages/batches`), Files (`POST /v1/files`), and Token Counting feed into or support Messages API requests. --- ## Current Models (cached: 2026-02-17) | Model | Model ID | Context | Input $/1M | Output $/1M | | ----------------- | ------------------- | -------------- | ---------- | ----------- | | Claude Opus 4.6 | `claude-opus-4-6` | 200K (1M beta) | $5.00 | $25.00 | | Claude Sonnet 4.6 | `claude-sonnet-4-6` | 200K (1M beta) | $3.00 | $15.00 | | Claude Haiku 4.5 | `claude-haiku-4-5` | 200K | $1.00 | $5.00 | **ALWAYS use `claude-opus-4-6` unless the user explicitly names a different model.** This is non-negotiable. Do not use `claude-sonnet-4-6`, `claude-sonnet-4-5`, or any other model unless the user literally says "use sonnet" or "use haiku". Never downgrade for cost — that's the user's decision, not yours. **CRITICAL: Use only the exact model ID strings from the table above — they are complete as-is. Do not append date suffixes.** For example, use `claude-sonnet-4-5`, never `claude-sonnet-4-5-20250514` or any other date-suffixed variant you might recall from training data. If the user requests an older model not in the table (e.g., "opus 4.5", "sonnet 3.7"), read `shared/models.md` for the exact ID — do not construct one yourself. A note: if any of the model strings above look unfamiliar to you, that's to be expected — that just means they were released after your training data cutoff. Rest assured they are real models; we wouldn't mess with you like that. --- ## Thinking & Effort (Quick Reference) **Opus 4.6 — Adaptive thinking (recommended):** Use `thinking: {type: "adaptive"}`. Claude dynamically decides when and how much to think. No `budget_tokens` needed — `budget_tokens` is deprecated on Opus 4.6 and Sonnet 4.6 and must not be used. Adaptive thinking also automatically enables interleaved thinking (no beta header needed). **When the user asks for "extended thinking", a "thinking budget", or `budget_tokens`: always use Opus 4.6 with `thinking: {type: "adaptive"}`. The concept of a fixed token budget for thinking is deprecated — adaptive thinking replaces it. Do NOT use `budget_tokens` and do NOT switch to an older model.** **Effort parameter (GA, no beta header):** Controls thinking depth and overall token spend via `output_config: {effort: "low"|"medium"|"high"|"max"}` (inside `output_config`, not top-level). Default is `high` (equivalent to omitting it). `max` is Opus 4.6 only. Works on Opus 4.5, Opus 4.6, and Sonnet 4.6. Will error on Sonnet 4.5 / Haiku 4.5. Combine with adaptive thinking for the best cost-quality tradeoffs. Use `low` for subagents or simple tasks; `max` for the deepest reasoning. **Sonnet 4.6:** Supports adaptive thinking (`thinking: {type: "adaptive"}`). `budget_tokens` is deprecated on Sonnet 4.6 — use adaptive thinking instead. **Older models (only if explicitly requested):** If the user specifically asks for Sonnet 4.5 or another older model, use `thinking: {type: "enabled", budget_tokens: N}`. `budget_tokens` must be less than `max_tokens` (minimum 1024). Never choose an older model just because the user mentions `budget_tokens` — use Opus 4.6 with adaptive thinking instead. --- ## Compaction (Quick Reference) **Beta, Opus 4.6 only.** For long-running conversations that may exceed the 200K context window, enable server-side compaction. The API automatically summarizes earlier context when it approaches the trigger threshold (default: 150K tokens). Requires beta header `compact-2026-01-12`. **Critical:** Append `response.content` (not just the text) back to your messages on every turn. Compaction blocks in the response must be preserved — the API uses them to replace the compacted history on the next request. Extracting only the text string and appending that will silently lose the compaction state. See `{lang}/claude-api/README.md` (Compaction section) for code examples. Full docs via WebFetch in `shared/live-sources.md`. --- ## Reading Guide After detecting the language, read the relevant files based on what the user needs: ### Quick Task Reference **Single text classification/summarization/extraction/Q&A:** → Read only `{lang}/claude-api/README.md` **Chat UI or real-time response display:** → Read `{lang}/claude-api/README.md` + `{lang}/claude-api/streaming.md` **Long-running conversations (may exceed context window):** → Read `{lang}/claude-api/README.md` — see Compaction section **Function calling / tool use / agents:** → Read `{lang}/claude-api/README.md` + `shared/tool-use-concepts.md` + `{lang}/claude-api/tool-use.md` **Batch processing (non-latency-sensitive):** → Read `{lang}/claude-api/README.md` + `{lang}/claude-api/batches.md` **File uploads across multiple requests:** → Read `{lang}/claude-api/README.md` + `{lang}/claude-api/files-api.md` **Agent with built-in tools (file/web/terminal):** → Read `{lang}/agent-sdk/README.md` + `{lang}/agent-sdk/patterns.md` ### Claude API (Full File Reference) Read the **language-specific Claude API folder** (`{language}/claude-api/`): 1. **`{language}/claude-api/README.md`** — **Read this first.** Installation, quick start, common patterns, error handling. 2. **`shared/tool-use-concepts.md`** — Read when the user needs function calling, code execution, memory, or structured outputs. Covers conceptual foundations. 3. **`{language}/claude-api/tool-use.md`** — Read for language-specific tool use code examples (tool runner, manual loop, code execution, memory, structured outputs). 4. **`{language}/claude-api/streaming.md`** — Read when building chat UIs or interfaces that display responses incrementally. 5. **`{language}/claude-api/batches.md`** — Read when processing many requests offline (not latency-sensitive). Runs asynchronously at 50% cost. 6. **`{language}/claude-api/files-api.md`** — Read when sending the same file across multiple requests without re-uploading. 7. **`shared/error-codes.md`** — Read when debugging HTTP errors or implementing error handling. 8. **`shared/live-sources.md`** — WebFetch URLs for fetching the latest official documentation. > **Note:** For Java, Go, Ruby, C#, PHP, and cURL — these have a single file each covering all basics. Read that file plus `shared/tool-use-concepts.md` and `shared/error-codes.md` as needed. ### Agent SDK Read the **language-specific Agent SDK folder** (`{language}/agent-sdk/`). Agent SDK is available for **Python and TypeScript only**. 1. **`{language}/agent-sdk/README.md`** — Installation, quick start, built-in tools, permissions, MCP, hooks. 2. **`{language}/agent-sdk/patterns.md`** — Custom tools, hooks, subagents, MCP integration, session resumption. 3. **`shared/live-sources.md`** — WebFetch URLs for current Agent SDK docs. --- ## When to Use WebFetch Use WebFetch to get the latest documentation when: - User asks for "latest" or "current" information - Cached data seems incorrect - User asks about features not covered here Live documentation URLs are in `shared/live-sources.md`. ## Common Pitfalls - Don't truncate inputs when passing files or content to the API. If the content is too long to fit in the context window, notify the user and discuss options (chunking, summarization, etc.) rather than silently truncating. - **Opus 4.6 / Sonnet 4.6 thinking:** Use `thinking: {type: "adaptive"}` — do NOT use `budget_tokens` (deprecated on both Opus 4.6 and Sonnet 4.6). For older models, `budget_tokens` must be less than `max_tokens` (minimum 1024). This will throw an error if you get it wrong. - **Opus 4.6 prefill removed:** Assistant message prefills (last-assistant-turn prefills) return a 400 error on Opus 4.6. Use structured outputs (`output_config.format`) or system prompt instructions to control response format instead. - **128K output tokens:** Opus 4.6 supports up to 128K `max_tokens`, but the SDKs require streaming for large `max_tokens` to avoid HTTP timeouts. Use `.stream()` with `.get_final_message()` / `.finalMessage()`. - **Tool call JSON parsing (Opus 4.6):** Opus 4.6 may produce different JSON string escaping in tool call `input` fields (e.g., Unicode or forward-slash escaping). Always parse tool inputs with `json.loads()` / `JSON.parse()` — never do raw string matching on the serialized input. - **Structured outputs (all models):** Use `output_config: {format: {...}}` instead of the deprecated `output_format` parameter on `messages.create()`. This is a general API change, not 4.6-specific. - **Don't reimplement SDK functionality:** The SDK provides high-level helpers — use them instead of building from scratch. Specifically: use `stream.finalMessage()` instead of wrapping `.on()` events in `new Promise()`; use typed exception classes (`Anthropic.RateLimitError`, etc.) instead of string-matching error messages; use SDK types (`Anthropic.MessageParam`, `Anthropic.Tool`, `Anthropic.Message`, etc.) instead of redefining equivalent interfaces. - **Don't define custom types for SDK data structures:** The SDK exports types for all API objects. Use `Anthropic.MessageParam` for messages, `Anthropic.Tool` for tool definitions, `Anthropic.ToolUseBlock` / `Anthropic.ToolResultBlockParam` for tool results, `Anthropic.Message` for responses. Defining your own `interface ChatMessage { role: string; content: unknown }` duplicates what the SDK already provides and loses type safety. - **Report and document output:** For tasks that produce reports, documents, or visualizations, the code execution sandbox has `python-docx`, `python-pptx`, `matplotlib`, `pillow`, and `pypdf` pre-installed. Claude can generate formatted files (DOCX, PDF, charts) and return them via the Files API — consider this for "report" or "document" type requests instead of plain stdout text. ================================================ FILE: skills/claude-api/csharp/claude-api.md ================================================ # Claude API — C# > **Note:** The C# SDK is the official Anthropic SDK for C#. Tool use is supported via the Messages API. A class-annotation-based tool runner is not available; use raw tool definitions with JSON schema. The SDK also supports Microsoft.Extensions.AI IChatClient integration with function invocation. ## Installation ```bash dotnet add package Anthropic ``` ## Client Initialization ```csharp using Anthropic; // Default (uses ANTHROPIC_API_KEY env var) AnthropicClient client = new(); // Explicit API key (use environment variables — never hardcode keys) AnthropicClient client = new() { ApiKey = Environment.GetEnvironmentVariable("ANTHROPIC_API_KEY") }; ``` --- ## Basic Message Request ```csharp using Anthropic.Models.Messages; var parameters = new MessageCreateParams { Model = Model.ClaudeOpus4_6, MaxTokens = 1024, Messages = [new() { Role = Role.User, Content = "What is the capital of France?" }] }; var message = await client.Messages.Create(parameters); Console.WriteLine(message); ``` --- ## Streaming ```csharp using Anthropic.Models.Messages; var parameters = new MessageCreateParams { Model = Model.ClaudeOpus4_6, MaxTokens = 1024, Messages = [new() { Role = Role.User, Content = "Write a haiku" }] }; await foreach (RawMessageStreamEvent streamEvent in client.Messages.CreateStreaming(parameters)) { if (streamEvent.TryPickContentBlockDelta(out var delta) && delta.Delta.TryPickText(out var text)) { Console.Write(text.Text); } } ``` --- ## Tool Use (Manual Loop) The C# SDK supports raw tool definitions via JSON schema. See the [shared tool use concepts](../shared/tool-use-concepts.md) for the tool definition format and agentic loop pattern. ================================================ FILE: skills/claude-api/curl/examples.md ================================================ # Claude API — cURL / Raw HTTP Use these examples when the user needs raw HTTP requests or is working in a language without an official SDK. ## Setup ```bash export ANTHROPIC_API_KEY="your-api-key" ``` --- ## Basic Message Request ```bash curl https://api.anthropic.com/v1/messages \ -H "Content-Type: application/json" \ -H "x-api-key: $ANTHROPIC_API_KEY" \ -H "anthropic-version: 2023-06-01" \ -d '{ "model": "claude-opus-4-6", "max_tokens": 1024, "messages": [ {"role": "user", "content": "What is the capital of France?"} ] }' ``` --- ## Streaming (SSE) ```bash curl https://api.anthropic.com/v1/messages \ -H "Content-Type: application/json" \ -H "x-api-key: $ANTHROPIC_API_KEY" \ -H "anthropic-version: 2023-06-01" \ -d '{ "model": "claude-opus-4-6", "max_tokens": 1024, "stream": true, "messages": [{"role": "user", "content": "Write a haiku"}] }' ``` The response is a stream of Server-Sent Events: ``` event: message_start data: {"type":"message_start","message":{"id":"msg_...","type":"message",...}} event: content_block_start data: {"type":"content_block_start","index":0,"content_block":{"type":"text","text":""}} event: content_block_delta data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"Hello"}} event: content_block_stop data: {"type":"content_block_stop","index":0} event: message_delta data: {"type":"message_delta","delta":{"stop_reason":"end_turn"},"usage":{"output_tokens":12}} event: message_stop data: {"type":"message_stop"} ``` --- ## Tool Use ```bash curl https://api.anthropic.com/v1/messages \ -H "Content-Type: application/json" \ -H "x-api-key: $ANTHROPIC_API_KEY" \ -H "anthropic-version: 2023-06-01" \ -d '{ "model": "claude-opus-4-6", "max_tokens": 1024, "tools": [{ "name": "get_weather", "description": "Get current weather for a location", "input_schema": { "type": "object", "properties": { "location": {"type": "string", "description": "City name"} }, "required": ["location"] } }], "messages": [{"role": "user", "content": "What is the weather in Paris?"}] }' ``` When Claude responds with a `tool_use` block, send the result back: ```bash curl https://api.anthropic.com/v1/messages \ -H "Content-Type: application/json" \ -H "x-api-key: $ANTHROPIC_API_KEY" \ -H "anthropic-version: 2023-06-01" \ -d '{ "model": "claude-opus-4-6", "max_tokens": 1024, "tools": [{ "name": "get_weather", "description": "Get current weather for a location", "input_schema": { "type": "object", "properties": { "location": {"type": "string", "description": "City name"} }, "required": ["location"] } }], "messages": [ {"role": "user", "content": "What is the weather in Paris?"}, {"role": "assistant", "content": [ {"type": "text", "text": "Let me check the weather."}, {"type": "tool_use", "id": "toolu_abc123", "name": "get_weather", "input": {"location": "Paris"}} ]}, {"role": "user", "content": [ {"type": "tool_result", "tool_use_id": "toolu_abc123", "content": "72°F and sunny"} ]} ] }' ``` --- ## Extended Thinking > **Opus 4.6 and Sonnet 4.6:** Use adaptive thinking. `budget_tokens` is deprecated on both Opus 4.6 and Sonnet 4.6. > **Older models:** Use `"type": "enabled"` with `"budget_tokens": N` (must be < `max_tokens`, min 1024). ```bash # Opus 4.6: adaptive thinking (recommended) curl https://api.anthropic.com/v1/messages \ -H "Content-Type: application/json" \ -H "x-api-key: $ANTHROPIC_API_KEY" \ -H "anthropic-version: 2023-06-01" \ -d '{ "model": "claude-opus-4-6", "max_tokens": 16000, "thinking": { "type": "adaptive" }, "output_config": { "effort": "high" }, "messages": [{"role": "user", "content": "Solve this step by step..."}] }' ``` --- ## Required Headers | Header | Value | Description | | ------------------- | ------------------ | -------------------------- | | `Content-Type` | `application/json` | Required | | `x-api-key` | Your API key | Authentication | | `anthropic-version` | `2023-06-01` | API version | | `anthropic-beta` | Beta feature IDs | Required for beta features | ================================================ FILE: skills/claude-api/go/claude-api.md ================================================ # Claude API — Go > **Note:** The Go SDK supports the Claude API and beta tool use with `BetaToolRunner`. Agent SDK is not yet available for Go. ## Installation ```bash go get github.com/anthropics/anthropic-sdk-go ``` ## Client Initialization ```go import ( "github.com/anthropics/anthropic-sdk-go" "github.com/anthropics/anthropic-sdk-go/option" ) // Default (uses ANTHROPIC_API_KEY env var) client := anthropic.NewClient() // Explicit API key client := anthropic.NewClient( option.WithAPIKey("your-api-key"), ) ``` --- ## Basic Message Request ```go response, err := client.Messages.New(context.TODO(), anthropic.MessageNewParams{ Model: anthropic.ModelClaudeOpus4_6, MaxTokens: 1024, Messages: []anthropic.MessageParam{ anthropic.NewUserMessage(anthropic.NewTextBlock("What is the capital of France?")), }, }) if err != nil { log.Fatal(err) } fmt.Println(response.Content[0].Text) ``` --- ## Streaming ```go stream := client.Messages.NewStreaming(context.TODO(), anthropic.MessageNewParams{ Model: anthropic.ModelClaudeOpus4_6, MaxTokens: 1024, Messages: []anthropic.MessageParam{ anthropic.NewUserMessage(anthropic.NewTextBlock("Write a haiku")), }, }) for stream.Next() { event := stream.Current() switch eventVariant := event.AsAny().(type) { case anthropic.ContentBlockDeltaEvent: switch deltaVariant := eventVariant.Delta.AsAny().(type) { case anthropic.TextDelta: fmt.Print(deltaVariant.Text) } } } if err := stream.Err(); err != nil { log.Fatal(err) } ``` --- ## Tool Use ### Tool Runner (Beta — Recommended) **Beta:** The Go SDK provides `BetaToolRunner` for automatic tool use loops via the `toolrunner` package. ```go import ( "context" "fmt" "log" "github.com/anthropics/anthropic-sdk-go" "github.com/anthropics/anthropic-sdk-go/toolrunner" ) // Define tool input with jsonschema tags for automatic schema generation type GetWeatherInput struct { City string `json:"city" jsonschema:"required,description=The city name"` } // Create a tool with automatic schema generation from struct tags weatherTool, err := toolrunner.NewBetaToolFromJSONSchema( "get_weather", "Get current weather for a city", func(ctx context.Context, input GetWeatherInput) (anthropic.BetaToolResultBlockParamContentUnion, error) { return anthropic.BetaToolResultBlockParamContentUnion{ OfText: &anthropic.BetaTextBlockParam{ Text: fmt.Sprintf("The weather in %s is sunny, 72°F", input.City), }, }, nil }, ) if err != nil { log.Fatal(err) } // Create a tool runner that handles the conversation loop automatically runner := client.Beta.Messages.NewToolRunner( []anthropic.BetaTool{weatherTool}, anthropic.BetaToolRunnerParams{ BetaMessageNewParams: anthropic.BetaMessageNewParams{ Model: anthropic.ModelClaudeOpus4_6, MaxTokens: 1024, Messages: []anthropic.BetaMessageParam{ anthropic.NewBetaUserMessage(anthropic.NewBetaTextBlock("What's the weather in Paris?")), }, }, MaxIterations: 5, }, ) // Run until Claude produces a final response message, err := runner.RunToCompletion(context.Background()) if err != nil { log.Fatal(err) } fmt.Println(message.Content[0].Text) ``` **Key features of the Go tool runner:** - Automatic schema generation from Go structs via `jsonschema` tags - `RunToCompletion()` for simple one-shot usage - `All()` iterator for processing each message in the conversation - `NextMessage()` for step-by-step iteration - Streaming variant via `NewToolRunnerStreaming()` with `AllStreaming()` ### Manual Loop For fine-grained control, use raw tool definitions via JSON schema. See the [shared tool use concepts](../shared/tool-use-concepts.md) for the tool definition format and agentic loop pattern. ================================================ FILE: skills/claude-api/java/claude-api.md ================================================ # Claude API — Java > **Note:** The Java SDK supports the Claude API and beta tool use with annotated classes. Agent SDK is not yet available for Java. ## Installation Maven: ```xml com.anthropic anthropic-java 2.15.0 ``` Gradle: ```groovy implementation("com.anthropic:anthropic-java:2.15.0") ``` ## Client Initialization ```java import com.anthropic.client.AnthropicClient; import com.anthropic.client.okhttp.AnthropicOkHttpClient; // Default (reads ANTHROPIC_API_KEY from environment) AnthropicClient client = AnthropicOkHttpClient.fromEnv(); // Explicit API key AnthropicClient client = AnthropicOkHttpClient.builder() .apiKey("your-api-key") .build(); ``` --- ## Basic Message Request ```java import com.anthropic.models.messages.MessageCreateParams; import com.anthropic.models.messages.Message; import com.anthropic.models.messages.Model; MessageCreateParams params = MessageCreateParams.builder() .model(Model.CLAUDE_OPUS_4_6) .maxTokens(1024L) .addUserMessage("What is the capital of France?") .build(); Message response = client.messages().create(params); response.content().stream() .flatMap(block -> block.text().stream()) .forEach(textBlock -> System.out.println(textBlock.text())); ``` --- ## Streaming ```java import com.anthropic.core.http.StreamResponse; import com.anthropic.models.messages.RawMessageStreamEvent; MessageCreateParams params = MessageCreateParams.builder() .model(Model.CLAUDE_OPUS_4_6) .maxTokens(1024L) .addUserMessage("Write a haiku") .build(); try (StreamResponse streamResponse = client.messages().createStreaming(params)) { streamResponse.stream() .flatMap(event -> event.contentBlockDelta().stream()) .flatMap(deltaEvent -> deltaEvent.delta().text().stream()) .forEach(textDelta -> System.out.print(textDelta.text())); } ``` --- ## Tool Use (Beta) The Java SDK supports beta tool use with annotated classes. Tool classes implement `Supplier` for automatic execution via `BetaToolRunner`. ### Tool Runner (automatic loop) ```java import com.anthropic.models.beta.messages.MessageCreateParams; import com.anthropic.models.beta.messages.BetaMessage; import com.anthropic.helpers.BetaToolRunner; import com.fasterxml.jackson.annotation.JsonClassDescription; import com.fasterxml.jackson.annotation.JsonPropertyDescription; import java.util.function.Supplier; @JsonClassDescription("Get the weather in a given location") static class GetWeather implements Supplier { @JsonPropertyDescription("The city and state, e.g. San Francisco, CA") public String location; @Override public String get() { return "The weather in " + location + " is sunny and 72°F"; } } BetaToolRunner toolRunner = client.beta().messages().toolRunner( MessageCreateParams.builder() .model("claude-opus-4-6") .maxTokens(1024L) .putAdditionalHeader("anthropic-beta", "structured-outputs-2025-11-13") .addTool(GetWeather.class) .addUserMessage("What's the weather in San Francisco?") .build()); for (BetaMessage message : toolRunner) { System.out.println(message); } ``` ### Non-Beta Tool Use Tool use is also available through the non-beta `com.anthropic.models.messages.MessageCreateParams` with `addTool(Tool)` for manually defined JSON schemas, without needing the beta namespace. The beta namespace is only needed for the class-annotation convenience layer (`@JsonClassDescription`, `BetaToolRunner`). ### Manual Loop For manual tool loops, define tools as JSON schema in the request, handle `tool_use` blocks in the response, send `tool_result` back, and loop until `stop_reason` is `"end_turn"`. See the [shared tool use concepts](../shared/tool-use-concepts.md) for the agentic loop pattern. ================================================ FILE: skills/claude-api/php/claude-api.md ================================================ # Claude API — PHP > **Note:** The PHP SDK is the official Anthropic SDK for PHP. Tool runner and Agent SDK are not available. Bedrock, Vertex AI, and Foundry clients are supported. ## Installation ```bash composer require "anthropic-ai/sdk" ``` ## Client Initialization ```php use Anthropic\Client; // Using API key from environment variable $client = new Client(apiKey: getenv("ANTHROPIC_API_KEY")); ``` ### Amazon Bedrock ```php use Anthropic\BedrockClient; $client = new BedrockClient( region: 'us-east-1', ); ``` ### Google Vertex AI ```php use Anthropic\VertexClient; $client = new VertexClient( region: 'us-east5', projectId: 'my-project-id', ); ``` ### Anthropic Foundry ```php use Anthropic\FoundryClient; $client = new FoundryClient( authToken: getenv("ANTHROPIC_AUTH_TOKEN"), ); ``` --- ## Basic Message Request ```php $message = $client->messages->create( model: 'claude-opus-4-6', maxTokens: 1024, messages: [ ['role' => 'user', 'content' => 'What is the capital of France?'], ], ); echo $message->content[0]->text; ``` --- ## Streaming ```php $stream = $client->messages->createStream( model: 'claude-opus-4-6', maxTokens: 1024, messages: [ ['role' => 'user', 'content' => 'Write a haiku'], ], ); foreach ($stream as $event) { echo $event; } ``` --- ## Tool Use (Manual Loop) The PHP SDK supports raw tool definitions via JSON schema. See the [shared tool use concepts](../shared/tool-use-concepts.md) for the tool definition format and agentic loop pattern. ================================================ FILE: skills/claude-api/python/agent-sdk/README.md ================================================ # Agent SDK — Python The Claude Agent SDK provides a higher-level interface for building AI agents with built-in tools, safety features, and agentic capabilities. ## Installation ```bash pip install claude-agent-sdk ``` --- ## Quick Start ```python import anyio from claude_agent_sdk import query, ClaudeAgentOptions, ResultMessage async def main(): async for message in query( prompt="Explain this codebase", options=ClaudeAgentOptions(allowed_tools=["Read", "Glob", "Grep"]) ): if isinstance(message, ResultMessage): print(message.result) anyio.run(main) ``` --- ## Built-in Tools | Tool | Description | | --------- | ------------------------------------ | | Read | Read files in the workspace | | Write | Create new files | | Edit | Make precise edits to existing files | | Bash | Execute shell commands | | Glob | Find files by pattern | | Grep | Search files by content | | WebSearch | Search the web for information | | WebFetch | Fetch and analyze web pages | | AskUserQuestion | Ask user clarifying questions | | Agent | Spawn subagents | --- ## Primary Interfaces ### `query()` — Simple One-Shot Usage The `query()` function is the simplest way to run an agent. It returns an async iterator of messages. ```python from claude_agent_sdk import query, ClaudeAgentOptions, ResultMessage async for message in query( prompt="Explain this codebase", options=ClaudeAgentOptions(allowed_tools=["Read", "Glob", "Grep"]) ): if isinstance(message, ResultMessage): print(message.result) ``` ### `ClaudeSDKClient` — Full Control `ClaudeSDKClient` provides full control over the agent lifecycle. Use it when you need custom tools, hooks, streaming, or the ability to interrupt execution. ```python import anyio from claude_agent_sdk import ClaudeSDKClient, ClaudeAgentOptions, AssistantMessage, TextBlock async def main(): options = ClaudeAgentOptions(allowed_tools=["Read", "Glob", "Grep"]) async with ClaudeSDKClient(options=options) as client: await client.query("Explain this codebase") async for message in client.receive_response(): if isinstance(message, AssistantMessage): for block in message.content: if isinstance(block, TextBlock): print(block.text) anyio.run(main) ``` `ClaudeSDKClient` supports: - **Context manager** (`async with`) for automatic resource cleanup - **`client.query(prompt)`** to send a prompt to the agent - **`receive_response()`** for streaming messages until completion - **`interrupt()`** to stop agent execution mid-task - **Required for custom tools** (via SDK MCP servers) --- ## Permission System ```python from claude_agent_sdk import query, ClaudeAgentOptions, ResultMessage async for message in query( prompt="Refactor the authentication module", options=ClaudeAgentOptions( allowed_tools=["Read", "Edit", "Write"], permission_mode="acceptEdits" # Auto-accept file edits ) ): if isinstance(message, ResultMessage): print(message.result) ``` Permission modes: - `"default"`: Prompt for dangerous operations - `"plan"`: Planning only, no execution - `"acceptEdits"`: Auto-accept file edits - `"dontAsk"`: Don't prompt (useful for CI/CD) - `"bypassPermissions"`: Skip all prompts (requires `allow_dangerously_skip_permissions=True` in options) --- ## MCP (Model Context Protocol) Support ```python from claude_agent_sdk import query, ClaudeAgentOptions, ResultMessage async for message in query( prompt="Open example.com and describe what you see", options=ClaudeAgentOptions( mcp_servers={ "playwright": {"command": "npx", "args": ["@playwright/mcp@latest"]} } ) ): if isinstance(message, ResultMessage): print(message.result) ``` --- ## Hooks Customize agent behavior with hooks using callback functions: ```python from claude_agent_sdk import query, ClaudeAgentOptions, HookMatcher, ResultMessage async def log_file_change(input_data, tool_use_id, context): file_path = input_data.get('tool_input', {}).get('file_path', 'unknown') print(f"Modified: {file_path}") return {} async for message in query( prompt="Refactor utils.py", options=ClaudeAgentOptions( permission_mode="acceptEdits", hooks={ "PostToolUse": [HookMatcher(matcher="Edit|Write", hooks=[log_file_change])] } ) ): if isinstance(message, ResultMessage): print(message.result) ``` Available hook events: `PreToolUse`, `PostToolUse`, `PostToolUseFailure`, `Notification`, `UserPromptSubmit`, `SessionStart`, `SessionEnd`, `Stop`, `SubagentStart`, `SubagentStop`, `PreCompact`, `PermissionRequest`, `Setup`, `TeammateIdle`, `TaskCompleted`, `ConfigChange` --- ## Common Options `query()` takes a top-level `prompt` (string) and an `options` object (`ClaudeAgentOptions`): ```python async for message in query(prompt="...", options=ClaudeAgentOptions(...)): ``` | Option | Type | Description | | ----------------------------------- | ------ | -------------------------------------------------------------------------- | | `cwd` | string | Working directory for file operations | | `allowed_tools` | list | Tools the agent can use (e.g., `["Read", "Edit", "Bash"]`) | | `tools` | list | Built-in tools to make available (restricts the default set) | | `disallowed_tools` | list | Tools to explicitly disallow | | `permission_mode` | string | How to handle permission prompts | | `allow_dangerously_skip_permissions`| bool | Must be `True` to use `permission_mode="bypassPermissions"` | | `mcp_servers` | dict | MCP servers to connect to | | `hooks` | dict | Hooks for customizing behavior | | `system_prompt` | string | Custom system prompt | | `max_turns` | int | Maximum agent turns before stopping | | `max_budget_usd` | float | Maximum budget in USD for the query | | `model` | string | Model ID (default: determined by CLI) | | `agents` | dict | Subagent definitions (`dict[str, AgentDefinition]`) | | `output_format` | dict | Structured output schema | | `thinking` | dict | Thinking/reasoning control | | `betas` | list | Beta features to enable (e.g., `["context-1m-2025-08-07"]`) | | `setting_sources` | list | Settings to load (e.g., `["project"]`). Default: none (no CLAUDE.md files) | | `env` | dict | Environment variables to set for the session | --- ## Message Types ```python from claude_agent_sdk import query, ClaudeAgentOptions, ResultMessage, SystemMessage async for message in query( prompt="Find TODO comments", options=ClaudeAgentOptions(allowed_tools=["Read", "Glob", "Grep"]) ): if isinstance(message, ResultMessage): print(message.result) elif isinstance(message, SystemMessage) and message.subtype == "init": session_id = message.session_id # Capture for resuming later ``` --- ## Subagents ```python from claude_agent_sdk import query, ClaudeAgentOptions, AgentDefinition, ResultMessage async for message in query( prompt="Use the code-reviewer agent to review this codebase", options=ClaudeAgentOptions( allowed_tools=["Read", "Glob", "Grep", "Agent"], agents={ "code-reviewer": AgentDefinition( description="Expert code reviewer for quality and security reviews.", prompt="Analyze code quality and suggest improvements.", tools=["Read", "Glob", "Grep"] ) } ) ): if isinstance(message, ResultMessage): print(message.result) ``` --- ## Error Handling ```python from claude_agent_sdk import query, ClaudeAgentOptions, CLINotFoundError, CLIConnectionError, ResultMessage try: async for message in query( prompt="...", options=ClaudeAgentOptions(allowed_tools=["Read"]) ): if isinstance(message, ResultMessage): print(message.result) except CLINotFoundError: print("Claude Code CLI not found. Install with: pip install claude-agent-sdk") except CLIConnectionError as e: print(f"Connection error: {e}") ``` --- ## Best Practices 1. **Always specify allowed_tools** — Explicitly list which tools the agent can use 2. **Set working directory** — Always specify `cwd` for file operations 3. **Use appropriate permission modes** — Start with `"default"` and only escalate when needed 4. **Handle all message types** — Check for `ResultMessage` to get agent output 5. **Limit max_turns** — Prevent runaway agents with reasonable limits ================================================ FILE: skills/claude-api/python/agent-sdk/patterns.md ================================================ # Agent SDK Patterns — Python ## Basic Agent ```python import anyio from claude_agent_sdk import query, ClaudeAgentOptions, ResultMessage async def main(): async for message in query( prompt="Explain what this repository does", options=ClaudeAgentOptions( cwd="/path/to/project", allowed_tools=["Read", "Glob", "Grep"] ) ): if isinstance(message, ResultMessage): print(message.result) anyio.run(main) ``` --- ## Custom Tools Custom tools require an MCP server. Use `ClaudeSDKClient` for full control, or pass the server to `query()` via `mcp_servers`. ```python import anyio from claude_agent_sdk import ( tool, create_sdk_mcp_server, ClaudeSDKClient, ClaudeAgentOptions, AssistantMessage, TextBlock, ) @tool("get_weather", "Get the current weather for a location", {"location": str}) async def get_weather(args): location = args["location"] return {"content": [{"type": "text", "text": f"The weather in {location} is sunny and 72°F."}]} server = create_sdk_mcp_server("weather-tools", tools=[get_weather]) async def main(): options = ClaudeAgentOptions(mcp_servers={"weather": server}) async with ClaudeSDKClient(options=options) as client: await client.query("What's the weather in Paris?") async for message in client.receive_response(): if isinstance(message, AssistantMessage): for block in message.content: if isinstance(block, TextBlock): print(block.text) anyio.run(main) ``` --- ## Hooks ### After Tool Use Hook Log file changes after any edit: ```python import anyio from datetime import datetime from claude_agent_sdk import query, ClaudeAgentOptions, HookMatcher, ResultMessage async def log_file_change(input_data, tool_use_id, context): file_path = input_data.get('tool_input', {}).get('file_path', 'unknown') with open('./audit.log', 'a') as f: f.write(f"{datetime.now()}: modified {file_path}\n") return {} async def main(): async for message in query( prompt="Refactor utils.py to improve readability", options=ClaudeAgentOptions( allowed_tools=["Read", "Edit", "Write"], permission_mode="acceptEdits", hooks={ "PostToolUse": [HookMatcher(matcher="Edit|Write", hooks=[log_file_change])] } ) ): if isinstance(message, ResultMessage): print(message.result) anyio.run(main) ``` --- ## Subagents ```python import anyio from claude_agent_sdk import query, ClaudeAgentOptions, AgentDefinition, ResultMessage async def main(): async for message in query( prompt="Use the code-reviewer agent to review this codebase", options=ClaudeAgentOptions( allowed_tools=["Read", "Glob", "Grep", "Agent"], agents={ "code-reviewer": AgentDefinition( description="Expert code reviewer for quality and security reviews.", prompt="Analyze code quality and suggest improvements.", tools=["Read", "Glob", "Grep"] ) } ) ): if isinstance(message, ResultMessage): print(message.result) anyio.run(main) ``` --- ## MCP Server Integration ### Browser Automation (Playwright) ```python import anyio from claude_agent_sdk import query, ClaudeAgentOptions, ResultMessage async def main(): async for message in query( prompt="Open example.com and describe what you see", options=ClaudeAgentOptions( mcp_servers={ "playwright": {"command": "npx", "args": ["@playwright/mcp@latest"]} } ) ): if isinstance(message, ResultMessage): print(message.result) anyio.run(main) ``` ### Database Access (PostgreSQL) ```python import os import anyio from claude_agent_sdk import query, ClaudeAgentOptions, ResultMessage async def main(): async for message in query( prompt="Show me the top 10 users by order count", options=ClaudeAgentOptions( mcp_servers={ "postgres": { "command": "npx", "args": ["-y", "@modelcontextprotocol/server-postgres"], "env": {"DATABASE_URL": os.environ["DATABASE_URL"]} } } ) ): if isinstance(message, ResultMessage): print(message.result) anyio.run(main) ``` --- ## Permission Modes ```python import anyio from claude_agent_sdk import query, ClaudeAgentOptions async def main(): # Default: prompt for dangerous operations async for message in query( prompt="Delete all test files", options=ClaudeAgentOptions( allowed_tools=["Bash"], permission_mode="default" # Will prompt before deleting ) ): pass # Plan: agent creates a plan before making changes async for message in query( prompt="Refactor the auth system", options=ClaudeAgentOptions( allowed_tools=["Read", "Edit"], permission_mode="plan" ) ): pass # Accept edits: auto-accept file edits async for message in query( prompt="Refactor this module", options=ClaudeAgentOptions( allowed_tools=["Read", "Edit"], permission_mode="acceptEdits" ) ): pass # Bypass: skip all prompts (use with caution) async for message in query( prompt="Set up the development environment", options=ClaudeAgentOptions( allowed_tools=["Bash", "Write"], permission_mode="bypassPermissions", allow_dangerously_skip_permissions=True ) ): pass anyio.run(main) ``` --- ## Error Recovery ```python import anyio from claude_agent_sdk import ( query, ClaudeAgentOptions, CLINotFoundError, CLIConnectionError, ProcessError, ResultMessage, ) async def run_with_recovery(): try: async for message in query( prompt="Fix the failing tests", options=ClaudeAgentOptions( allowed_tools=["Read", "Edit", "Bash"], max_turns=10 ) ): if isinstance(message, ResultMessage): print(message.result) except CLINotFoundError: print("Claude Code CLI not found. Install with: pip install claude-agent-sdk") except CLIConnectionError as e: print(f"Connection error: {e}") except ProcessError as e: print(f"Process error: {e}") anyio.run(run_with_recovery) ``` --- ## Session Resumption ```python import anyio from claude_agent_sdk import query, ClaudeAgentOptions, ResultMessage, SystemMessage async def main(): session_id = None # First query: capture the session ID async for message in query( prompt="Read the authentication module", options=ClaudeAgentOptions(allowed_tools=["Read", "Glob"]) ): if isinstance(message, SystemMessage) and message.subtype == "init": session_id = message.session_id # Resume with full context from the first query async for message in query( prompt="Now find all places that call it", # "it" = auth module options=ClaudeAgentOptions(resume=session_id) ): if isinstance(message, ResultMessage): print(message.result) anyio.run(main) ``` --- ## Custom System Prompt ```python import anyio from claude_agent_sdk import query, ClaudeAgentOptions, ResultMessage async def main(): async for message in query( prompt="Review this code", options=ClaudeAgentOptions( allowed_tools=["Read", "Glob", "Grep"], system_prompt="""You are a senior code reviewer focused on: 1. Security vulnerabilities 2. Performance issues 3. Code maintainability Always provide specific line numbers and suggestions for improvement.""" ) ): if isinstance(message, ResultMessage): print(message.result) anyio.run(main) ``` ================================================ FILE: skills/claude-api/python/claude-api/README.md ================================================ # Claude API — Python ## Installation ```bash pip install anthropic ``` ## Client Initialization ```python import anthropic # Default (uses ANTHROPIC_API_KEY env var) client = anthropic.Anthropic() # Explicit API key client = anthropic.Anthropic(api_key="your-api-key") # Async client async_client = anthropic.AsyncAnthropic() ``` --- ## Basic Message Request ```python response = client.messages.create( model="claude-opus-4-6", max_tokens=1024, messages=[ {"role": "user", "content": "What is the capital of France?"} ] ) print(response.content[0].text) ``` --- ## System Prompts ```python response = client.messages.create( model="claude-opus-4-6", max_tokens=1024, system="You are a helpful coding assistant. Always provide examples in Python.", messages=[{"role": "user", "content": "How do I read a JSON file?"}] ) ``` --- ## Vision (Images) ### Base64 ```python import base64 with open("image.png", "rb") as f: image_data = base64.standard_b64encode(f.read()).decode("utf-8") response = client.messages.create( model="claude-opus-4-6", max_tokens=1024, messages=[{ "role": "user", "content": [ { "type": "image", "source": { "type": "base64", "media_type": "image/png", "data": image_data } }, {"type": "text", "text": "What's in this image?"} ] }] ) ``` ### URL ```python response = client.messages.create( model="claude-opus-4-6", max_tokens=1024, messages=[{ "role": "user", "content": [ { "type": "image", "source": { "type": "url", "url": "https://example.com/image.png" } }, {"type": "text", "text": "Describe this image"} ] }] ) ``` --- ## Prompt Caching Cache large context to reduce costs (up to 90% savings). ### Automatic Caching (Recommended) Use top-level `cache_control` to automatically cache the last cacheable block in the request — no need to annotate individual content blocks: ```python response = client.messages.create( model="claude-opus-4-6", max_tokens=1024, cache_control={"type": "ephemeral"}, # auto-caches the last cacheable block system="You are an expert on this large document...", messages=[{"role": "user", "content": "Summarize the key points"}] ) ``` ### Manual Cache Control For fine-grained control, add `cache_control` to specific content blocks: ```python response = client.messages.create( model="claude-opus-4-6", max_tokens=1024, system=[{ "type": "text", "text": "You are an expert on this large document...", "cache_control": {"type": "ephemeral"} # default TTL is 5 minutes }], messages=[{"role": "user", "content": "Summarize the key points"}] ) # With explicit TTL (time-to-live) response = client.messages.create( model="claude-opus-4-6", max_tokens=1024, system=[{ "type": "text", "text": "You are an expert on this large document...", "cache_control": {"type": "ephemeral", "ttl": "1h"} # 1 hour TTL }], messages=[{"role": "user", "content": "Summarize the key points"}] ) ``` --- ## Extended Thinking > **Opus 4.6 and Sonnet 4.6:** Use adaptive thinking. `budget_tokens` is deprecated on both Opus 4.6 and Sonnet 4.6. > **Older models:** Use `thinking: {type: "enabled", budget_tokens: N}` (must be < `max_tokens`, min 1024). ```python # Opus 4.6: adaptive thinking (recommended) response = client.messages.create( model="claude-opus-4-6", max_tokens=16000, thinking={"type": "adaptive"}, output_config={"effort": "high"}, # low | medium | high | max messages=[{"role": "user", "content": "Solve this step by step..."}] ) # Access thinking and response for block in response.content: if block.type == "thinking": print(f"Thinking: {block.thinking}") elif block.type == "text": print(f"Response: {block.text}") ``` --- ## Error Handling ```python import anthropic try: response = client.messages.create(...) except anthropic.BadRequestError as e: print(f"Bad request: {e.message}") except anthropic.AuthenticationError: print("Invalid API key") except anthropic.PermissionDeniedError: print("API key lacks required permissions") except anthropic.NotFoundError: print("Invalid model or endpoint") except anthropic.RateLimitError as e: retry_after = int(e.response.headers.get("retry-after", "60")) print(f"Rate limited. Retry after {retry_after}s.") except anthropic.APIStatusError as e: if e.status_code >= 500: print(f"Server error ({e.status_code}). Retry later.") else: print(f"API error: {e.message}") except anthropic.APIConnectionError: print("Network error. Check internet connection.") ``` --- ## Multi-Turn Conversations The API is stateless — send the full conversation history each time. ```python class ConversationManager: """Manage multi-turn conversations with the Claude API.""" def __init__(self, client: anthropic.Anthropic, model: str, system: str = None): self.client = client self.model = model self.system = system self.messages = [] def send(self, user_message: str, **kwargs) -> str: """Send a message and get a response.""" self.messages.append({"role": "user", "content": user_message}) response = self.client.messages.create( model=self.model, max_tokens=kwargs.get("max_tokens", 1024), system=self.system, messages=self.messages, **kwargs ) assistant_message = response.content[0].text self.messages.append({"role": "assistant", "content": assistant_message}) return assistant_message # Usage conversation = ConversationManager( client=anthropic.Anthropic(), model="claude-opus-4-6", system="You are a helpful assistant." ) response1 = conversation.send("My name is Alice.") response2 = conversation.send("What's my name?") # Claude remembers "Alice" ``` **Rules:** - Messages must alternate between `user` and `assistant` - First message must be `user` --- ### Compaction (long conversations) > **Beta, Opus 4.6 only.** When conversations approach the 200K context window, compaction automatically summarizes earlier context server-side. The API returns a `compaction` block; you must pass it back on subsequent requests — append `response.content`, not just the text. ```python import anthropic client = anthropic.Anthropic() messages = [] def chat(user_message: str) -> str: messages.append({"role": "user", "content": user_message}) response = client.beta.messages.create( betas=["compact-2026-01-12"], model="claude-opus-4-6", max_tokens=4096, messages=messages, context_management={ "edits": [{"type": "compact_20260112"}] } ) # Append full content — compaction blocks must be preserved messages.append({"role": "assistant", "content": response.content}) return next(block.text for block in response.content if block.type == "text") # Compaction triggers automatically when context grows large print(chat("Help me build a Python web scraper")) print(chat("Add support for JavaScript-rendered pages")) print(chat("Now add rate limiting and error handling")) ``` --- ## Stop Reasons The `stop_reason` field in the response indicates why the model stopped generating: | Value | Meaning | |-------|---------| | `end_turn` | Claude finished its response naturally | | `max_tokens` | Hit the `max_tokens` limit — increase it or use streaming | | `stop_sequence` | Hit a custom stop sequence | | `tool_use` | Claude wants to call a tool — execute it and continue | | `pause_turn` | Model paused and can be resumed (agentic flows) | | `refusal` | Claude refused for safety reasons — output may not match your schema | --- ## Cost Optimization Strategies ### 1. Use Prompt Caching for Repeated Context ```python # Automatic caching (simplest — caches the last cacheable block) response = client.messages.create( model="claude-opus-4-6", max_tokens=1024, cache_control={"type": "ephemeral"}, system=large_document_text, # e.g., 50KB of context messages=[{"role": "user", "content": "Summarize the key points"}] ) # First request: full cost # Subsequent requests: ~90% cheaper for cached portion ``` ### 2. Choose the Right Model ```python # Default to Opus for most tasks response = client.messages.create( model="claude-opus-4-6", # $5.00/$25.00 per 1M tokens max_tokens=1024, messages=[{"role": "user", "content": "Explain quantum computing"}] ) # Use Sonnet for high-volume production workloads standard_response = client.messages.create( model="claude-sonnet-4-6", # $3.00/$15.00 per 1M tokens max_tokens=1024, messages=[{"role": "user", "content": "Summarize this document"}] ) # Use Haiku only for simple, speed-critical tasks simple_response = client.messages.create( model="claude-haiku-4-5", # $1.00/$5.00 per 1M tokens max_tokens=256, messages=[{"role": "user", "content": "Classify this as positive or negative"}] ) ``` ### 3. Use Token Counting Before Requests ```python count_response = client.messages.count_tokens( model="claude-opus-4-6", messages=messages, system=system ) estimated_input_cost = count_response.input_tokens * 0.000005 # $5/1M tokens print(f"Estimated input cost: ${estimated_input_cost:.4f}") ``` --- ## Retry with Exponential Backoff > **Note:** The Anthropic SDK automatically retries rate limit (429) and server errors (5xx) with exponential backoff. You can configure this with `max_retries` (default: 2). Only implement custom retry logic if you need behavior beyond what the SDK provides. ```python import time import random import anthropic def call_with_retry( client: anthropic.Anthropic, max_retries: int = 5, base_delay: float = 1.0, max_delay: float = 60.0, **kwargs ): """Call the API with exponential backoff retry.""" last_exception = None for attempt in range(max_retries): try: return client.messages.create(**kwargs) except anthropic.RateLimitError as e: last_exception = e except anthropic.APIStatusError as e: if e.status_code >= 500: last_exception = e else: raise # Client errors (4xx except 429) should not be retried delay = min(base_delay * (2 ** attempt) + random.uniform(0, 1), max_delay) print(f"Retry {attempt + 1}/{max_retries} after {delay:.1f}s") time.sleep(delay) raise last_exception ``` ================================================ FILE: skills/claude-api/python/claude-api/batches.md ================================================ # Message Batches API — Python The Batches API (`POST /v1/messages/batches`) processes Messages API requests asynchronously at 50% of standard prices. ## Key Facts - Up to 100,000 requests or 256 MB per batch - Most batches complete within 1 hour; maximum 24 hours - Results available for 29 days after creation - 50% cost reduction on all token usage - All Messages API features supported (vision, tools, caching, etc.) --- ## Create a Batch ```python import anthropic from anthropic.types.message_create_params import MessageCreateParamsNonStreaming from anthropic.types.messages.batch_create_params import Request client = anthropic.Anthropic() message_batch = client.messages.batches.create( requests=[ Request( custom_id="request-1", params=MessageCreateParamsNonStreaming( model="claude-opus-4-6", max_tokens=1024, messages=[{"role": "user", "content": "Summarize climate change impacts"}] ) ), Request( custom_id="request-2", params=MessageCreateParamsNonStreaming( model="claude-opus-4-6", max_tokens=1024, messages=[{"role": "user", "content": "Explain quantum computing basics"}] ) ), ] ) print(f"Batch ID: {message_batch.id}") print(f"Status: {message_batch.processing_status}") ``` --- ## Poll for Completion ```python import time while True: batch = client.messages.batches.retrieve(message_batch.id) if batch.processing_status == "ended": break print(f"Status: {batch.processing_status}, processing: {batch.request_counts.processing}") time.sleep(60) print("Batch complete!") print(f"Succeeded: {batch.request_counts.succeeded}") print(f"Errored: {batch.request_counts.errored}") ``` --- ## Retrieve Results > **Note:** Examples below use `match/case` syntax, requiring Python 3.10+. For earlier versions, use `if/elif` chains instead. ```python for result in client.messages.batches.results(message_batch.id): match result.result.type: case "succeeded": print(f"[{result.custom_id}] {result.result.message.content[0].text[:100]}") case "errored": if result.result.error.type == "invalid_request": print(f"[{result.custom_id}] Validation error - fix request and retry") else: print(f"[{result.custom_id}] Server error - safe to retry") case "canceled": print(f"[{result.custom_id}] Canceled") case "expired": print(f"[{result.custom_id}] Expired - resubmit") ``` --- ## Cancel a Batch ```python cancelled = client.messages.batches.cancel(message_batch.id) print(f"Status: {cancelled.processing_status}") # "canceling" ``` --- ## Batch with Prompt Caching ```python shared_system = [ {"type": "text", "text": "You are a literary analyst."}, { "type": "text", "text": large_document_text, # Shared across all requests "cache_control": {"type": "ephemeral"} } ] message_batch = client.messages.batches.create( requests=[ Request( custom_id=f"analysis-{i}", params=MessageCreateParamsNonStreaming( model="claude-opus-4-6", max_tokens=1024, system=shared_system, messages=[{"role": "user", "content": question}] ) ) for i, question in enumerate(questions) ] ) ``` --- ## Full End-to-End Example ```python import anthropic import time from anthropic.types.message_create_params import MessageCreateParamsNonStreaming from anthropic.types.messages.batch_create_params import Request client = anthropic.Anthropic() # 1. Prepare requests items_to_classify = [ "The product quality is excellent!", "Terrible customer service, never again.", "It's okay, nothing special.", ] requests = [ Request( custom_id=f"classify-{i}", params=MessageCreateParamsNonStreaming( model="claude-haiku-4-5", max_tokens=50, messages=[{ "role": "user", "content": f"Classify as positive/negative/neutral (one word): {text}" }] ) ) for i, text in enumerate(items_to_classify) ] # 2. Create batch batch = client.messages.batches.create(requests=requests) print(f"Created batch: {batch.id}") # 3. Wait for completion while True: batch = client.messages.batches.retrieve(batch.id) if batch.processing_status == "ended": break time.sleep(10) # 4. Collect results results = {} for result in client.messages.batches.results(batch.id): if result.result.type == "succeeded": results[result.custom_id] = result.result.message.content[0].text for custom_id, classification in sorted(results.items()): print(f"{custom_id}: {classification}") ``` ================================================ FILE: skills/claude-api/python/claude-api/files-api.md ================================================ # Files API — Python The Files API uploads files for use in Messages API requests. Reference files via `file_id` in content blocks, avoiding re-uploads across multiple API calls. **Beta:** Pass `betas=["files-api-2025-04-14"]` in your API calls (the SDK sets the required header automatically). ## Key Facts - Maximum file size: 500 MB - Total storage: 100 GB per organization - Files persist until deleted - File operations (upload, list, delete) are free; content used in messages is billed as input tokens - Not available on Amazon Bedrock or Google Vertex AI --- ## Upload a File ```python import anthropic client = anthropic.Anthropic() uploaded = client.beta.files.upload( file=("report.pdf", open("report.pdf", "rb"), "application/pdf"), ) print(f"File ID: {uploaded.id}") print(f"Size: {uploaded.size_bytes} bytes") ``` --- ## Use a File in Messages ### PDF / Text Document ```python response = client.beta.messages.create( model="claude-opus-4-6", max_tokens=1024, messages=[{ "role": "user", "content": [ {"type": "text", "text": "Summarize the key findings in this report."}, { "type": "document", "source": {"type": "file", "file_id": uploaded.id}, "title": "Q4 Report", # optional "citations": {"enabled": True} # optional, enables citations } ] }], betas=["files-api-2025-04-14"], ) print(response.content[0].text) ``` ### Image ```python image_file = client.beta.files.upload( file=("photo.png", open("photo.png", "rb"), "image/png"), ) response = client.beta.messages.create( model="claude-opus-4-6", max_tokens=1024, messages=[{ "role": "user", "content": [ {"type": "text", "text": "What's in this image?"}, { "type": "image", "source": {"type": "file", "file_id": image_file.id} } ] }], betas=["files-api-2025-04-14"], ) ``` --- ## Manage Files ### List Files ```python files = client.beta.files.list() for f in files.data: print(f"{f.id}: {f.filename} ({f.size_bytes} bytes)") ``` ### Get File Metadata ```python file_info = client.beta.files.retrieve_metadata("file_011CNha8iCJcU1wXNR6q4V8w") print(f"Filename: {file_info.filename}") print(f"MIME type: {file_info.mime_type}") ``` ### Delete a File ```python client.beta.files.delete("file_011CNha8iCJcU1wXNR6q4V8w") ``` ### Download a File Only files created by the code execution tool or skills can be downloaded (not user-uploaded files). ```python file_content = client.beta.files.download("file_011CNha8iCJcU1wXNR6q4V8w") file_content.write_to_file("output.txt") ``` --- ## Full End-to-End Example Upload a document once, ask multiple questions about it: ```python import anthropic client = anthropic.Anthropic() # 1. Upload once uploaded = client.beta.files.upload( file=("contract.pdf", open("contract.pdf", "rb"), "application/pdf"), ) print(f"Uploaded: {uploaded.id}") # 2. Ask multiple questions using the same file_id questions = [ "What are the key terms and conditions?", "What is the termination clause?", "Summarize the payment schedule.", ] for question in questions: response = client.beta.messages.create( model="claude-opus-4-6", max_tokens=1024, messages=[{ "role": "user", "content": [ {"type": "text", "text": question}, { "type": "document", "source": {"type": "file", "file_id": uploaded.id} } ] }], betas=["files-api-2025-04-14"], ) print(f"\nQ: {question}") print(f"A: {response.content[0].text[:200]}") # 3. Clean up when done client.beta.files.delete(uploaded.id) ``` ================================================ FILE: skills/claude-api/python/claude-api/streaming.md ================================================ # Streaming — Python ## Quick Start ```python with client.messages.stream( model="claude-opus-4-6", max_tokens=1024, messages=[{"role": "user", "content": "Write a story"}] ) as stream: for text in stream.text_stream: print(text, end="", flush=True) ``` ### Async ```python async with async_client.messages.stream( model="claude-opus-4-6", max_tokens=1024, messages=[{"role": "user", "content": "Write a story"}] ) as stream: async for text in stream.text_stream: print(text, end="", flush=True) ``` --- ## Handling Different Content Types Claude may return text, thinking blocks, or tool use. Handle each appropriately: > **Opus 4.6:** Use `thinking: {type: "adaptive"}`. On older models, use `thinking: {type: "enabled", budget_tokens: N}` instead. ```python with client.messages.stream( model="claude-opus-4-6", max_tokens=16000, thinking={"type": "adaptive"}, messages=[{"role": "user", "content": "Analyze this problem"}] ) as stream: for event in stream: if event.type == "content_block_start": if event.content_block.type == "thinking": print("\n[Thinking...]") elif event.content_block.type == "text": print("\n[Response:]") elif event.type == "content_block_delta": if event.delta.type == "thinking_delta": print(event.delta.thinking, end="", flush=True) elif event.delta.type == "text_delta": print(event.delta.text, end="", flush=True) ``` --- ## Streaming with Tool Use The Python tool runner currently returns complete messages. Use streaming for individual API calls within a manual loop if you need per-token streaming with tools: ```python with client.messages.stream( model="claude-opus-4-6", max_tokens=4096, tools=tools, messages=messages ) as stream: for text in stream.text_stream: print(text, end="", flush=True) response = stream.get_final_message() # Continue with tool execution if response.stop_reason == "tool_use" ``` --- ## Getting the Final Message ```python with client.messages.stream( model="claude-opus-4-6", max_tokens=1024, messages=[{"role": "user", "content": "Hello"}] ) as stream: for text in stream.text_stream: print(text, end="", flush=True) # Get full message after streaming final_message = stream.get_final_message() print(f"\n\nTokens used: {final_message.usage.output_tokens}") ``` --- ## Streaming with Progress Updates ```python def stream_with_progress(client, **kwargs): """Stream a response with progress updates.""" total_tokens = 0 content_parts = [] with client.messages.stream(**kwargs) as stream: for event in stream: if event.type == "content_block_delta": if event.delta.type == "text_delta": text = event.delta.text content_parts.append(text) print(text, end="", flush=True) elif event.type == "message_delta": if event.usage and event.usage.output_tokens is not None: total_tokens = event.usage.output_tokens final_message = stream.get_final_message() print(f"\n\n[Tokens used: {total_tokens}]") return "".join(content_parts) ``` --- ## Error Handling in Streams ```python try: with client.messages.stream( model="claude-opus-4-6", max_tokens=1024, messages=[{"role": "user", "content": "Write a story"}] ) as stream: for text in stream.text_stream: print(text, end="", flush=True) except anthropic.APIConnectionError: print("\nConnection lost. Please retry.") except anthropic.RateLimitError: print("\nRate limited. Please wait and retry.") except anthropic.APIStatusError as e: print(f"\nAPI error: {e.status_code}") ``` --- ## Stream Event Types | Event Type | Description | When it fires | | --------------------- | --------------------------- | --------------------------------- | | `message_start` | Contains message metadata | Once at the beginning | | `content_block_start` | New content block beginning | When a text/tool_use block starts | | `content_block_delta` | Incremental content update | For each token/chunk | | `content_block_stop` | Content block complete | When a block finishes | | `message_delta` | Message-level updates | Contains `stop_reason`, usage | | `message_stop` | Message complete | Once at the end | ## Best Practices 1. **Always flush output** — Use `flush=True` to show tokens immediately 2. **Handle partial responses** — If the stream is interrupted, you may have incomplete content 3. **Track token usage** — The `message_delta` event contains usage information 4. **Use timeouts** — Set appropriate timeouts for your application 5. **Default to streaming** — Use `.get_final_message()` to get the complete response even when streaming, giving you timeout protection without needing to handle individual events ================================================ FILE: skills/claude-api/python/claude-api/tool-use.md ================================================ # Tool Use — Python For conceptual overview (tool definitions, tool choice, tips), see [shared/tool-use-concepts.md](../../shared/tool-use-concepts.md). ## Tool Runner (Recommended) **Beta:** The tool runner is in beta in the Python SDK. Use the `@beta_tool` decorator to define tools as typed functions, then pass them to `client.beta.messages.tool_runner()`: ```python import anthropic from anthropic import beta_tool client = anthropic.Anthropic() @beta_tool def get_weather(location: str, unit: str = "celsius") -> str: """Get current weather for a location. Args: location: City and state, e.g., San Francisco, CA. unit: Temperature unit, either "celsius" or "fahrenheit". """ # Your implementation here return f"72°F and sunny in {location}" # The tool runner handles the agentic loop automatically runner = client.beta.messages.tool_runner( model="claude-opus-4-6", max_tokens=4096, tools=[get_weather], messages=[{"role": "user", "content": "What's the weather in Paris?"}], ) # Each iteration yields a BetaMessage; iteration stops when Claude is done for message in runner: print(message) ``` For async usage, use `@beta_async_tool` with `async def` functions. **Key benefits of the tool runner:** - No manual loop — the SDK handles calling tools and feeding results back - Type-safe tool inputs via decorators - Tool schemas are generated automatically from function signatures - Iteration stops automatically when Claude has no more tool calls --- ## MCP Tool Conversion Helpers **Beta.** Convert [MCP (Model Context Protocol)](https://modelcontextprotocol.io/) tools, prompts, and resources to Anthropic API types for use with the tool runner. Requires `pip install anthropic[mcp]` (Python 3.10+). > **Note:** The Claude API also supports an `mcp_servers` parameter that lets Claude connect directly to remote MCP servers. Use these helpers instead when you need local MCP servers, prompts, resources, or more control over the MCP connection. ### MCP Tools with Tool Runner ```python from anthropic import AsyncAnthropic from anthropic.lib.tools.mcp import async_mcp_tool from mcp import ClientSession from mcp.client.stdio import stdio_client, StdioServerParameters client = AsyncAnthropic() async with stdio_client(StdioServerParameters(command="mcp-server")) as (read, write): async with ClientSession(read, write) as mcp_client: await mcp_client.initialize() tools_result = await mcp_client.list_tools() runner = await client.beta.messages.tool_runner( model="claude-opus-4-6", max_tokens=1024, messages=[{"role": "user", "content": "Use the available tools"}], tools=[async_mcp_tool(t, mcp_client) for t in tools_result.tools], ) async for message in runner: print(message) ``` For sync usage, use `mcp_tool` instead of `async_mcp_tool`. ### MCP Prompts ```python from anthropic.lib.tools.mcp import mcp_message prompt = await mcp_client.get_prompt(name="my-prompt") response = await client.beta.messages.create( model="claude-opus-4-6", max_tokens=1024, messages=[mcp_message(m) for m in prompt.messages], ) ``` ### MCP Resources as Content ```python from anthropic.lib.tools.mcp import mcp_resource_to_content resource = await mcp_client.read_resource(uri="file:///path/to/doc.txt") response = await client.beta.messages.create( model="claude-opus-4-6", max_tokens=1024, messages=[{ "role": "user", "content": [ mcp_resource_to_content(resource), {"type": "text", "text": "Summarize this document"}, ], }], ) ``` ### Upload MCP Resources as Files ```python from anthropic.lib.tools.mcp import mcp_resource_to_file resource = await mcp_client.read_resource(uri="file:///path/to/data.json") uploaded = await client.beta.files.upload(file=mcp_resource_to_file(resource)) ``` Conversion functions raise `UnsupportedMCPValueError` if an MCP value cannot be converted (e.g., unsupported content types like audio, unsupported MIME types). --- ## Manual Agentic Loop Use this when you need fine-grained control over the loop (e.g., custom logging, conditional tool execution, human-in-the-loop approval): ```python import anthropic client = anthropic.Anthropic() tools = [...] # Your tool definitions messages = [{"role": "user", "content": user_input}] # Agentic loop: keep going until Claude stops calling tools while True: response = client.messages.create( model="claude-opus-4-6", max_tokens=4096, tools=tools, messages=messages ) # If Claude is done (no more tool calls), break if response.stop_reason == "end_turn": break # Server-side tool hit iteration limit; re-send to continue if response.stop_reason == "pause_turn": messages = [ {"role": "user", "content": user_input}, {"role": "assistant", "content": response.content}, ] continue # Extract tool use blocks from the response tool_use_blocks = [b for b in response.content if b.type == "tool_use"] # Append assistant's response (including tool_use blocks) messages.append({"role": "assistant", "content": response.content}) # Execute each tool and collect results tool_results = [] for tool in tool_use_blocks: result = execute_tool(tool.name, tool.input) # Your implementation tool_results.append({ "type": "tool_result", "tool_use_id": tool.id, # Must match the tool_use block's id "content": result }) # Append tool results as a user message messages.append({"role": "user", "content": tool_results}) # Final response text final_text = next(b.text for b in response.content if b.type == "text") ``` --- ## Handling Tool Results ```python response = client.messages.create( model="claude-opus-4-6", max_tokens=1024, tools=tools, messages=[{"role": "user", "content": "What's the weather in Paris?"}] ) for block in response.content: if block.type == "tool_use": tool_name = block.name tool_input = block.input tool_use_id = block.id result = execute_tool(tool_name, tool_input) followup = client.messages.create( model="claude-opus-4-6", max_tokens=1024, tools=tools, messages=[ {"role": "user", "content": "What's the weather in Paris?"}, {"role": "assistant", "content": response.content}, { "role": "user", "content": [{ "type": "tool_result", "tool_use_id": tool_use_id, "content": result }] } ] ) ``` --- ## Multiple Tool Calls ```python tool_results = [] for block in response.content: if block.type == "tool_use": result = execute_tool(block.name, block.input) tool_results.append({ "type": "tool_result", "tool_use_id": block.id, "content": result }) # Send all results back at once if tool_results: followup = client.messages.create( model="claude-opus-4-6", max_tokens=1024, tools=tools, messages=[ *previous_messages, {"role": "assistant", "content": response.content}, {"role": "user", "content": tool_results} ] ) ``` --- ## Error Handling in Tool Results ```python tool_result = { "type": "tool_result", "tool_use_id": tool_use_id, "content": "Error: Location 'xyz' not found. Please provide a valid city name.", "is_error": True } ``` --- ## Tool Choice ```python response = client.messages.create( model="claude-opus-4-6", max_tokens=1024, tools=tools, tool_choice={"type": "tool", "name": "get_weather"}, # Force specific tool messages=[{"role": "user", "content": "What's the weather in Paris?"}] ) ``` --- ## Code Execution ### Basic Usage ```python import anthropic client = anthropic.Anthropic() response = client.messages.create( model="claude-opus-4-6", max_tokens=4096, messages=[{ "role": "user", "content": "Calculate the mean and standard deviation of [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]" }], tools=[{ "type": "code_execution_20260120", "name": "code_execution" }] ) for block in response.content: if block.type == "text": print(block.text) elif block.type == "bash_code_execution_tool_result": print(f"stdout: {block.content.stdout}") ``` ### Upload Files for Analysis ```python # 1. Upload a file uploaded = client.beta.files.upload(file=open("sales_data.csv", "rb")) # 2. Pass to code execution via container_upload block # Code execution is GA; Files API is still beta (pass via extra_headers) response = client.messages.create( model="claude-opus-4-6", max_tokens=4096, extra_headers={"anthropic-beta": "files-api-2025-04-14"}, messages=[{ "role": "user", "content": [ {"type": "text", "text": "Analyze this sales data. Show trends and create a visualization."}, {"type": "container_upload", "file_id": uploaded.id} ] }], tools=[{"type": "code_execution_20260120", "name": "code_execution"}] ) ``` ### Retrieve Generated Files ```python import os OUTPUT_DIR = "./claude_outputs" os.makedirs(OUTPUT_DIR, exist_ok=True) for block in response.content: if block.type == "bash_code_execution_tool_result": result = block.content if result.type == "bash_code_execution_result" and result.content: for file_ref in result.content: if file_ref.type == "bash_code_execution_output": metadata = client.beta.files.retrieve_metadata(file_ref.file_id) file_content = client.beta.files.download(file_ref.file_id) # Use basename to prevent path traversal; validate result safe_name = os.path.basename(metadata.filename) if not safe_name or safe_name in (".", ".."): print(f"Skipping invalid filename: {metadata.filename}") continue output_path = os.path.join(OUTPUT_DIR, safe_name) file_content.write_to_file(output_path) print(f"Saved: {output_path}") ``` ### Container Reuse ```python # First request: set up environment response1 = client.messages.create( model="claude-opus-4-6", max_tokens=4096, messages=[{"role": "user", "content": "Install tabulate and create data.json with sample data"}], tools=[{"type": "code_execution_20260120", "name": "code_execution"}] ) # Get container ID from response container_id = response1.container.id # Second request: reuse the same container response2 = client.messages.create( container=container_id, model="claude-opus-4-6", max_tokens=4096, messages=[{"role": "user", "content": "Read data.json and display as a formatted table"}], tools=[{"type": "code_execution_20260120", "name": "code_execution"}] ) ``` ### Response Structure ```python for block in response.content: if block.type == "text": print(block.text) # Claude's explanation elif block.type == "server_tool_use": print(f"Running: {block.name} - {block.input}") # What Claude is doing elif block.type == "bash_code_execution_tool_result": result = block.content if result.type == "bash_code_execution_result": if result.return_code == 0: print(f"Output: {result.stdout}") else: print(f"Error: {result.stderr}") else: print(f"Tool error: {result.error_code}") elif block.type == "text_editor_code_execution_tool_result": print(f"File operation: {block.content}") ``` --- ## Memory Tool ### Basic Usage ```python import anthropic client = anthropic.Anthropic() response = client.messages.create( model="claude-opus-4-6", max_tokens=2048, messages=[{"role": "user", "content": "Remember that my preferred language is Python."}], tools=[{"type": "memory_20250818", "name": "memory"}], ) ``` ### SDK Memory Helper Subclass `BetaAbstractMemoryTool`: ```python from anthropic.lib.tools import BetaAbstractMemoryTool class MyMemoryTool(BetaAbstractMemoryTool): def view(self, command): ... def create(self, command): ... def str_replace(self, command): ... def insert(self, command): ... def delete(self, command): ... def rename(self, command): ... memory = MyMemoryTool() # Use with tool runner runner = client.beta.messages.tool_runner( model="claude-opus-4-6", max_tokens=2048, tools=[memory], messages=[{"role": "user", "content": "Remember my preferences"}], ) for message in runner: print(message) ``` For full implementation examples, use WebFetch: - `https://github.com/anthropics/anthropic-sdk-python/blob/main/examples/memory/basic.py` --- ## Structured Outputs ### JSON Outputs (Pydantic — Recommended) ```python from pydantic import BaseModel from typing import List import anthropic class ContactInfo(BaseModel): name: str email: str plan: str interests: List[str] demo_requested: bool client = anthropic.Anthropic() response = client.messages.parse( model="claude-opus-4-6", max_tokens=1024, messages=[{ "role": "user", "content": "Extract: Jane Doe (jane@co.com) wants Enterprise, interested in API and SDKs, wants a demo." }], output_format=ContactInfo, ) # response.parsed_output is a validated ContactInfo instance contact = response.parsed_output print(contact.name) # "Jane Doe" print(contact.interests) # ["API", "SDKs"] ``` ### Raw Schema ```python response = client.messages.create( model="claude-opus-4-6", max_tokens=1024, messages=[{ "role": "user", "content": "Extract info: John Smith (john@example.com) wants the Enterprise plan." }], output_config={ "format": { "type": "json_schema", "schema": { "type": "object", "properties": { "name": {"type": "string"}, "email": {"type": "string"}, "plan": {"type": "string"}, "demo_requested": {"type": "boolean"} }, "required": ["name", "email", "plan", "demo_requested"], "additionalProperties": False } } } ) import json data = json.loads(response.content[0].text) ``` ### Strict Tool Use ```python response = client.messages.create( model="claude-opus-4-6", max_tokens=1024, messages=[{"role": "user", "content": "Book a flight to Tokyo for 2 passengers on March 15"}], tools=[{ "name": "book_flight", "description": "Book a flight to a destination", "strict": True, "input_schema": { "type": "object", "properties": { "destination": {"type": "string"}, "date": {"type": "string", "format": "date"}, "passengers": {"type": "integer", "enum": [1, 2, 3, 4, 5, 6, 7, 8]} }, "required": ["destination", "date", "passengers"], "additionalProperties": False } }] ) ``` ### Using Both Together ```python response = client.messages.create( model="claude-opus-4-6", max_tokens=1024, messages=[{"role": "user", "content": "Plan a trip to Paris next month"}], output_config={ "format": { "type": "json_schema", "schema": { "type": "object", "properties": { "summary": {"type": "string"}, "next_steps": {"type": "array", "items": {"type": "string"}} }, "required": ["summary", "next_steps"], "additionalProperties": False } } }, tools=[{ "name": "search_flights", "description": "Search for available flights", "strict": True, "input_schema": { "type": "object", "properties": { "destination": {"type": "string"}, "date": {"type": "string", "format": "date"} }, "required": ["destination", "date"], "additionalProperties": False } }] ) ``` ================================================ FILE: skills/claude-api/ruby/claude-api.md ================================================ # Claude API — Ruby > **Note:** The Ruby SDK supports the Claude API. A tool runner is available in beta via `client.beta.messages.tool_runner()`. Agent SDK is not yet available for Ruby. ## Installation ```bash gem install anthropic ``` ## Client Initialization ```ruby require "anthropic" # Default (uses ANTHROPIC_API_KEY env var) client = Anthropic::Client.new # Explicit API key client = Anthropic::Client.new(api_key: "your-api-key") ``` --- ## Basic Message Request ```ruby message = client.messages.create( model: :"claude-opus-4-6", max_tokens: 1024, messages: [ { role: "user", content: "What is the capital of France?" } ] ) puts message.content.first.text ``` --- ## Streaming ```ruby stream = client.messages.stream( model: :"claude-opus-4-6", max_tokens: 1024, messages: [{ role: "user", content: "Write a haiku" }] ) stream.text.each { |text| print(text) } ``` --- ## Tool Use The Ruby SDK supports tool use via raw JSON schema definitions and also provides a beta tool runner for automatic tool execution. ### Tool Runner (Beta) ```ruby class GetWeatherInput < Anthropic::BaseModel required :location, String, doc: "City and state, e.g. San Francisco, CA" end class GetWeather < Anthropic::BaseTool doc "Get the current weather for a location" input_schema GetWeatherInput def call(input) "The weather in #{input.location} is sunny and 72°F." end end client.beta.messages.tool_runner( model: :"claude-opus-4-6", max_tokens: 1024, tools: [GetWeather.new], messages: [{ role: "user", content: "What's the weather in San Francisco?" }] ).each_message do |message| puts message.content end ``` ### Manual Loop See the [shared tool use concepts](../shared/tool-use-concepts.md) for the tool definition format and agentic loop pattern. ================================================ FILE: skills/claude-api/shared/error-codes.md ================================================ # HTTP Error Codes Reference This file documents HTTP error codes returned by the Claude API, their common causes, and how to handle them. For language-specific error handling examples, see the `python/` or `typescript/` folders. ## Error Code Summary | Code | Error Type | Retryable | Common Cause | | ---- | ----------------------- | --------- | ------------------------------------ | | 400 | `invalid_request_error` | No | Invalid request format or parameters | | 401 | `authentication_error` | No | Invalid or missing API key | | 403 | `permission_error` | No | API key lacks permission | | 404 | `not_found_error` | No | Invalid endpoint or model ID | | 413 | `request_too_large` | No | Request exceeds size limits | | 429 | `rate_limit_error` | Yes | Too many requests | | 500 | `api_error` | Yes | Anthropic service issue | | 529 | `overloaded_error` | Yes | API is temporarily overloaded | ## Detailed Error Information ### 400 Bad Request **Causes:** - Malformed JSON in request body - Missing required parameters (`model`, `max_tokens`, `messages`) - Invalid parameter types (e.g., string where integer expected) - Empty messages array - Messages not alternating user/assistant **Example error:** ```json { "type": "error", "error": { "type": "invalid_request_error", "message": "messages: roles must alternate between \"user\" and \"assistant\"" } } ``` **Fix:** Validate request structure before sending. Check that: - `model` is a valid model ID - `max_tokens` is a positive integer - `messages` array is non-empty and alternates correctly --- ### 401 Unauthorized **Causes:** - Missing `x-api-key` header or `Authorization` header - Invalid API key format - Revoked or deleted API key **Fix:** Ensure `ANTHROPIC_API_KEY` environment variable is set correctly. --- ### 403 Forbidden **Causes:** - API key doesn't have access to the requested model - Organization-level restrictions - Attempting to access beta features without beta access **Fix:** Check your API key permissions in the Console. You may need a different API key or to request access to specific features. --- ### 404 Not Found **Causes:** - Typo in model ID (e.g., `claude-sonnet-4.6` instead of `claude-sonnet-4-6`) - Using deprecated model ID - Invalid API endpoint **Fix:** Use exact model IDs from the models documentation. You can use aliases (e.g., `claude-opus-4-6`). --- ### 413 Request Too Large **Causes:** - Request body exceeds maximum size - Too many tokens in input - Image data too large **Fix:** Reduce input size — truncate conversation history, compress/resize images, or split large documents into chunks. --- ### 400 Validation Errors Some 400 errors are specifically related to parameter validation: - `max_tokens` exceeds model's limit - Invalid `temperature` value (must be 0.0-1.0) - `budget_tokens` >= `max_tokens` in extended thinking - Invalid tool definition schema **Common mistake with extended thinking:** ``` # Wrong: budget_tokens must be < max_tokens thinking: budget_tokens=10000, max_tokens=1000 → Error! # Correct thinking: budget_tokens=10000, max_tokens=16000 ``` --- ### 429 Rate Limited **Causes:** - Exceeded requests per minute (RPM) - Exceeded tokens per minute (TPM) - Exceeded tokens per day (TPD) **Headers to check:** - `retry-after`: Seconds to wait before retrying - `x-ratelimit-limit-*`: Your limits - `x-ratelimit-remaining-*`: Remaining quota **Fix:** The Anthropic SDKs automatically retry 429 and 5xx errors with exponential backoff (default: `max_retries=2`). For custom retry behavior, see the language-specific error handling examples. --- ### 500 Internal Server Error **Causes:** - Temporary Anthropic service issue - Bug in API processing **Fix:** Retry with exponential backoff. If persistent, check [status.anthropic.com](https://status.anthropic.com). --- ### 529 Overloaded **Causes:** - High API demand - Service capacity reached **Fix:** Retry with exponential backoff. Consider using a different model (Haiku is often less loaded), spreading requests over time, or implementing request queuing. --- ## Common Mistakes and Fixes | Mistake | Error | Fix | | ------------------------------- | ---------------- | ------------------------------------------------------- | | `budget_tokens` >= `max_tokens` | 400 | Ensure `budget_tokens` < `max_tokens` | | Typo in model ID | 404 | Use valid model ID like `claude-opus-4-6` | | First message is `assistant` | 400 | First message must be `user` | | Consecutive same-role messages | 400 | Alternate `user` and `assistant` | | API key in code | 401 (leaked key) | Use environment variable | | Custom retry needs | 429/5xx | SDK retries automatically; customize with `max_retries` | ## Typed Exceptions in SDKs **Always use the SDK's typed exception classes** instead of checking error messages with string matching. Each HTTP error code maps to a specific exception class: | HTTP Code | TypeScript Class | Python Class | | --------- | --------------------------------- | --------------------------------- | | 400 | `Anthropic.BadRequestError` | `anthropic.BadRequestError` | | 401 | `Anthropic.AuthenticationError` | `anthropic.AuthenticationError` | | 403 | `Anthropic.PermissionDeniedError` | `anthropic.PermissionDeniedError` | | 404 | `Anthropic.NotFoundError` | `anthropic.NotFoundError` | | 429 | `Anthropic.RateLimitError` | `anthropic.RateLimitError` | | 500+ | `Anthropic.InternalServerError` | `anthropic.InternalServerError` | | Any | `Anthropic.APIError` | `anthropic.APIError` | ```typescript // ✅ Correct: use typed exceptions try { const response = await client.messages.create({...}); } catch (error) { if (error instanceof Anthropic.RateLimitError) { // Handle rate limiting } else if (error instanceof Anthropic.APIError) { console.error(`API error ${error.status}:`, error.message); } } // ❌ Wrong: don't check error messages with string matching try { const response = await client.messages.create({...}); } catch (error) { const msg = error instanceof Error ? error.message : String(error); if (msg.includes("429") || msg.includes("rate_limit")) { ... } } ``` All exception classes extend `Anthropic.APIError`, which has a `status` property. Use `instanceof` checks from most specific to least specific (e.g., check `RateLimitError` before `APIError`). ================================================ FILE: skills/claude-api/shared/live-sources.md ================================================ # Live Documentation Sources This file contains WebFetch URLs for fetching current information from platform.claude.com and Agent SDK repositories. Use these when users need the latest data that may have changed since the cached content was last updated. ## When to Use WebFetch - User explicitly asks for "latest" or "current" information - Cached data seems incorrect - User asks about features not covered in cached content - User needs specific API details or examples ## Claude API Documentation URLs ### Models & Pricing | Topic | URL | Extraction Prompt | | --------------- | --------------------------------------------------------------------- | ------------------------------------------------------------------------------- | | Models Overview | `https://platform.claude.com/docs/en/about-claude/models/overview.md` | "Extract current model IDs, context windows, and pricing for all Claude models" | | Pricing | `https://platform.claude.com/docs/en/pricing.md` | "Extract current pricing per million tokens for input and output" | ### Core Features | Topic | URL | Extraction Prompt | | ----------------- | ---------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | | Extended Thinking | `https://platform.claude.com/docs/en/build-with-claude/extended-thinking.md` | "Extract extended thinking parameters, budget_tokens requirements, and usage examples" | | Adaptive Thinking | `https://platform.claude.com/docs/en/build-with-claude/adaptive-thinking.md` | "Extract adaptive thinking setup, effort levels, and Claude Opus 4.6 usage examples" | | Effort Parameter | `https://platform.claude.com/docs/en/build-with-claude/effort.md` | "Extract effort levels, cost-quality tradeoffs, and interaction with thinking" | | Tool Use | `https://platform.claude.com/docs/en/agents-and-tools/tool-use/overview.md` | "Extract tool definition schema, tool_choice options, and handling tool results" | | Streaming | `https://platform.claude.com/docs/en/build-with-claude/streaming.md` | "Extract streaming event types, SDK examples, and best practices" | | Prompt Caching | `https://platform.claude.com/docs/en/build-with-claude/prompt-caching.md` | "Extract cache_control usage, pricing benefits, and implementation examples" | ### Media & Files | Topic | URL | Extraction Prompt | | ----------- | ---------------------------------------------------------------------- | ----------------------------------------------------------------- | | Vision | `https://platform.claude.com/docs/en/build-with-claude/vision.md` | "Extract supported image formats, size limits, and code examples" | | PDF Support | `https://platform.claude.com/docs/en/build-with-claude/pdf-support.md` | "Extract PDF handling capabilities, limits, and examples" | ### API Operations | Topic | URL | Extraction Prompt | | ---------------- | --------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | | Batch Processing | `https://platform.claude.com/docs/en/build-with-claude/batch-processing.md` | "Extract batch API endpoints, request format, and polling for results" | | Files API | `https://platform.claude.com/docs/en/build-with-claude/files.md` | "Extract file upload, download, and referencing in messages, including supported types and beta header" | | Token Counting | `https://platform.claude.com/docs/en/build-with-claude/token-counting.md` | "Extract token counting API usage and examples" | | Rate Limits | `https://platform.claude.com/docs/en/api/rate-limits.md` | "Extract current rate limits by tier and model" | | Errors | `https://platform.claude.com/docs/en/api/errors.md` | "Extract HTTP error codes, meanings, and retry guidance" | ### Tools | Topic | URL | Extraction Prompt | | -------------- | -------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | | Code Execution | `https://platform.claude.com/docs/en/agents-and-tools/tool-use/code-execution-tool.md` | "Extract code execution tool setup, file upload, container reuse, and response handling" | | Computer Use | `https://platform.claude.com/docs/en/agents-and-tools/tool-use/computer-use.md` | "Extract computer use tool setup, capabilities, and implementation examples" | ### Advanced Features | Topic | URL | Extraction Prompt | | ------------------ | ----------------------------------------------------------------------------- | --------------------------------------------------- | | Structured Outputs | `https://platform.claude.com/docs/en/build-with-claude/structured-outputs.md` | "Extract output_config.format usage and schema enforcement" | | Compaction | `https://platform.claude.com/docs/en/build-with-claude/compaction.md` | "Extract compaction setup, trigger config, and streaming with compaction" | | Citations | `https://platform.claude.com/docs/en/build-with-claude/citations.md` | "Extract citation format and implementation" | | Context Windows | `https://platform.claude.com/docs/en/build-with-claude/context-windows.md` | "Extract context window sizes and token management" | --- ## Claude API SDK Repositories | SDK | URL | Description | | ---------- | --------------------------------------------------------- | ------------------------------ | | Python | `https://github.com/anthropics/anthropic-sdk-python` | `anthropic` pip package source | | TypeScript | `https://github.com/anthropics/anthropic-sdk-typescript` | `@anthropic-ai/sdk` npm source | | Java | `https://github.com/anthropics/anthropic-sdk-java` | `anthropic-java` Maven source | | Go | `https://github.com/anthropics/anthropic-sdk-go` | Go module source | | Ruby | `https://github.com/anthropics/anthropic-sdk-ruby` | `anthropic` gem source | | C# | `https://github.com/anthropics/anthropic-sdk-csharp` | NuGet package source | | PHP | `https://github.com/anthropics/anthropic-sdk-php` | Composer package source | --- ## Agent SDK Documentation URLs ### Core Documentation | Topic | URL | Extraction Prompt | | -------------------- | ----------------------------------------------------------- | --------------------------------------------------------------- | | Agent SDK Overview | `https://platform.claude.com/docs/en/agent-sdk.md` | "Extract the Agent SDK overview, key features, and use cases" | | Agent SDK Python | `https://github.com/anthropics/claude-agent-sdk-python` | "Extract Python SDK installation, imports, and basic usage" | | Agent SDK TypeScript | `https://github.com/anthropics/claude-agent-sdk-typescript` | "Extract TypeScript SDK installation, imports, and basic usage" | ### SDK Reference (GitHub READMEs) | Topic | URL | Extraction Prompt | | -------------- | ----------------------------------------------------------------------------------------- | ------------------------------------------------------------ | | Python SDK | `https://raw.githubusercontent.com/anthropics/claude-agent-sdk-python/main/README.md` | "Extract Python SDK API reference, classes, and methods" | | TypeScript SDK | `https://raw.githubusercontent.com/anthropics/claude-agent-sdk-typescript/main/README.md` | "Extract TypeScript SDK API reference, types, and functions" | ### npm/PyPI Packages | Package | URL | Description | | ----------------------------------- | -------------------------------------------------------------- | ------------------------- | | claude-agent-sdk (Python) | `https://pypi.org/project/claude-agent-sdk/` | Python package on PyPI | | @anthropic-ai/claude-agent-sdk (TS) | `https://www.npmjs.com/package/@anthropic-ai/claude-agent-sdk` | TypeScript package on npm | ### GitHub Repositories | Resource | URL | Description | | -------------- | ----------------------------------------------------------- | ----------------------------------- | | Python SDK | `https://github.com/anthropics/claude-agent-sdk-python` | Python package source | | TypeScript SDK | `https://github.com/anthropics/claude-agent-sdk-typescript` | TypeScript/Node.js package source | | MCP Servers | `https://github.com/modelcontextprotocol` | Official MCP server implementations | --- ## Fallback Strategy If WebFetch fails (network issues, URL changed): 1. Use cached content from the language-specific files (note the cache date) 2. Inform user the data may be outdated 3. Suggest they check platform.claude.com or the GitHub repos directly ================================================ FILE: skills/claude-api/shared/models.md ================================================ # Claude Model Catalog **Only use exact model IDs listed in this file.** Never guess or construct model IDs — incorrect IDs will cause API errors. Use aliases wherever available. For the latest information, WebFetch the Models Overview URL in `shared/live-sources.md`. ## Current Models (recommended) | Friendly Name | Alias (use this) | Full ID | Context | Max Output | Status | |-------------------|---------------------|-------------------------------|----------------|------------|--------| | Claude Opus 4.6 | `claude-opus-4-6` | — | 200K (1M beta) | 128K | Active | | Claude Sonnet 4.6 | `claude-sonnet-4-6` | - | 200K (1M beta) | 64K | Active | | Claude Haiku 4.5 | `claude-haiku-4-5` | `claude-haiku-4-5-20251001` | 200K | 64K | Active | ### Model Descriptions - **Claude Opus 4.6** — Our most intelligent model for building agents and coding. Supports adaptive thinking (recommended), 128K max output tokens (requires streaming for large outputs). 1M context window available in beta via `context-1m-2025-08-07` header. - **Claude Sonnet 4.6** — Our best combination of speed and intelligence. Supports adaptive thinking (recommended). 1M context window available in beta via `context-1m-2025-08-07` header. 64K max output tokens. - **Claude Haiku 4.5** — Fastest and most cost-effective model for simple tasks. ## Legacy Models (still active) | Friendly Name | Alias (use this) | Full ID | Status | |-------------------|---------------------|-------------------------------|--------| | Claude Opus 4.5 | `claude-opus-4-5` | `claude-opus-4-5-20251101` | Active | | Claude Opus 4.1 | `claude-opus-4-1` | `claude-opus-4-1-20250805` | Active | | Claude Sonnet 4.5 | `claude-sonnet-4-5` | `claude-sonnet-4-5-20250929` | Active | | Claude Sonnet 4 | `claude-sonnet-4-0` | `claude-sonnet-4-20250514` | Active | | Claude Opus 4 | `claude-opus-4-0` | `claude-opus-4-20250514` | Active | ## Deprecated Models (retiring soon) | Friendly Name | Alias (use this) | Full ID | Status | |-------------------|---------------------|-------------------------------|------------| | Claude Haiku 3 | — | `claude-3-haiku-20240307` | Deprecated | ## Retired Models (no longer available) | Friendly Name | Full ID | Retired | |-------------------|-------------------------------|-------------| | Claude Sonnet 3.7 | `claude-3-7-sonnet-20250219` | Feb 19, 2026 | | Claude Haiku 3.5 | `claude-3-5-haiku-20241022` | Feb 19, 2026 | | Claude Opus 3 | `claude-3-opus-20240229` | Jan 5, 2026 | | Claude Sonnet 3.5 | `claude-3-5-sonnet-20241022` | Oct 28, 2025 | | Claude Sonnet 3.5 | `claude-3-5-sonnet-20240620` | Oct 28, 2025 | | Claude Sonnet 3 | `claude-3-sonnet-20240229` | Jul 21, 2025 | | Claude 2.1 | `claude-2.1` | Jul 21, 2025 | | Claude 2.0 | `claude-2.0` | Jul 21, 2025 | ## Resolving User Requests When a user asks for a model by name, use this table to find the correct model ID: | User says... | Use this model ID | |-------------------------------------------|--------------------------------| | "opus", "most powerful" | `claude-opus-4-6` | | "opus 4.6" | `claude-opus-4-6` | | "opus 4.5" | `claude-opus-4-5` | | "opus 4.1" | `claude-opus-4-1` | | "opus 4", "opus 4.0" | `claude-opus-4-0` | | "sonnet", "balanced" | `claude-sonnet-4-6` | | "sonnet 4.6" | `claude-sonnet-4-6` | | "sonnet 4.5" | `claude-sonnet-4-5` | | "sonnet 4", "sonnet 4.0" | `claude-sonnet-4-0` | | "sonnet 3.7" | Retired — suggest `claude-sonnet-4-5` | | "sonnet 3.5" | Retired — suggest `claude-sonnet-4-5` | | "haiku", "fast", "cheap" | `claude-haiku-4-5` | | "haiku 4.5" | `claude-haiku-4-5` | | "haiku 3.5" | Retired — suggest `claude-haiku-4-5` | | "haiku 3" | Deprecated — suggest `claude-haiku-4-5` | ================================================ FILE: skills/claude-api/shared/tool-use-concepts.md ================================================ # Tool Use Concepts This file covers the conceptual foundations of tool use with the Claude API. For language-specific code examples, see the `python/`, `typescript/`, or other language folders. ## User-Defined Tools ### Tool Definition Structure > **Note:** When using the Tool Runner (beta), tool schemas are generated automatically from your function signatures (Python), Zod schemas (TypeScript), annotated classes (Java), `jsonschema` struct tags (Go), or `BaseTool` subclasses (Ruby). The raw JSON schema format below is for the manual approach or SDKs without tool runner support. Each tool requires a name, description, and JSON Schema for its inputs: ```json { "name": "get_weather", "description": "Get current weather for a location", "input_schema": { "type": "object", "properties": { "location": { "type": "string", "description": "City and state, e.g., San Francisco, CA" }, "unit": { "type": "string", "enum": ["celsius", "fahrenheit"], "description": "Temperature unit" } }, "required": ["location"] } } ``` **Best practices for tool definitions:** - Use clear, descriptive names (e.g., `get_weather`, `search_database`, `send_email`) - Write detailed descriptions — Claude uses these to decide when to use the tool - Include descriptions for each property - Use `enum` for parameters with a fixed set of values - Mark truly required parameters in `required`; make others optional with defaults --- ### Tool Choice Options Control when Claude uses tools: | Value | Behavior | | --------------------------------- | --------------------------------------------- | | `{"type": "auto"}` | Claude decides whether to use tools (default) | | `{"type": "any"}` | Claude must use at least one tool | | `{"type": "tool", "name": "..."}` | Claude must use the specified tool | | `{"type": "none"}` | Claude cannot use tools | Any `tool_choice` value can also include `"disable_parallel_tool_use": true` to force Claude to use at most one tool per response. By default, Claude may request multiple tool calls in a single response. --- ### Tool Runner vs Manual Loop **Tool Runner (Recommended):** The SDK's tool runner handles the agentic loop automatically — it calls the API, detects tool use requests, executes your tool functions, feeds results back to Claude, and repeats until Claude stops calling tools. Available in Python, TypeScript, Java, Go, and Ruby SDKs (beta). The Python SDK also provides MCP conversion helpers (`anthropic.lib.tools.mcp`) to convert MCP tools, prompts, and resources for use with the tool runner — see `python/claude-api/tool-use.md` for details. **Manual Agentic Loop:** Use when you need fine-grained control over the loop (e.g., custom logging, conditional tool execution, human-in-the-loop approval). Loop until `stop_reason == "end_turn"`, always append the full `response.content` to preserve tool_use blocks, and ensure each `tool_result` includes the matching `tool_use_id`. **Stop reasons for server-side tools:** When using server-side tools (code execution, web search, etc.), the API runs a server-side sampling loop. If this loop reaches its default limit of 10 iterations, the response will have `stop_reason: "pause_turn"`. To continue, re-send the user message and assistant response and make another API request — the server will resume where it left off. Do NOT add an extra user message like "Continue." — the API detects the trailing `server_tool_use` block and knows to resume automatically. ```python # Handle pause_turn in your agentic loop if response.stop_reason == "pause_turn": messages = [ {"role": "user", "content": user_query}, {"role": "assistant", "content": response.content}, ] # Make another API request — server resumes automatically response = client.messages.create( model="claude-opus-4-6", messages=messages, tools=tools ) ``` Set a `max_continuations` limit (e.g., 5) to prevent infinite loops. For the full guide, see: `https://platform.claude.com/docs/en/build-with-claude/handling-stop-reasons` > **Security:** The tool runner executes your tool functions automatically whenever Claude requests them. For tools with side effects (sending emails, modifying databases, financial transactions), validate inputs within your tool functions and consider requiring confirmation for destructive operations. Use the manual agentic loop if you need human-in-the-loop approval before each tool execution. --- ### Handling Tool Results When Claude uses a tool, the response contains a `tool_use` block. You must: 1. Execute the tool with the provided input 2. Send the result back in a `tool_result` message 3. Continue the conversation **Error handling in tool results:** When a tool execution fails, set `"is_error": true` and provide an informative error message. Claude will typically acknowledge the error and either try a different approach or ask for clarification. **Multiple tool calls:** Claude can request multiple tools in a single response. Handle them all before continuing — send all results back in a single `user` message. --- ## Server-Side Tools: Code Execution The code execution tool lets Claude run code in a secure, sandboxed container. Unlike user-defined tools, server-side tools run on Anthropic's infrastructure — you don't execute anything client-side. Just include the tool definition and Claude handles the rest. ### Key Facts - Runs in an isolated container (1 CPU, 5 GiB RAM, 5 GiB disk) - No internet access (fully sandboxed) - Python 3.11 with data science libraries pre-installed - Containers persist for 30 days and can be reused across requests - Free when used with web search/web fetch tools; otherwise $0.05/hour after 1,550 free hours/month per organization ### Tool Definition The tool requires no schema — just declare it in the `tools` array: ```json { "type": "code_execution_20260120", "name": "code_execution" } ``` Claude automatically gains access to `bash_code_execution` (run shell commands) and `text_editor_code_execution` (create/view/edit files). ### Pre-installed Python Libraries - **Data science**: pandas, numpy, scipy, scikit-learn, statsmodels - **Visualization**: matplotlib, seaborn - **File processing**: openpyxl, xlsxwriter, pillow, pypdf, pdfplumber, python-docx, python-pptx - **Math**: sympy, mpmath - **Utilities**: tqdm, python-dateutil, pytz, sqlite3 Additional packages can be installed at runtime via `pip install`. ### Supported File Types for Upload | Type | Extensions | | ------ | ---------------------------------- | | Data | CSV, Excel (.xlsx/.xls), JSON, XML | | Images | JPEG, PNG, GIF, WebP | | Text | .txt, .md, .py, .js, etc. | ### Container Reuse Reuse containers across requests to maintain state (files, installed packages, variables). Extract the `container_id` from the first response and pass it to subsequent requests. ### Response Structure The response contains interleaved text and tool result blocks: - `text` — Claude's explanation - `server_tool_use` — What Claude is doing - `bash_code_execution_tool_result` — Code execution output (check `return_code` for success/failure) - `text_editor_code_execution_tool_result` — File operation results > **Security:** Always sanitize filenames with `os.path.basename()` / `path.basename()` before writing downloaded files to disk to prevent path traversal attacks. Write files to a dedicated output directory. --- ## Server-Side Tools: Web Search and Web Fetch Web search and web fetch let Claude search the web and retrieve page content. They run server-side — just include the tool definitions and Claude handles queries, fetching, and result processing automatically. ### Tool Definitions ```json [ { "type": "web_search_20260209", "name": "web_search" }, { "type": "web_fetch_20260209", "name": "web_fetch" } ] ``` ### Dynamic Filtering (Opus 4.6 / Sonnet 4.6) The `web_search_20260209` and `web_fetch_20260209` versions support **dynamic filtering** — Claude writes and executes code to filter search results before they reach the context window, improving accuracy and token efficiency. Dynamic filtering is built into these tool versions and activates automatically; you do not need to separately declare the `code_execution` tool or pass any beta header. ```json { "tools": [ { "type": "web_search_20260209", "name": "web_search" }, { "type": "web_fetch_20260209", "name": "web_fetch" } ] } ``` Without dynamic filtering, the previous `web_search_20250305` version is also available. > **Note:** Only include the standalone `code_execution` tool when your application needs code execution for its own purposes (data analysis, file processing, visualization) independent of web search. Including it alongside `_20260209` web tools creates a second execution environment that can confuse the model. --- ## Server-Side Tools: Programmatic Tool Calling Programmatic tool calling lets Claude execute complex multi-tool workflows in code, keeping intermediate results out of the context window. Claude writes code that calls your tools directly, reducing token usage for multi-step operations. For full documentation, use WebFetch: - URL: `https://platform.claude.com/docs/en/agents-and-tools/tool-use/programmatic-tool-calling` --- ## Server-Side Tools: Tool Search The tool search tool lets Claude dynamically discover tools from large libraries without loading all definitions into the context window. Useful when you have many tools but only a few are relevant to any given query. For full documentation, use WebFetch: - URL: `https://platform.claude.com/docs/en/agents-and-tools/tool-use/tool-search-tool` --- ## Tool Use Examples You can provide sample tool calls directly in your tool definitions to demonstrate usage patterns and reduce parameter errors. This helps Claude understand how to correctly format tool inputs, especially for tools with complex schemas. For full documentation, use WebFetch: - URL: `https://platform.claude.com/docs/en/agents-and-tools/tool-use/implement-tool-use` --- ## Server-Side Tools: Computer Use Computer use lets Claude interact with a desktop environment (screenshots, mouse, keyboard). It can be Anthropic-hosted (server-side, like code execution) or self-hosted (you provide the environment and execute actions client-side). For full documentation, use WebFetch: - URL: `https://platform.claude.com/docs/en/agents-and-tools/computer-use/overview` --- ## Client-Side Tools: Memory The memory tool enables Claude to store and retrieve information across conversations through a memory file directory. Claude can create, read, update, and delete files that persist between sessions. ### Key Facts - Client-side tool — you control storage via your implementation - Supports commands: `view`, `create`, `str_replace`, `insert`, `delete`, `rename` - Operates on files in a `/memories` directory - The SDKs provide helper classes/functions for implementing the memory backend > **Security:** Never store API keys, passwords, tokens, or other secrets in memory files. Be cautious with personally identifiable information (PII) — check data privacy regulations (GDPR, CCPA) before persisting user data. The reference implementations have no built-in access control; in multi-user systems, implement per-user memory directories and authentication in your tool handlers. For full implementation examples, use WebFetch: - Docs: `https://platform.claude.com/docs/en/agents-and-tools/tool-use/memory-tool.md` --- ## Structured Outputs Structured outputs constrain Claude's responses to follow a specific JSON schema, guaranteeing valid, parseable output. This is not a separate tool — it enhances the Messages API response format and/or tool parameter validation. Two features are available: - **JSON outputs** (`output_config.format`): Control Claude's response format - **Strict tool use** (`strict: true`): Guarantee valid tool parameter schemas **Supported models:** Claude Opus 4.6, Claude Sonnet 4.6, and Claude Haiku 4.5. Legacy models (Claude Opus 4.5, Claude Opus 4.1) also support structured outputs. > **Recommended:** Use `client.messages.parse()` which automatically validates responses against your schema. When using `messages.create()` directly, use `output_config: {format: {...}}`. The `output_format` convenience parameter is also accepted by some SDK methods (e.g., `.parse()`), but `output_config.format` is the canonical API-level parameter. ### JSON Schema Limitations **Supported:** - Basic types: object, array, string, integer, number, boolean, null - `enum`, `const`, `anyOf`, `allOf`, `$ref`/`$def` - String formats: `date-time`, `time`, `date`, `duration`, `email`, `hostname`, `uri`, `ipv4`, `ipv6`, `uuid` - `additionalProperties: false` (required for all objects) **Not supported:** - Recursive schemas - Numerical constraints (`minimum`, `maximum`, `multipleOf`) - String constraints (`minLength`, `maxLength`) - Complex array constraints - `additionalProperties` set to anything other than `false` The Python and TypeScript SDKs automatically handle unsupported constraints by removing them from the schema sent to the API and validating them client-side. ### Important Notes - **First request latency**: New schemas incur a one-time compilation cost. Subsequent requests with the same schema use a 24-hour cache. - **Refusals**: If Claude refuses for safety reasons (`stop_reason: "refusal"`), the output may not match your schema. - **Token limits**: If `stop_reason: "max_tokens"`, output may be incomplete. Increase `max_tokens`. - **Incompatible with**: Citations (returns 400 error), message prefilling. - **Works with**: Batches API, streaming, token counting, extended thinking. --- ## Tips for Effective Tool Use 1. **Provide detailed descriptions**: Claude relies heavily on descriptions to understand when and how to use tools 2. **Use specific tool names**: `get_current_weather` is better than `weather` 3. **Validate inputs**: Always validate tool inputs before execution 4. **Handle errors gracefully**: Return informative error messages so Claude can adapt 5. **Limit tool count**: Too many tools can confuse the model — keep the set focused 6. **Test tool interactions**: Verify Claude uses tools correctly in various scenarios For detailed tool use documentation, use WebFetch: - URL: `https://platform.claude.com/docs/en/agents-and-tools/tool-use/overview` ================================================ FILE: skills/claude-api/typescript/agent-sdk/README.md ================================================ # Agent SDK — TypeScript The Claude Agent SDK provides a higher-level interface for building AI agents with built-in tools, safety features, and agentic capabilities. ## Installation ```bash npm install @anthropic-ai/claude-agent-sdk ``` --- ## Quick Start ```typescript import { query } from "@anthropic-ai/claude-agent-sdk"; for await (const message of query({ prompt: "Explain this codebase", options: { allowedTools: ["Read", "Glob", "Grep"] }, })) { if ("result" in message) { console.log(message.result); } } ``` --- ## Built-in Tools | Tool | Description | | --------- | ------------------------------------ | | Read | Read files in the workspace | | Write | Create new files | | Edit | Make precise edits to existing files | | Bash | Execute shell commands | | Glob | Find files by pattern | | Grep | Search files by content | | WebSearch | Search the web for information | | WebFetch | Fetch and analyze web pages | | AskUserQuestion | Ask user clarifying questions | | Agent | Spawn subagents | --- ## Permission System ```typescript for await (const message of query({ prompt: "Refactor the authentication module", options: { allowedTools: ["Read", "Edit", "Write"], permissionMode: "acceptEdits", }, })) { if ("result" in message) console.log(message.result); } ``` Permission modes: - `"default"`: Prompt for dangerous operations - `"plan"`: Planning only, no execution - `"acceptEdits"`: Auto-accept file edits - `"dontAsk"`: Don't prompt (useful for CI/CD) - `"bypassPermissions"`: Skip all prompts (requires `allowDangerouslySkipPermissions: true` in options) --- ## MCP (Model Context Protocol) Support ```typescript for await (const message of query({ prompt: "Open example.com and describe what you see", options: { mcpServers: { playwright: { command: "npx", args: ["@playwright/mcp@latest"] }, }, }, })) { if ("result" in message) console.log(message.result); } ``` ### In-Process MCP Tools You can define custom tools that run in-process using `tool()` and `createSdkMcpServer`: ```typescript import { query, tool, createSdkMcpServer } from "@anthropic-ai/claude-agent-sdk"; import { z } from "zod"; const myTool = tool("my-tool", "Description", { input: z.string() }, async (args) => { return { content: [{ type: "text", text: "result" }] }; }); const server = createSdkMcpServer({ name: "my-server", tools: [myTool] }); // Pass to query for await (const message of query({ prompt: "Use my-tool to do something", options: { mcpServers: { myServer: server } }, })) { if ("result" in message) console.log(message.result); } ``` --- ## Hooks ```typescript import { query, HookCallback } from "@anthropic-ai/claude-agent-sdk"; import { appendFileSync } from "fs"; const logFileChange: HookCallback = async (input) => { const filePath = (input as any).tool_input?.file_path ?? "unknown"; appendFileSync( "./audit.log", `${new Date().toISOString()}: modified ${filePath}\n`, ); return {}; }; for await (const message of query({ prompt: "Refactor utils.py to improve readability", options: { allowedTools: ["Read", "Edit", "Write"], permissionMode: "acceptEdits", hooks: { PostToolUse: [{ matcher: "Edit|Write", hooks: [logFileChange] }], }, }, })) { if ("result" in message) console.log(message.result); } ``` Available hook events: `PreToolUse`, `PostToolUse`, `PostToolUseFailure`, `Notification`, `UserPromptSubmit`, `SessionStart`, `SessionEnd`, `Stop`, `SubagentStart`, `SubagentStop`, `PreCompact`, `PermissionRequest`, `Setup`, `TeammateIdle`, `TaskCompleted`, `ConfigChange` --- ## Common Options `query()` takes a top-level `prompt` (string) and an `options` object: ```typescript query({ prompt: "...", options: { ... } }) ``` | Option | Type | Description | | ----------------------------------- | ------ | -------------------------------------------------------------------------- | | `cwd` | string | Working directory for file operations | | `allowedTools` | array | Tools the agent can use (e.g., `["Read", "Edit", "Bash"]`) | | `tools` | array | Built-in tools to make available (restricts the default set) | | `disallowedTools` | array | Tools to explicitly disallow | | `permissionMode` | string | How to handle permission prompts | | `allowDangerouslySkipPermissions` | bool | Must be `true` to use `permissionMode: "bypassPermissions"` | | `mcpServers` | object | MCP servers to connect to | | `hooks` | object | Hooks for customizing behavior | | `systemPrompt` | string | Custom system prompt | | `maxTurns` | number | Maximum agent turns before stopping | | `maxBudgetUsd` | number | Maximum budget in USD for the query | | `model` | string | Model ID (default: determined by CLI) | | `agents` | object | Subagent definitions (`Record`) | | `outputFormat` | object | Structured output schema | | `thinking` | object | Thinking/reasoning control | | `betas` | array | Beta features to enable (e.g., `["context-1m-2025-08-07"]`) | | `settingSources` | array | Settings to load (e.g., `["project"]`). Default: none (no CLAUDE.md files) | | `env` | object | Environment variables to set for the session | --- ## Subagents ```typescript for await (const message of query({ prompt: "Use the code-reviewer agent to review this codebase", options: { allowedTools: ["Read", "Glob", "Grep", "Agent"], agents: { "code-reviewer": { description: "Expert code reviewer for quality and security reviews.", prompt: "Analyze code quality and suggest improvements.", tools: ["Read", "Glob", "Grep"], }, }, }, })) { if ("result" in message) console.log(message.result); } ``` --- ## Message Types ```typescript for await (const message of query({ prompt: "Find TODO comments", options: { allowedTools: ["Read", "Glob", "Grep"] }, })) { if ("result" in message) { console.log(message.result); } else if (message.type === "system" && message.subtype === "init") { const sessionId = message.session_id; // Capture for resuming later } } ``` --- ## Best Practices 1. **Always specify allowedTools** — Explicitly list which tools the agent can use 2. **Set working directory** — Always specify `cwd` for file operations 3. **Use appropriate permission modes** — Start with `"default"` and only escalate when needed 4. **Handle all message types** — Check for `result` property to get agent output 5. **Limit maxTurns** — Prevent runaway agents with reasonable limits ================================================ FILE: skills/claude-api/typescript/agent-sdk/patterns.md ================================================ # Agent SDK Patterns — TypeScript ## Basic Agent ```typescript import { query } from "@anthropic-ai/claude-agent-sdk"; async function main() { for await (const message of query({ prompt: "Explain what this repository does", options: { cwd: "/path/to/project", allowedTools: ["Read", "Glob", "Grep"], }, })) { if ("result" in message) { console.log(message.result); } } } main(); ``` --- ## Hooks ### After Tool Use Hook ```typescript import { query, HookCallback } from "@anthropic-ai/claude-agent-sdk"; import { appendFileSync } from "fs"; const logFileChange: HookCallback = async (input) => { const filePath = (input as any).tool_input?.file_path ?? "unknown"; appendFileSync( "./audit.log", `${new Date().toISOString()}: modified ${filePath}\n`, ); return {}; }; for await (const message of query({ prompt: "Refactor utils.py to improve readability", options: { allowedTools: ["Read", "Edit", "Write"], permissionMode: "acceptEdits", hooks: { PostToolUse: [{ matcher: "Edit|Write", hooks: [logFileChange] }], }, }, })) { if ("result" in message) console.log(message.result); } ``` --- ## Subagents ```typescript import { query } from "@anthropic-ai/claude-agent-sdk"; for await (const message of query({ prompt: "Use the code-reviewer agent to review this codebase", options: { allowedTools: ["Read", "Glob", "Grep", "Agent"], agents: { "code-reviewer": { description: "Expert code reviewer for quality and security reviews.", prompt: "Analyze code quality and suggest improvements.", tools: ["Read", "Glob", "Grep"], }, }, }, })) { if ("result" in message) console.log(message.result); } ``` --- ## MCP Server Integration ### Browser Automation (Playwright) ```typescript for await (const message of query({ prompt: "Open example.com and describe what you see", options: { mcpServers: { playwright: { command: "npx", args: ["@playwright/mcp@latest"] }, }, }, })) { if ("result" in message) console.log(message.result); } ``` --- ## Session Resumption ```typescript import { query } from "@anthropic-ai/claude-agent-sdk"; let sessionId: string | undefined; // First query: capture the session ID for await (const message of query({ prompt: "Read the authentication module", options: { allowedTools: ["Read", "Glob"] }, })) { if (message.type === "system" && message.subtype === "init") { sessionId = message.session_id; } } // Resume with full context from the first query for await (const message of query({ prompt: "Now find all places that call it", options: { resume: sessionId }, })) { if ("result" in message) console.log(message.result); } ``` --- ## Custom System Prompt ```typescript import { query } from "@anthropic-ai/claude-agent-sdk"; for await (const message of query({ prompt: "Review this code", options: { allowedTools: ["Read", "Glob", "Grep"], systemPrompt: `You are a senior code reviewer focused on: 1. Security vulnerabilities 2. Performance issues 3. Code maintainability Always provide specific line numbers and suggestions for improvement.`, }, })) { if ("result" in message) console.log(message.result); } ``` ================================================ FILE: skills/claude-api/typescript/claude-api/README.md ================================================ # Claude API — TypeScript ## Installation ```bash npm install @anthropic-ai/sdk ``` ## Client Initialization ```typescript import Anthropic from "@anthropic-ai/sdk"; // Default (uses ANTHROPIC_API_KEY env var) const client = new Anthropic(); // Explicit API key const client = new Anthropic({ apiKey: "your-api-key" }); ``` --- ## Basic Message Request ```typescript const response = await client.messages.create({ model: "claude-opus-4-6", max_tokens: 1024, messages: [{ role: "user", content: "What is the capital of France?" }], }); console.log(response.content[0].text); ``` --- ## System Prompts ```typescript const response = await client.messages.create({ model: "claude-opus-4-6", max_tokens: 1024, system: "You are a helpful coding assistant. Always provide examples in Python.", messages: [{ role: "user", content: "How do I read a JSON file?" }], }); ``` --- ## Vision (Images) ### URL ```typescript const response = await client.messages.create({ model: "claude-opus-4-6", max_tokens: 1024, messages: [ { role: "user", content: [ { type: "image", source: { type: "url", url: "https://example.com/image.png" }, }, { type: "text", text: "Describe this image" }, ], }, ], }); ``` ### Base64 ```typescript import fs from "fs"; const imageData = fs.readFileSync("image.png").toString("base64"); const response = await client.messages.create({ model: "claude-opus-4-6", max_tokens: 1024, messages: [ { role: "user", content: [ { type: "image", source: { type: "base64", media_type: "image/png", data: imageData }, }, { type: "text", text: "What's in this image?" }, ], }, ], }); ``` --- ## Prompt Caching ### Automatic Caching (Recommended) Use top-level `cache_control` to automatically cache the last cacheable block in the request: ```typescript const response = await client.messages.create({ model: "claude-opus-4-6", max_tokens: 1024, cache_control: { type: "ephemeral" }, // auto-caches the last cacheable block system: "You are an expert on this large document...", messages: [{ role: "user", content: "Summarize the key points" }], }); ``` ### Manual Cache Control For fine-grained control, add `cache_control` to specific content blocks: ```typescript const response = await client.messages.create({ model: "claude-opus-4-6", max_tokens: 1024, system: [ { type: "text", text: "You are an expert on this large document...", cache_control: { type: "ephemeral" }, // default TTL is 5 minutes }, ], messages: [{ role: "user", content: "Summarize the key points" }], }); // With explicit TTL (time-to-live) const response2 = await client.messages.create({ model: "claude-opus-4-6", max_tokens: 1024, system: [ { type: "text", text: "You are an expert on this large document...", cache_control: { type: "ephemeral", ttl: "1h" }, // 1 hour TTL }, ], messages: [{ role: "user", content: "Summarize the key points" }], }); ``` --- ## Extended Thinking > **Opus 4.6 and Sonnet 4.6:** Use adaptive thinking. `budget_tokens` is deprecated on both Opus 4.6 and Sonnet 4.6. > **Older models:** Use `thinking: {type: "enabled", budget_tokens: N}` (must be < `max_tokens`, min 1024). ```typescript // Opus 4.6: adaptive thinking (recommended) const response = await client.messages.create({ model: "claude-opus-4-6", max_tokens: 16000, thinking: { type: "adaptive" }, output_config: { effort: "high" }, // low | medium | high | max messages: [ { role: "user", content: "Solve this math problem step by step..." }, ], }); for (const block of response.content) { if (block.type === "thinking") { console.log("Thinking:", block.thinking); } else if (block.type === "text") { console.log("Response:", block.text); } } ``` --- ## Error Handling Use the SDK's typed exception classes — never check error messages with string matching: ```typescript import Anthropic from "@anthropic-ai/sdk"; try { const response = await client.messages.create({...}); } catch (error) { if (error instanceof Anthropic.BadRequestError) { console.error("Bad request:", error.message); } else if (error instanceof Anthropic.AuthenticationError) { console.error("Invalid API key"); } else if (error instanceof Anthropic.RateLimitError) { console.error("Rate limited - retry later"); } else if (error instanceof Anthropic.APIError) { console.error(`API error ${error.status}:`, error.message); } } ``` All classes extend `Anthropic.APIError` with a typed `status` field. Check from most specific to least specific. See [shared/error-codes.md](../../shared/error-codes.md) for the full error code reference. --- ## Multi-Turn Conversations The API is stateless — send the full conversation history each time. Use `Anthropic.MessageParam[]` to type the messages array: ```typescript const messages: Anthropic.MessageParam[] = [ { role: "user", content: "My name is Alice." }, { role: "assistant", content: "Hello Alice! Nice to meet you." }, { role: "user", content: "What's my name?" }, ]; const response = await client.messages.create({ model: "claude-opus-4-6", max_tokens: 1024, messages: messages, }); ``` **Rules:** - Messages must alternate between `user` and `assistant` - First message must be `user` - Use SDK types (`Anthropic.MessageParam`, `Anthropic.Message`, `Anthropic.Tool`, etc.) for all API data structures — don't redefine equivalent interfaces --- ### Compaction (long conversations) > **Beta, Opus 4.6 only.** When conversations approach the 200K context window, compaction automatically summarizes earlier context server-side. The API returns a `compaction` block; you must pass it back on subsequent requests — append `response.content`, not just the text. ```typescript import Anthropic from "@anthropic-ai/sdk"; const client = new Anthropic(); const messages: Anthropic.Beta.BetaMessageParam[] = []; async function chat(userMessage: string): Promise { messages.push({ role: "user", content: userMessage }); const response = await client.beta.messages.create({ betas: ["compact-2026-01-12"], model: "claude-opus-4-6", max_tokens: 4096, messages, context_management: { edits: [{ type: "compact_20260112" }], }, }); // Append full content — compaction blocks must be preserved messages.push({ role: "assistant", content: response.content }); const textBlock = response.content.find((block) => block.type === "text"); return textBlock?.text ?? ""; } // Compaction triggers automatically when context grows large console.log(await chat("Help me build a Python web scraper")); console.log(await chat("Add support for JavaScript-rendered pages")); console.log(await chat("Now add rate limiting and error handling")); ``` --- ## Stop Reasons The `stop_reason` field in the response indicates why the model stopped generating: | Value | Meaning | | --------------- | --------------------------------------------------------------- | | `end_turn` | Claude finished its response naturally | | `max_tokens` | Hit the `max_tokens` limit — increase it or use streaming | | `stop_sequence` | Hit a custom stop sequence | | `tool_use` | Claude wants to call a tool — execute it and continue | | `pause_turn` | Model paused and can be resumed (agentic flows) | | `refusal` | Claude refused for safety reasons — output may not match schema | --- ## Cost Optimization Strategies ### 1. Use Prompt Caching for Repeated Context ```typescript // Automatic caching (simplest — caches the last cacheable block) const response = await client.messages.create({ model: "claude-opus-4-6", max_tokens: 1024, cache_control: { type: "ephemeral" }, system: largeDocumentText, // e.g., 50KB of context messages: [{ role: "user", content: "Summarize the key points" }], }); // First request: full cost // Subsequent requests: ~90% cheaper for cached portion ``` ### 2. Use Token Counting Before Requests ```typescript const countResponse = await client.messages.countTokens({ model: "claude-opus-4-6", messages: messages, system: system, }); const estimatedInputCost = countResponse.input_tokens * 0.000005; // $5/1M tokens console.log(`Estimated input cost: $${estimatedInputCost.toFixed(4)}`); ``` ================================================ FILE: skills/claude-api/typescript/claude-api/batches.md ================================================ # Message Batches API — TypeScript The Batches API (`POST /v1/messages/batches`) processes Messages API requests asynchronously at 50% of standard prices. ## Key Facts - Up to 100,000 requests or 256 MB per batch - Most batches complete within 1 hour; maximum 24 hours - Results available for 29 days after creation - 50% cost reduction on all token usage - All Messages API features supported (vision, tools, caching, etc.) --- ## Create a Batch ```typescript import Anthropic from "@anthropic-ai/sdk"; const client = new Anthropic(); const messageBatch = await client.messages.batches.create({ requests: [ { custom_id: "request-1", params: { model: "claude-opus-4-6", max_tokens: 1024, messages: [ { role: "user", content: "Summarize climate change impacts" }, ], }, }, { custom_id: "request-2", params: { model: "claude-opus-4-6", max_tokens: 1024, messages: [ { role: "user", content: "Explain quantum computing basics" }, ], }, }, ], }); console.log(`Batch ID: ${messageBatch.id}`); console.log(`Status: ${messageBatch.processing_status}`); ``` --- ## Poll for Completion ```typescript let batch; while (true) { batch = await client.messages.batches.retrieve(messageBatch.id); if (batch.processing_status === "ended") break; console.log( `Status: ${batch.processing_status}, processing: ${batch.request_counts.processing}`, ); await new Promise((resolve) => setTimeout(resolve, 60_000)); } console.log("Batch complete!"); console.log(`Succeeded: ${batch.request_counts.succeeded}`); console.log(`Errored: ${batch.request_counts.errored}`); ``` --- ## Retrieve Results ```typescript for await (const result of await client.messages.batches.results( messageBatch.id, )) { switch (result.result.type) { case "succeeded": console.log( `[${result.custom_id}] ${result.result.message.content[0].text.slice(0, 100)}`, ); break; case "errored": if (result.result.error.type === "invalid_request") { console.log(`[${result.custom_id}] Validation error - fix and retry`); } else { console.log(`[${result.custom_id}] Server error - safe to retry`); } break; case "expired": console.log(`[${result.custom_id}] Expired - resubmit`); break; } } ``` --- ## Cancel a Batch ```typescript const cancelled = await client.messages.batches.cancel(messageBatch.id); console.log(`Status: ${cancelled.processing_status}`); // "canceling" ``` ================================================ FILE: skills/claude-api/typescript/claude-api/files-api.md ================================================ # Files API — TypeScript The Files API uploads files for use in Messages API requests. Reference files via `file_id` in content blocks, avoiding re-uploads across multiple API calls. **Beta:** Pass `betas: ["files-api-2025-04-14"]` in your API calls (the SDK sets the required header automatically). ## Key Facts - Maximum file size: 500 MB - Total storage: 100 GB per organization - Files persist until deleted - File operations (upload, list, delete) are free; content used in messages is billed as input tokens - Not available on Amazon Bedrock or Google Vertex AI --- ## Upload a File ```typescript import Anthropic, { toFile } from "@anthropic-ai/sdk"; import fs from "fs"; const client = new Anthropic(); const uploaded = await client.beta.files.upload({ file: await toFile(fs.createReadStream("report.pdf"), undefined, { type: "application/pdf", }), betas: ["files-api-2025-04-14"], }); console.log(`File ID: ${uploaded.id}`); console.log(`Size: ${uploaded.size_bytes} bytes`); ``` --- ## Use a File in Messages ### PDF / Text Document ```typescript const response = await client.beta.messages.create({ model: "claude-opus-4-6", max_tokens: 1024, messages: [ { role: "user", content: [ { type: "text", text: "Summarize the key findings in this report." }, { type: "document", source: { type: "file", file_id: uploaded.id }, title: "Q4 Report", citations: { enabled: true }, }, ], }, ], betas: ["files-api-2025-04-14"], }); console.log(response.content[0].text); ``` --- ## Manage Files ### List Files ```typescript const files = await client.beta.files.list({ betas: ["files-api-2025-04-14"], }); for (const f of files.data) { console.log(`${f.id}: ${f.filename} (${f.size_bytes} bytes)`); } ``` ### Delete a File ```typescript await client.beta.files.delete("file_011CNha8iCJcU1wXNR6q4V8w", { betas: ["files-api-2025-04-14"], }); ``` ### Download a File ```typescript const response = await client.beta.files.download( "file_011CNha8iCJcU1wXNR6q4V8w", { betas: ["files-api-2025-04-14"] }, ); const content = Buffer.from(await response.arrayBuffer()); await fs.promises.writeFile("output.txt", content); ``` ================================================ FILE: skills/claude-api/typescript/claude-api/streaming.md ================================================ # Streaming — TypeScript ## Quick Start ```typescript const stream = client.messages.stream({ model: "claude-opus-4-6", max_tokens: 1024, messages: [{ role: "user", content: "Write a story" }], }); for await (const event of stream) { if ( event.type === "content_block_delta" && event.delta.type === "text_delta" ) { process.stdout.write(event.delta.text); } } ``` --- ## Handling Different Content Types > **Opus 4.6:** Use `thinking: {type: "adaptive"}`. On older models, use `thinking: {type: "enabled", budget_tokens: N}` instead. ```typescript const stream = client.messages.stream({ model: "claude-opus-4-6", max_tokens: 16000, thinking: { type: "adaptive" }, messages: [{ role: "user", content: "Analyze this problem" }], }); for await (const event of stream) { switch (event.type) { case "content_block_start": switch (event.content_block.type) { case "thinking": console.log("\n[Thinking...]"); break; case "text": console.log("\n[Response:]"); break; } break; case "content_block_delta": switch (event.delta.type) { case "thinking_delta": process.stdout.write(event.delta.thinking); break; case "text_delta": process.stdout.write(event.delta.text); break; } break; } } ``` --- ## Streaming with Tool Use (Tool Runner) Use the tool runner with `stream: true`. The outer loop iterates over tool runner iterations (messages), the inner loop processes stream events: ```typescript import Anthropic from "@anthropic-ai/sdk"; import { betaZodTool } from "@anthropic-ai/sdk/helpers/beta/zod"; import { z } from "zod"; const client = new Anthropic(); const getWeather = betaZodTool({ name: "get_weather", description: "Get current weather for a location", inputSchema: z.object({ location: z.string().describe("City and state, e.g., San Francisco, CA"), }), run: async ({ location }) => `72°F and sunny in ${location}`, }); const runner = client.beta.messages.toolRunner({ model: "claude-opus-4-6", max_tokens: 4096, tools: [getWeather], messages: [ { role: "user", content: "What's the weather in Paris and London?" }, ], stream: true, }); // Outer loop: each tool runner iteration for await (const messageStream of runner) { // Inner loop: stream events for this iteration for await (const event of messageStream) { switch (event.type) { case "content_block_delta": switch (event.delta.type) { case "text_delta": process.stdout.write(event.delta.text); break; case "input_json_delta": // Tool input being streamed break; } break; } } } ``` --- ## Getting the Final Message ```typescript const stream = client.messages.stream({ model: "claude-opus-4-6", max_tokens: 1024, messages: [{ role: "user", content: "Hello" }], }); for await (const event of stream) { // Process events... } const finalMessage = await stream.finalMessage(); console.log(`Tokens used: ${finalMessage.usage.output_tokens}`); ``` --- ## Stream Event Types | Event Type | Description | When it fires | | --------------------- | --------------------------- | --------------------------------- | | `message_start` | Contains message metadata | Once at the beginning | | `content_block_start` | New content block beginning | When a text/tool_use block starts | | `content_block_delta` | Incremental content update | For each token/chunk | | `content_block_stop` | Content block complete | When a block finishes | | `message_delta` | Message-level updates | Contains `stop_reason`, usage | | `message_stop` | Message complete | Once at the end | ## Best Practices 1. **Always flush output** — Use `process.stdout.write()` for immediate display 2. **Handle partial responses** — If the stream is interrupted, you may have incomplete content 3. **Track token usage** — The `message_delta` event contains usage information 4. **Use `finalMessage()`** — Get the complete `Anthropic.Message` object even when streaming. Don't wrap `.on()` events in `new Promise()` — `finalMessage()` handles all completion/error/abort states internally 5. **Buffer for web UIs** — Consider buffering a few tokens before rendering to avoid excessive DOM updates 6. **Use `stream.on("text", ...)` for deltas** — The `text` event provides just the delta string, simpler than manually filtering `content_block_delta` events 7. **For agentic loops with streaming** — See the [Streaming Manual Loop](./tool-use.md#streaming-manual-loop) section in tool-use.md for combining `stream()` + `finalMessage()` with a tool-use loop ## Raw SSE Format If using raw HTTP (not SDKs), the stream returns Server-Sent Events: ``` event: message_start data: {"type":"message_start","message":{"id":"msg_...","type":"message",...}} event: content_block_start data: {"type":"content_block_start","index":0,"content_block":{"type":"text","text":""}} event: content_block_delta data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"Hello"}} event: content_block_stop data: {"type":"content_block_stop","index":0} event: message_delta data: {"type":"message_delta","delta":{"stop_reason":"end_turn"},"usage":{"output_tokens":12}} event: message_stop data: {"type":"message_stop"} ``` ================================================ FILE: skills/claude-api/typescript/claude-api/tool-use.md ================================================ # Tool Use — TypeScript For conceptual overview (tool definitions, tool choice, tips), see [shared/tool-use-concepts.md](../../shared/tool-use-concepts.md). ## Tool Runner (Recommended) **Beta:** The tool runner is in beta in the TypeScript SDK. Use `betaZodTool` with Zod schemas to define tools with a `run` function, then pass them to `client.beta.messages.toolRunner()`: ```typescript import Anthropic from "@anthropic-ai/sdk"; import { betaZodTool } from "@anthropic-ai/sdk/helpers/beta/zod"; import { z } from "zod"; const client = new Anthropic(); const getWeather = betaZodTool({ name: "get_weather", description: "Get current weather for a location", inputSchema: z.object({ location: z.string().describe("City and state, e.g., San Francisco, CA"), unit: z.enum(["celsius", "fahrenheit"]).optional(), }), run: async (input) => { // Your implementation here return `72°F and sunny in ${input.location}`; }, }); // The tool runner handles the agentic loop and returns the final message const finalMessage = await client.beta.messages.toolRunner({ model: "claude-opus-4-6", max_tokens: 4096, tools: [getWeather], messages: [{ role: "user", content: "What's the weather in Paris?" }], }); console.log(finalMessage.content); ``` **Key benefits of the tool runner:** - No manual loop — the SDK handles calling tools and feeding results back - Type-safe tool inputs via Zod schemas - Tool schemas are generated automatically from Zod definitions - Iteration stops automatically when Claude has no more tool calls --- ## Manual Agentic Loop Use this when you need fine-grained control (custom logging, conditional tool execution, streaming individual iterations, human-in-the-loop approval): ```typescript import Anthropic from "@anthropic-ai/sdk"; const client = new Anthropic(); const tools: Anthropic.Tool[] = [...]; // Your tool definitions let messages: Anthropic.MessageParam[] = [{ role: "user", content: userInput }]; while (true) { const response = await client.messages.create({ model: "claude-opus-4-6", max_tokens: 4096, tools: tools, messages: messages, }); if (response.stop_reason === "end_turn") break; // Server-side tool hit iteration limit; re-send to continue if (response.stop_reason === "pause_turn") { messages = [ { role: "user", content: userInput }, { role: "assistant", content: response.content }, ]; continue; } const toolUseBlocks = response.content.filter( (b): b is Anthropic.ToolUseBlock => b.type === "tool_use", ); messages.push({ role: "assistant", content: response.content }); const toolResults: Anthropic.ToolResultBlockParam[] = []; for (const tool of toolUseBlocks) { const result = await executeTool(tool.name, tool.input); toolResults.push({ type: "tool_result", tool_use_id: tool.id, content: result, }); } messages.push({ role: "user", content: toolResults }); } ``` ### Streaming Manual Loop Use `client.messages.stream()` + `finalMessage()` instead of `.create()` when you need streaming within a manual loop. Text deltas are streamed on each iteration; `finalMessage()` collects the complete `Message` so you can inspect `stop_reason` and extract tool-use blocks: ```typescript import Anthropic from "@anthropic-ai/sdk"; const client = new Anthropic(); const tools: Anthropic.Tool[] = [...]; let messages: Anthropic.MessageParam[] = [{ role: "user", content: userInput }]; while (true) { const stream = client.messages.stream({ model: "claude-opus-4-6", max_tokens: 4096, tools, messages, }); // Stream text deltas on each iteration stream.on("text", (delta) => { process.stdout.write(delta); }); // finalMessage() resolves with the complete Message — no need to // manually wire up .on("message") / .on("error") / .on("abort") const message = await stream.finalMessage(); if (message.stop_reason === "end_turn") break; // Server-side tool hit iteration limit; re-send to continue if (message.stop_reason === "pause_turn") { messages = [ { role: "user", content: userInput }, { role: "assistant", content: message.content }, ]; continue; } const toolUseBlocks = message.content.filter( (b): b is Anthropic.ToolUseBlock => b.type === "tool_use", ); messages.push({ role: "assistant", content: message.content }); const toolResults: Anthropic.ToolResultBlockParam[] = []; for (const tool of toolUseBlocks) { const result = await executeTool(tool.name, tool.input); toolResults.push({ type: "tool_result", tool_use_id: tool.id, content: result, }); } messages.push({ role: "user", content: toolResults }); } ``` > **Important:** Don't wrap `.on()` events in `new Promise()` to collect the final message — use `stream.finalMessage()` instead. The SDK handles all error/abort/completion states internally. > **Error handling in the loop:** Use the SDK's typed exceptions (e.g., `Anthropic.RateLimitError`, `Anthropic.APIError`) — see [Error Handling](./README.md#error-handling) for examples. Don't check error messages with string matching. > **SDK types:** Use `Anthropic.MessageParam`, `Anthropic.Tool`, `Anthropic.ToolUseBlock`, `Anthropic.ToolResultBlockParam`, `Anthropic.Message`, etc. for all API-related data structures. Don't redefine equivalent interfaces. --- ## Handling Tool Results ```typescript const response = await client.messages.create({ model: "claude-opus-4-6", max_tokens: 1024, tools: tools, messages: [{ role: "user", content: "What's the weather in Paris?" }], }); for (const block of response.content) { if (block.type === "tool_use") { const result = await executeTool(block.name, block.input); const followup = await client.messages.create({ model: "claude-opus-4-6", max_tokens: 1024, tools: tools, messages: [ { role: "user", content: "What's the weather in Paris?" }, { role: "assistant", content: response.content }, { role: "user", content: [ { type: "tool_result", tool_use_id: block.id, content: result }, ], }, ], }); } } ``` --- ## Tool Choice ```typescript const response = await client.messages.create({ model: "claude-opus-4-6", max_tokens: 1024, tools: tools, tool_choice: { type: "tool", name: "get_weather" }, messages: [{ role: "user", content: "What's the weather in Paris?" }], }); ``` --- ## Code Execution ### Basic Usage ```typescript import Anthropic from "@anthropic-ai/sdk"; const client = new Anthropic(); const response = await client.messages.create({ model: "claude-opus-4-6", max_tokens: 4096, messages: [ { role: "user", content: "Calculate the mean and standard deviation of [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]", }, ], tools: [{ type: "code_execution_20260120", name: "code_execution" }], }); ``` ### Upload Files for Analysis ```typescript import Anthropic, { toFile } from "@anthropic-ai/sdk"; import { createReadStream } from "fs"; const client = new Anthropic(); // 1. Upload a file const uploaded = await client.beta.files.upload({ file: await toFile(createReadStream("sales_data.csv"), undefined, { type: "text/csv", }), betas: ["files-api-2025-04-14"], }); // 2. Pass to code execution // Code execution is GA; Files API is still beta (pass via RequestOptions) const response = await client.messages.create( { model: "claude-opus-4-6", max_tokens: 4096, messages: [ { role: "user", content: [ { type: "text", text: "Analyze this sales data. Show trends and create a visualization.", }, { type: "container_upload", file_id: uploaded.id }, ], }, ], tools: [{ type: "code_execution_20260120", name: "code_execution" }], }, { headers: { "anthropic-beta": "files-api-2025-04-14" } }, ); ``` ### Retrieve Generated Files ```typescript import path from "path"; import fs from "fs"; const OUTPUT_DIR = "./claude_outputs"; await fs.promises.mkdir(OUTPUT_DIR, { recursive: true }); for (const block of response.content) { if (block.type === "bash_code_execution_tool_result") { const result = block.content; if (result.type === "bash_code_execution_result" && result.content) { for (const fileRef of result.content) { if (fileRef.type === "bash_code_execution_output") { const metadata = await client.beta.files.retrieveMetadata( fileRef.file_id, ); const response = await client.beta.files.download(fileRef.file_id); const fileBytes = Buffer.from(await response.arrayBuffer()); const safeName = path.basename(metadata.filename); if (!safeName || safeName === "." || safeName === "..") { console.warn(`Skipping invalid filename: ${metadata.filename}`); continue; } const outputPath = path.join(OUTPUT_DIR, safeName); await fs.promises.writeFile(outputPath, fileBytes); console.log(`Saved: ${outputPath}`); } } } } } ``` ### Container Reuse ```typescript // First request: set up environment const response1 = await client.messages.create({ model: "claude-opus-4-6", max_tokens: 4096, messages: [ { role: "user", content: "Install tabulate and create data.json with sample user data", }, ], tools: [{ type: "code_execution_20260120", name: "code_execution" }], }); // Reuse container const containerId = response1.container.id; const response2 = await client.messages.create({ container: containerId, model: "claude-opus-4-6", max_tokens: 4096, messages: [ { role: "user", content: "Read data.json and display as a formatted table", }, ], tools: [{ type: "code_execution_20260120", name: "code_execution" }], }); ``` --- ## Memory Tool ### Basic Usage ```typescript const response = await client.messages.create({ model: "claude-opus-4-6", max_tokens: 2048, messages: [ { role: "user", content: "Remember that my preferred language is TypeScript.", }, ], tools: [{ type: "memory_20250818", name: "memory" }], }); ``` ### SDK Memory Helper Use `betaMemoryTool` with a `MemoryToolHandlers` implementation: ```typescript import { betaMemoryTool, type MemoryToolHandlers, } from "@anthropic-ai/sdk/helpers/beta/memory"; const handlers: MemoryToolHandlers = { async view(command) { ... }, async create(command) { ... }, async str_replace(command) { ... }, async insert(command) { ... }, async delete(command) { ... }, async rename(command) { ... }, }; const memory = betaMemoryTool(handlers); const runner = client.beta.messages.toolRunner({ model: "claude-opus-4-6", max_tokens: 2048, tools: [memory], messages: [{ role: "user", content: "Remember my preferences" }], }); for await (const message of runner) { console.log(message); } ``` For full implementation examples, use WebFetch: - `https://github.com/anthropics/anthropic-sdk-typescript/blob/main/examples/tools-helpers-memory.ts` --- ## Structured Outputs ### JSON Outputs (Zod — Recommended) ```typescript import Anthropic from "@anthropic-ai/sdk"; import { z } from "zod"; import { zodOutputFormat } from "@anthropic-ai/sdk/helpers/zod"; const ContactInfoSchema = z.object({ name: z.string(), email: z.string(), plan: z.string(), interests: z.array(z.string()), demo_requested: z.boolean(), }); const client = new Anthropic(); const response = await client.messages.parse({ model: "claude-opus-4-6", max_tokens: 1024, messages: [ { role: "user", content: "Extract: Jane Doe (jane@co.com) wants Enterprise, interested in API and SDKs, wants a demo.", }, ], output_config: { format: zodOutputFormat(ContactInfoSchema), }, }); console.log(response.parsed_output.name); // "Jane Doe" ``` ### Strict Tool Use ```typescript const response = await client.messages.create({ model: "claude-opus-4-6", max_tokens: 1024, messages: [ { role: "user", content: "Book a flight to Tokyo for 2 passengers on March 15", }, ], tools: [ { name: "book_flight", description: "Book a flight to a destination", strict: true, input_schema: { type: "object", properties: { destination: { type: "string" }, date: { type: "string", format: "date" }, passengers: { type: "integer", enum: [1, 2, 3, 4, 5, 6, 7, 8], }, }, required: ["destination", "date", "passengers"], additionalProperties: false, }, }, ], }); ``` ================================================ FILE: skills/doc-coauthoring/SKILL.md ================================================ --- name: doc-coauthoring description: Guide users through a structured workflow for co-authoring documentation. Use when user wants to write documentation, proposals, technical specs, decision docs, or similar structured content. This workflow helps users efficiently transfer context, refine content through iteration, and verify the doc works for readers. Trigger when user mentions writing docs, creating proposals, drafting specs, or similar documentation tasks. --- # Doc Co-Authoring Workflow This skill provides a structured workflow for guiding users through collaborative document creation. Act as an active guide, walking users through three stages: Context Gathering, Refinement & Structure, and Reader Testing. ## When to Offer This Workflow **Trigger conditions:** - User mentions writing documentation: "write a doc", "draft a proposal", "create a spec", "write up" - User mentions specific doc types: "PRD", "design doc", "decision doc", "RFC" - User seems to be starting a substantial writing task **Initial offer:** Offer the user a structured workflow for co-authoring the document. Explain the three stages: 1. **Context Gathering**: User provides all relevant context while Claude asks clarifying questions 2. **Refinement & Structure**: Iteratively build each section through brainstorming and editing 3. **Reader Testing**: Test the doc with a fresh Claude (no context) to catch blind spots before others read it Explain that this approach helps ensure the doc works well when others read it (including when they paste it into Claude). Ask if they want to try this workflow or prefer to work freeform. If user declines, work freeform. If user accepts, proceed to Stage 1. ## Stage 1: Context Gathering **Goal:** Close the gap between what the user knows and what Claude knows, enabling smart guidance later. ### Initial Questions Start by asking the user for meta-context about the document: 1. What type of document is this? (e.g., technical spec, decision doc, proposal) 2. Who's the primary audience? 3. What's the desired impact when someone reads this? 4. Is there a template or specific format to follow? 5. Any other constraints or context to know? Inform them they can answer in shorthand or dump information however works best for them. **If user provides a template or mentions a doc type:** - Ask if they have a template document to share - If they provide a link to a shared document, use the appropriate integration to fetch it - If they provide a file, read it **If user mentions editing an existing shared document:** - Use the appropriate integration to read the current state - Check for images without alt-text - If images exist without alt-text, explain that when others use Claude to understand the doc, Claude won't be able to see them. Ask if they want alt-text generated. If so, request they paste each image into chat for descriptive alt-text generation. ### Info Dumping Once initial questions are answered, encourage the user to dump all the context they have. Request information such as: - Background on the project/problem - Related team discussions or shared documents - Why alternative solutions aren't being used - Organizational context (team dynamics, past incidents, politics) - Timeline pressures or constraints - Technical architecture or dependencies - Stakeholder concerns Advise them not to worry about organizing it - just get it all out. Offer multiple ways to provide context: - Info dump stream-of-consciousness - Point to team channels or threads to read - Link to shared documents **If integrations are available** (e.g., Slack, Teams, Google Drive, SharePoint, or other MCP servers), mention that these can be used to pull in context directly. **If no integrations are detected and in Claude.ai or Claude app:** Suggest they can enable connectors in their Claude settings to allow pulling context from messaging apps and document storage directly. Inform them clarifying questions will be asked once they've done their initial dump. **During context gathering:** - If user mentions team channels or shared documents: - If integrations available: Inform them the content will be read now, then use the appropriate integration - If integrations not available: Explain lack of access. Suggest they enable connectors in Claude settings, or paste the relevant content directly. - If user mentions entities/projects that are unknown: - Ask if connected tools should be searched to learn more - Wait for user confirmation before searching - As user provides context, track what's being learned and what's still unclear **Asking clarifying questions:** When user signals they've done their initial dump (or after substantial context provided), ask clarifying questions to ensure understanding: Generate 5-10 numbered questions based on gaps in the context. Inform them they can use shorthand to answer (e.g., "1: yes, 2: see #channel, 3: no because backwards compat"), link to more docs, point to channels to read, or just keep info-dumping. Whatever's most efficient for them. **Exit condition:** Sufficient context has been gathered when questions show understanding - when edge cases and trade-offs can be asked about without needing basics explained. **Transition:** Ask if there's any more context they want to provide at this stage, or if it's time to move on to drafting the document. If user wants to add more, let them. When ready, proceed to Stage 2. ## Stage 2: Refinement & Structure **Goal:** Build the document section by section through brainstorming, curation, and iterative refinement. **Instructions to user:** Explain that the document will be built section by section. For each section: 1. Clarifying questions will be asked about what to include 2. 5-20 options will be brainstormed 3. User will indicate what to keep/remove/combine 4. The section will be drafted 5. It will be refined through surgical edits Start with whichever section has the most unknowns (usually the core decision/proposal), then work through the rest. **Section ordering:** If the document structure is clear: Ask which section they'd like to start with. Suggest starting with whichever section has the most unknowns. For decision docs, that's usually the core proposal. For specs, it's typically the technical approach. Summary sections are best left for last. If user doesn't know what sections they need: Based on the type of document and template, suggest 3-5 sections appropriate for the doc type. Ask if this structure works, or if they want to adjust it. **Once structure is agreed:** Create the initial document structure with placeholder text for all sections. **If access to artifacts is available:** Use `create_file` to create an artifact. This gives both Claude and the user a scaffold to work from. Inform them that the initial structure with placeholders for all sections will be created. Create artifact with all section headers and brief placeholder text like "[To be written]" or "[Content here]". Provide the scaffold link and indicate it's time to fill in each section. **If no access to artifacts:** Create a markdown file in the working directory. Name it appropriately (e.g., `decision-doc.md`, `technical-spec.md`). Inform them that the initial structure with placeholders for all sections will be created. Create file with all section headers and placeholder text. Confirm the filename has been created and indicate it's time to fill in each section. **For each section:** ### Step 1: Clarifying Questions Announce work will begin on the [SECTION NAME] section. Ask 5-10 clarifying questions about what should be included: Generate 5-10 specific questions based on context and section purpose. Inform them they can answer in shorthand or just indicate what's important to cover. ### Step 2: Brainstorming For the [SECTION NAME] section, brainstorm [5-20] things that might be included, depending on the section's complexity. Look for: - Context shared that might have been forgotten - Angles or considerations not yet mentioned Generate 5-20 numbered options based on section complexity. At the end, offer to brainstorm more if they want additional options. ### Step 3: Curation Ask which points should be kept, removed, or combined. Request brief justifications to help learn priorities for the next sections. Provide examples: - "Keep 1,4,7,9" - "Remove 3 (duplicates 1)" - "Remove 6 (audience already knows this)" - "Combine 11 and 12" **If user gives freeform feedback** (e.g., "looks good" or "I like most of it but...") instead of numbered selections, extract their preferences and proceed. Parse what they want kept/removed/changed and apply it. ### Step 4: Gap Check Based on what they've selected, ask if there's anything important missing for the [SECTION NAME] section. ### Step 5: Drafting Use `str_replace` to replace the placeholder text for this section with the actual drafted content. Announce the [SECTION NAME] section will be drafted now based on what they've selected. **If using artifacts:** After drafting, provide a link to the artifact. Ask them to read through it and indicate what to change. Note that being specific helps learning for the next sections. **If using a file (no artifacts):** After drafting, confirm completion. Inform them the [SECTION NAME] section has been drafted in [filename]. Ask them to read through it and indicate what to change. Note that being specific helps learning for the next sections. **Key instruction for user (include when drafting the first section):** Provide a note: Instead of editing the doc directly, ask them to indicate what to change. This helps learning of their style for future sections. For example: "Remove the X bullet - already covered by Y" or "Make the third paragraph more concise". ### Step 6: Iterative Refinement As user provides feedback: - Use `str_replace` to make edits (never reprint the whole doc) - **If using artifacts:** Provide link to artifact after each edit - **If using files:** Just confirm edits are complete - If user edits doc directly and asks to read it: mentally note the changes they made and keep them in mind for future sections (this shows their preferences) **Continue iterating** until user is satisfied with the section. ### Quality Checking After 3 consecutive iterations with no substantial changes, ask if anything can be removed without losing important information. When section is done, confirm [SECTION NAME] is complete. Ask if ready to move to the next section. **Repeat for all sections.** ### Near Completion As approaching completion (80%+ of sections done), announce intention to re-read the entire document and check for: - Flow and consistency across sections - Redundancy or contradictions - Anything that feels like "slop" or generic filler - Whether every sentence carries weight Read entire document and provide feedback. **When all sections are drafted and refined:** Announce all sections are drafted. Indicate intention to review the complete document one more time. Review for overall coherence, flow, completeness. Provide any final suggestions. Ask if ready to move to Reader Testing, or if they want to refine anything else. ## Stage 3: Reader Testing **Goal:** Test the document with a fresh Claude (no context bleed) to verify it works for readers. **Instructions to user:** Explain that testing will now occur to see if the document actually works for readers. This catches blind spots - things that make sense to the authors but might confuse others. ### Testing Approach **If access to sub-agents is available (e.g., in Claude Code):** Perform the testing directly without user involvement. ### Step 1: Predict Reader Questions Announce intention to predict what questions readers might ask when trying to discover this document. Generate 5-10 questions that readers would realistically ask. ### Step 2: Test with Sub-Agent Announce that these questions will be tested with a fresh Claude instance (no context from this conversation). For each question, invoke a sub-agent with just the document content and the question. Summarize what Reader Claude got right/wrong for each question. ### Step 3: Run Additional Checks Announce additional checks will be performed. Invoke sub-agent to check for ambiguity, false assumptions, contradictions. Summarize any issues found. ### Step 4: Report and Fix If issues found: Report that Reader Claude struggled with specific issues. List the specific issues. Indicate intention to fix these gaps. Loop back to refinement for problematic sections. --- **If no access to sub-agents (e.g., claude.ai web interface):** The user will need to do the testing manually. ### Step 1: Predict Reader Questions Ask what questions people might ask when trying to discover this document. What would they type into Claude.ai? Generate 5-10 questions that readers would realistically ask. ### Step 2: Setup Testing Provide testing instructions: 1. Open a fresh Claude conversation: https://claude.ai 2. Paste or share the document content (if using a shared doc platform with connectors enabled, provide the link) 3. Ask Reader Claude the generated questions For each question, instruct Reader Claude to provide: - The answer - Whether anything was ambiguous or unclear - What knowledge/context the doc assumes is already known Check if Reader Claude gives correct answers or misinterprets anything. ### Step 3: Additional Checks Also ask Reader Claude: - "What in this doc might be ambiguous or unclear to readers?" - "What knowledge or context does this doc assume readers already have?" - "Are there any internal contradictions or inconsistencies?" ### Step 4: Iterate Based on Results Ask what Reader Claude got wrong or struggled with. Indicate intention to fix those gaps. Loop back to refinement for any problematic sections. --- ### Exit Condition (Both Approaches) When Reader Claude consistently answers questions correctly and doesn't surface new gaps or ambiguities, the doc is ready. ## Final Review When Reader Testing passes: Announce the doc has passed Reader Claude testing. Before completion: 1. Recommend they do a final read-through themselves - they own this document and are responsible for its quality 2. Suggest double-checking any facts, links, or technical details 3. Ask them to verify it achieves the impact they wanted Ask if they want one more review, or if the work is done. **If user wants final review, provide it. Otherwise:** Announce document completion. Provide a few final tips: - Consider linking this conversation in an appendix so readers can see how the doc was developed - Use appendices to provide depth without bloating the main doc - Update the doc as feedback is received from real readers ## Tips for Effective Guidance **Tone:** - Be direct and procedural - Explain rationale briefly when it affects user behavior - Don't try to "sell" the approach - just execute it **Handling Deviations:** - If user wants to skip a stage: Ask if they want to skip this and write freeform - If user seems frustrated: Acknowledge this is taking longer than expected. Suggest ways to move faster - Always give user agency to adjust the process **Context Management:** - Throughout, if context is missing on something mentioned, proactively ask - Don't let gaps accumulate - address them as they come up **Artifact Management:** - Use `create_file` for drafting full sections - Use `str_replace` for all edits - Provide artifact link after every change - Never use artifacts for brainstorming lists - that's just conversation **Quality over Speed:** - Don't rush through stages - Each iteration should make meaningful improvements - The goal is a document that actually works for readers ================================================ FILE: skills/docx/LICENSE.txt ================================================ © 2025 Anthropic, PBC. All rights reserved. LICENSE: Use of these materials (including all code, prompts, assets, files, and other components of this Skill) is governed by your agreement with Anthropic regarding use of Anthropic's services. If no separate agreement exists, use is governed by Anthropic's Consumer Terms of Service or Commercial Terms of Service, as applicable: https://www.anthropic.com/legal/consumer-terms https://www.anthropic.com/legal/commercial-terms Your applicable agreement is referred to as the "Agreement." "Services" are as defined in the Agreement. ADDITIONAL RESTRICTIONS: Notwithstanding anything in the Agreement to the contrary, users may not: - Extract these materials from the Services or retain copies of these materials outside the Services - Reproduce or copy these materials, except for temporary copies created automatically during authorized use of the Services - Create derivative works based on these materials - Distribute, sublicense, or transfer these materials to any third party - Make, offer to sell, sell, or import any inventions embodied in these materials - Reverse engineer, decompile, or disassemble these materials The receipt, viewing, or possession of these materials does not convey or imply any license or right beyond those expressly granted above. Anthropic retains all right, title, and interest in these materials, including all copyrights, patents, and other intellectual property rights. ================================================ FILE: skills/docx/SKILL.md ================================================ --- name: docx description: "Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files). Triggers include: any mention of 'Word doc', 'word document', '.docx', or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when extracting or reorganizing content from .docx files, inserting or replacing images in documents, performing find-and-replace in Word files, working with tracked changes or comments, or converting content into a polished Word document. If the user asks for a 'report', 'memo', 'letter', 'template', or similar deliverable as a Word or .docx file, use this skill. Do NOT use for PDFs, spreadsheets, Google Docs, or general coding tasks unrelated to document generation." license: Proprietary. LICENSE.txt has complete terms --- # DOCX creation, editing, and analysis ## Overview A .docx file is a ZIP archive containing XML files. ## Quick Reference | Task | Approach | |------|----------| | Read/analyze content | `pandoc` or unpack for raw XML | | Create new document | Use `docx-js` - see Creating New Documents below | | Edit existing document | Unpack → edit XML → repack - see Editing Existing Documents below | ### Converting .doc to .docx Legacy `.doc` files must be converted before editing: ```bash python scripts/office/soffice.py --headless --convert-to docx document.doc ``` ### Reading Content ```bash # Text extraction with tracked changes pandoc --track-changes=all document.docx -o output.md # Raw XML access python scripts/office/unpack.py document.docx unpacked/ ``` ### Converting to Images ```bash python scripts/office/soffice.py --headless --convert-to pdf document.docx pdftoppm -jpeg -r 150 document.pdf page ``` ### Accepting Tracked Changes To produce a clean document with all tracked changes accepted (requires LibreOffice): ```bash python scripts/accept_changes.py input.docx output.docx ``` --- ## Creating New Documents Generate .docx files with JavaScript, then validate. Install: `npm install -g docx` ### Setup ```javascript const { Document, Packer, Paragraph, TextRun, Table, TableRow, TableCell, ImageRun, Header, Footer, AlignmentType, PageOrientation, LevelFormat, ExternalHyperlink, InternalHyperlink, Bookmark, FootnoteReferenceRun, PositionalTab, PositionalTabAlignment, PositionalTabRelativeTo, PositionalTabLeader, TabStopType, TabStopPosition, Column, SectionType, TableOfContents, HeadingLevel, BorderStyle, WidthType, ShadingType, VerticalAlign, PageNumber, PageBreak } = require('docx'); const doc = new Document({ sections: [{ children: [/* content */] }] }); Packer.toBuffer(doc).then(buffer => fs.writeFileSync("doc.docx", buffer)); ``` ### Validation After creating the file, validate it. If validation fails, unpack, fix the XML, and repack. ```bash python scripts/office/validate.py doc.docx ``` ### Page Size ```javascript // CRITICAL: docx-js defaults to A4, not US Letter // Always set page size explicitly for consistent results sections: [{ properties: { page: { size: { width: 12240, // 8.5 inches in DXA height: 15840 // 11 inches in DXA }, margin: { top: 1440, right: 1440, bottom: 1440, left: 1440 } // 1 inch margins } }, children: [/* content */] }] ``` **Common page sizes (DXA units, 1440 DXA = 1 inch):** | Paper | Width | Height | Content Width (1" margins) | |-------|-------|--------|---------------------------| | US Letter | 12,240 | 15,840 | 9,360 | | A4 (default) | 11,906 | 16,838 | 9,026 | **Landscape orientation:** docx-js swaps width/height internally, so pass portrait dimensions and let it handle the swap: ```javascript size: { width: 12240, // Pass SHORT edge as width height: 15840, // Pass LONG edge as height orientation: PageOrientation.LANDSCAPE // docx-js swaps them in the XML }, // Content width = 15840 - left margin - right margin (uses the long edge) ``` ### Styles (Override Built-in Headings) Use Arial as the default font (universally supported). Keep titles black for readability. ```javascript const doc = new Document({ styles: { default: { document: { run: { font: "Arial", size: 24 } } }, // 12pt default paragraphStyles: [ // IMPORTANT: Use exact IDs to override built-in styles { id: "Heading1", name: "Heading 1", basedOn: "Normal", next: "Normal", quickFormat: true, run: { size: 32, bold: true, font: "Arial" }, paragraph: { spacing: { before: 240, after: 240 }, outlineLevel: 0 } }, // outlineLevel required for TOC { id: "Heading2", name: "Heading 2", basedOn: "Normal", next: "Normal", quickFormat: true, run: { size: 28, bold: true, font: "Arial" }, paragraph: { spacing: { before: 180, after: 180 }, outlineLevel: 1 } }, ] }, sections: [{ children: [ new Paragraph({ heading: HeadingLevel.HEADING_1, children: [new TextRun("Title")] }), ] }] }); ``` ### Lists (NEVER use unicode bullets) ```javascript // ❌ WRONG - never manually insert bullet characters new Paragraph({ children: [new TextRun("• Item")] }) // BAD new Paragraph({ children: [new TextRun("\u2022 Item")] }) // BAD // ✅ CORRECT - use numbering config with LevelFormat.BULLET const doc = new Document({ numbering: { config: [ { reference: "bullets", levels: [{ level: 0, format: LevelFormat.BULLET, text: "•", alignment: AlignmentType.LEFT, style: { paragraph: { indent: { left: 720, hanging: 360 } } } }] }, { reference: "numbers", levels: [{ level: 0, format: LevelFormat.DECIMAL, text: "%1.", alignment: AlignmentType.LEFT, style: { paragraph: { indent: { left: 720, hanging: 360 } } } }] }, ] }, sections: [{ children: [ new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Bullet item")] }), new Paragraph({ numbering: { reference: "numbers", level: 0 }, children: [new TextRun("Numbered item")] }), ] }] }); // ⚠️ Each reference creates INDEPENDENT numbering // Same reference = continues (1,2,3 then 4,5,6) // Different reference = restarts (1,2,3 then 1,2,3) ``` ### Tables **CRITICAL: Tables need dual widths** - set both `columnWidths` on the table AND `width` on each cell. Without both, tables render incorrectly on some platforms. ```javascript // CRITICAL: Always set table width for consistent rendering // CRITICAL: Use ShadingType.CLEAR (not SOLID) to prevent black backgrounds const border = { style: BorderStyle.SINGLE, size: 1, color: "CCCCCC" }; const borders = { top: border, bottom: border, left: border, right: border }; new Table({ width: { size: 9360, type: WidthType.DXA }, // Always use DXA (percentages break in Google Docs) columnWidths: [4680, 4680], // Must sum to table width (DXA: 1440 = 1 inch) rows: [ new TableRow({ children: [ new TableCell({ borders, width: { size: 4680, type: WidthType.DXA }, // Also set on each cell shading: { fill: "D5E8F0", type: ShadingType.CLEAR }, // CLEAR not SOLID margins: { top: 80, bottom: 80, left: 120, right: 120 }, // Cell padding (internal, not added to width) children: [new Paragraph({ children: [new TextRun("Cell")] })] }) ] }) ] }) ``` **Table width calculation:** Always use `WidthType.DXA` — `WidthType.PERCENTAGE` breaks in Google Docs. ```javascript // Table width = sum of columnWidths = content width // US Letter with 1" margins: 12240 - 2880 = 9360 DXA width: { size: 9360, type: WidthType.DXA }, columnWidths: [7000, 2360] // Must sum to table width ``` **Width rules:** - **Always use `WidthType.DXA`** — never `WidthType.PERCENTAGE` (incompatible with Google Docs) - Table width must equal the sum of `columnWidths` - Cell `width` must match corresponding `columnWidth` - Cell `margins` are internal padding - they reduce content area, not add to cell width - For full-width tables: use content width (page width minus left and right margins) ### Images ```javascript // CRITICAL: type parameter is REQUIRED new Paragraph({ children: [new ImageRun({ type: "png", // Required: png, jpg, jpeg, gif, bmp, svg data: fs.readFileSync("image.png"), transformation: { width: 200, height: 150 }, altText: { title: "Title", description: "Desc", name: "Name" } // All three required })] }) ``` ### Page Breaks ```javascript // CRITICAL: PageBreak must be inside a Paragraph new Paragraph({ children: [new PageBreak()] }) // Or use pageBreakBefore new Paragraph({ pageBreakBefore: true, children: [new TextRun("New page")] }) ``` ### Hyperlinks ```javascript // External link new Paragraph({ children: [new ExternalHyperlink({ children: [new TextRun({ text: "Click here", style: "Hyperlink" })], link: "https://example.com", })] }) // Internal link (bookmark + reference) // 1. Create bookmark at destination new Paragraph({ heading: HeadingLevel.HEADING_1, children: [ new Bookmark({ id: "chapter1", children: [new TextRun("Chapter 1")] }), ]}) // 2. Link to it new Paragraph({ children: [new InternalHyperlink({ children: [new TextRun({ text: "See Chapter 1", style: "Hyperlink" })], anchor: "chapter1", })]}) ``` ### Footnotes ```javascript const doc = new Document({ footnotes: { 1: { children: [new Paragraph("Source: Annual Report 2024")] }, 2: { children: [new Paragraph("See appendix for methodology")] }, }, sections: [{ children: [new Paragraph({ children: [ new TextRun("Revenue grew 15%"), new FootnoteReferenceRun(1), new TextRun(" using adjusted metrics"), new FootnoteReferenceRun(2), ], })] }] }); ``` ### Tab Stops ```javascript // Right-align text on same line (e.g., date opposite a title) new Paragraph({ children: [ new TextRun("Company Name"), new TextRun("\tJanuary 2025"), ], tabStops: [{ type: TabStopType.RIGHT, position: TabStopPosition.MAX }], }) // Dot leader (e.g., TOC-style) new Paragraph({ children: [ new TextRun("Introduction"), new TextRun({ children: [ new PositionalTab({ alignment: PositionalTabAlignment.RIGHT, relativeTo: PositionalTabRelativeTo.MARGIN, leader: PositionalTabLeader.DOT, }), "3", ]}), ], }) ``` ### Multi-Column Layouts ```javascript // Equal-width columns sections: [{ properties: { column: { count: 2, // number of columns space: 720, // gap between columns in DXA (720 = 0.5 inch) equalWidth: true, separate: true, // vertical line between columns }, }, children: [/* content flows naturally across columns */] }] // Custom-width columns (equalWidth must be false) sections: [{ properties: { column: { equalWidth: false, children: [ new Column({ width: 5400, space: 720 }), new Column({ width: 3240 }), ], }, }, children: [/* content */] }] ``` Force a column break with a new section using `type: SectionType.NEXT_COLUMN`. ### Table of Contents ```javascript // CRITICAL: Headings must use HeadingLevel ONLY - no custom styles new TableOfContents("Table of Contents", { hyperlink: true, headingStyleRange: "1-3" }) ``` ### Headers/Footers ```javascript sections: [{ properties: { page: { margin: { top: 1440, right: 1440, bottom: 1440, left: 1440 } } // 1440 = 1 inch }, headers: { default: new Header({ children: [new Paragraph({ children: [new TextRun("Header")] })] }) }, footers: { default: new Footer({ children: [new Paragraph({ children: [new TextRun("Page "), new TextRun({ children: [PageNumber.CURRENT] })] })] }) }, children: [/* content */] }] ``` ### Critical Rules for docx-js - **Set page size explicitly** - docx-js defaults to A4; use US Letter (12240 x 15840 DXA) for US documents - **Landscape: pass portrait dimensions** - docx-js swaps width/height internally; pass short edge as `width`, long edge as `height`, and set `orientation: PageOrientation.LANDSCAPE` - **Never use `\n`** - use separate Paragraph elements - **Never use unicode bullets** - use `LevelFormat.BULLET` with numbering config - **PageBreak must be in Paragraph** - standalone creates invalid XML - **ImageRun requires `type`** - always specify png/jpg/etc - **Always set table `width` with DXA** - never use `WidthType.PERCENTAGE` (breaks in Google Docs) - **Tables need dual widths** - `columnWidths` array AND cell `width`, both must match - **Table width = sum of columnWidths** - for DXA, ensure they add up exactly - **Always add cell margins** - use `margins: { top: 80, bottom: 80, left: 120, right: 120 }` for readable padding - **Use `ShadingType.CLEAR`** - never SOLID for table shading - **Never use tables as dividers/rules** - cells have minimum height and render as empty boxes (including in headers/footers); use `border: { bottom: { style: BorderStyle.SINGLE, size: 6, color: "2E75B6", space: 1 } }` on a Paragraph instead. For two-column footers, use tab stops (see Tab Stops section), not tables - **TOC requires HeadingLevel only** - no custom styles on heading paragraphs - **Override built-in styles** - use exact IDs: "Heading1", "Heading2", etc. - **Include `outlineLevel`** - required for TOC (0 for H1, 1 for H2, etc.) --- ## Editing Existing Documents **Follow all 3 steps in order.** ### Step 1: Unpack ```bash python scripts/office/unpack.py document.docx unpacked/ ``` Extracts XML, pretty-prints, merges adjacent runs, and converts smart quotes to XML entities (`“` etc.) so they survive editing. Use `--merge-runs false` to skip run merging. ### Step 2: Edit XML Edit files in `unpacked/word/`. See XML Reference below for patterns. **Use "Claude" as the author** for tracked changes and comments, unless the user explicitly requests use of a different name. **Use the Edit tool directly for string replacement. Do not write Python scripts.** Scripts introduce unnecessary complexity. The Edit tool shows exactly what is being replaced. **CRITICAL: Use smart quotes for new content.** When adding text with apostrophes or quotes, use XML entities to produce smart quotes: ```xml Here’s a quote: “Hello” ``` | Entity | Character | |--------|-----------| | `‘` | ‘ (left single) | | `’` | ’ (right single / apostrophe) | | `“` | “ (left double) | | `”` | ” (right double) | **Adding comments:** Use `comment.py` to handle boilerplate across multiple XML files (text must be pre-escaped XML): ```bash python scripts/comment.py unpacked/ 0 "Comment text with & and ’" python scripts/comment.py unpacked/ 1 "Reply text" --parent 0 # reply to comment 0 python scripts/comment.py unpacked/ 0 "Text" --author "Custom Author" # custom author name ``` Then add markers to document.xml (see Comments in XML Reference). ### Step 3: Pack ```bash python scripts/office/pack.py unpacked/ output.docx --original document.docx ``` Validates with auto-repair, condenses XML, and creates DOCX. Use `--validate false` to skip. **Auto-repair will fix:** - `durableId` >= 0x7FFFFFFF (regenerates valid ID) - Missing `xml:space="preserve"` on `` with whitespace **Auto-repair won't fix:** - Malformed XML, invalid element nesting, missing relationships, schema violations ### Common Pitfalls - **Replace entire `` elements**: When adding tracked changes, replace the whole `...` block with `......` as siblings. Don't inject tracked change tags inside a run. - **Preserve `` formatting**: Copy the original run's `` block into your tracked change runs to maintain bold, font size, etc. --- ## XML Reference ### Schema Compliance - **Element order in ``**: ``, ``, ``, ``, ``, `` last - **Whitespace**: Add `xml:space="preserve"` to `` with leading/trailing spaces - **RSIDs**: Must be 8-digit hex (e.g., `00AB1234`) ### Tracked Changes **Insertion:** ```xml inserted text ``` **Deletion:** ```xml deleted text ``` **Inside ``**: Use `` instead of ``, and `` instead of ``. **Minimal edits** - only mark what changes: ```xml The term is 30 60 days. ``` **Deleting entire paragraphs/list items** - when removing ALL content from a paragraph, also mark the paragraph mark as deleted so it merges with the next paragraph. Add `` inside ``: ```xml ... Entire paragraph content being deleted... ``` Without the `` in ``, accepting changes leaves an empty paragraph/list item. **Rejecting another author's insertion** - nest deletion inside their insertion: ```xml their inserted text ``` **Restoring another author's deletion** - add insertion after (don't modify their deletion): ```xml deleted text deleted text ``` ### Comments After running `comment.py` (see Step 2), add markers to document.xml. For replies, use `--parent` flag and nest markers inside the parent's. **CRITICAL: `` and `` are siblings of ``, never inside ``.** ```xml deleted more text text ``` ### Images 1. Add image file to `word/media/` 2. Add relationship to `word/_rels/document.xml.rels`: ```xml ``` 3. Add content type to `[Content_Types].xml`: ```xml ``` 4. Reference in document.xml: ```xml ``` --- ## Dependencies - **pandoc**: Text extraction - **docx**: `npm install -g docx` (new documents) - **LibreOffice**: PDF conversion (auto-configured for sandboxed environments via `scripts/office/soffice.py`) - **Poppler**: `pdftoppm` for images ================================================ FILE: skills/docx/scripts/__init__.py ================================================ ================================================ FILE: skills/docx/scripts/accept_changes.py ================================================ """Accept all tracked changes in a DOCX file using LibreOffice. Requires LibreOffice (soffice) to be installed. """ import argparse import logging import shutil import subprocess from pathlib import Path from office.soffice import get_soffice_env logger = logging.getLogger(__name__) LIBREOFFICE_PROFILE = "/tmp/libreoffice_docx_profile" MACRO_DIR = f"{LIBREOFFICE_PROFILE}/user/basic/Standard" ACCEPT_CHANGES_MACRO = """ Sub AcceptAllTrackedChanges() Dim document As Object Dim dispatcher As Object document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") dispatcher.executeDispatch(document, ".uno:AcceptAllTrackedChanges", "", 0, Array()) ThisComponent.store() ThisComponent.close(True) End Sub """ def accept_changes( input_file: str, output_file: str, ) -> tuple[None, str]: input_path = Path(input_file) output_path = Path(output_file) if not input_path.exists(): return None, f"Error: Input file not found: {input_file}" if not input_path.suffix.lower() == ".docx": return None, f"Error: Input file is not a DOCX file: {input_file}" try: output_path.parent.mkdir(parents=True, exist_ok=True) shutil.copy2(input_path, output_path) except Exception as e: return None, f"Error: Failed to copy input file to output location: {e}" if not _setup_libreoffice_macro(): return None, "Error: Failed to setup LibreOffice macro" cmd = [ "soffice", "--headless", f"-env:UserInstallation=file://{LIBREOFFICE_PROFILE}", "--norestore", "vnd.sun.star.script:Standard.Module1.AcceptAllTrackedChanges?language=Basic&location=application", str(output_path.absolute()), ] try: result = subprocess.run( cmd, capture_output=True, text=True, timeout=30, check=False, env=get_soffice_env(), ) except subprocess.TimeoutExpired: return ( None, f"Successfully accepted all tracked changes: {input_file} -> {output_file}", ) if result.returncode != 0: return None, f"Error: LibreOffice failed: {result.stderr}" return ( None, f"Successfully accepted all tracked changes: {input_file} -> {output_file}", ) def _setup_libreoffice_macro() -> bool: macro_dir = Path(MACRO_DIR) macro_file = macro_dir / "Module1.xba" if macro_file.exists() and "AcceptAllTrackedChanges" in macro_file.read_text(): return True if not macro_dir.exists(): subprocess.run( [ "soffice", "--headless", f"-env:UserInstallation=file://{LIBREOFFICE_PROFILE}", "--terminate_after_init", ], capture_output=True, timeout=10, check=False, env=get_soffice_env(), ) macro_dir.mkdir(parents=True, exist_ok=True) try: macro_file.write_text(ACCEPT_CHANGES_MACRO) return True except Exception as e: logger.warning(f"Failed to setup LibreOffice macro: {e}") return False if __name__ == "__main__": parser = argparse.ArgumentParser( description="Accept all tracked changes in a DOCX file" ) parser.add_argument("input_file", help="Input DOCX file with tracked changes") parser.add_argument( "output_file", help="Output DOCX file (clean, no tracked changes)" ) args = parser.parse_args() _, message = accept_changes(args.input_file, args.output_file) print(message) if "Error" in message: raise SystemExit(1) ================================================ FILE: skills/docx/scripts/comment.py ================================================ """Add comments to DOCX documents. Usage: python comment.py unpacked/ 0 "Comment text" python comment.py unpacked/ 1 "Reply text" --parent 0 Text should be pre-escaped XML (e.g., & for &, ’ for smart quotes). After running, add markers to document.xml: ... commented content ... """ import argparse import random import shutil import sys from datetime import datetime, timezone from pathlib import Path import defusedxml.minidom TEMPLATE_DIR = Path(__file__).parent / "templates" NS = { "w": "http://schemas.openxmlformats.org/wordprocessingml/2006/main", "w14": "http://schemas.microsoft.com/office/word/2010/wordml", "w15": "http://schemas.microsoft.com/office/word/2012/wordml", "w16cid": "http://schemas.microsoft.com/office/word/2016/wordml/cid", "w16cex": "http://schemas.microsoft.com/office/word/2018/wordml/cex", } COMMENT_XML = """\ {text} """ COMMENT_MARKER_TEMPLATE = """ Add to document.xml (markers must be direct children of w:p, never inside w:r): ... """ REPLY_MARKER_TEMPLATE = """ Nest markers inside parent {pid}'s markers (markers must be direct children of w:p, never inside w:r): ... """ def _generate_hex_id() -> str: return f"{random.randint(0, 0x7FFFFFFE):08X}" SMART_QUOTE_ENTITIES = { "\u201c": "“", "\u201d": "”", "\u2018": "‘", "\u2019": "’", } def _encode_smart_quotes(text: str) -> str: for char, entity in SMART_QUOTE_ENTITIES.items(): text = text.replace(char, entity) return text def _append_xml(xml_path: Path, root_tag: str, content: str) -> None: dom = defusedxml.minidom.parseString(xml_path.read_text(encoding="utf-8")) root = dom.getElementsByTagName(root_tag)[0] ns_attrs = " ".join(f'xmlns:{k}="{v}"' for k, v in NS.items()) wrapper_dom = defusedxml.minidom.parseString(f"{content}") for child in wrapper_dom.documentElement.childNodes: if child.nodeType == child.ELEMENT_NODE: root.appendChild(dom.importNode(child, True)) output = _encode_smart_quotes(dom.toxml(encoding="UTF-8").decode("utf-8")) xml_path.write_text(output, encoding="utf-8") def _find_para_id(comments_path: Path, comment_id: int) -> str | None: dom = defusedxml.minidom.parseString(comments_path.read_text(encoding="utf-8")) for c in dom.getElementsByTagName("w:comment"): if c.getAttribute("w:id") == str(comment_id): for p in c.getElementsByTagName("w:p"): if pid := p.getAttribute("w14:paraId"): return pid return None def _get_next_rid(rels_path: Path) -> int: dom = defusedxml.minidom.parseString(rels_path.read_text(encoding="utf-8")) max_rid = 0 for rel in dom.getElementsByTagName("Relationship"): rid = rel.getAttribute("Id") if rid and rid.startswith("rId"): try: max_rid = max(max_rid, int(rid[3:])) except ValueError: pass return max_rid + 1 def _has_relationship(rels_path: Path, target: str) -> bool: dom = defusedxml.minidom.parseString(rels_path.read_text(encoding="utf-8")) for rel in dom.getElementsByTagName("Relationship"): if rel.getAttribute("Target") == target: return True return False def _has_content_type(ct_path: Path, part_name: str) -> bool: dom = defusedxml.minidom.parseString(ct_path.read_text(encoding="utf-8")) for override in dom.getElementsByTagName("Override"): if override.getAttribute("PartName") == part_name: return True return False def _ensure_comment_relationships(unpacked_dir: Path) -> None: rels_path = unpacked_dir / "word" / "_rels" / "document.xml.rels" if not rels_path.exists(): return if _has_relationship(rels_path, "comments.xml"): return dom = defusedxml.minidom.parseString(rels_path.read_text(encoding="utf-8")) root = dom.documentElement next_rid = _get_next_rid(rels_path) rels = [ ( "http://schemas.openxmlformats.org/officeDocument/2006/relationships/comments", "comments.xml", ), ( "http://schemas.microsoft.com/office/2011/relationships/commentsExtended", "commentsExtended.xml", ), ( "http://schemas.microsoft.com/office/2016/09/relationships/commentsIds", "commentsIds.xml", ), ( "http://schemas.microsoft.com/office/2018/08/relationships/commentsExtensible", "commentsExtensible.xml", ), ] for rel_type, target in rels: rel = dom.createElement("Relationship") rel.setAttribute("Id", f"rId{next_rid}") rel.setAttribute("Type", rel_type) rel.setAttribute("Target", target) root.appendChild(rel) next_rid += 1 rels_path.write_bytes(dom.toxml(encoding="UTF-8")) def _ensure_comment_content_types(unpacked_dir: Path) -> None: ct_path = unpacked_dir / "[Content_Types].xml" if not ct_path.exists(): return if _has_content_type(ct_path, "/word/comments.xml"): return dom = defusedxml.minidom.parseString(ct_path.read_text(encoding="utf-8")) root = dom.documentElement overrides = [ ( "/word/comments.xml", "application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml", ), ( "/word/commentsExtended.xml", "application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml", ), ( "/word/commentsIds.xml", "application/vnd.openxmlformats-officedocument.wordprocessingml.commentsIds+xml", ), ( "/word/commentsExtensible.xml", "application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtensible+xml", ), ] for part_name, content_type in overrides: override = dom.createElement("Override") override.setAttribute("PartName", part_name) override.setAttribute("ContentType", content_type) root.appendChild(override) ct_path.write_bytes(dom.toxml(encoding="UTF-8")) def add_comment( unpacked_dir: str, comment_id: int, text: str, author: str = "Claude", initials: str = "C", parent_id: int | None = None, ) -> tuple[str, str]: word = Path(unpacked_dir) / "word" if not word.exists(): return "", f"Error: {word} not found" para_id, durable_id = _generate_hex_id(), _generate_hex_id() ts = datetime.now(timezone.utc).strftime("%Y-%m-%dT%H:%M:%SZ") comments = word / "comments.xml" first_comment = not comments.exists() if first_comment: shutil.copy(TEMPLATE_DIR / "comments.xml", comments) _ensure_comment_relationships(Path(unpacked_dir)) _ensure_comment_content_types(Path(unpacked_dir)) _append_xml( comments, "w:comments", COMMENT_XML.format( id=comment_id, author=author, date=ts, initials=initials, para_id=para_id, text=text, ), ) ext = word / "commentsExtended.xml" if not ext.exists(): shutil.copy(TEMPLATE_DIR / "commentsExtended.xml", ext) if parent_id is not None: parent_para = _find_para_id(comments, parent_id) if not parent_para: return "", f"Error: Parent comment {parent_id} not found" _append_xml( ext, "w15:commentsEx", f'', ) else: _append_xml( ext, "w15:commentsEx", f'', ) ids = word / "commentsIds.xml" if not ids.exists(): shutil.copy(TEMPLATE_DIR / "commentsIds.xml", ids) _append_xml( ids, "w16cid:commentsIds", f'', ) extensible = word / "commentsExtensible.xml" if not extensible.exists(): shutil.copy(TEMPLATE_DIR / "commentsExtensible.xml", extensible) _append_xml( extensible, "w16cex:commentsExtensible", f'', ) action = "reply" if parent_id is not None else "comment" return para_id, f"Added {action} {comment_id} (para_id={para_id})" if __name__ == "__main__": p = argparse.ArgumentParser(description="Add comments to DOCX documents") p.add_argument("unpacked_dir", help="Unpacked DOCX directory") p.add_argument("comment_id", type=int, help="Comment ID (must be unique)") p.add_argument("text", help="Comment text") p.add_argument("--author", default="Claude", help="Author name") p.add_argument("--initials", default="C", help="Author initials") p.add_argument("--parent", type=int, help="Parent comment ID (for replies)") args = p.parse_args() para_id, msg = add_comment( args.unpacked_dir, args.comment_id, args.text, args.author, args.initials, args.parent, ) print(msg) if "Error" in msg: sys.exit(1) cid = args.comment_id if args.parent is not None: print(REPLY_MARKER_TEMPLATE.format(pid=args.parent, cid=cid)) else: print(COMMENT_MARKER_TEMPLATE.format(cid=cid)) ================================================ FILE: skills/docx/scripts/office/helpers/__init__.py ================================================ ================================================ FILE: skills/docx/scripts/office/helpers/merge_runs.py ================================================ """Merge adjacent runs with identical formatting in DOCX. Merges adjacent elements that have identical properties. Works on runs in paragraphs and inside tracked changes (, ). Also: - Removes rsid attributes from runs (revision metadata that doesn't affect rendering) - Removes proofErr elements (spell/grammar markers that block merging) """ from pathlib import Path import defusedxml.minidom def merge_runs(input_dir: str) -> tuple[int, str]: doc_xml = Path(input_dir) / "word" / "document.xml" if not doc_xml.exists(): return 0, f"Error: {doc_xml} not found" try: dom = defusedxml.minidom.parseString(doc_xml.read_text(encoding="utf-8")) root = dom.documentElement _remove_elements(root, "proofErr") _strip_run_rsid_attrs(root) containers = {run.parentNode for run in _find_elements(root, "r")} merge_count = 0 for container in containers: merge_count += _merge_runs_in(container) doc_xml.write_bytes(dom.toxml(encoding="UTF-8")) return merge_count, f"Merged {merge_count} runs" except Exception as e: return 0, f"Error: {e}" def _find_elements(root, tag: str) -> list: results = [] def traverse(node): if node.nodeType == node.ELEMENT_NODE: name = node.localName or node.tagName if name == tag or name.endswith(f":{tag}"): results.append(node) for child in node.childNodes: traverse(child) traverse(root) return results def _get_child(parent, tag: str): for child in parent.childNodes: if child.nodeType == child.ELEMENT_NODE: name = child.localName or child.tagName if name == tag or name.endswith(f":{tag}"): return child return None def _get_children(parent, tag: str) -> list: results = [] for child in parent.childNodes: if child.nodeType == child.ELEMENT_NODE: name = child.localName or child.tagName if name == tag or name.endswith(f":{tag}"): results.append(child) return results def _is_adjacent(elem1, elem2) -> bool: node = elem1.nextSibling while node: if node == elem2: return True if node.nodeType == node.ELEMENT_NODE: return False if node.nodeType == node.TEXT_NODE and node.data.strip(): return False node = node.nextSibling return False def _remove_elements(root, tag: str): for elem in _find_elements(root, tag): if elem.parentNode: elem.parentNode.removeChild(elem) def _strip_run_rsid_attrs(root): for run in _find_elements(root, "r"): for attr in list(run.attributes.values()): if "rsid" in attr.name.lower(): run.removeAttribute(attr.name) def _merge_runs_in(container) -> int: merge_count = 0 run = _first_child_run(container) while run: while True: next_elem = _next_element_sibling(run) if next_elem and _is_run(next_elem) and _can_merge(run, next_elem): _merge_run_content(run, next_elem) container.removeChild(next_elem) merge_count += 1 else: break _consolidate_text(run) run = _next_sibling_run(run) return merge_count def _first_child_run(container): for child in container.childNodes: if child.nodeType == child.ELEMENT_NODE and _is_run(child): return child return None def _next_element_sibling(node): sibling = node.nextSibling while sibling: if sibling.nodeType == sibling.ELEMENT_NODE: return sibling sibling = sibling.nextSibling return None def _next_sibling_run(node): sibling = node.nextSibling while sibling: if sibling.nodeType == sibling.ELEMENT_NODE: if _is_run(sibling): return sibling sibling = sibling.nextSibling return None def _is_run(node) -> bool: name = node.localName or node.tagName return name == "r" or name.endswith(":r") def _can_merge(run1, run2) -> bool: rpr1 = _get_child(run1, "rPr") rpr2 = _get_child(run2, "rPr") if (rpr1 is None) != (rpr2 is None): return False if rpr1 is None: return True return rpr1.toxml() == rpr2.toxml() def _merge_run_content(target, source): for child in list(source.childNodes): if child.nodeType == child.ELEMENT_NODE: name = child.localName or child.tagName if name != "rPr" and not name.endswith(":rPr"): target.appendChild(child) def _consolidate_text(run): t_elements = _get_children(run, "t") for i in range(len(t_elements) - 1, 0, -1): curr, prev = t_elements[i], t_elements[i - 1] if _is_adjacent(prev, curr): prev_text = prev.firstChild.data if prev.firstChild else "" curr_text = curr.firstChild.data if curr.firstChild else "" merged = prev_text + curr_text if prev.firstChild: prev.firstChild.data = merged else: prev.appendChild(run.ownerDocument.createTextNode(merged)) if merged.startswith(" ") or merged.endswith(" "): prev.setAttribute("xml:space", "preserve") elif prev.hasAttribute("xml:space"): prev.removeAttribute("xml:space") run.removeChild(curr) ================================================ FILE: skills/docx/scripts/office/helpers/simplify_redlines.py ================================================ """Simplify tracked changes by merging adjacent w:ins or w:del elements. Merges adjacent elements from the same author into a single element. Same for elements. This makes heavily-redlined documents easier to work with by reducing the number of tracked change wrappers. Rules: - Only merges w:ins with w:ins, w:del with w:del (same element type) - Only merges if same author (ignores timestamp differences) - Only merges if truly adjacent (only whitespace between them) """ import xml.etree.ElementTree as ET import zipfile from pathlib import Path import defusedxml.minidom WORD_NS = "http://schemas.openxmlformats.org/wordprocessingml/2006/main" def simplify_redlines(input_dir: str) -> tuple[int, str]: doc_xml = Path(input_dir) / "word" / "document.xml" if not doc_xml.exists(): return 0, f"Error: {doc_xml} not found" try: dom = defusedxml.minidom.parseString(doc_xml.read_text(encoding="utf-8")) root = dom.documentElement merge_count = 0 containers = _find_elements(root, "p") + _find_elements(root, "tc") for container in containers: merge_count += _merge_tracked_changes_in(container, "ins") merge_count += _merge_tracked_changes_in(container, "del") doc_xml.write_bytes(dom.toxml(encoding="UTF-8")) return merge_count, f"Simplified {merge_count} tracked changes" except Exception as e: return 0, f"Error: {e}" def _merge_tracked_changes_in(container, tag: str) -> int: merge_count = 0 tracked = [ child for child in container.childNodes if child.nodeType == child.ELEMENT_NODE and _is_element(child, tag) ] if len(tracked) < 2: return 0 i = 0 while i < len(tracked) - 1: curr = tracked[i] next_elem = tracked[i + 1] if _can_merge_tracked(curr, next_elem): _merge_tracked_content(curr, next_elem) container.removeChild(next_elem) tracked.pop(i + 1) merge_count += 1 else: i += 1 return merge_count def _is_element(node, tag: str) -> bool: name = node.localName or node.tagName return name == tag or name.endswith(f":{tag}") def _get_author(elem) -> str: author = elem.getAttribute("w:author") if not author: for attr in elem.attributes.values(): if attr.localName == "author" or attr.name.endswith(":author"): return attr.value return author def _can_merge_tracked(elem1, elem2) -> bool: if _get_author(elem1) != _get_author(elem2): return False node = elem1.nextSibling while node and node != elem2: if node.nodeType == node.ELEMENT_NODE: return False if node.nodeType == node.TEXT_NODE and node.data.strip(): return False node = node.nextSibling return True def _merge_tracked_content(target, source): while source.firstChild: child = source.firstChild source.removeChild(child) target.appendChild(child) def _find_elements(root, tag: str) -> list: results = [] def traverse(node): if node.nodeType == node.ELEMENT_NODE: name = node.localName or node.tagName if name == tag or name.endswith(f":{tag}"): results.append(node) for child in node.childNodes: traverse(child) traverse(root) return results def get_tracked_change_authors(doc_xml_path: Path) -> dict[str, int]: if not doc_xml_path.exists(): return {} try: tree = ET.parse(doc_xml_path) root = tree.getroot() except ET.ParseError: return {} namespaces = {"w": WORD_NS} author_attr = f"{{{WORD_NS}}}author" authors: dict[str, int] = {} for tag in ["ins", "del"]: for elem in root.findall(f".//w:{tag}", namespaces): author = elem.get(author_attr) if author: authors[author] = authors.get(author, 0) + 1 return authors def _get_authors_from_docx(docx_path: Path) -> dict[str, int]: try: with zipfile.ZipFile(docx_path, "r") as zf: if "word/document.xml" not in zf.namelist(): return {} with zf.open("word/document.xml") as f: tree = ET.parse(f) root = tree.getroot() namespaces = {"w": WORD_NS} author_attr = f"{{{WORD_NS}}}author" authors: dict[str, int] = {} for tag in ["ins", "del"]: for elem in root.findall(f".//w:{tag}", namespaces): author = elem.get(author_attr) if author: authors[author] = authors.get(author, 0) + 1 return authors except (zipfile.BadZipFile, ET.ParseError): return {} def infer_author(modified_dir: Path, original_docx: Path, default: str = "Claude") -> str: modified_xml = modified_dir / "word" / "document.xml" modified_authors = get_tracked_change_authors(modified_xml) if not modified_authors: return default original_authors = _get_authors_from_docx(original_docx) new_changes: dict[str, int] = {} for author, count in modified_authors.items(): original_count = original_authors.get(author, 0) diff = count - original_count if diff > 0: new_changes[author] = diff if not new_changes: return default if len(new_changes) == 1: return next(iter(new_changes)) raise ValueError( f"Multiple authors added new changes: {new_changes}. " "Cannot infer which author to validate." ) ================================================ FILE: skills/docx/scripts/office/pack.py ================================================ """Pack a directory into a DOCX, PPTX, or XLSX file. Validates with auto-repair, condenses XML formatting, and creates the Office file. Usage: python pack.py [--original ] [--validate true|false] Examples: python pack.py unpacked/ output.docx --original input.docx python pack.py unpacked/ output.pptx --validate false """ import argparse import sys import shutil import tempfile import zipfile from pathlib import Path import defusedxml.minidom from validators import DOCXSchemaValidator, PPTXSchemaValidator, RedliningValidator def pack( input_directory: str, output_file: str, original_file: str | None = None, validate: bool = True, infer_author_func=None, ) -> tuple[None, str]: input_dir = Path(input_directory) output_path = Path(output_file) suffix = output_path.suffix.lower() if not input_dir.is_dir(): return None, f"Error: {input_dir} is not a directory" if suffix not in {".docx", ".pptx", ".xlsx"}: return None, f"Error: {output_file} must be a .docx, .pptx, or .xlsx file" if validate and original_file: original_path = Path(original_file) if original_path.exists(): success, output = _run_validation( input_dir, original_path, suffix, infer_author_func ) if output: print(output) if not success: return None, f"Error: Validation failed for {input_dir}" with tempfile.TemporaryDirectory() as temp_dir: temp_content_dir = Path(temp_dir) / "content" shutil.copytree(input_dir, temp_content_dir) for pattern in ["*.xml", "*.rels"]: for xml_file in temp_content_dir.rglob(pattern): _condense_xml(xml_file) output_path.parent.mkdir(parents=True, exist_ok=True) with zipfile.ZipFile(output_path, "w", zipfile.ZIP_DEFLATED) as zf: for f in temp_content_dir.rglob("*"): if f.is_file(): zf.write(f, f.relative_to(temp_content_dir)) return None, f"Successfully packed {input_dir} to {output_file}" def _run_validation( unpacked_dir: Path, original_file: Path, suffix: str, infer_author_func=None, ) -> tuple[bool, str | None]: output_lines = [] validators = [] if suffix == ".docx": author = "Claude" if infer_author_func: try: author = infer_author_func(unpacked_dir, original_file) except ValueError as e: print(f"Warning: {e} Using default author 'Claude'.", file=sys.stderr) validators = [ DOCXSchemaValidator(unpacked_dir, original_file), RedliningValidator(unpacked_dir, original_file, author=author), ] elif suffix == ".pptx": validators = [PPTXSchemaValidator(unpacked_dir, original_file)] if not validators: return True, None total_repairs = sum(v.repair() for v in validators) if total_repairs: output_lines.append(f"Auto-repaired {total_repairs} issue(s)") success = all(v.validate() for v in validators) if success: output_lines.append("All validations PASSED!") return success, "\n".join(output_lines) if output_lines else None def _condense_xml(xml_file: Path) -> None: try: with open(xml_file, encoding="utf-8") as f: dom = defusedxml.minidom.parse(f) for element in dom.getElementsByTagName("*"): if element.tagName.endswith(":t"): continue for child in list(element.childNodes): if ( child.nodeType == child.TEXT_NODE and child.nodeValue and child.nodeValue.strip() == "" ) or child.nodeType == child.COMMENT_NODE: element.removeChild(child) xml_file.write_bytes(dom.toxml(encoding="UTF-8")) except Exception as e: print(f"ERROR: Failed to parse {xml_file.name}: {e}", file=sys.stderr) raise if __name__ == "__main__": parser = argparse.ArgumentParser( description="Pack a directory into a DOCX, PPTX, or XLSX file" ) parser.add_argument("input_directory", help="Unpacked Office document directory") parser.add_argument("output_file", help="Output Office file (.docx/.pptx/.xlsx)") parser.add_argument( "--original", help="Original file for validation comparison", ) parser.add_argument( "--validate", type=lambda x: x.lower() == "true", default=True, metavar="true|false", help="Run validation with auto-repair (default: true)", ) args = parser.parse_args() _, message = pack( args.input_directory, args.output_file, original_file=args.original, validate=args.validate, ) print(message) if "Error" in message: sys.exit(1) ================================================ FILE: skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd ================================================ ================================================ FILE: skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd ================================================ ================================================ FILE: skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd ================================================ ================================================ FILE: skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd ================================================ ================================================ FILE: skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd ================================================ ================================================ FILE: skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-picture.xsd ================================================ ================================================ FILE: skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd ================================================ ================================================ FILE: skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd ================================================ ================================================ FILE: skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/pml.xsd ================================================ ================================================ FILE: skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd ================================================ ================================================ FILE: skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd ================================================ ================================================ FILE: skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd ================================================ ================================================ FILE: skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd ================================================ ================================================ FILE: skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd ================================================ ================================================ FILE: skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd ================================================ ================================================ FILE: skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd ================================================ ================================================ FILE: skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd ================================================ ================================================ FILE: skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-math.xsd ================================================ ================================================ FILE: skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd ================================================ ================================================ FILE: skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/sml.xsd ================================================ ================================================ FILE: skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-main.xsd ================================================ ================================================ FILE: skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd ================================================ ================================================ FILE: skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd ================================================ ================================================ FILE: skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd ================================================ ================================================ FILE: skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd ================================================ ================================================ FILE: skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/wml.xsd ================================================ ================================================ FILE: skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/xml.xsd ================================================ See http://www.w3.org/XML/1998/namespace.html and http://www.w3.org/TR/REC-xml for information about this namespace. This schema document describes the XML namespace, in a form suitable for import by other schema documents. Note that local names in this namespace are intended to be defined only by the World Wide Web Consortium or its subgroups. The following names are currently defined in this namespace and should not be used with conflicting semantics by any Working Group, specification, or document instance: base (as an attribute name): denotes an attribute whose value provides a URI to be used as the base for interpreting any relative URIs in the scope of the element on which it appears; its value is inherited. This name is reserved by virtue of its definition in the XML Base specification. lang (as an attribute name): denotes an attribute whose value is a language code for the natural language of the content of any element; its value is inherited. This name is reserved by virtue of its definition in the XML specification. space (as an attribute name): denotes an attribute whose value is a keyword indicating what whitespace processing discipline is intended for the content of the element; its value is inherited. This name is reserved by virtue of its definition in the XML specification. Father (in any context at all): denotes Jon Bosak, the chair of the original XML Working Group. This name is reserved by the following decision of the W3C XML Plenary and XML Coordination groups: In appreciation for his vision, leadership and dedication the W3C XML Plenary on this 10th day of February, 2000 reserves for Jon Bosak in perpetuity the XML name xml:Father This schema defines attributes and an attribute group suitable for use by schemas wishing to allow xml:base, xml:lang or xml:space attributes on elements they define. To enable this, such a schema must import this schema for the XML namespace, e.g. as follows: <schema . . .> . . . <import namespace="http://www.w3.org/XML/1998/namespace" schemaLocation="http://www.w3.org/2001/03/xml.xsd"/> Subsequently, qualified reference to any of the attributes or the group defined below will have the desired effect, e.g. <type . . .> . . . <attributeGroup ref="xml:specialAttrs"/> will define a type which will schema-validate an instance element with any of those attributes In keeping with the XML Schema WG's standard versioning policy, this schema document will persist at http://www.w3.org/2001/03/xml.xsd. At the date of issue it can also be found at http://www.w3.org/2001/xml.xsd. The schema document at that URI may however change in the future, in order to remain compatible with the latest version of XML Schema itself. In other words, if the XML Schema namespace changes, the version of this document at http://www.w3.org/2001/xml.xsd will change accordingly; the version at http://www.w3.org/2001/03/xml.xsd will not change. In due course, we should install the relevant ISO 2- and 3-letter codes as the enumerated possible values . . . See http://www.w3.org/TR/xmlbase/ for information about this attribute. ================================================ FILE: skills/docx/scripts/office/schemas/ecma/fouth-edition/opc-contentTypes.xsd ================================================  ================================================ FILE: skills/docx/scripts/office/schemas/ecma/fouth-edition/opc-coreProperties.xsd ================================================  ================================================ FILE: skills/docx/scripts/office/schemas/ecma/fouth-edition/opc-digSig.xsd ================================================ ================================================ FILE: skills/docx/scripts/office/schemas/ecma/fouth-edition/opc-relationships.xsd ================================================  ================================================ FILE: skills/docx/scripts/office/schemas/mce/mc.xsd ================================================ ================================================ FILE: skills/docx/scripts/office/schemas/microsoft/wml-2010.xsd ================================================ ================================================ FILE: skills/docx/scripts/office/schemas/microsoft/wml-2012.xsd ================================================ ================================================ FILE: skills/docx/scripts/office/schemas/microsoft/wml-2018.xsd ================================================ ================================================ FILE: skills/docx/scripts/office/schemas/microsoft/wml-cex-2018.xsd ================================================ ================================================ FILE: skills/docx/scripts/office/schemas/microsoft/wml-cid-2016.xsd ================================================ ================================================ FILE: skills/docx/scripts/office/schemas/microsoft/wml-sdtdatahash-2020.xsd ================================================ ================================================ FILE: skills/docx/scripts/office/schemas/microsoft/wml-symex-2015.xsd ================================================ ================================================ FILE: skills/docx/scripts/office/soffice.py ================================================ """ Helper for running LibreOffice (soffice) in environments where AF_UNIX sockets may be blocked (e.g., sandboxed VMs). Detects the restriction at runtime and applies an LD_PRELOAD shim if needed. Usage: from office.soffice import run_soffice, get_soffice_env # Option 1 – run soffice directly result = run_soffice(["--headless", "--convert-to", "pdf", "input.docx"]) # Option 2 – get env dict for your own subprocess calls env = get_soffice_env() subprocess.run(["soffice", ...], env=env) """ import os import socket import subprocess import tempfile from pathlib import Path def get_soffice_env() -> dict: env = os.environ.copy() env["SAL_USE_VCLPLUGIN"] = "svp" if _needs_shim(): shim = _ensure_shim() env["LD_PRELOAD"] = str(shim) return env def run_soffice(args: list[str], **kwargs) -> subprocess.CompletedProcess: env = get_soffice_env() return subprocess.run(["soffice"] + args, env=env, **kwargs) _SHIM_SO = Path(tempfile.gettempdir()) / "lo_socket_shim.so" def _needs_shim() -> bool: try: s = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM) s.close() return False except OSError: return True def _ensure_shim() -> Path: if _SHIM_SO.exists(): return _SHIM_SO src = Path(tempfile.gettempdir()) / "lo_socket_shim.c" src.write_text(_SHIM_SOURCE) subprocess.run( ["gcc", "-shared", "-fPIC", "-o", str(_SHIM_SO), str(src), "-ldl"], check=True, capture_output=True, ) src.unlink() return _SHIM_SO _SHIM_SOURCE = r""" #define _GNU_SOURCE #include #include #include #include #include #include #include static int (*real_socket)(int, int, int); static int (*real_socketpair)(int, int, int, int[2]); static int (*real_listen)(int, int); static int (*real_accept)(int, struct sockaddr *, socklen_t *); static int (*real_close)(int); static int (*real_read)(int, void *, size_t); /* Per-FD bookkeeping (FDs >= 1024 are passed through unshimmed). */ static int is_shimmed[1024]; static int peer_of[1024]; static int wake_r[1024]; /* accept() blocks reading this */ static int wake_w[1024]; /* close() writes to this */ static int listener_fd = -1; /* FD that received listen() */ __attribute__((constructor)) static void init(void) { real_socket = dlsym(RTLD_NEXT, "socket"); real_socketpair = dlsym(RTLD_NEXT, "socketpair"); real_listen = dlsym(RTLD_NEXT, "listen"); real_accept = dlsym(RTLD_NEXT, "accept"); real_close = dlsym(RTLD_NEXT, "close"); real_read = dlsym(RTLD_NEXT, "read"); for (int i = 0; i < 1024; i++) { peer_of[i] = -1; wake_r[i] = -1; wake_w[i] = -1; } } /* ---- socket ---------------------------------------------------------- */ int socket(int domain, int type, int protocol) { if (domain == AF_UNIX) { int fd = real_socket(domain, type, protocol); if (fd >= 0) return fd; /* socket(AF_UNIX) blocked – fall back to socketpair(). */ int sv[2]; if (real_socketpair(domain, type, protocol, sv) == 0) { if (sv[0] >= 0 && sv[0] < 1024) { is_shimmed[sv[0]] = 1; peer_of[sv[0]] = sv[1]; int wp[2]; if (pipe(wp) == 0) { wake_r[sv[0]] = wp[0]; wake_w[sv[0]] = wp[1]; } } return sv[0]; } errno = EPERM; return -1; } return real_socket(domain, type, protocol); } /* ---- listen ---------------------------------------------------------- */ int listen(int sockfd, int backlog) { if (sockfd >= 0 && sockfd < 1024 && is_shimmed[sockfd]) { listener_fd = sockfd; return 0; } return real_listen(sockfd, backlog); } /* ---- accept ---------------------------------------------------------- */ int accept(int sockfd, struct sockaddr *addr, socklen_t *addrlen) { if (sockfd >= 0 && sockfd < 1024 && is_shimmed[sockfd]) { /* Block until close() writes to the wake pipe. */ if (wake_r[sockfd] >= 0) { char buf; real_read(wake_r[sockfd], &buf, 1); } errno = ECONNABORTED; return -1; } return real_accept(sockfd, addr, addrlen); } /* ---- close ----------------------------------------------------------- */ int close(int fd) { if (fd >= 0 && fd < 1024 && is_shimmed[fd]) { int was_listener = (fd == listener_fd); is_shimmed[fd] = 0; if (wake_w[fd] >= 0) { /* unblock accept() */ char c = 0; write(wake_w[fd], &c, 1); real_close(wake_w[fd]); wake_w[fd] = -1; } if (wake_r[fd] >= 0) { real_close(wake_r[fd]); wake_r[fd] = -1; } if (peer_of[fd] >= 0) { real_close(peer_of[fd]); peer_of[fd] = -1; } if (was_listener) _exit(0); /* conversion done – exit */ } return real_close(fd); } """ if __name__ == "__main__": import sys result = run_soffice(sys.argv[1:]) sys.exit(result.returncode) ================================================ FILE: skills/docx/scripts/office/unpack.py ================================================ """Unpack Office files (DOCX, PPTX, XLSX) for editing. Extracts the ZIP archive, pretty-prints XML files, and optionally: - Merges adjacent runs with identical formatting (DOCX only) - Simplifies adjacent tracked changes from same author (DOCX only) Usage: python unpack.py [options] Examples: python unpack.py document.docx unpacked/ python unpack.py presentation.pptx unpacked/ python unpack.py document.docx unpacked/ --merge-runs false """ import argparse import sys import zipfile from pathlib import Path import defusedxml.minidom from helpers.merge_runs import merge_runs as do_merge_runs from helpers.simplify_redlines import simplify_redlines as do_simplify_redlines SMART_QUOTE_REPLACEMENTS = { "\u201c": "“", "\u201d": "”", "\u2018": "‘", "\u2019": "’", } def unpack( input_file: str, output_directory: str, merge_runs: bool = True, simplify_redlines: bool = True, ) -> tuple[None, str]: input_path = Path(input_file) output_path = Path(output_directory) suffix = input_path.suffix.lower() if not input_path.exists(): return None, f"Error: {input_file} does not exist" if suffix not in {".docx", ".pptx", ".xlsx"}: return None, f"Error: {input_file} must be a .docx, .pptx, or .xlsx file" try: output_path.mkdir(parents=True, exist_ok=True) with zipfile.ZipFile(input_path, "r") as zf: zf.extractall(output_path) xml_files = list(output_path.rglob("*.xml")) + list(output_path.rglob("*.rels")) for xml_file in xml_files: _pretty_print_xml(xml_file) message = f"Unpacked {input_file} ({len(xml_files)} XML files)" if suffix == ".docx": if simplify_redlines: simplify_count, _ = do_simplify_redlines(str(output_path)) message += f", simplified {simplify_count} tracked changes" if merge_runs: merge_count, _ = do_merge_runs(str(output_path)) message += f", merged {merge_count} runs" for xml_file in xml_files: _escape_smart_quotes(xml_file) return None, message except zipfile.BadZipFile: return None, f"Error: {input_file} is not a valid Office file" except Exception as e: return None, f"Error unpacking: {e}" def _pretty_print_xml(xml_file: Path) -> None: try: content = xml_file.read_text(encoding="utf-8") dom = defusedxml.minidom.parseString(content) xml_file.write_bytes(dom.toprettyxml(indent=" ", encoding="utf-8")) except Exception: pass def _escape_smart_quotes(xml_file: Path) -> None: try: content = xml_file.read_text(encoding="utf-8") for char, entity in SMART_QUOTE_REPLACEMENTS.items(): content = content.replace(char, entity) xml_file.write_text(content, encoding="utf-8") except Exception: pass if __name__ == "__main__": parser = argparse.ArgumentParser( description="Unpack an Office file (DOCX, PPTX, XLSX) for editing" ) parser.add_argument("input_file", help="Office file to unpack") parser.add_argument("output_directory", help="Output directory") parser.add_argument( "--merge-runs", type=lambda x: x.lower() == "true", default=True, metavar="true|false", help="Merge adjacent runs with identical formatting (DOCX only, default: true)", ) parser.add_argument( "--simplify-redlines", type=lambda x: x.lower() == "true", default=True, metavar="true|false", help="Merge adjacent tracked changes from same author (DOCX only, default: true)", ) args = parser.parse_args() _, message = unpack( args.input_file, args.output_directory, merge_runs=args.merge_runs, simplify_redlines=args.simplify_redlines, ) print(message) if "Error" in message: sys.exit(1) ================================================ FILE: skills/docx/scripts/office/validate.py ================================================ """ Command line tool to validate Office document XML files against XSD schemas and tracked changes. Usage: python validate.py [--original ] [--auto-repair] [--author NAME] The first argument can be either: - An unpacked directory containing the Office document XML files - A packed Office file (.docx/.pptx/.xlsx) which will be unpacked to a temp directory Auto-repair fixes: - paraId/durableId values that exceed OOXML limits - Missing xml:space="preserve" on w:t elements with whitespace """ import argparse import sys import tempfile import zipfile from pathlib import Path from validators import DOCXSchemaValidator, PPTXSchemaValidator, RedliningValidator def main(): parser = argparse.ArgumentParser(description="Validate Office document XML files") parser.add_argument( "path", help="Path to unpacked directory or packed Office file (.docx/.pptx/.xlsx)", ) parser.add_argument( "--original", required=False, default=None, help="Path to original file (.docx/.pptx/.xlsx). If omitted, all XSD errors are reported and redlining validation is skipped.", ) parser.add_argument( "-v", "--verbose", action="store_true", help="Enable verbose output", ) parser.add_argument( "--auto-repair", action="store_true", help="Automatically repair common issues (hex IDs, whitespace preservation)", ) parser.add_argument( "--author", default="Claude", help="Author name for redlining validation (default: Claude)", ) args = parser.parse_args() path = Path(args.path) assert path.exists(), f"Error: {path} does not exist" original_file = None if args.original: original_file = Path(args.original) assert original_file.is_file(), f"Error: {original_file} is not a file" assert original_file.suffix.lower() in [".docx", ".pptx", ".xlsx"], ( f"Error: {original_file} must be a .docx, .pptx, or .xlsx file" ) file_extension = (original_file or path).suffix.lower() assert file_extension in [".docx", ".pptx", ".xlsx"], ( f"Error: Cannot determine file type from {path}. Use --original or provide a .docx/.pptx/.xlsx file." ) if path.is_file() and path.suffix.lower() in [".docx", ".pptx", ".xlsx"]: temp_dir = tempfile.mkdtemp() with zipfile.ZipFile(path, "r") as zf: zf.extractall(temp_dir) unpacked_dir = Path(temp_dir) else: assert path.is_dir(), f"Error: {path} is not a directory or Office file" unpacked_dir = path match file_extension: case ".docx": validators = [ DOCXSchemaValidator(unpacked_dir, original_file, verbose=args.verbose), ] if original_file: validators.append( RedliningValidator(unpacked_dir, original_file, verbose=args.verbose, author=args.author) ) case ".pptx": validators = [ PPTXSchemaValidator(unpacked_dir, original_file, verbose=args.verbose), ] case _: print(f"Error: Validation not supported for file type {file_extension}") sys.exit(1) if args.auto_repair: total_repairs = sum(v.repair() for v in validators) if total_repairs: print(f"Auto-repaired {total_repairs} issue(s)") success = all(v.validate() for v in validators) if success: print("All validations PASSED!") sys.exit(0 if success else 1) if __name__ == "__main__": main() ================================================ FILE: skills/docx/scripts/office/validators/__init__.py ================================================ """ Validation modules for Word document processing. """ from .base import BaseSchemaValidator from .docx import DOCXSchemaValidator from .pptx import PPTXSchemaValidator from .redlining import RedliningValidator __all__ = [ "BaseSchemaValidator", "DOCXSchemaValidator", "PPTXSchemaValidator", "RedliningValidator", ] ================================================ FILE: skills/docx/scripts/office/validators/base.py ================================================ """ Base validator with common validation logic for document files. """ import re from pathlib import Path import defusedxml.minidom import lxml.etree class BaseSchemaValidator: IGNORED_VALIDATION_ERRORS = [ "hyphenationZone", "purl.org/dc/terms", ] UNIQUE_ID_REQUIREMENTS = { "comment": ("id", "file"), "commentrangestart": ("id", "file"), "commentrangeend": ("id", "file"), "bookmarkstart": ("id", "file"), "bookmarkend": ("id", "file"), "sldid": ("id", "file"), "sldmasterid": ("id", "global"), "sldlayoutid": ("id", "global"), "cm": ("authorid", "file"), "sheet": ("sheetid", "file"), "definedname": ("id", "file"), "cxnsp": ("id", "file"), "sp": ("id", "file"), "pic": ("id", "file"), "grpsp": ("id", "file"), } EXCLUDED_ID_CONTAINERS = { "sectionlst", } ELEMENT_RELATIONSHIP_TYPES = {} SCHEMA_MAPPINGS = { "word": "ISO-IEC29500-4_2016/wml.xsd", "ppt": "ISO-IEC29500-4_2016/pml.xsd", "xl": "ISO-IEC29500-4_2016/sml.xsd", "[Content_Types].xml": "ecma/fouth-edition/opc-contentTypes.xsd", "app.xml": "ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd", "core.xml": "ecma/fouth-edition/opc-coreProperties.xsd", "custom.xml": "ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd", ".rels": "ecma/fouth-edition/opc-relationships.xsd", "people.xml": "microsoft/wml-2012.xsd", "commentsIds.xml": "microsoft/wml-cid-2016.xsd", "commentsExtensible.xml": "microsoft/wml-cex-2018.xsd", "commentsExtended.xml": "microsoft/wml-2012.xsd", "chart": "ISO-IEC29500-4_2016/dml-chart.xsd", "theme": "ISO-IEC29500-4_2016/dml-main.xsd", "drawing": "ISO-IEC29500-4_2016/dml-main.xsd", } MC_NAMESPACE = "http://schemas.openxmlformats.org/markup-compatibility/2006" XML_NAMESPACE = "http://www.w3.org/XML/1998/namespace" PACKAGE_RELATIONSHIPS_NAMESPACE = ( "http://schemas.openxmlformats.org/package/2006/relationships" ) OFFICE_RELATIONSHIPS_NAMESPACE = ( "http://schemas.openxmlformats.org/officeDocument/2006/relationships" ) CONTENT_TYPES_NAMESPACE = ( "http://schemas.openxmlformats.org/package/2006/content-types" ) MAIN_CONTENT_FOLDERS = {"word", "ppt", "xl"} OOXML_NAMESPACES = { "http://schemas.openxmlformats.org/officeDocument/2006/math", "http://schemas.openxmlformats.org/officeDocument/2006/relationships", "http://schemas.openxmlformats.org/schemaLibrary/2006/main", "http://schemas.openxmlformats.org/drawingml/2006/main", "http://schemas.openxmlformats.org/drawingml/2006/chart", "http://schemas.openxmlformats.org/drawingml/2006/chartDrawing", "http://schemas.openxmlformats.org/drawingml/2006/diagram", "http://schemas.openxmlformats.org/drawingml/2006/picture", "http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing", "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing", "http://schemas.openxmlformats.org/wordprocessingml/2006/main", "http://schemas.openxmlformats.org/presentationml/2006/main", "http://schemas.openxmlformats.org/spreadsheetml/2006/main", "http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes", "http://www.w3.org/XML/1998/namespace", } def __init__(self, unpacked_dir, original_file=None, verbose=False): self.unpacked_dir = Path(unpacked_dir).resolve() self.original_file = Path(original_file) if original_file else None self.verbose = verbose self.schemas_dir = Path(__file__).parent.parent / "schemas" patterns = ["*.xml", "*.rels"] self.xml_files = [ f for pattern in patterns for f in self.unpacked_dir.rglob(pattern) ] if not self.xml_files: print(f"Warning: No XML files found in {self.unpacked_dir}") def validate(self): raise NotImplementedError("Subclasses must implement the validate method") def repair(self) -> int: return self.repair_whitespace_preservation() def repair_whitespace_preservation(self) -> int: repairs = 0 for xml_file in self.xml_files: try: content = xml_file.read_text(encoding="utf-8") dom = defusedxml.minidom.parseString(content) modified = False for elem in dom.getElementsByTagName("*"): if elem.tagName.endswith(":t") and elem.firstChild: text = elem.firstChild.nodeValue if text and (text.startswith((' ', '\t')) or text.endswith((' ', '\t'))): if elem.getAttribute("xml:space") != "preserve": elem.setAttribute("xml:space", "preserve") text_preview = repr(text[:30]) + "..." if len(text) > 30 else repr(text) print(f" Repaired: {xml_file.name}: Added xml:space='preserve' to {elem.tagName}: {text_preview}") repairs += 1 modified = True if modified: xml_file.write_bytes(dom.toxml(encoding="UTF-8")) except Exception: pass return repairs def validate_xml(self): errors = [] for xml_file in self.xml_files: try: lxml.etree.parse(str(xml_file)) except lxml.etree.XMLSyntaxError as e: errors.append( f" {xml_file.relative_to(self.unpacked_dir)}: " f"Line {e.lineno}: {e.msg}" ) except Exception as e: errors.append( f" {xml_file.relative_to(self.unpacked_dir)}: " f"Unexpected error: {str(e)}" ) if errors: print(f"FAILED - Found {len(errors)} XML violations:") for error in errors: print(error) return False else: if self.verbose: print("PASSED - All XML files are well-formed") return True def validate_namespaces(self): errors = [] for xml_file in self.xml_files: try: root = lxml.etree.parse(str(xml_file)).getroot() declared = set(root.nsmap.keys()) - {None} for attr_val in [ v for k, v in root.attrib.items() if k.endswith("Ignorable") ]: undeclared = set(attr_val.split()) - declared errors.extend( f" {xml_file.relative_to(self.unpacked_dir)}: " f"Namespace '{ns}' in Ignorable but not declared" for ns in undeclared ) except lxml.etree.XMLSyntaxError: continue if errors: print(f"FAILED - {len(errors)} namespace issues:") for error in errors: print(error) return False if self.verbose: print("PASSED - All namespace prefixes properly declared") return True def validate_unique_ids(self): errors = [] global_ids = {} for xml_file in self.xml_files: try: root = lxml.etree.parse(str(xml_file)).getroot() file_ids = {} mc_elements = root.xpath( ".//mc:AlternateContent", namespaces={"mc": self.MC_NAMESPACE} ) for elem in mc_elements: elem.getparent().remove(elem) for elem in root.iter(): tag = ( elem.tag.split("}")[-1].lower() if "}" in elem.tag else elem.tag.lower() ) if tag in self.UNIQUE_ID_REQUIREMENTS: in_excluded_container = any( ancestor.tag.split("}")[-1].lower() in self.EXCLUDED_ID_CONTAINERS for ancestor in elem.iterancestors() ) if in_excluded_container: continue attr_name, scope = self.UNIQUE_ID_REQUIREMENTS[tag] id_value = None for attr, value in elem.attrib.items(): attr_local = ( attr.split("}")[-1].lower() if "}" in attr else attr.lower() ) if attr_local == attr_name: id_value = value break if id_value is not None: if scope == "global": if id_value in global_ids: prev_file, prev_line, prev_tag = global_ids[ id_value ] errors.append( f" {xml_file.relative_to(self.unpacked_dir)}: " f"Line {elem.sourceline}: Global ID '{id_value}' in <{tag}> " f"already used in {prev_file} at line {prev_line} in <{prev_tag}>" ) else: global_ids[id_value] = ( xml_file.relative_to(self.unpacked_dir), elem.sourceline, tag, ) elif scope == "file": key = (tag, attr_name) if key not in file_ids: file_ids[key] = {} if id_value in file_ids[key]: prev_line = file_ids[key][id_value] errors.append( f" {xml_file.relative_to(self.unpacked_dir)}: " f"Line {elem.sourceline}: Duplicate {attr_name}='{id_value}' in <{tag}> " f"(first occurrence at line {prev_line})" ) else: file_ids[key][id_value] = elem.sourceline except (lxml.etree.XMLSyntaxError, Exception) as e: errors.append( f" {xml_file.relative_to(self.unpacked_dir)}: Error: {e}" ) if errors: print(f"FAILED - Found {len(errors)} ID uniqueness violations:") for error in errors: print(error) return False else: if self.verbose: print("PASSED - All required IDs are unique") return True def validate_file_references(self): errors = [] rels_files = list(self.unpacked_dir.rglob("*.rels")) if not rels_files: if self.verbose: print("PASSED - No .rels files found") return True all_files = [] for file_path in self.unpacked_dir.rglob("*"): if ( file_path.is_file() and file_path.name != "[Content_Types].xml" and not file_path.name.endswith(".rels") ): all_files.append(file_path.resolve()) all_referenced_files = set() if self.verbose: print( f"Found {len(rels_files)} .rels files and {len(all_files)} target files" ) for rels_file in rels_files: try: rels_root = lxml.etree.parse(str(rels_file)).getroot() rels_dir = rels_file.parent referenced_files = set() broken_refs = [] for rel in rels_root.findall( ".//ns:Relationship", namespaces={"ns": self.PACKAGE_RELATIONSHIPS_NAMESPACE}, ): target = rel.get("Target") if target and not target.startswith( ("http", "mailto:") ): if target.startswith("/"): target_path = self.unpacked_dir / target.lstrip("/") elif rels_file.name == ".rels": target_path = self.unpacked_dir / target else: base_dir = rels_dir.parent target_path = base_dir / target try: target_path = target_path.resolve() if target_path.exists() and target_path.is_file(): referenced_files.add(target_path) all_referenced_files.add(target_path) else: broken_refs.append((target, rel.sourceline)) except (OSError, ValueError): broken_refs.append((target, rel.sourceline)) if broken_refs: rel_path = rels_file.relative_to(self.unpacked_dir) for broken_ref, line_num in broken_refs: errors.append( f" {rel_path}: Line {line_num}: Broken reference to {broken_ref}" ) except Exception as e: rel_path = rels_file.relative_to(self.unpacked_dir) errors.append(f" Error parsing {rel_path}: {e}") unreferenced_files = set(all_files) - all_referenced_files if unreferenced_files: for unref_file in sorted(unreferenced_files): unref_rel_path = unref_file.relative_to(self.unpacked_dir) errors.append(f" Unreferenced file: {unref_rel_path}") if errors: print(f"FAILED - Found {len(errors)} relationship validation errors:") for error in errors: print(error) print( "CRITICAL: These errors will cause the document to appear corrupt. " + "Broken references MUST be fixed, " + "and unreferenced files MUST be referenced or removed." ) return False else: if self.verbose: print( "PASSED - All references are valid and all files are properly referenced" ) return True def validate_all_relationship_ids(self): import lxml.etree errors = [] for xml_file in self.xml_files: if xml_file.suffix == ".rels": continue rels_dir = xml_file.parent / "_rels" rels_file = rels_dir / f"{xml_file.name}.rels" if not rels_file.exists(): continue try: rels_root = lxml.etree.parse(str(rels_file)).getroot() rid_to_type = {} for rel in rels_root.findall( f".//{{{self.PACKAGE_RELATIONSHIPS_NAMESPACE}}}Relationship" ): rid = rel.get("Id") rel_type = rel.get("Type", "") if rid: if rid in rid_to_type: rels_rel_path = rels_file.relative_to(self.unpacked_dir) errors.append( f" {rels_rel_path}: Line {rel.sourceline}: " f"Duplicate relationship ID '{rid}' (IDs must be unique)" ) type_name = ( rel_type.split("/")[-1] if "/" in rel_type else rel_type ) rid_to_type[rid] = type_name xml_root = lxml.etree.parse(str(xml_file)).getroot() r_ns = self.OFFICE_RELATIONSHIPS_NAMESPACE rid_attrs_to_check = ["id", "embed", "link"] for elem in xml_root.iter(): for attr_name in rid_attrs_to_check: rid_attr = elem.get(f"{{{r_ns}}}{attr_name}") if not rid_attr: continue xml_rel_path = xml_file.relative_to(self.unpacked_dir) elem_name = ( elem.tag.split("}")[-1] if "}" in elem.tag else elem.tag ) if rid_attr not in rid_to_type: errors.append( f" {xml_rel_path}: Line {elem.sourceline}: " f"<{elem_name}> r:{attr_name} references non-existent relationship '{rid_attr}' " f"(valid IDs: {', '.join(sorted(rid_to_type.keys())[:5])}{'...' if len(rid_to_type) > 5 else ''})" ) elif attr_name == "id" and self.ELEMENT_RELATIONSHIP_TYPES: expected_type = self._get_expected_relationship_type( elem_name ) if expected_type: actual_type = rid_to_type[rid_attr] if expected_type not in actual_type.lower(): errors.append( f" {xml_rel_path}: Line {elem.sourceline}: " f"<{elem_name}> references '{rid_attr}' which points to '{actual_type}' " f"but should point to a '{expected_type}' relationship" ) except Exception as e: xml_rel_path = xml_file.relative_to(self.unpacked_dir) errors.append(f" Error processing {xml_rel_path}: {e}") if errors: print(f"FAILED - Found {len(errors)} relationship ID reference errors:") for error in errors: print(error) print("\nThese ID mismatches will cause the document to appear corrupt!") return False else: if self.verbose: print("PASSED - All relationship ID references are valid") return True def _get_expected_relationship_type(self, element_name): elem_lower = element_name.lower() if elem_lower in self.ELEMENT_RELATIONSHIP_TYPES: return self.ELEMENT_RELATIONSHIP_TYPES[elem_lower] if elem_lower.endswith("id") and len(elem_lower) > 2: prefix = elem_lower[:-2] if prefix.endswith("master"): return prefix.lower() elif prefix.endswith("layout"): return prefix.lower() else: if prefix == "sld": return "slide" return prefix.lower() if elem_lower.endswith("reference") and len(elem_lower) > 9: prefix = elem_lower[:-9] return prefix.lower() return None def validate_content_types(self): errors = [] content_types_file = self.unpacked_dir / "[Content_Types].xml" if not content_types_file.exists(): print("FAILED - [Content_Types].xml file not found") return False try: root = lxml.etree.parse(str(content_types_file)).getroot() declared_parts = set() declared_extensions = set() for override in root.findall( f".//{{{self.CONTENT_TYPES_NAMESPACE}}}Override" ): part_name = override.get("PartName") if part_name is not None: declared_parts.add(part_name.lstrip("/")) for default in root.findall( f".//{{{self.CONTENT_TYPES_NAMESPACE}}}Default" ): extension = default.get("Extension") if extension is not None: declared_extensions.add(extension.lower()) declarable_roots = { "sld", "sldLayout", "sldMaster", "presentation", "document", "workbook", "worksheet", "theme", } media_extensions = { "png": "image/png", "jpg": "image/jpeg", "jpeg": "image/jpeg", "gif": "image/gif", "bmp": "image/bmp", "tiff": "image/tiff", "wmf": "image/x-wmf", "emf": "image/x-emf", } all_files = list(self.unpacked_dir.rglob("*")) all_files = [f for f in all_files if f.is_file()] for xml_file in self.xml_files: path_str = str(xml_file.relative_to(self.unpacked_dir)).replace( "\\", "/" ) if any( skip in path_str for skip in [".rels", "[Content_Types]", "docProps/", "_rels/"] ): continue try: root_tag = lxml.etree.parse(str(xml_file)).getroot().tag root_name = root_tag.split("}")[-1] if "}" in root_tag else root_tag if root_name in declarable_roots and path_str not in declared_parts: errors.append( f" {path_str}: File with <{root_name}> root not declared in [Content_Types].xml" ) except Exception: continue for file_path in all_files: if file_path.suffix.lower() in {".xml", ".rels"}: continue if file_path.name == "[Content_Types].xml": continue if "_rels" in file_path.parts or "docProps" in file_path.parts: continue extension = file_path.suffix.lstrip(".").lower() if extension and extension not in declared_extensions: if extension in media_extensions: relative_path = file_path.relative_to(self.unpacked_dir) errors.append( f' {relative_path}: File with extension \'{extension}\' not declared in [Content_Types].xml - should add: ' ) except Exception as e: errors.append(f" Error parsing [Content_Types].xml: {e}") if errors: print(f"FAILED - Found {len(errors)} content type declaration errors:") for error in errors: print(error) return False else: if self.verbose: print( "PASSED - All content files are properly declared in [Content_Types].xml" ) return True def validate_file_against_xsd(self, xml_file, verbose=False): xml_file = Path(xml_file).resolve() unpacked_dir = self.unpacked_dir.resolve() is_valid, current_errors = self._validate_single_file_xsd( xml_file, unpacked_dir ) if is_valid is None: return None, set() elif is_valid: return True, set() original_errors = self._get_original_file_errors(xml_file) assert current_errors is not None new_errors = current_errors - original_errors new_errors = { e for e in new_errors if not any(pattern in e for pattern in self.IGNORED_VALIDATION_ERRORS) } if new_errors: if verbose: relative_path = xml_file.relative_to(unpacked_dir) print(f"FAILED - {relative_path}: {len(new_errors)} new error(s)") for error in list(new_errors)[:3]: truncated = error[:250] + "..." if len(error) > 250 else error print(f" - {truncated}") return False, new_errors else: if verbose: print( f"PASSED - No new errors (original had {len(current_errors)} errors)" ) return True, set() def validate_against_xsd(self): new_errors = [] original_error_count = 0 valid_count = 0 skipped_count = 0 for xml_file in self.xml_files: relative_path = str(xml_file.relative_to(self.unpacked_dir)) is_valid, new_file_errors = self.validate_file_against_xsd( xml_file, verbose=False ) if is_valid is None: skipped_count += 1 continue elif is_valid and not new_file_errors: valid_count += 1 continue elif is_valid: original_error_count += 1 valid_count += 1 continue new_errors.append(f" {relative_path}: {len(new_file_errors)} new error(s)") for error in list(new_file_errors)[:3]: new_errors.append( f" - {error[:250]}..." if len(error) > 250 else f" - {error}" ) if self.verbose: print(f"Validated {len(self.xml_files)} files:") print(f" - Valid: {valid_count}") print(f" - Skipped (no schema): {skipped_count}") if original_error_count: print(f" - With original errors (ignored): {original_error_count}") print( f" - With NEW errors: {len(new_errors) > 0 and len([e for e in new_errors if not e.startswith(' ')]) or 0}" ) if new_errors: print("\nFAILED - Found NEW validation errors:") for error in new_errors: print(error) return False else: if self.verbose: print("\nPASSED - No new XSD validation errors introduced") return True def _get_schema_path(self, xml_file): if xml_file.name in self.SCHEMA_MAPPINGS: return self.schemas_dir / self.SCHEMA_MAPPINGS[xml_file.name] if xml_file.suffix == ".rels": return self.schemas_dir / self.SCHEMA_MAPPINGS[".rels"] if "charts/" in str(xml_file) and xml_file.name.startswith("chart"): return self.schemas_dir / self.SCHEMA_MAPPINGS["chart"] if "theme/" in str(xml_file) and xml_file.name.startswith("theme"): return self.schemas_dir / self.SCHEMA_MAPPINGS["theme"] if xml_file.parent.name in self.MAIN_CONTENT_FOLDERS: return self.schemas_dir / self.SCHEMA_MAPPINGS[xml_file.parent.name] return None def _clean_ignorable_namespaces(self, xml_doc): xml_string = lxml.etree.tostring(xml_doc, encoding="unicode") xml_copy = lxml.etree.fromstring(xml_string) for elem in xml_copy.iter(): attrs_to_remove = [] for attr in elem.attrib: if "{" in attr: ns = attr.split("}")[0][1:] if ns not in self.OOXML_NAMESPACES: attrs_to_remove.append(attr) for attr in attrs_to_remove: del elem.attrib[attr] self._remove_ignorable_elements(xml_copy) return lxml.etree.ElementTree(xml_copy) def _remove_ignorable_elements(self, root): elements_to_remove = [] for elem in list(root): if not hasattr(elem, "tag") or callable(elem.tag): continue tag_str = str(elem.tag) if tag_str.startswith("{"): ns = tag_str.split("}")[0][1:] if ns not in self.OOXML_NAMESPACES: elements_to_remove.append(elem) continue self._remove_ignorable_elements(elem) for elem in elements_to_remove: root.remove(elem) def _preprocess_for_mc_ignorable(self, xml_doc): root = xml_doc.getroot() if f"{{{self.MC_NAMESPACE}}}Ignorable" in root.attrib: del root.attrib[f"{{{self.MC_NAMESPACE}}}Ignorable"] return xml_doc def _validate_single_file_xsd(self, xml_file, base_path): schema_path = self._get_schema_path(xml_file) if not schema_path: return None, None try: with open(schema_path, "rb") as xsd_file: parser = lxml.etree.XMLParser() xsd_doc = lxml.etree.parse( xsd_file, parser=parser, base_url=str(schema_path) ) schema = lxml.etree.XMLSchema(xsd_doc) with open(xml_file, "r") as f: xml_doc = lxml.etree.parse(f) xml_doc, _ = self._remove_template_tags_from_text_nodes(xml_doc) xml_doc = self._preprocess_for_mc_ignorable(xml_doc) relative_path = xml_file.relative_to(base_path) if ( relative_path.parts and relative_path.parts[0] in self.MAIN_CONTENT_FOLDERS ): xml_doc = self._clean_ignorable_namespaces(xml_doc) if schema.validate(xml_doc): return True, set() else: errors = set() for error in schema.error_log: errors.add(error.message) return False, errors except Exception as e: return False, {str(e)} def _get_original_file_errors(self, xml_file): if self.original_file is None: return set() import tempfile import zipfile xml_file = Path(xml_file).resolve() unpacked_dir = self.unpacked_dir.resolve() relative_path = xml_file.relative_to(unpacked_dir) with tempfile.TemporaryDirectory() as temp_dir: temp_path = Path(temp_dir) with zipfile.ZipFile(self.original_file, "r") as zip_ref: zip_ref.extractall(temp_path) original_xml_file = temp_path / relative_path if not original_xml_file.exists(): return set() is_valid, errors = self._validate_single_file_xsd( original_xml_file, temp_path ) return errors if errors else set() def _remove_template_tags_from_text_nodes(self, xml_doc): warnings = [] template_pattern = re.compile(r"\{\{[^}]*\}\}") xml_string = lxml.etree.tostring(xml_doc, encoding="unicode") xml_copy = lxml.etree.fromstring(xml_string) def process_text_content(text, content_type): if not text: return text matches = list(template_pattern.finditer(text)) if matches: for match in matches: warnings.append( f"Found template tag in {content_type}: {match.group()}" ) return template_pattern.sub("", text) return text for elem in xml_copy.iter(): if not hasattr(elem, "tag") or callable(elem.tag): continue tag_str = str(elem.tag) if tag_str.endswith("}t") or tag_str == "t": continue elem.text = process_text_content(elem.text, "text content") elem.tail = process_text_content(elem.tail, "tail content") return lxml.etree.ElementTree(xml_copy), warnings if __name__ == "__main__": raise RuntimeError("This module should not be run directly.") ================================================ FILE: skills/docx/scripts/office/validators/docx.py ================================================ """ Validator for Word document XML files against XSD schemas. """ import random import re import tempfile import zipfile import defusedxml.minidom import lxml.etree from .base import BaseSchemaValidator class DOCXSchemaValidator(BaseSchemaValidator): WORD_2006_NAMESPACE = "http://schemas.openxmlformats.org/wordprocessingml/2006/main" W14_NAMESPACE = "http://schemas.microsoft.com/office/word/2010/wordml" W16CID_NAMESPACE = "http://schemas.microsoft.com/office/word/2016/wordml/cid" ELEMENT_RELATIONSHIP_TYPES = {} def validate(self): if not self.validate_xml(): return False all_valid = True if not self.validate_namespaces(): all_valid = False if not self.validate_unique_ids(): all_valid = False if not self.validate_file_references(): all_valid = False if not self.validate_content_types(): all_valid = False if not self.validate_against_xsd(): all_valid = False if not self.validate_whitespace_preservation(): all_valid = False if not self.validate_deletions(): all_valid = False if not self.validate_insertions(): all_valid = False if not self.validate_all_relationship_ids(): all_valid = False if not self.validate_id_constraints(): all_valid = False if not self.validate_comment_markers(): all_valid = False self.compare_paragraph_counts() return all_valid def validate_whitespace_preservation(self): errors = [] for xml_file in self.xml_files: if xml_file.name != "document.xml": continue try: root = lxml.etree.parse(str(xml_file)).getroot() for elem in root.iter(f"{{{self.WORD_2006_NAMESPACE}}}t"): if elem.text: text = elem.text if re.search(r"^[ \t\n\r]", text) or re.search( r"[ \t\n\r]$", text ): xml_space_attr = f"{{{self.XML_NAMESPACE}}}space" if ( xml_space_attr not in elem.attrib or elem.attrib[xml_space_attr] != "preserve" ): text_preview = ( repr(text)[:50] + "..." if len(repr(text)) > 50 else repr(text) ) errors.append( f" {xml_file.relative_to(self.unpacked_dir)}: " f"Line {elem.sourceline}: w:t element with whitespace missing xml:space='preserve': {text_preview}" ) except (lxml.etree.XMLSyntaxError, Exception) as e: errors.append( f" {xml_file.relative_to(self.unpacked_dir)}: Error: {e}" ) if errors: print(f"FAILED - Found {len(errors)} whitespace preservation violations:") for error in errors: print(error) return False else: if self.verbose: print("PASSED - All whitespace is properly preserved") return True def validate_deletions(self): errors = [] for xml_file in self.xml_files: if xml_file.name != "document.xml": continue try: root = lxml.etree.parse(str(xml_file)).getroot() namespaces = {"w": self.WORD_2006_NAMESPACE} for t_elem in root.xpath(".//w:del//w:t", namespaces=namespaces): if t_elem.text: text_preview = ( repr(t_elem.text)[:50] + "..." if len(repr(t_elem.text)) > 50 else repr(t_elem.text) ) errors.append( f" {xml_file.relative_to(self.unpacked_dir)}: " f"Line {t_elem.sourceline}: found within : {text_preview}" ) for instr_elem in root.xpath( ".//w:del//w:instrText", namespaces=namespaces ): text_preview = ( repr(instr_elem.text or "")[:50] + "..." if len(repr(instr_elem.text or "")) > 50 else repr(instr_elem.text or "") ) errors.append( f" {xml_file.relative_to(self.unpacked_dir)}: " f"Line {instr_elem.sourceline}: found within (use ): {text_preview}" ) except (lxml.etree.XMLSyntaxError, Exception) as e: errors.append( f" {xml_file.relative_to(self.unpacked_dir)}: Error: {e}" ) if errors: print(f"FAILED - Found {len(errors)} deletion validation violations:") for error in errors: print(error) return False else: if self.verbose: print("PASSED - No w:t elements found within w:del elements") return True def count_paragraphs_in_unpacked(self): count = 0 for xml_file in self.xml_files: if xml_file.name != "document.xml": continue try: root = lxml.etree.parse(str(xml_file)).getroot() paragraphs = root.findall(f".//{{{self.WORD_2006_NAMESPACE}}}p") count = len(paragraphs) except Exception as e: print(f"Error counting paragraphs in unpacked document: {e}") return count def count_paragraphs_in_original(self): original = self.original_file if original is None: return 0 count = 0 try: with tempfile.TemporaryDirectory() as temp_dir: with zipfile.ZipFile(original, "r") as zip_ref: zip_ref.extractall(temp_dir) doc_xml_path = temp_dir + "/word/document.xml" root = lxml.etree.parse(doc_xml_path).getroot() paragraphs = root.findall(f".//{{{self.WORD_2006_NAMESPACE}}}p") count = len(paragraphs) except Exception as e: print(f"Error counting paragraphs in original document: {e}") return count def validate_insertions(self): errors = [] for xml_file in self.xml_files: if xml_file.name != "document.xml": continue try: root = lxml.etree.parse(str(xml_file)).getroot() namespaces = {"w": self.WORD_2006_NAMESPACE} invalid_elements = root.xpath( ".//w:ins//w:delText[not(ancestor::w:del)]", namespaces=namespaces ) for elem in invalid_elements: text_preview = ( repr(elem.text or "")[:50] + "..." if len(repr(elem.text or "")) > 50 else repr(elem.text or "") ) errors.append( f" {xml_file.relative_to(self.unpacked_dir)}: " f"Line {elem.sourceline}: within : {text_preview}" ) except (lxml.etree.XMLSyntaxError, Exception) as e: errors.append( f" {xml_file.relative_to(self.unpacked_dir)}: Error: {e}" ) if errors: print(f"FAILED - Found {len(errors)} insertion validation violations:") for error in errors: print(error) return False else: if self.verbose: print("PASSED - No w:delText elements within w:ins elements") return True def compare_paragraph_counts(self): original_count = self.count_paragraphs_in_original() new_count = self.count_paragraphs_in_unpacked() diff = new_count - original_count diff_str = f"+{diff}" if diff > 0 else str(diff) print(f"\nParagraphs: {original_count} → {new_count} ({diff_str})") def _parse_id_value(self, val: str, base: int = 16) -> int: return int(val, base) def validate_id_constraints(self): errors = [] para_id_attr = f"{{{self.W14_NAMESPACE}}}paraId" durable_id_attr = f"{{{self.W16CID_NAMESPACE}}}durableId" for xml_file in self.xml_files: try: for elem in lxml.etree.parse(str(xml_file)).iter(): if val := elem.get(para_id_attr): if self._parse_id_value(val, base=16) >= 0x80000000: errors.append( f" {xml_file.name}:{elem.sourceline}: paraId={val} >= 0x80000000" ) if val := elem.get(durable_id_attr): if xml_file.name == "numbering.xml": try: if self._parse_id_value(val, base=10) >= 0x7FFFFFFF: errors.append( f" {xml_file.name}:{elem.sourceline}: " f"durableId={val} >= 0x7FFFFFFF" ) except ValueError: errors.append( f" {xml_file.name}:{elem.sourceline}: " f"durableId={val} must be decimal in numbering.xml" ) else: if self._parse_id_value(val, base=16) >= 0x7FFFFFFF: errors.append( f" {xml_file.name}:{elem.sourceline}: " f"durableId={val} >= 0x7FFFFFFF" ) except Exception: pass if errors: print(f"FAILED - {len(errors)} ID constraint violations:") for e in errors: print(e) elif self.verbose: print("PASSED - All paraId/durableId values within constraints") return not errors def validate_comment_markers(self): errors = [] document_xml = None comments_xml = None for xml_file in self.xml_files: if xml_file.name == "document.xml" and "word" in str(xml_file): document_xml = xml_file elif xml_file.name == "comments.xml": comments_xml = xml_file if not document_xml: if self.verbose: print("PASSED - No document.xml found (skipping comment validation)") return True try: doc_root = lxml.etree.parse(str(document_xml)).getroot() namespaces = {"w": self.WORD_2006_NAMESPACE} range_starts = { elem.get(f"{{{self.WORD_2006_NAMESPACE}}}id") for elem in doc_root.xpath( ".//w:commentRangeStart", namespaces=namespaces ) } range_ends = { elem.get(f"{{{self.WORD_2006_NAMESPACE}}}id") for elem in doc_root.xpath( ".//w:commentRangeEnd", namespaces=namespaces ) } references = { elem.get(f"{{{self.WORD_2006_NAMESPACE}}}id") for elem in doc_root.xpath( ".//w:commentReference", namespaces=namespaces ) } orphaned_ends = range_ends - range_starts for comment_id in sorted( orphaned_ends, key=lambda x: int(x) if x and x.isdigit() else 0 ): errors.append( f' document.xml: commentRangeEnd id="{comment_id}" has no matching commentRangeStart' ) orphaned_starts = range_starts - range_ends for comment_id in sorted( orphaned_starts, key=lambda x: int(x) if x and x.isdigit() else 0 ): errors.append( f' document.xml: commentRangeStart id="{comment_id}" has no matching commentRangeEnd' ) comment_ids = set() if comments_xml and comments_xml.exists(): comments_root = lxml.etree.parse(str(comments_xml)).getroot() comment_ids = { elem.get(f"{{{self.WORD_2006_NAMESPACE}}}id") for elem in comments_root.xpath( ".//w:comment", namespaces=namespaces ) } marker_ids = range_starts | range_ends | references invalid_refs = marker_ids - comment_ids for comment_id in sorted( invalid_refs, key=lambda x: int(x) if x and x.isdigit() else 0 ): if comment_id: errors.append( f' document.xml: marker id="{comment_id}" references non-existent comment' ) except (lxml.etree.XMLSyntaxError, Exception) as e: errors.append(f" Error parsing XML: {e}") if errors: print(f"FAILED - {len(errors)} comment marker violations:") for error in errors: print(error) return False else: if self.verbose: print("PASSED - All comment markers properly paired") return True def repair(self) -> int: repairs = super().repair() repairs += self.repair_durableId() return repairs def repair_durableId(self) -> int: repairs = 0 for xml_file in self.xml_files: try: content = xml_file.read_text(encoding="utf-8") dom = defusedxml.minidom.parseString(content) modified = False for elem in dom.getElementsByTagName("*"): if not elem.hasAttribute("w16cid:durableId"): continue durable_id = elem.getAttribute("w16cid:durableId") needs_repair = False if xml_file.name == "numbering.xml": try: needs_repair = ( self._parse_id_value(durable_id, base=10) >= 0x7FFFFFFF ) except ValueError: needs_repair = True else: try: needs_repair = ( self._parse_id_value(durable_id, base=16) >= 0x7FFFFFFF ) except ValueError: needs_repair = True if needs_repair: value = random.randint(1, 0x7FFFFFFE) if xml_file.name == "numbering.xml": new_id = str(value) else: new_id = f"{value:08X}" elem.setAttribute("w16cid:durableId", new_id) print( f" Repaired: {xml_file.name}: durableId {durable_id} → {new_id}" ) repairs += 1 modified = True if modified: xml_file.write_bytes(dom.toxml(encoding="UTF-8")) except Exception: pass return repairs if __name__ == "__main__": raise RuntimeError("This module should not be run directly.") ================================================ FILE: skills/docx/scripts/office/validators/pptx.py ================================================ """ Validator for PowerPoint presentation XML files against XSD schemas. """ import re from .base import BaseSchemaValidator class PPTXSchemaValidator(BaseSchemaValidator): PRESENTATIONML_NAMESPACE = ( "http://schemas.openxmlformats.org/presentationml/2006/main" ) ELEMENT_RELATIONSHIP_TYPES = { "sldid": "slide", "sldmasterid": "slidemaster", "notesmasterid": "notesmaster", "sldlayoutid": "slidelayout", "themeid": "theme", "tablestyleid": "tablestyles", } def validate(self): if not self.validate_xml(): return False all_valid = True if not self.validate_namespaces(): all_valid = False if not self.validate_unique_ids(): all_valid = False if not self.validate_uuid_ids(): all_valid = False if not self.validate_file_references(): all_valid = False if not self.validate_slide_layout_ids(): all_valid = False if not self.validate_content_types(): all_valid = False if not self.validate_against_xsd(): all_valid = False if not self.validate_notes_slide_references(): all_valid = False if not self.validate_all_relationship_ids(): all_valid = False if not self.validate_no_duplicate_slide_layouts(): all_valid = False return all_valid def validate_uuid_ids(self): import lxml.etree errors = [] uuid_pattern = re.compile( r"^[\{\(]?[0-9A-Fa-f]{8}-?[0-9A-Fa-f]{4}-?[0-9A-Fa-f]{4}-?[0-9A-Fa-f]{4}-?[0-9A-Fa-f]{12}[\}\)]?$" ) for xml_file in self.xml_files: try: root = lxml.etree.parse(str(xml_file)).getroot() for elem in root.iter(): for attr, value in elem.attrib.items(): attr_name = attr.split("}")[-1].lower() if attr_name == "id" or attr_name.endswith("id"): if self._looks_like_uuid(value): if not uuid_pattern.match(value): errors.append( f" {xml_file.relative_to(self.unpacked_dir)}: " f"Line {elem.sourceline}: ID '{value}' appears to be a UUID but contains invalid hex characters" ) except (lxml.etree.XMLSyntaxError, Exception) as e: errors.append( f" {xml_file.relative_to(self.unpacked_dir)}: Error: {e}" ) if errors: print(f"FAILED - Found {len(errors)} UUID ID validation errors:") for error in errors: print(error) return False else: if self.verbose: print("PASSED - All UUID-like IDs contain valid hex values") return True def _looks_like_uuid(self, value): clean_value = value.strip("{}()").replace("-", "") return len(clean_value) == 32 and all(c.isalnum() for c in clean_value) def validate_slide_layout_ids(self): import lxml.etree errors = [] slide_masters = list(self.unpacked_dir.glob("ppt/slideMasters/*.xml")) if not slide_masters: if self.verbose: print("PASSED - No slide masters found") return True for slide_master in slide_masters: try: root = lxml.etree.parse(str(slide_master)).getroot() rels_file = slide_master.parent / "_rels" / f"{slide_master.name}.rels" if not rels_file.exists(): errors.append( f" {slide_master.relative_to(self.unpacked_dir)}: " f"Missing relationships file: {rels_file.relative_to(self.unpacked_dir)}" ) continue rels_root = lxml.etree.parse(str(rels_file)).getroot() valid_layout_rids = set() for rel in rels_root.findall( f".//{{{self.PACKAGE_RELATIONSHIPS_NAMESPACE}}}Relationship" ): rel_type = rel.get("Type", "") if "slideLayout" in rel_type: valid_layout_rids.add(rel.get("Id")) for sld_layout_id in root.findall( f".//{{{self.PRESENTATIONML_NAMESPACE}}}sldLayoutId" ): r_id = sld_layout_id.get( f"{{{self.OFFICE_RELATIONSHIPS_NAMESPACE}}}id" ) layout_id = sld_layout_id.get("id") if r_id and r_id not in valid_layout_rids: errors.append( f" {slide_master.relative_to(self.unpacked_dir)}: " f"Line {sld_layout_id.sourceline}: sldLayoutId with id='{layout_id}' " f"references r:id='{r_id}' which is not found in slide layout relationships" ) except (lxml.etree.XMLSyntaxError, Exception) as e: errors.append( f" {slide_master.relative_to(self.unpacked_dir)}: Error: {e}" ) if errors: print(f"FAILED - Found {len(errors)} slide layout ID validation errors:") for error in errors: print(error) print( "Remove invalid references or add missing slide layouts to the relationships file." ) return False else: if self.verbose: print("PASSED - All slide layout IDs reference valid slide layouts") return True def validate_no_duplicate_slide_layouts(self): import lxml.etree errors = [] slide_rels_files = list(self.unpacked_dir.glob("ppt/slides/_rels/*.xml.rels")) for rels_file in slide_rels_files: try: root = lxml.etree.parse(str(rels_file)).getroot() layout_rels = [ rel for rel in root.findall( f".//{{{self.PACKAGE_RELATIONSHIPS_NAMESPACE}}}Relationship" ) if "slideLayout" in rel.get("Type", "") ] if len(layout_rels) > 1: errors.append( f" {rels_file.relative_to(self.unpacked_dir)}: has {len(layout_rels)} slideLayout references" ) except Exception as e: errors.append( f" {rels_file.relative_to(self.unpacked_dir)}: Error: {e}" ) if errors: print("FAILED - Found slides with duplicate slideLayout references:") for error in errors: print(error) return False else: if self.verbose: print("PASSED - All slides have exactly one slideLayout reference") return True def validate_notes_slide_references(self): import lxml.etree errors = [] notes_slide_references = {} slide_rels_files = list(self.unpacked_dir.glob("ppt/slides/_rels/*.xml.rels")) if not slide_rels_files: if self.verbose: print("PASSED - No slide relationship files found") return True for rels_file in slide_rels_files: try: root = lxml.etree.parse(str(rels_file)).getroot() for rel in root.findall( f".//{{{self.PACKAGE_RELATIONSHIPS_NAMESPACE}}}Relationship" ): rel_type = rel.get("Type", "") if "notesSlide" in rel_type: target = rel.get("Target", "") if target: normalized_target = target.replace("../", "") slide_name = rels_file.stem.replace( ".xml", "" ) if normalized_target not in notes_slide_references: notes_slide_references[normalized_target] = [] notes_slide_references[normalized_target].append( (slide_name, rels_file) ) except (lxml.etree.XMLSyntaxError, Exception) as e: errors.append( f" {rels_file.relative_to(self.unpacked_dir)}: Error: {e}" ) for target, references in notes_slide_references.items(): if len(references) > 1: slide_names = [ref[0] for ref in references] errors.append( f" Notes slide '{target}' is referenced by multiple slides: {', '.join(slide_names)}" ) for slide_name, rels_file in references: errors.append(f" - {rels_file.relative_to(self.unpacked_dir)}") if errors: print( f"FAILED - Found {len([e for e in errors if not e.startswith(' ')])} notes slide reference validation errors:" ) for error in errors: print(error) print("Each slide may optionally have its own slide file.") return False else: if self.verbose: print("PASSED - All notes slide references are unique") return True if __name__ == "__main__": raise RuntimeError("This module should not be run directly.") ================================================ FILE: skills/docx/scripts/office/validators/redlining.py ================================================ """ Validator for tracked changes in Word documents. """ import subprocess import tempfile import zipfile from pathlib import Path class RedliningValidator: def __init__(self, unpacked_dir, original_docx, verbose=False, author="Claude"): self.unpacked_dir = Path(unpacked_dir) self.original_docx = Path(original_docx) self.verbose = verbose self.author = author self.namespaces = { "w": "http://schemas.openxmlformats.org/wordprocessingml/2006/main" } def repair(self) -> int: return 0 def validate(self): modified_file = self.unpacked_dir / "word" / "document.xml" if not modified_file.exists(): print(f"FAILED - Modified document.xml not found at {modified_file}") return False try: import xml.etree.ElementTree as ET tree = ET.parse(modified_file) root = tree.getroot() del_elements = root.findall(".//w:del", self.namespaces) ins_elements = root.findall(".//w:ins", self.namespaces) author_del_elements = [ elem for elem in del_elements if elem.get(f"{{{self.namespaces['w']}}}author") == self.author ] author_ins_elements = [ elem for elem in ins_elements if elem.get(f"{{{self.namespaces['w']}}}author") == self.author ] if not author_del_elements and not author_ins_elements: if self.verbose: print(f"PASSED - No tracked changes by {self.author} found.") return True except Exception: pass with tempfile.TemporaryDirectory() as temp_dir: temp_path = Path(temp_dir) try: with zipfile.ZipFile(self.original_docx, "r") as zip_ref: zip_ref.extractall(temp_path) except Exception as e: print(f"FAILED - Error unpacking original docx: {e}") return False original_file = temp_path / "word" / "document.xml" if not original_file.exists(): print( f"FAILED - Original document.xml not found in {self.original_docx}" ) return False try: import xml.etree.ElementTree as ET modified_tree = ET.parse(modified_file) modified_root = modified_tree.getroot() original_tree = ET.parse(original_file) original_root = original_tree.getroot() except ET.ParseError as e: print(f"FAILED - Error parsing XML files: {e}") return False self._remove_author_tracked_changes(original_root) self._remove_author_tracked_changes(modified_root) modified_text = self._extract_text_content(modified_root) original_text = self._extract_text_content(original_root) if modified_text != original_text: error_message = self._generate_detailed_diff( original_text, modified_text ) print(error_message) return False if self.verbose: print(f"PASSED - All changes by {self.author} are properly tracked") return True def _generate_detailed_diff(self, original_text, modified_text): error_parts = [ f"FAILED - Document text doesn't match after removing {self.author}'s tracked changes", "", "Likely causes:", " 1. Modified text inside another author's or tags", " 2. Made edits without proper tracked changes", " 3. Didn't nest inside when deleting another's insertion", "", "For pre-redlined documents, use correct patterns:", " - To reject another's INSERTION: Nest inside their ", " - To restore another's DELETION: Add new AFTER their ", "", ] git_diff = self._get_git_word_diff(original_text, modified_text) if git_diff: error_parts.extend(["Differences:", "============", git_diff]) else: error_parts.append("Unable to generate word diff (git not available)") return "\n".join(error_parts) def _get_git_word_diff(self, original_text, modified_text): try: with tempfile.TemporaryDirectory() as temp_dir: temp_path = Path(temp_dir) original_file = temp_path / "original.txt" modified_file = temp_path / "modified.txt" original_file.write_text(original_text, encoding="utf-8") modified_file.write_text(modified_text, encoding="utf-8") result = subprocess.run( [ "git", "diff", "--word-diff=plain", "--word-diff-regex=.", "-U0", "--no-index", str(original_file), str(modified_file), ], capture_output=True, text=True, ) if result.stdout.strip(): lines = result.stdout.split("\n") content_lines = [] in_content = False for line in lines: if line.startswith("@@"): in_content = True continue if in_content and line.strip(): content_lines.append(line) if content_lines: return "\n".join(content_lines) result = subprocess.run( [ "git", "diff", "--word-diff=plain", "-U0", "--no-index", str(original_file), str(modified_file), ], capture_output=True, text=True, ) if result.stdout.strip(): lines = result.stdout.split("\n") content_lines = [] in_content = False for line in lines: if line.startswith("@@"): in_content = True continue if in_content and line.strip(): content_lines.append(line) return "\n".join(content_lines) except (subprocess.CalledProcessError, FileNotFoundError, Exception): pass return None def _remove_author_tracked_changes(self, root): ins_tag = f"{{{self.namespaces['w']}}}ins" del_tag = f"{{{self.namespaces['w']}}}del" author_attr = f"{{{self.namespaces['w']}}}author" for parent in root.iter(): to_remove = [] for child in parent: if child.tag == ins_tag and child.get(author_attr) == self.author: to_remove.append(child) for elem in to_remove: parent.remove(elem) deltext_tag = f"{{{self.namespaces['w']}}}delText" t_tag = f"{{{self.namespaces['w']}}}t" for parent in root.iter(): to_process = [] for child in parent: if child.tag == del_tag and child.get(author_attr) == self.author: to_process.append((child, list(parent).index(child))) for del_elem, del_index in reversed(to_process): for elem in del_elem.iter(): if elem.tag == deltext_tag: elem.tag = t_tag for child in reversed(list(del_elem)): parent.insert(del_index, child) parent.remove(del_elem) def _extract_text_content(self, root): p_tag = f"{{{self.namespaces['w']}}}p" t_tag = f"{{{self.namespaces['w']}}}t" paragraphs = [] for p_elem in root.findall(f".//{p_tag}"): text_parts = [] for t_elem in p_elem.findall(f".//{t_tag}"): if t_elem.text: text_parts.append(t_elem.text) paragraph_text = "".join(text_parts) if paragraph_text: paragraphs.append(paragraph_text) return "\n".join(paragraphs) if __name__ == "__main__": raise RuntimeError("This module should not be run directly.") ================================================ FILE: skills/docx/scripts/templates/comments.xml ================================================ ================================================ FILE: skills/docx/scripts/templates/commentsExtended.xml ================================================ ================================================ FILE: skills/docx/scripts/templates/commentsExtensible.xml ================================================ ================================================ FILE: skills/docx/scripts/templates/commentsIds.xml ================================================ ================================================ FILE: skills/docx/scripts/templates/people.xml ================================================ ================================================ FILE: skills/frontend-design/LICENSE.txt ================================================ Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS ================================================ FILE: skills/frontend-design/SKILL.md ================================================ --- name: frontend-design description: Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, artifacts, posters, or applications (examples include websites, landing pages, dashboards, React components, HTML/CSS layouts, or when styling/beautifying any web UI). Generates creative, polished code and UI design that avoids generic AI aesthetics. license: Complete terms in LICENSE.txt --- This skill guides creation of distinctive, production-grade frontend interfaces that avoid generic "AI slop" aesthetics. Implement real working code with exceptional attention to aesthetic details and creative choices. The user provides frontend requirements: a component, page, application, or interface to build. They may include context about the purpose, audience, or technical constraints. ## Design Thinking Before coding, understand the context and commit to a BOLD aesthetic direction: - **Purpose**: What problem does this interface solve? Who uses it? - **Tone**: Pick an extreme: brutally minimal, maximalist chaos, retro-futuristic, organic/natural, luxury/refined, playful/toy-like, editorial/magazine, brutalist/raw, art deco/geometric, soft/pastel, industrial/utilitarian, etc. There are so many flavors to choose from. Use these for inspiration but design one that is true to the aesthetic direction. - **Constraints**: Technical requirements (framework, performance, accessibility). - **Differentiation**: What makes this UNFORGETTABLE? What's the one thing someone will remember? **CRITICAL**: Choose a clear conceptual direction and execute it with precision. Bold maximalism and refined minimalism both work - the key is intentionality, not intensity. Then implement working code (HTML/CSS/JS, React, Vue, etc.) that is: - Production-grade and functional - Visually striking and memorable - Cohesive with a clear aesthetic point-of-view - Meticulously refined in every detail ## Frontend Aesthetics Guidelines Focus on: - **Typography**: Choose fonts that are beautiful, unique, and interesting. Avoid generic fonts like Arial and Inter; opt instead for distinctive choices that elevate the frontend's aesthetics; unexpected, characterful font choices. Pair a distinctive display font with a refined body font. - **Color & Theme**: Commit to a cohesive aesthetic. Use CSS variables for consistency. Dominant colors with sharp accents outperform timid, evenly-distributed palettes. - **Motion**: Use animations for effects and micro-interactions. Prioritize CSS-only solutions for HTML. Use Motion library for React when available. Focus on high-impact moments: one well-orchestrated page load with staggered reveals (animation-delay) creates more delight than scattered micro-interactions. Use scroll-triggering and hover states that surprise. - **Spatial Composition**: Unexpected layouts. Asymmetry. Overlap. Diagonal flow. Grid-breaking elements. Generous negative space OR controlled density. - **Backgrounds & Visual Details**: Create atmosphere and depth rather than defaulting to solid colors. Add contextual effects and textures that match the overall aesthetic. Apply creative forms like gradient meshes, noise textures, geometric patterns, layered transparencies, dramatic shadows, decorative borders, custom cursors, and grain overlays. NEVER use generic AI-generated aesthetics like overused font families (Inter, Roboto, Arial, system fonts), cliched color schemes (particularly purple gradients on white backgrounds), predictable layouts and component patterns, and cookie-cutter design that lacks context-specific character. Interpret creatively and make unexpected choices that feel genuinely designed for the context. No design should be the same. Vary between light and dark themes, different fonts, different aesthetics. NEVER converge on common choices (Space Grotesk, for example) across generations. **IMPORTANT**: Match implementation complexity to the aesthetic vision. Maximalist designs need elaborate code with extensive animations and effects. Minimalist or refined designs need restraint, precision, and careful attention to spacing, typography, and subtle details. Elegance comes from executing the vision well. Remember: Claude is capable of extraordinary creative work. Don't hold back, show what can truly be created when thinking outside the box and committing fully to a distinctive vision. ================================================ FILE: skills/internal-comms/LICENSE.txt ================================================ Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ================================================ FILE: skills/internal-comms/SKILL.md ================================================ --- name: internal-comms description: A set of resources to help me write all kinds of internal communications, using the formats that my company likes to use. Claude should use this skill whenever asked to write some sort of internal communications (status reports, leadership updates, 3P updates, company newsletters, FAQs, incident reports, project updates, etc.). license: Complete terms in LICENSE.txt --- ## When to use this skill To write internal communications, use this skill for: - 3P updates (Progress, Plans, Problems) - Company newsletters - FAQ responses - Status reports - Leadership updates - Project updates - Incident reports ## How to use this skill To write any internal communication: 1. **Identify the communication type** from the request 2. **Load the appropriate guideline file** from the `examples/` directory: - `examples/3p-updates.md` - For Progress/Plans/Problems team updates - `examples/company-newsletter.md` - For company-wide newsletters - `examples/faq-answers.md` - For answering frequently asked questions - `examples/general-comms.md` - For anything else that doesn't explicitly match one of the above 3. **Follow the specific instructions** in that file for formatting, tone, and content gathering If the communication type doesn't match any existing guideline, ask for clarification or more context about the desired format. ## Keywords 3P updates, company newsletter, company comms, weekly update, faqs, common questions, updates, internal comms ================================================ FILE: skills/internal-comms/examples/3p-updates.md ================================================ ## Instructions You are being asked to write a 3P update. 3P updates stand for "Progress, Plans, Problems." The main audience is for executives, leadership, other teammates, etc. They're meant to be very succinct and to-the-point: think something you can read in 30-60sec or less. They're also for people with some, but not a lot of context on what the team does. 3Ps can cover a team of any size, ranging all the way up to the entire company. The bigger the team, the less granular the tasks should be. For example, "mobile team" might have "shipped feature" or "fixed bugs," whereas the company might have really meaty 3Ps, like "hired 20 new people" or "closed 10 new deals." They represent the work of the team across a time period, almost always one week. They include three sections: 1) Progress: what the team has accomplished over the next time period. Focus mainly on things shipped, milestones achieved, tasks created, etc. 2) Plans: what the team plans to do over the next time period. Focus on what things are top-of-mind, really high priority, etc. for the team. 3) Problems: anything that is slowing the team down. This could be things like too few people, bugs or blockers that are preventing the team from moving forward, some deal that fell through, etc. Before writing them, make sure that you know the team name. If it's not specified, you can ask explicitly what the team name you're writing for is. ## Tools Available Whenever possible, try to pull from available sources to get the information you need: - Slack: posts from team members with their updates - ideally look for posts in large channels with lots of reactions - Google Drive: docs written from critical team members with lots of views - Email: emails with lots of responses of lots of content that seems relevant - Calendar: non-recurring meetings that have a lot of importance, like product reviews, etc. Try to gather as much context as you can, focusing on the things that covered the time period you're writing for: - Progress: anything between a week ago and today - Plans: anything from today to the next week - Problems: anything between a week ago and today If you don't have access, you can ask the user for things they want to cover. They might also include these things to you directly, in which case you're mostly just formatting for this particular format. ## Workflow 1. **Clarify scope**: Confirm the team name and time period (usually past week for Progress/Problems, next week for Plans) 2. **Gather information**: Use available tools or ask the user directly 3. **Draft the update**: Follow the strict formatting guidelines 4. **Review**: Ensure it's concise (30-60 seconds to read) and data-driven ## Formatting The format is always the same, very strict formatting. Never use any formatting other than this. Pick an emoji that is fun and captures the vibe of the team and update. [pick an emoji] [Team Name] (Dates Covered, usually a week) Progress: [1-3 sentences of content] Plans: [1-3 sentences of content] Problems: [1-3 sentences of content] Each section should be no more than 1-3 sentences: clear, to the point. It should be data-driven, and generally include metrics where possible. The tone should be very matter-of-fact, not super prose-heavy. ================================================ FILE: skills/internal-comms/examples/company-newsletter.md ================================================ ## Instructions You are being asked to write a company-wide newsletter update. You are meant to summarize the past week/month of a company in the form of a newsletter that the entire company will read. It should be maybe ~20-25 bullet points long. It will be sent via Slack and email, so make it consumable for that. Ideally it includes the following attributes: - Lots of links: pulling documents from Google Drive that are very relevant, linking to prominent Slack messages in announce channels and from executives, perhgaps referencing emails that went company-wide, highlighting significant things that have happened in the company. - Short and to-the-point: each bullet should probably be no longer than ~1-2 sentences - Use the "we" tense, as you are part of the company. Many of the bullets should say "we did this" or "we did that" ## Tools to use If you have access to the following tools, please try to use them. If not, you can also let the user know directly that their responses would be better if they gave them access. - Slack: look for messages in channels with lots of people, with lots of reactions or lots of responses within the thread - Email: look for things from executives that discuss company-wide announcements - Calendar: if there were meetings with large attendee lists, particularly things like All-Hands meetings, big company announcements, etc. If there were documents attached to those meetings, those are great links to include. - Documents: if there were new docs published in the last week or two that got a lot of attention, you can link them. These should be things like company-wide vision docs, plans for the upcoming quarter or half, things authored by critical executives, etc. - External press: if you see references to articles or press we've received over the past week, that could be really cool too. If you don't have access to any of these things, you can ask the user for things they want to cover. In this case, you'll mostly just be polishing up and fitting to this format more directly. ## Sections The company is pretty big: 1000+ people. There are a variety of different teams and initiatives going on across the company. To make sure the update works well, try breaking it into sections of similar things. You might break into clusters like {product development, go to market, finance} or {recruiting, execution, vision}, or {external news, internal news} etc. Try to make sure the different areas of the company are highlighted well. ## Prioritization Focus on: - Company-wide impact (not team-specific details) - Announcements from leadership - Major milestones and achievements - Information that affects most employees - External recognition or press Avoid: - Overly granular team updates (save those for 3Ps) - Information only relevant to small groups - Duplicate information already communicated ## Example Formats :megaphone: Company Announcements - Announcement 1 - Announcement 2 - Announcement 3 :dart: Progress on Priorities - Area 1 - Sub-area 1 - Sub-area 2 - Sub-area 3 - Area 2 - Sub-area 1 - Sub-area 2 - Sub-area 3 - Area 3 - Sub-area 1 - Sub-area 2 - Sub-area 3 :pillar: Leadership Updates - Post 1 - Post 2 - Post 3 :thread: Social Updates - Update 1 - Update 2 - Update 3 ================================================ FILE: skills/internal-comms/examples/faq-answers.md ================================================ ## Instructions You are an assistant for answering questions that are being asked across the company. Every week, there are lots of questions that get asked across the company, and your goal is to try to summarize what those questions are. We want our company to be well-informed and on the same page, so your job is to produce a set of frequently asked questions that our employees are asking and attempt to answer them. Your singular job is to do two things: - Find questions that are big sources of confusion for lots of employees at the company, generally about things that affect a large portion of the employee base - Attempt to give a nice summarized answer to that question in order to minimize confusion. Some examples of areas that may be interesting to folks: recent corporate events (fundraising, new executives, etc.), upcoming launches, hiring progress, changes to vision or focus, etc. ## Tools Available You should use the company's available tools, where communication and work happens. For most companies, it looks something like this: - Slack: questions being asked across the company - it could be questions in response to posts with lots of responses, questions being asked with lots of reactions or thumbs up to show support, or anything else to show that a large number of employees want to ask the same things - Email: emails with FAQs written directly in them can be a good source as well - Documents: docs in places like Google Drive, linked on calendar events, etc. can also be a good source of FAQs, either directly added or inferred based on the contents of the doc ## Formatting The formatting should be pretty basic: - *Question*: [insert question - 1 sentence] - *Answer*: [insert answer - 1-2 sentence] ## Guidance Make sure you're being holistic in your questions. Don't focus too much on just the user in question or the team they are a part of, but try to capture the entire company. Try to be as holistic as you can in reading all the tools available, producing responses that are relevant to all at the company. ## Answer Guidelines - Base answers on official company communications when possible - If information is uncertain, indicate that clearly - Link to authoritative sources (docs, announcements, emails) - Keep tone professional but approachable - Flag if a question requires executive input or official response ================================================ FILE: skills/internal-comms/examples/general-comms.md ================================================ ## Instructions You are being asked to write internal company communication that doesn't fit into the standard formats (3P updates, newsletters, or FAQs). Before proceeding: 1. Ask the user about their target audience 2. Understand the communication's purpose 3. Clarify the desired tone (formal, casual, urgent, informational) 4. Confirm any specific formatting requirements Use these general principles: - Be clear and concise - Use active voice - Put the most important information first - Include relevant links and references - Match the company's communication style ================================================ FILE: skills/mcp-builder/LICENSE.txt ================================================ Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ================================================ FILE: skills/mcp-builder/SKILL.md ================================================ --- name: mcp-builder description: Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK). license: Complete terms in LICENSE.txt --- # MCP Server Development Guide ## Overview Create MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. The quality of an MCP server is measured by how well it enables LLMs to accomplish real-world tasks. --- # Process ## 🚀 High-Level Workflow Creating a high-quality MCP server involves four main phases: ### Phase 1: Deep Research and Planning #### 1.1 Understand Modern MCP Design **API Coverage vs. Workflow Tools:** Balance comprehensive API endpoint coverage with specialized workflow tools. Workflow tools can be more convenient for specific tasks, while comprehensive coverage gives agents flexibility to compose operations. Performance varies by client—some clients benefit from code execution that combines basic tools, while others work better with higher-level workflows. When uncertain, prioritize comprehensive API coverage. **Tool Naming and Discoverability:** Clear, descriptive tool names help agents find the right tools quickly. Use consistent prefixes (e.g., `github_create_issue`, `github_list_repos`) and action-oriented naming. **Context Management:** Agents benefit from concise tool descriptions and the ability to filter/paginate results. Design tools that return focused, relevant data. Some clients support code execution which can help agents filter and process data efficiently. **Actionable Error Messages:** Error messages should guide agents toward solutions with specific suggestions and next steps. #### 1.2 Study MCP Protocol Documentation **Navigate the MCP specification:** Start with the sitemap to find relevant pages: `https://modelcontextprotocol.io/sitemap.xml` Then fetch specific pages with `.md` suffix for markdown format (e.g., `https://modelcontextprotocol.io/specification/draft.md`). Key pages to review: - Specification overview and architecture - Transport mechanisms (streamable HTTP, stdio) - Tool, resource, and prompt definitions #### 1.3 Study Framework Documentation **Recommended stack:** - **Language**: TypeScript (high-quality SDK support and good compatibility in many execution environments e.g. MCPB. Plus AI models are good at generating TypeScript code, benefiting from its broad usage, static typing and good linting tools) - **Transport**: Streamable HTTP for remote servers, using stateless JSON (simpler to scale and maintain, as opposed to stateful sessions and streaming responses). stdio for local servers. **Load framework documentation:** - **MCP Best Practices**: [📋 View Best Practices](./reference/mcp_best_practices.md) - Core guidelines **For TypeScript (recommended):** - **TypeScript SDK**: Use WebFetch to load `https://raw.githubusercontent.com/modelcontextprotocol/typescript-sdk/main/README.md` - [⚡ TypeScript Guide](./reference/node_mcp_server.md) - TypeScript patterns and examples **For Python:** - **Python SDK**: Use WebFetch to load `https://raw.githubusercontent.com/modelcontextprotocol/python-sdk/main/README.md` - [🐍 Python Guide](./reference/python_mcp_server.md) - Python patterns and examples #### 1.4 Plan Your Implementation **Understand the API:** Review the service's API documentation to identify key endpoints, authentication requirements, and data models. Use web search and WebFetch as needed. **Tool Selection:** Prioritize comprehensive API coverage. List endpoints to implement, starting with the most common operations. --- ### Phase 2: Implementation #### 2.1 Set Up Project Structure See language-specific guides for project setup: - [⚡ TypeScript Guide](./reference/node_mcp_server.md) - Project structure, package.json, tsconfig.json - [🐍 Python Guide](./reference/python_mcp_server.md) - Module organization, dependencies #### 2.2 Implement Core Infrastructure Create shared utilities: - API client with authentication - Error handling helpers - Response formatting (JSON/Markdown) - Pagination support #### 2.3 Implement Tools For each tool: **Input Schema:** - Use Zod (TypeScript) or Pydantic (Python) - Include constraints and clear descriptions - Add examples in field descriptions **Output Schema:** - Define `outputSchema` where possible for structured data - Use `structuredContent` in tool responses (TypeScript SDK feature) - Helps clients understand and process tool outputs **Tool Description:** - Concise summary of functionality - Parameter descriptions - Return type schema **Implementation:** - Async/await for I/O operations - Proper error handling with actionable messages - Support pagination where applicable - Return both text content and structured data when using modern SDKs **Annotations:** - `readOnlyHint`: true/false - `destructiveHint`: true/false - `idempotentHint`: true/false - `openWorldHint`: true/false --- ### Phase 3: Review and Test #### 3.1 Code Quality Review for: - No duplicated code (DRY principle) - Consistent error handling - Full type coverage - Clear tool descriptions #### 3.2 Build and Test **TypeScript:** - Run `npm run build` to verify compilation - Test with MCP Inspector: `npx @modelcontextprotocol/inspector` **Python:** - Verify syntax: `python -m py_compile your_server.py` - Test with MCP Inspector See language-specific guides for detailed testing approaches and quality checklists. --- ### Phase 4: Create Evaluations After implementing your MCP server, create comprehensive evaluations to test its effectiveness. **Load [✅ Evaluation Guide](./reference/evaluation.md) for complete evaluation guidelines.** #### 4.1 Understand Evaluation Purpose Use evaluations to test whether LLMs can effectively use your MCP server to answer realistic, complex questions. #### 4.2 Create 10 Evaluation Questions To create effective evaluations, follow the process outlined in the evaluation guide: 1. **Tool Inspection**: List available tools and understand their capabilities 2. **Content Exploration**: Use READ-ONLY operations to explore available data 3. **Question Generation**: Create 10 complex, realistic questions 4. **Answer Verification**: Solve each question yourself to verify answers #### 4.3 Evaluation Requirements Ensure each question is: - **Independent**: Not dependent on other questions - **Read-only**: Only non-destructive operations required - **Complex**: Requiring multiple tool calls and deep exploration - **Realistic**: Based on real use cases humans would care about - **Verifiable**: Single, clear answer that can be verified by string comparison - **Stable**: Answer won't change over time #### 4.4 Output Format Create an XML file with this structure: ```xml Find discussions about AI model launches with animal codenames. One model needed a specific safety designation that uses the format ASL-X. What number X was being determined for the model named after a spotted wild cat? 3 ``` --- # Reference Files ## 📚 Documentation Library Load these resources as needed during development: ### Core MCP Documentation (Load First) - **MCP Protocol**: Start with sitemap at `https://modelcontextprotocol.io/sitemap.xml`, then fetch specific pages with `.md` suffix - [📋 MCP Best Practices](./reference/mcp_best_practices.md) - Universal MCP guidelines including: - Server and tool naming conventions - Response format guidelines (JSON vs Markdown) - Pagination best practices - Transport selection (streamable HTTP vs stdio) - Security and error handling standards ### SDK Documentation (Load During Phase 1/2) - **Python SDK**: Fetch from `https://raw.githubusercontent.com/modelcontextprotocol/python-sdk/main/README.md` - **TypeScript SDK**: Fetch from `https://raw.githubusercontent.com/modelcontextprotocol/typescript-sdk/main/README.md` ### Language-Specific Implementation Guides (Load During Phase 2) - [🐍 Python Implementation Guide](./reference/python_mcp_server.md) - Complete Python/FastMCP guide with: - Server initialization patterns - Pydantic model examples - Tool registration with `@mcp.tool` - Complete working examples - Quality checklist - [⚡ TypeScript Implementation Guide](./reference/node_mcp_server.md) - Complete TypeScript guide with: - Project structure - Zod schema patterns - Tool registration with `server.registerTool` - Complete working examples - Quality checklist ### Evaluation Guide (Load During Phase 4) - [✅ Evaluation Guide](./reference/evaluation.md) - Complete evaluation creation guide with: - Question creation guidelines - Answer verification strategies - XML format specifications - Example questions and answers - Running an evaluation with the provided scripts ================================================ FILE: skills/mcp-builder/reference/evaluation.md ================================================ # MCP Server Evaluation Guide ## Overview This document provides guidance on creating comprehensive evaluations for MCP servers. Evaluations test whether LLMs can effectively use your MCP server to answer realistic, complex questions using only the tools provided. --- ## Quick Reference ### Evaluation Requirements - Create 10 human-readable questions - Questions must be READ-ONLY, INDEPENDENT, NON-DESTRUCTIVE - Each question requires multiple tool calls (potentially dozens) - Answers must be single, verifiable values - Answers must be STABLE (won't change over time) ### Output Format ```xml Your question here Single verifiable answer ``` --- ## Purpose of Evaluations The measure of quality of an MCP server is NOT how well or comprehensively the server implements tools, but how well these implementations (input/output schemas, docstrings/descriptions, functionality) enable LLMs with no other context and access ONLY to the MCP servers to answer realistic and difficult questions. ## Evaluation Overview Create 10 human-readable questions requiring ONLY READ-ONLY, INDEPENDENT, NON-DESTRUCTIVE, and IDEMPOTENT operations to answer. Each question should be: - Realistic - Clear and concise - Unambiguous - Complex, requiring potentially dozens of tool calls or steps - Answerable with a single, verifiable value that you identify in advance ## Question Guidelines ### Core Requirements 1. **Questions MUST be independent** - Each question should NOT depend on the answer to any other question - Should not assume prior write operations from processing another question 2. **Questions MUST require ONLY NON-DESTRUCTIVE AND IDEMPOTENT tool use** - Should not instruct or require modifying state to arrive at the correct answer 3. **Questions must be REALISTIC, CLEAR, CONCISE, and COMPLEX** - Must require another LLM to use multiple (potentially dozens of) tools or steps to answer ### Complexity and Depth 4. **Questions must require deep exploration** - Consider multi-hop questions requiring multiple sub-questions and sequential tool calls - Each step should benefit from information found in previous questions 5. **Questions may require extensive paging** - May need paging through multiple pages of results - May require querying old data (1-2 years out-of-date) to find niche information - The questions must be DIFFICULT 6. **Questions must require deep understanding** - Rather than surface-level knowledge - May pose complex ideas as True/False questions requiring evidence - May use multiple-choice format where LLM must search different hypotheses 7. **Questions must not be solvable with straightforward keyword search** - Do not include specific keywords from the target content - Use synonyms, related concepts, or paraphrases - Require multiple searches, analyzing multiple related items, extracting context, then deriving the answer ### Tool Testing 8. **Questions should stress-test tool return values** - May elicit tools returning large JSON objects or lists, overwhelming the LLM - Should require understanding multiple modalities of data: - IDs and names - Timestamps and datetimes (months, days, years, seconds) - File IDs, names, extensions, and mimetypes - URLs, GIDs, etc. - Should probe the tool's ability to return all useful forms of data 9. **Questions should MOSTLY reflect real human use cases** - The kinds of information retrieval tasks that HUMANS assisted by an LLM would care about 10. **Questions may require dozens of tool calls** - This challenges LLMs with limited context - Encourages MCP server tools to reduce information returned 11. **Include ambiguous questions** - May be ambiguous OR require difficult decisions on which tools to call - Force the LLM to potentially make mistakes or misinterpret - Ensure that despite AMBIGUITY, there is STILL A SINGLE VERIFIABLE ANSWER ### Stability 12. **Questions must be designed so the answer DOES NOT CHANGE** - Do not ask questions that rely on "current state" which is dynamic - For example, do not count: - Number of reactions to a post - Number of replies to a thread - Number of members in a channel 13. **DO NOT let the MCP server RESTRICT the kinds of questions you create** - Create challenging and complex questions - Some may not be solvable with the available MCP server tools - Questions may require specific output formats (datetime vs. epoch time, JSON vs. MARKDOWN) - Questions may require dozens of tool calls to complete ## Answer Guidelines ### Verification 1. **Answers must be VERIFIABLE via direct string comparison** - If the answer can be re-written in many formats, clearly specify the output format in the QUESTION - Examples: "Use YYYY/MM/DD.", "Respond True or False.", "Answer A, B, C, or D and nothing else." - Answer should be a single VERIFIABLE value such as: - User ID, user name, display name, first name, last name - Channel ID, channel name - Message ID, string - URL, title - Numerical quantity - Timestamp, datetime - Boolean (for True/False questions) - Email address, phone number - File ID, file name, file extension - Multiple choice answer - Answers must not require special formatting or complex, structured output - Answer will be verified using DIRECT STRING COMPARISON ### Readability 2. **Answers should generally prefer HUMAN-READABLE formats** - Examples: names, first name, last name, datetime, file name, message string, URL, yes/no, true/false, a/b/c/d - Rather than opaque IDs (though IDs are acceptable) - The VAST MAJORITY of answers should be human-readable ### Stability 3. **Answers must be STABLE/STATIONARY** - Look at old content (e.g., conversations that have ended, projects that have launched, questions answered) - Create QUESTIONS based on "closed" concepts that will always return the same answer - Questions may ask to consider a fixed time window to insulate from non-stationary answers - Rely on context UNLIKELY to change - Example: if finding a paper name, be SPECIFIC enough so answer is not confused with papers published later 4. **Answers must be CLEAR and UNAMBIGUOUS** - Questions must be designed so there is a single, clear answer - Answer can be derived from using the MCP server tools ### Diversity 5. **Answers must be DIVERSE** - Answer should be a single VERIFIABLE value in diverse modalities and formats - User concept: user ID, user name, display name, first name, last name, email address, phone number - Channel concept: channel ID, channel name, channel topic - Message concept: message ID, message string, timestamp, month, day, year 6. **Answers must NOT be complex structures** - Not a list of values - Not a complex object - Not a list of IDs or strings - Not natural language text - UNLESS the answer can be straightforwardly verified using DIRECT STRING COMPARISON - And can be realistically reproduced - It should be unlikely that an LLM would return the same list in any other order or format ## Evaluation Process ### Step 1: Documentation Inspection Read the documentation of the target API to understand: - Available endpoints and functionality - If ambiguity exists, fetch additional information from the web - Parallelize this step AS MUCH AS POSSIBLE - Ensure each subagent is ONLY examining documentation from the file system or on the web ### Step 2: Tool Inspection List the tools available in the MCP server: - Inspect the MCP server directly - Understand input/output schemas, docstrings, and descriptions - WITHOUT calling the tools themselves at this stage ### Step 3: Developing Understanding Repeat steps 1 & 2 until you have a good understanding: - Iterate multiple times - Think about the kinds of tasks you want to create - Refine your understanding - At NO stage should you READ the code of the MCP server implementation itself - Use your intuition and understanding to create reasonable, realistic, but VERY challenging tasks ### Step 4: Read-Only Content Inspection After understanding the API and tools, USE the MCP server tools: - Inspect content using READ-ONLY and NON-DESTRUCTIVE operations ONLY - Goal: identify specific content (e.g., users, channels, messages, projects, tasks) for creating realistic questions - Should NOT call any tools that modify state - Will NOT read the code of the MCP server implementation itself - Parallelize this step with individual sub-agents pursuing independent explorations - Ensure each subagent is only performing READ-ONLY, NON-DESTRUCTIVE, and IDEMPOTENT operations - BE CAREFUL: SOME TOOLS may return LOTS OF DATA which would cause you to run out of CONTEXT - Make INCREMENTAL, SMALL, AND TARGETED tool calls for exploration - In all tool call requests, use the `limit` parameter to limit results (<10) - Use pagination ### Step 5: Task Generation After inspecting the content, create 10 human-readable questions: - An LLM should be able to answer these with the MCP server - Follow all question and answer guidelines above ## Output Format Each QA pair consists of a question and an answer. The output should be an XML file with this structure: ```xml Find the project created in Q2 2024 with the highest number of completed tasks. What is the project name? Website Redesign Search for issues labeled as "bug" that were closed in March 2024. Which user closed the most issues? Provide their username. sarah_dev Look for pull requests that modified files in the /api directory and were merged between January 1 and January 31, 2024. How many different contributors worked on these PRs? 7 Find the repository with the most stars that was created before 2023. What is the repository name? data-pipeline ``` ## Evaluation Examples ### Good Questions **Example 1: Multi-hop question requiring deep exploration (GitHub MCP)** ```xml Find the repository that was archived in Q3 2023 and had previously been the most forked project in the organization. What was the primary programming language used in that repository? Python ``` This question is good because: - Requires multiple searches to find archived repositories - Needs to identify which had the most forks before archival - Requires examining repository details for the language - Answer is a simple, verifiable value - Based on historical (closed) data that won't change **Example 2: Requires understanding context without keyword matching (Project Management MCP)** ```xml Locate the initiative focused on improving customer onboarding that was completed in late 2023. The project lead created a retrospective document after completion. What was the lead's role title at that time? Product Manager ``` This question is good because: - Doesn't use specific project name ("initiative focused on improving customer onboarding") - Requires finding completed projects from specific timeframe - Needs to identify the project lead and their role - Requires understanding context from retrospective documents - Answer is human-readable and stable - Based on completed work (won't change) **Example 3: Complex aggregation requiring multiple steps (Issue Tracker MCP)** ```xml Among all bugs reported in January 2024 that were marked as critical priority, which assignee resolved the highest percentage of their assigned bugs within 48 hours? Provide the assignee's username. alex_eng ``` This question is good because: - Requires filtering bugs by date, priority, and status - Needs to group by assignee and calculate resolution rates - Requires understanding timestamps to determine 48-hour windows - Tests pagination (potentially many bugs to process) - Answer is a single username - Based on historical data from specific time period **Example 4: Requires synthesis across multiple data types (CRM MCP)** ```xml Find the account that upgraded from the Starter to Enterprise plan in Q4 2023 and had the highest annual contract value. What industry does this account operate in? Healthcare ``` This question is good because: - Requires understanding subscription tier changes - Needs to identify upgrade events in specific timeframe - Requires comparing contract values - Must access account industry information - Answer is simple and verifiable - Based on completed historical transactions ### Poor Questions **Example 1: Answer changes over time** ```xml How many open issues are currently assigned to the engineering team? 47 ``` This question is poor because: - The answer will change as issues are created, closed, or reassigned - Not based on stable/stationary data - Relies on "current state" which is dynamic **Example 2: Too easy with keyword search** ```xml Find the pull request with title "Add authentication feature" and tell me who created it. developer123 ``` This question is poor because: - Can be solved with a straightforward keyword search for exact title - Doesn't require deep exploration or understanding - No synthesis or analysis needed **Example 3: Ambiguous answer format** ```xml List all the repositories that have Python as their primary language. repo1, repo2, repo3, data-pipeline, ml-tools ``` This question is poor because: - Answer is a list that could be returned in any order - Difficult to verify with direct string comparison - LLM might format differently (JSON array, comma-separated, newline-separated) - Better to ask for a specific aggregate (count) or superlative (most stars) ## Verification Process After creating evaluations: 1. **Examine the XML file** to understand the schema 2. **Load each task instruction** and in parallel using the MCP server and tools, identify the correct answer by attempting to solve the task YOURSELF 3. **Flag any operations** that require WRITE or DESTRUCTIVE operations 4. **Accumulate all CORRECT answers** and replace any incorrect answers in the document 5. **Remove any ``** that require WRITE or DESTRUCTIVE operations Remember to parallelize solving tasks to avoid running out of context, then accumulate all answers and make changes to the file at the end. ## Tips for Creating Quality Evaluations 1. **Think Hard and Plan Ahead** before generating tasks 2. **Parallelize Where Opportunity Arises** to speed up the process and manage context 3. **Focus on Realistic Use Cases** that humans would actually want to accomplish 4. **Create Challenging Questions** that test the limits of the MCP server's capabilities 5. **Ensure Stability** by using historical data and closed concepts 6. **Verify Answers** by solving the questions yourself using the MCP server tools 7. **Iterate and Refine** based on what you learn during the process --- # Running Evaluations After creating your evaluation file, you can use the provided evaluation harness to test your MCP server. ## Setup 1. **Install Dependencies** ```bash pip install -r scripts/requirements.txt ``` Or install manually: ```bash pip install anthropic mcp ``` 2. **Set API Key** ```bash export ANTHROPIC_API_KEY=your_api_key_here ``` ## Evaluation File Format Evaluation files use XML format with `` elements: ```xml Find the project created in Q2 2024 with the highest number of completed tasks. What is the project name? Website Redesign Search for issues labeled as "bug" that were closed in March 2024. Which user closed the most issues? Provide their username. sarah_dev ``` ## Running Evaluations The evaluation script (`scripts/evaluation.py`) supports three transport types: **Important:** - **stdio transport**: The evaluation script automatically launches and manages the MCP server process for you. Do not run the server manually. - **sse/http transports**: You must start the MCP server separately before running the evaluation. The script connects to the already-running server at the specified URL. ### 1. Local STDIO Server For locally-run MCP servers (script launches the server automatically): ```bash python scripts/evaluation.py \ -t stdio \ -c python \ -a my_mcp_server.py \ evaluation.xml ``` With environment variables: ```bash python scripts/evaluation.py \ -t stdio \ -c python \ -a my_mcp_server.py \ -e API_KEY=abc123 \ -e DEBUG=true \ evaluation.xml ``` ### 2. Server-Sent Events (SSE) For SSE-based MCP servers (you must start the server first): ```bash python scripts/evaluation.py \ -t sse \ -u https://example.com/mcp \ -H "Authorization: Bearer token123" \ -H "X-Custom-Header: value" \ evaluation.xml ``` ### 3. HTTP (Streamable HTTP) For HTTP-based MCP servers (you must start the server first): ```bash python scripts/evaluation.py \ -t http \ -u https://example.com/mcp \ -H "Authorization: Bearer token123" \ evaluation.xml ``` ## Command-Line Options ``` usage: evaluation.py [-h] [-t {stdio,sse,http}] [-m MODEL] [-c COMMAND] [-a ARGS [ARGS ...]] [-e ENV [ENV ...]] [-u URL] [-H HEADERS [HEADERS ...]] [-o OUTPUT] eval_file positional arguments: eval_file Path to evaluation XML file optional arguments: -h, --help Show help message -t, --transport Transport type: stdio, sse, or http (default: stdio) -m, --model Claude model to use (default: claude-3-7-sonnet-20250219) -o, --output Output file for report (default: print to stdout) stdio options: -c, --command Command to run MCP server (e.g., python, node) -a, --args Arguments for the command (e.g., server.py) -e, --env Environment variables in KEY=VALUE format sse/http options: -u, --url MCP server URL -H, --header HTTP headers in 'Key: Value' format ``` ## Output The evaluation script generates a detailed report including: - **Summary Statistics**: - Accuracy (correct/total) - Average task duration - Average tool calls per task - Total tool calls - **Per-Task Results**: - Prompt and expected response - Actual response from the agent - Whether the answer was correct (✅/❌) - Duration and tool call details - Agent's summary of its approach - Agent's feedback on the tools ### Save Report to File ```bash python scripts/evaluation.py \ -t stdio \ -c python \ -a my_server.py \ -o evaluation_report.md \ evaluation.xml ``` ## Complete Example Workflow Here's a complete example of creating and running an evaluation: 1. **Create your evaluation file** (`my_evaluation.xml`): ```xml Find the user who created the most issues in January 2024. What is their username? alice_developer Among all pull requests merged in Q1 2024, which repository had the highest number? Provide the repository name. backend-api Find the project that was completed in December 2023 and had the longest duration from start to finish. How many days did it take? 127 ``` 2. **Install dependencies**: ```bash pip install -r scripts/requirements.txt export ANTHROPIC_API_KEY=your_api_key ``` 3. **Run evaluation**: ```bash python scripts/evaluation.py \ -t stdio \ -c python \ -a github_mcp_server.py \ -e GITHUB_TOKEN=ghp_xxx \ -o github_eval_report.md \ my_evaluation.xml ``` 4. **Review the report** in `github_eval_report.md` to: - See which questions passed/failed - Read the agent's feedback on your tools - Identify areas for improvement - Iterate on your MCP server design ## Troubleshooting ### Connection Errors If you get connection errors: - **STDIO**: Verify the command and arguments are correct - **SSE/HTTP**: Check the URL is accessible and headers are correct - Ensure any required API keys are set in environment variables or headers ### Low Accuracy If many evaluations fail: - Review the agent's feedback for each task - Check if tool descriptions are clear and comprehensive - Verify input parameters are well-documented - Consider whether tools return too much or too little data - Ensure error messages are actionable ### Timeout Issues If tasks are timing out: - Use a more capable model (e.g., `claude-3-7-sonnet-20250219`) - Check if tools are returning too much data - Verify pagination is working correctly - Consider simplifying complex questions ================================================ FILE: skills/mcp-builder/reference/mcp_best_practices.md ================================================ # MCP Server Best Practices ## Quick Reference ### Server Naming - **Python**: `{service}_mcp` (e.g., `slack_mcp`) - **Node/TypeScript**: `{service}-mcp-server` (e.g., `slack-mcp-server`) ### Tool Naming - Use snake_case with service prefix - Format: `{service}_{action}_{resource}` - Example: `slack_send_message`, `github_create_issue` ### Response Formats - Support both JSON and Markdown formats - JSON for programmatic processing - Markdown for human readability ### Pagination - Always respect `limit` parameter - Return `has_more`, `next_offset`, `total_count` - Default to 20-50 items ### Transport - **Streamable HTTP**: For remote servers, multi-client scenarios - **stdio**: For local integrations, command-line tools - Avoid SSE (deprecated in favor of streamable HTTP) --- ## Server Naming Conventions Follow these standardized naming patterns: **Python**: Use format `{service}_mcp` (lowercase with underscores) - Examples: `slack_mcp`, `github_mcp`, `jira_mcp` **Node/TypeScript**: Use format `{service}-mcp-server` (lowercase with hyphens) - Examples: `slack-mcp-server`, `github-mcp-server`, `jira-mcp-server` The name should be general, descriptive of the service being integrated, easy to infer from the task description, and without version numbers. --- ## Tool Naming and Design ### Tool Naming 1. **Use snake_case**: `search_users`, `create_project`, `get_channel_info` 2. **Include service prefix**: Anticipate that your MCP server may be used alongside other MCP servers - Use `slack_send_message` instead of just `send_message` - Use `github_create_issue` instead of just `create_issue` 3. **Be action-oriented**: Start with verbs (get, list, search, create, etc.) 4. **Be specific**: Avoid generic names that could conflict with other servers ### Tool Design - Tool descriptions must narrowly and unambiguously describe functionality - Descriptions must precisely match actual functionality - Provide tool annotations (readOnlyHint, destructiveHint, idempotentHint, openWorldHint) - Keep tool operations focused and atomic --- ## Response Formats All tools that return data should support multiple formats: ### JSON Format (`response_format="json"`) - Machine-readable structured data - Include all available fields and metadata - Consistent field names and types - Use for programmatic processing ### Markdown Format (`response_format="markdown"`, typically default) - Human-readable formatted text - Use headers, lists, and formatting for clarity - Convert timestamps to human-readable format - Show display names with IDs in parentheses - Omit verbose metadata --- ## Pagination For tools that list resources: - **Always respect the `limit` parameter** - **Implement pagination**: Use `offset` or cursor-based pagination - **Return pagination metadata**: Include `has_more`, `next_offset`/`next_cursor`, `total_count` - **Never load all results into memory**: Especially important for large datasets - **Default to reasonable limits**: 20-50 items is typical Example pagination response: ```json { "total": 150, "count": 20, "offset": 0, "items": [...], "has_more": true, "next_offset": 20 } ``` --- ## Transport Options ### Streamable HTTP **Best for**: Remote servers, web services, multi-client scenarios **Characteristics**: - Bidirectional communication over HTTP - Supports multiple simultaneous clients - Can be deployed as a web service - Enables server-to-client notifications **Use when**: - Serving multiple clients simultaneously - Deploying as a cloud service - Integration with web applications ### stdio **Best for**: Local integrations, command-line tools **Characteristics**: - Standard input/output stream communication - Simple setup, no network configuration needed - Runs as a subprocess of the client **Use when**: - Building tools for local development environments - Integrating with desktop applications - Single-user, single-session scenarios **Note**: stdio servers should NOT log to stdout (use stderr for logging) ### Transport Selection | Criterion | stdio | Streamable HTTP | |-----------|-------|-----------------| | **Deployment** | Local | Remote | | **Clients** | Single | Multiple | | **Complexity** | Low | Medium | | **Real-time** | No | Yes | --- ## Security Best Practices ### Authentication and Authorization **OAuth 2.1**: - Use secure OAuth 2.1 with certificates from recognized authorities - Validate access tokens before processing requests - Only accept tokens specifically intended for your server **API Keys**: - Store API keys in environment variables, never in code - Validate keys on server startup - Provide clear error messages when authentication fails ### Input Validation - Sanitize file paths to prevent directory traversal - Validate URLs and external identifiers - Check parameter sizes and ranges - Prevent command injection in system calls - Use schema validation (Pydantic/Zod) for all inputs ### Error Handling - Don't expose internal errors to clients - Log security-relevant errors server-side - Provide helpful but not revealing error messages - Clean up resources after errors ### DNS Rebinding Protection For streamable HTTP servers running locally: - Enable DNS rebinding protection - Validate the `Origin` header on all incoming connections - Bind to `127.0.0.1` rather than `0.0.0.0` --- ## Tool Annotations Provide annotations to help clients understand tool behavior: | Annotation | Type | Default | Description | |-----------|------|---------|-------------| | `readOnlyHint` | boolean | false | Tool does not modify its environment | | `destructiveHint` | boolean | true | Tool may perform destructive updates | | `idempotentHint` | boolean | false | Repeated calls with same args have no additional effect | | `openWorldHint` | boolean | true | Tool interacts with external entities | **Important**: Annotations are hints, not security guarantees. Clients should not make security-critical decisions based solely on annotations. --- ## Error Handling - Use standard JSON-RPC error codes - Report tool errors within result objects (not protocol-level errors) - Provide helpful, specific error messages with suggested next steps - Don't expose internal implementation details - Clean up resources properly on errors Example error handling: ```typescript try { const result = performOperation(); return { content: [{ type: "text", text: result }] }; } catch (error) { return { isError: true, content: [{ type: "text", text: `Error: ${error.message}. Try using filter='active_only' to reduce results.` }] }; } ``` --- ## Testing Requirements Comprehensive testing should cover: - **Functional testing**: Verify correct execution with valid/invalid inputs - **Integration testing**: Test interaction with external systems - **Security testing**: Validate auth, input sanitization, rate limiting - **Performance testing**: Check behavior under load, timeouts - **Error handling**: Ensure proper error reporting and cleanup --- ## Documentation Requirements - Provide clear documentation of all tools and capabilities - Include working examples (at least 3 per major feature) - Document security considerations - Specify required permissions and access levels - Document rate limits and performance characteristics ================================================ FILE: skills/mcp-builder/reference/node_mcp_server.md ================================================ # Node/TypeScript MCP Server Implementation Guide ## Overview This document provides Node/TypeScript-specific best practices and examples for implementing MCP servers using the MCP TypeScript SDK. It covers project structure, server setup, tool registration patterns, input validation with Zod, error handling, and complete working examples. --- ## Quick Reference ### Key Imports ```typescript import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; import { StreamableHTTPServerTransport } from "@modelcontextprotocol/sdk/server/streamableHttp.js"; import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js"; import express from "express"; import { z } from "zod"; ``` ### Server Initialization ```typescript const server = new McpServer({ name: "service-mcp-server", version: "1.0.0" }); ``` ### Tool Registration Pattern ```typescript server.registerTool( "tool_name", { title: "Tool Display Name", description: "What the tool does", inputSchema: { param: z.string() }, outputSchema: { result: z.string() } }, async ({ param }) => { const output = { result: `Processed: ${param}` }; return { content: [{ type: "text", text: JSON.stringify(output) }], structuredContent: output // Modern pattern for structured data }; } ); ``` --- ## MCP TypeScript SDK The official MCP TypeScript SDK provides: - `McpServer` class for server initialization - `registerTool` method for tool registration - Zod schema integration for runtime input validation - Type-safe tool handler implementations **IMPORTANT - Use Modern APIs Only:** - **DO use**: `server.registerTool()`, `server.registerResource()`, `server.registerPrompt()` - **DO NOT use**: Old deprecated APIs such as `server.tool()`, `server.setRequestHandler(ListToolsRequestSchema, ...)`, or manual handler registration - The `register*` methods provide better type safety, automatic schema handling, and are the recommended approach See the MCP SDK documentation in the references for complete details. ## Server Naming Convention Node/TypeScript MCP servers must follow this naming pattern: - **Format**: `{service}-mcp-server` (lowercase with hyphens) - **Examples**: `github-mcp-server`, `jira-mcp-server`, `stripe-mcp-server` The name should be: - General (not tied to specific features) - Descriptive of the service/API being integrated - Easy to infer from the task description - Without version numbers or dates ## Project Structure Create the following structure for Node/TypeScript MCP servers: ``` {service}-mcp-server/ ├── package.json ├── tsconfig.json ├── README.md ├── src/ │ ├── index.ts # Main entry point with McpServer initialization │ ├── types.ts # TypeScript type definitions and interfaces │ ├── tools/ # Tool implementations (one file per domain) │ ├── services/ # API clients and shared utilities │ ├── schemas/ # Zod validation schemas │ └── constants.ts # Shared constants (API_URL, CHARACTER_LIMIT, etc.) └── dist/ # Built JavaScript files (entry point: dist/index.js) ``` ## Tool Implementation ### Tool Naming Use snake_case for tool names (e.g., "search_users", "create_project", "get_channel_info") with clear, action-oriented names. **Avoid Naming Conflicts**: Include the service context to prevent overlaps: - Use "slack_send_message" instead of just "send_message" - Use "github_create_issue" instead of just "create_issue" - Use "asana_list_tasks" instead of just "list_tasks" ### Tool Structure Tools are registered using the `registerTool` method with the following requirements: - Use Zod schemas for runtime input validation and type safety - The `description` field must be explicitly provided - JSDoc comments are NOT automatically extracted - Explicitly provide `title`, `description`, `inputSchema`, and `annotations` - The `inputSchema` must be a Zod schema object (not a JSON schema) - Type all parameters and return values explicitly ```typescript import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; import { z } from "zod"; const server = new McpServer({ name: "example-mcp", version: "1.0.0" }); // Zod schema for input validation const UserSearchInputSchema = z.object({ query: z.string() .min(2, "Query must be at least 2 characters") .max(200, "Query must not exceed 200 characters") .describe("Search string to match against names/emails"), limit: z.number() .int() .min(1) .max(100) .default(20) .describe("Maximum results to return"), offset: z.number() .int() .min(0) .default(0) .describe("Number of results to skip for pagination"), response_format: z.nativeEnum(ResponseFormat) .default(ResponseFormat.MARKDOWN) .describe("Output format: 'markdown' for human-readable or 'json' for machine-readable") }).strict(); // Type definition from Zod schema type UserSearchInput = z.infer; server.registerTool( "example_search_users", { title: "Search Example Users", description: `Search for users in the Example system by name, email, or team. This tool searches across all user profiles in the Example platform, supporting partial matches and various search filters. It does NOT create or modify users, only searches existing ones. Args: - query (string): Search string to match against names/emails - limit (number): Maximum results to return, between 1-100 (default: 20) - offset (number): Number of results to skip for pagination (default: 0) - response_format ('markdown' | 'json'): Output format (default: 'markdown') Returns: For JSON format: Structured data with schema: { "total": number, // Total number of matches found "count": number, // Number of results in this response "offset": number, // Current pagination offset "users": [ { "id": string, // User ID (e.g., "U123456789") "name": string, // Full name (e.g., "John Doe") "email": string, // Email address "team": string, // Team name (optional) "active": boolean // Whether user is active } ], "has_more": boolean, // Whether more results are available "next_offset": number // Offset for next page (if has_more is true) } Examples: - Use when: "Find all marketing team members" -> params with query="team:marketing" - Use when: "Search for John's account" -> params with query="john" - Don't use when: You need to create a user (use example_create_user instead) Error Handling: - Returns "Error: Rate limit exceeded" if too many requests (429 status) - Returns "No users found matching ''" if search returns empty`, inputSchema: UserSearchInputSchema, annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: true } }, async (params: UserSearchInput) => { try { // Input validation is handled by Zod schema // Make API request using validated parameters const data = await makeApiRequest( "users/search", "GET", undefined, { q: params.query, limit: params.limit, offset: params.offset } ); const users = data.users || []; const total = data.total || 0; if (!users.length) { return { content: [{ type: "text", text: `No users found matching '${params.query}'` }] }; } // Prepare structured output const output = { total, count: users.length, offset: params.offset, users: users.map((user: any) => ({ id: user.id, name: user.name, email: user.email, ...(user.team ? { team: user.team } : {}), active: user.active ?? true })), has_more: total > params.offset + users.length, ...(total > params.offset + users.length ? { next_offset: params.offset + users.length } : {}) }; // Format text representation based on requested format let textContent: string; if (params.response_format === ResponseFormat.MARKDOWN) { const lines = [`# User Search Results: '${params.query}'`, "", `Found ${total} users (showing ${users.length})`, ""]; for (const user of users) { lines.push(`## ${user.name} (${user.id})`); lines.push(`- **Email**: ${user.email}`); if (user.team) lines.push(`- **Team**: ${user.team}`); lines.push(""); } textContent = lines.join("\n"); } else { textContent = JSON.stringify(output, null, 2); } return { content: [{ type: "text", text: textContent }], structuredContent: output // Modern pattern for structured data }; } catch (error) { return { content: [{ type: "text", text: handleApiError(error) }] }; } } ); ``` ## Zod Schemas for Input Validation Zod provides runtime type validation: ```typescript import { z } from "zod"; // Basic schema with validation const CreateUserSchema = z.object({ name: z.string() .min(1, "Name is required") .max(100, "Name must not exceed 100 characters"), email: z.string() .email("Invalid email format"), age: z.number() .int("Age must be a whole number") .min(0, "Age cannot be negative") .max(150, "Age cannot be greater than 150") }).strict(); // Use .strict() to forbid extra fields // Enums enum ResponseFormat { MARKDOWN = "markdown", JSON = "json" } const SearchSchema = z.object({ response_format: z.nativeEnum(ResponseFormat) .default(ResponseFormat.MARKDOWN) .describe("Output format") }); // Optional fields with defaults const PaginationSchema = z.object({ limit: z.number() .int() .min(1) .max(100) .default(20) .describe("Maximum results to return"), offset: z.number() .int() .min(0) .default(0) .describe("Number of results to skip") }); ``` ## Response Format Options Support multiple output formats for flexibility: ```typescript enum ResponseFormat { MARKDOWN = "markdown", JSON = "json" } const inputSchema = z.object({ query: z.string(), response_format: z.nativeEnum(ResponseFormat) .default(ResponseFormat.MARKDOWN) .describe("Output format: 'markdown' for human-readable or 'json' for machine-readable") }); ``` **Markdown format**: - Use headers, lists, and formatting for clarity - Convert timestamps to human-readable format - Show display names with IDs in parentheses - Omit verbose metadata - Group related information logically **JSON format**: - Return complete, structured data suitable for programmatic processing - Include all available fields and metadata - Use consistent field names and types ## Pagination Implementation For tools that list resources: ```typescript const ListSchema = z.object({ limit: z.number().int().min(1).max(100).default(20), offset: z.number().int().min(0).default(0) }); async function listItems(params: z.infer) { const data = await apiRequest(params.limit, params.offset); const response = { total: data.total, count: data.items.length, offset: params.offset, items: data.items, has_more: data.total > params.offset + data.items.length, next_offset: data.total > params.offset + data.items.length ? params.offset + data.items.length : undefined }; return JSON.stringify(response, null, 2); } ``` ## Character Limits and Truncation Add a CHARACTER_LIMIT constant to prevent overwhelming responses: ```typescript // At module level in constants.ts export const CHARACTER_LIMIT = 25000; // Maximum response size in characters async function searchTool(params: SearchInput) { let result = generateResponse(data); // Check character limit and truncate if needed if (result.length > CHARACTER_LIMIT) { const truncatedData = data.slice(0, Math.max(1, data.length / 2)); response.data = truncatedData; response.truncated = true; response.truncation_message = `Response truncated from ${data.length} to ${truncatedData.length} items. ` + `Use 'offset' parameter or add filters to see more results.`; result = JSON.stringify(response, null, 2); } return result; } ``` ## Error Handling Provide clear, actionable error messages: ```typescript import axios, { AxiosError } from "axios"; function handleApiError(error: unknown): string { if (error instanceof AxiosError) { if (error.response) { switch (error.response.status) { case 404: return "Error: Resource not found. Please check the ID is correct."; case 403: return "Error: Permission denied. You don't have access to this resource."; case 429: return "Error: Rate limit exceeded. Please wait before making more requests."; default: return `Error: API request failed with status ${error.response.status}`; } } else if (error.code === "ECONNABORTED") { return "Error: Request timed out. Please try again."; } } return `Error: Unexpected error occurred: ${error instanceof Error ? error.message : String(error)}`; } ``` ## Shared Utilities Extract common functionality into reusable functions: ```typescript // Shared API request function async function makeApiRequest( endpoint: string, method: "GET" | "POST" | "PUT" | "DELETE" = "GET", data?: any, params?: any ): Promise { try { const response = await axios({ method, url: `${API_BASE_URL}/${endpoint}`, data, params, timeout: 30000, headers: { "Content-Type": "application/json", "Accept": "application/json" } }); return response.data; } catch (error) { throw error; } } ``` ## Async/Await Best Practices Always use async/await for network requests and I/O operations: ```typescript // Good: Async network request async function fetchData(resourceId: string): Promise { const response = await axios.get(`${API_URL}/resource/${resourceId}`); return response.data; } // Bad: Promise chains function fetchData(resourceId: string): Promise { return axios.get(`${API_URL}/resource/${resourceId}`) .then(response => response.data); // Harder to read and maintain } ``` ## TypeScript Best Practices 1. **Use Strict TypeScript**: Enable strict mode in tsconfig.json 2. **Define Interfaces**: Create clear interface definitions for all data structures 3. **Avoid `any`**: Use proper types or `unknown` instead of `any` 4. **Zod for Runtime Validation**: Use Zod schemas to validate external data 5. **Type Guards**: Create type guard functions for complex type checking 6. **Error Handling**: Always use try-catch with proper error type checking 7. **Null Safety**: Use optional chaining (`?.`) and nullish coalescing (`??`) ```typescript // Good: Type-safe with Zod and interfaces interface UserResponse { id: string; name: string; email: string; team?: string; active: boolean; } const UserSchema = z.object({ id: z.string(), name: z.string(), email: z.string().email(), team: z.string().optional(), active: z.boolean() }); type User = z.infer; async function getUser(id: string): Promise { const data = await apiCall(`/users/${id}`); return UserSchema.parse(data); // Runtime validation } // Bad: Using any async function getUser(id: string): Promise { return await apiCall(`/users/${id}`); // No type safety } ``` ## Package Configuration ### package.json ```json { "name": "{service}-mcp-server", "version": "1.0.0", "description": "MCP server for {Service} API integration", "type": "module", "main": "dist/index.js", "scripts": { "start": "node dist/index.js", "dev": "tsx watch src/index.ts", "build": "tsc", "clean": "rm -rf dist" }, "engines": { "node": ">=18" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.6.1", "axios": "^1.7.9", "zod": "^3.23.8" }, "devDependencies": { "@types/node": "^22.10.0", "tsx": "^4.19.2", "typescript": "^5.7.2" } } ``` ### tsconfig.json ```json { "compilerOptions": { "target": "ES2022", "module": "Node16", "moduleResolution": "Node16", "lib": ["ES2022"], "outDir": "./dist", "rootDir": "./src", "strict": true, "esModuleInterop": true, "skipLibCheck": true, "forceConsistentCasingInFileNames": true, "declaration": true, "declarationMap": true, "sourceMap": true, "allowSyntheticDefaultImports": true }, "include": ["src/**/*"], "exclude": ["node_modules", "dist"] } ``` ## Complete Example ```typescript #!/usr/bin/env node /** * MCP Server for Example Service. * * This server provides tools to interact with Example API, including user search, * project management, and data export capabilities. */ import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js"; import { z } from "zod"; import axios, { AxiosError } from "axios"; // Constants const API_BASE_URL = "https://api.example.com/v1"; const CHARACTER_LIMIT = 25000; // Enums enum ResponseFormat { MARKDOWN = "markdown", JSON = "json" } // Zod schemas const UserSearchInputSchema = z.object({ query: z.string() .min(2, "Query must be at least 2 characters") .max(200, "Query must not exceed 200 characters") .describe("Search string to match against names/emails"), limit: z.number() .int() .min(1) .max(100) .default(20) .describe("Maximum results to return"), offset: z.number() .int() .min(0) .default(0) .describe("Number of results to skip for pagination"), response_format: z.nativeEnum(ResponseFormat) .default(ResponseFormat.MARKDOWN) .describe("Output format: 'markdown' for human-readable or 'json' for machine-readable") }).strict(); type UserSearchInput = z.infer; // Shared utility functions async function makeApiRequest( endpoint: string, method: "GET" | "POST" | "PUT" | "DELETE" = "GET", data?: any, params?: any ): Promise { try { const response = await axios({ method, url: `${API_BASE_URL}/${endpoint}`, data, params, timeout: 30000, headers: { "Content-Type": "application/json", "Accept": "application/json" } }); return response.data; } catch (error) { throw error; } } function handleApiError(error: unknown): string { if (error instanceof AxiosError) { if (error.response) { switch (error.response.status) { case 404: return "Error: Resource not found. Please check the ID is correct."; case 403: return "Error: Permission denied. You don't have access to this resource."; case 429: return "Error: Rate limit exceeded. Please wait before making more requests."; default: return `Error: API request failed with status ${error.response.status}`; } } else if (error.code === "ECONNABORTED") { return "Error: Request timed out. Please try again."; } } return `Error: Unexpected error occurred: ${error instanceof Error ? error.message : String(error)}`; } // Create MCP server instance const server = new McpServer({ name: "example-mcp", version: "1.0.0" }); // Register tools server.registerTool( "example_search_users", { title: "Search Example Users", description: `[Full description as shown above]`, inputSchema: UserSearchInputSchema, annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: true } }, async (params: UserSearchInput) => { // Implementation as shown above } ); // Main function // For stdio (local): async function runStdio() { if (!process.env.EXAMPLE_API_KEY) { console.error("ERROR: EXAMPLE_API_KEY environment variable is required"); process.exit(1); } const transport = new StdioServerTransport(); await server.connect(transport); console.error("MCP server running via stdio"); } // For streamable HTTP (remote): async function runHTTP() { if (!process.env.EXAMPLE_API_KEY) { console.error("ERROR: EXAMPLE_API_KEY environment variable is required"); process.exit(1); } const app = express(); app.use(express.json()); app.post('/mcp', async (req, res) => { const transport = new StreamableHTTPServerTransport({ sessionIdGenerator: undefined, enableJsonResponse: true }); res.on('close', () => transport.close()); await server.connect(transport); await transport.handleRequest(req, res, req.body); }); const port = parseInt(process.env.PORT || '3000'); app.listen(port, () => { console.error(`MCP server running on http://localhost:${port}/mcp`); }); } // Choose transport based on environment const transport = process.env.TRANSPORT || 'stdio'; if (transport === 'http') { runHTTP().catch(error => { console.error("Server error:", error); process.exit(1); }); } else { runStdio().catch(error => { console.error("Server error:", error); process.exit(1); }); } ``` --- ## Advanced MCP Features ### Resource Registration Expose data as resources for efficient, URI-based access: ```typescript import { ResourceTemplate } from "@modelcontextprotocol/sdk/types.js"; // Register a resource with URI template server.registerResource( { uri: "file://documents/{name}", name: "Document Resource", description: "Access documents by name", mimeType: "text/plain" }, async (uri: string) => { // Extract parameter from URI const match = uri.match(/^file:\/\/documents\/(.+)$/); if (!match) { throw new Error("Invalid URI format"); } const documentName = match[1]; const content = await loadDocument(documentName); return { contents: [{ uri, mimeType: "text/plain", text: content }] }; } ); // List available resources dynamically server.registerResourceList(async () => { const documents = await getAvailableDocuments(); return { resources: documents.map(doc => ({ uri: `file://documents/${doc.name}`, name: doc.name, mimeType: "text/plain", description: doc.description })) }; }); ``` **When to use Resources vs Tools:** - **Resources**: For data access with simple URI-based parameters - **Tools**: For complex operations requiring validation and business logic - **Resources**: When data is relatively static or template-based - **Tools**: When operations have side effects or complex workflows ### Transport Options The TypeScript SDK supports two main transport mechanisms: #### Streamable HTTP (Recommended for Remote Servers) ```typescript import { StreamableHTTPServerTransport } from "@modelcontextprotocol/sdk/server/streamableHttp.js"; import express from "express"; const app = express(); app.use(express.json()); app.post('/mcp', async (req, res) => { // Create new transport for each request (stateless, prevents request ID collisions) const transport = new StreamableHTTPServerTransport({ sessionIdGenerator: undefined, enableJsonResponse: true }); res.on('close', () => transport.close()); await server.connect(transport); await transport.handleRequest(req, res, req.body); }); app.listen(3000); ``` #### stdio (For Local Integrations) ```typescript import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js"; const transport = new StdioServerTransport(); await server.connect(transport); ``` **Transport selection:** - **Streamable HTTP**: Web services, remote access, multiple clients - **stdio**: Command-line tools, local development, subprocess integration ### Notification Support Notify clients when server state changes: ```typescript // Notify when tools list changes server.notification({ method: "notifications/tools/list_changed" }); // Notify when resources change server.notification({ method: "notifications/resources/list_changed" }); ``` Use notifications sparingly - only when server capabilities genuinely change. --- ## Code Best Practices ### Code Composability and Reusability Your implementation MUST prioritize composability and code reuse: 1. **Extract Common Functionality**: - Create reusable helper functions for operations used across multiple tools - Build shared API clients for HTTP requests instead of duplicating code - Centralize error handling logic in utility functions - Extract business logic into dedicated functions that can be composed - Extract shared markdown or JSON field selection & formatting functionality 2. **Avoid Duplication**: - NEVER copy-paste similar code between tools - If you find yourself writing similar logic twice, extract it into a function - Common operations like pagination, filtering, field selection, and formatting should be shared - Authentication/authorization logic should be centralized ## Building and Running Always build your TypeScript code before running: ```bash # Build the project npm run build # Run the server npm start # Development with auto-reload npm run dev ``` Always ensure `npm run build` completes successfully before considering the implementation complete. ## Quality Checklist Before finalizing your Node/TypeScript MCP server implementation, ensure: ### Strategic Design - [ ] Tools enable complete workflows, not just API endpoint wrappers - [ ] Tool names reflect natural task subdivisions - [ ] Response formats optimize for agent context efficiency - [ ] Human-readable identifiers used where appropriate - [ ] Error messages guide agents toward correct usage ### Implementation Quality - [ ] FOCUSED IMPLEMENTATION: Most important and valuable tools implemented - [ ] All tools registered using `registerTool` with complete configuration - [ ] All tools include `title`, `description`, `inputSchema`, and `annotations` - [ ] Annotations correctly set (readOnlyHint, destructiveHint, idempotentHint, openWorldHint) - [ ] All tools use Zod schemas for runtime input validation with `.strict()` enforcement - [ ] All Zod schemas have proper constraints and descriptive error messages - [ ] All tools have comprehensive descriptions with explicit input/output types - [ ] Descriptions include return value examples and complete schema documentation - [ ] Error messages are clear, actionable, and educational ### TypeScript Quality - [ ] TypeScript interfaces are defined for all data structures - [ ] Strict TypeScript is enabled in tsconfig.json - [ ] No use of `any` type - use `unknown` or proper types instead - [ ] All async functions have explicit Promise return types - [ ] Error handling uses proper type guards (e.g., `axios.isAxiosError`, `z.ZodError`) ### Advanced Features (where applicable) - [ ] Resources registered for appropriate data endpoints - [ ] Appropriate transport configured (stdio or streamable HTTP) - [ ] Notifications implemented for dynamic server capabilities - [ ] Type-safe with SDK interfaces ### Project Configuration - [ ] Package.json includes all necessary dependencies - [ ] Build script produces working JavaScript in dist/ directory - [ ] Main entry point is properly configured as dist/index.js - [ ] Server name follows format: `{service}-mcp-server` - [ ] tsconfig.json properly configured with strict mode ### Code Quality - [ ] Pagination is properly implemented where applicable - [ ] Large responses check CHARACTER_LIMIT constant and truncate with clear messages - [ ] Filtering options are provided for potentially large result sets - [ ] All network operations handle timeouts and connection errors gracefully - [ ] Common functionality is extracted into reusable functions - [ ] Return types are consistent across similar operations ### Testing and Build - [ ] `npm run build` completes successfully without errors - [ ] dist/index.js created and executable - [ ] Server runs: `node dist/index.js --help` - [ ] All imports resolve correctly - [ ] Sample tool calls work as expected ================================================ FILE: skills/mcp-builder/reference/python_mcp_server.md ================================================ # Python MCP Server Implementation Guide ## Overview This document provides Python-specific best practices and examples for implementing MCP servers using the MCP Python SDK. It covers server setup, tool registration patterns, input validation with Pydantic, error handling, and complete working examples. --- ## Quick Reference ### Key Imports ```python from mcp.server.fastmcp import FastMCP from pydantic import BaseModel, Field, field_validator, ConfigDict from typing import Optional, List, Dict, Any from enum import Enum import httpx ``` ### Server Initialization ```python mcp = FastMCP("service_mcp") ``` ### Tool Registration Pattern ```python @mcp.tool(name="tool_name", annotations={...}) async def tool_function(params: InputModel) -> str: # Implementation pass ``` --- ## MCP Python SDK and FastMCP The official MCP Python SDK provides FastMCP, a high-level framework for building MCP servers. It provides: - Automatic description and inputSchema generation from function signatures and docstrings - Pydantic model integration for input validation - Decorator-based tool registration with `@mcp.tool` **For complete SDK documentation, use WebFetch to load:** `https://raw.githubusercontent.com/modelcontextprotocol/python-sdk/main/README.md` ## Server Naming Convention Python MCP servers must follow this naming pattern: - **Format**: `{service}_mcp` (lowercase with underscores) - **Examples**: `github_mcp`, `jira_mcp`, `stripe_mcp` The name should be: - General (not tied to specific features) - Descriptive of the service/API being integrated - Easy to infer from the task description - Without version numbers or dates ## Tool Implementation ### Tool Naming Use snake_case for tool names (e.g., "search_users", "create_project", "get_channel_info") with clear, action-oriented names. **Avoid Naming Conflicts**: Include the service context to prevent overlaps: - Use "slack_send_message" instead of just "send_message" - Use "github_create_issue" instead of just "create_issue" - Use "asana_list_tasks" instead of just "list_tasks" ### Tool Structure with FastMCP Tools are defined using the `@mcp.tool` decorator with Pydantic models for input validation: ```python from pydantic import BaseModel, Field, ConfigDict from mcp.server.fastmcp import FastMCP # Initialize the MCP server mcp = FastMCP("example_mcp") # Define Pydantic model for input validation class ServiceToolInput(BaseModel): '''Input model for service tool operation.''' model_config = ConfigDict( str_strip_whitespace=True, # Auto-strip whitespace from strings validate_assignment=True, # Validate on assignment extra='forbid' # Forbid extra fields ) param1: str = Field(..., description="First parameter description (e.g., 'user123', 'project-abc')", min_length=1, max_length=100) param2: Optional[int] = Field(default=None, description="Optional integer parameter with constraints", ge=0, le=1000) tags: Optional[List[str]] = Field(default_factory=list, description="List of tags to apply", max_items=10) @mcp.tool( name="service_tool_name", annotations={ "title": "Human-Readable Tool Title", "readOnlyHint": True, # Tool does not modify environment "destructiveHint": False, # Tool does not perform destructive operations "idempotentHint": True, # Repeated calls have no additional effect "openWorldHint": False # Tool does not interact with external entities } ) async def service_tool_name(params: ServiceToolInput) -> str: '''Tool description automatically becomes the 'description' field. This tool performs a specific operation on the service. It validates all inputs using the ServiceToolInput Pydantic model before processing. Args: params (ServiceToolInput): Validated input parameters containing: - param1 (str): First parameter description - param2 (Optional[int]): Optional parameter with default - tags (Optional[List[str]]): List of tags Returns: str: JSON-formatted response containing operation results ''' # Implementation here pass ``` ## Pydantic v2 Key Features - Use `model_config` instead of nested `Config` class - Use `field_validator` instead of deprecated `validator` - Use `model_dump()` instead of deprecated `dict()` - Validators require `@classmethod` decorator - Type hints are required for validator methods ```python from pydantic import BaseModel, Field, field_validator, ConfigDict class CreateUserInput(BaseModel): model_config = ConfigDict( str_strip_whitespace=True, validate_assignment=True ) name: str = Field(..., description="User's full name", min_length=1, max_length=100) email: str = Field(..., description="User's email address", pattern=r'^[\w\.-]+@[\w\.-]+\.\w+$') age: int = Field(..., description="User's age", ge=0, le=150) @field_validator('email') @classmethod def validate_email(cls, v: str) -> str: if not v.strip(): raise ValueError("Email cannot be empty") return v.lower() ``` ## Response Format Options Support multiple output formats for flexibility: ```python from enum import Enum class ResponseFormat(str, Enum): '''Output format for tool responses.''' MARKDOWN = "markdown" JSON = "json" class UserSearchInput(BaseModel): query: str = Field(..., description="Search query") response_format: ResponseFormat = Field( default=ResponseFormat.MARKDOWN, description="Output format: 'markdown' for human-readable or 'json' for machine-readable" ) ``` **Markdown format**: - Use headers, lists, and formatting for clarity - Convert timestamps to human-readable format (e.g., "2024-01-15 10:30:00 UTC" instead of epoch) - Show display names with IDs in parentheses (e.g., "@john.doe (U123456)") - Omit verbose metadata (e.g., show only one profile image URL, not all sizes) - Group related information logically **JSON format**: - Return complete, structured data suitable for programmatic processing - Include all available fields and metadata - Use consistent field names and types ## Pagination Implementation For tools that list resources: ```python class ListInput(BaseModel): limit: Optional[int] = Field(default=20, description="Maximum results to return", ge=1, le=100) offset: Optional[int] = Field(default=0, description="Number of results to skip for pagination", ge=0) async def list_items(params: ListInput) -> str: # Make API request with pagination data = await api_request(limit=params.limit, offset=params.offset) # Return pagination info response = { "total": data["total"], "count": len(data["items"]), "offset": params.offset, "items": data["items"], "has_more": data["total"] > params.offset + len(data["items"]), "next_offset": params.offset + len(data["items"]) if data["total"] > params.offset + len(data["items"]) else None } return json.dumps(response, indent=2) ``` ## Error Handling Provide clear, actionable error messages: ```python def _handle_api_error(e: Exception) -> str: '''Consistent error formatting across all tools.''' if isinstance(e, httpx.HTTPStatusError): if e.response.status_code == 404: return "Error: Resource not found. Please check the ID is correct." elif e.response.status_code == 403: return "Error: Permission denied. You don't have access to this resource." elif e.response.status_code == 429: return "Error: Rate limit exceeded. Please wait before making more requests." return f"Error: API request failed with status {e.response.status_code}" elif isinstance(e, httpx.TimeoutException): return "Error: Request timed out. Please try again." return f"Error: Unexpected error occurred: {type(e).__name__}" ``` ## Shared Utilities Extract common functionality into reusable functions: ```python # Shared API request function async def _make_api_request(endpoint: str, method: str = "GET", **kwargs) -> dict: '''Reusable function for all API calls.''' async with httpx.AsyncClient() as client: response = await client.request( method, f"{API_BASE_URL}/{endpoint}", timeout=30.0, **kwargs ) response.raise_for_status() return response.json() ``` ## Async/Await Best Practices Always use async/await for network requests and I/O operations: ```python # Good: Async network request async def fetch_data(resource_id: str) -> dict: async with httpx.AsyncClient() as client: response = await client.get(f"{API_URL}/resource/{resource_id}") response.raise_for_status() return response.json() # Bad: Synchronous request def fetch_data(resource_id: str) -> dict: response = requests.get(f"{API_URL}/resource/{resource_id}") # Blocks return response.json() ``` ## Type Hints Use type hints throughout: ```python from typing import Optional, List, Dict, Any async def get_user(user_id: str) -> Dict[str, Any]: data = await fetch_user(user_id) return {"id": data["id"], "name": data["name"]} ``` ## Tool Docstrings Every tool must have comprehensive docstrings with explicit type information: ```python async def search_users(params: UserSearchInput) -> str: ''' Search for users in the Example system by name, email, or team. This tool searches across all user profiles in the Example platform, supporting partial matches and various search filters. It does NOT create or modify users, only searches existing ones. Args: params (UserSearchInput): Validated input parameters containing: - query (str): Search string to match against names/emails (e.g., "john", "@example.com", "team:marketing") - limit (Optional[int]): Maximum results to return, between 1-100 (default: 20) - offset (Optional[int]): Number of results to skip for pagination (default: 0) Returns: str: JSON-formatted string containing search results with the following schema: Success response: { "total": int, # Total number of matches found "count": int, # Number of results in this response "offset": int, # Current pagination offset "users": [ { "id": str, # User ID (e.g., "U123456789") "name": str, # Full name (e.g., "John Doe") "email": str, # Email address (e.g., "john@example.com") "team": str # Team name (e.g., "Marketing") - optional } ] } Error response: "Error: " or "No users found matching ''" Examples: - Use when: "Find all marketing team members" -> params with query="team:marketing" - Use when: "Search for John's account" -> params with query="john" - Don't use when: You need to create a user (use example_create_user instead) - Don't use when: You have a user ID and need full details (use example_get_user instead) Error Handling: - Input validation errors are handled by Pydantic model - Returns "Error: Rate limit exceeded" if too many requests (429 status) - Returns "Error: Invalid API authentication" if API key is invalid (401 status) - Returns formatted list of results or "No users found matching 'query'" ''' ``` ## Complete Example See below for a complete Python MCP server example: ```python #!/usr/bin/env python3 ''' MCP Server for Example Service. This server provides tools to interact with Example API, including user search, project management, and data export capabilities. ''' from typing import Optional, List, Dict, Any from enum import Enum import httpx from pydantic import BaseModel, Field, field_validator, ConfigDict from mcp.server.fastmcp import FastMCP # Initialize the MCP server mcp = FastMCP("example_mcp") # Constants API_BASE_URL = "https://api.example.com/v1" # Enums class ResponseFormat(str, Enum): '''Output format for tool responses.''' MARKDOWN = "markdown" JSON = "json" # Pydantic Models for Input Validation class UserSearchInput(BaseModel): '''Input model for user search operations.''' model_config = ConfigDict( str_strip_whitespace=True, validate_assignment=True ) query: str = Field(..., description="Search string to match against names/emails", min_length=2, max_length=200) limit: Optional[int] = Field(default=20, description="Maximum results to return", ge=1, le=100) offset: Optional[int] = Field(default=0, description="Number of results to skip for pagination", ge=0) response_format: ResponseFormat = Field(default=ResponseFormat.MARKDOWN, description="Output format") @field_validator('query') @classmethod def validate_query(cls, v: str) -> str: if not v.strip(): raise ValueError("Query cannot be empty or whitespace only") return v.strip() # Shared utility functions async def _make_api_request(endpoint: str, method: str = "GET", **kwargs) -> dict: '''Reusable function for all API calls.''' async with httpx.AsyncClient() as client: response = await client.request( method, f"{API_BASE_URL}/{endpoint}", timeout=30.0, **kwargs ) response.raise_for_status() return response.json() def _handle_api_error(e: Exception) -> str: '''Consistent error formatting across all tools.''' if isinstance(e, httpx.HTTPStatusError): if e.response.status_code == 404: return "Error: Resource not found. Please check the ID is correct." elif e.response.status_code == 403: return "Error: Permission denied. You don't have access to this resource." elif e.response.status_code == 429: return "Error: Rate limit exceeded. Please wait before making more requests." return f"Error: API request failed with status {e.response.status_code}" elif isinstance(e, httpx.TimeoutException): return "Error: Request timed out. Please try again." return f"Error: Unexpected error occurred: {type(e).__name__}" # Tool definitions @mcp.tool( name="example_search_users", annotations={ "title": "Search Example Users", "readOnlyHint": True, "destructiveHint": False, "idempotentHint": True, "openWorldHint": True } ) async def example_search_users(params: UserSearchInput) -> str: '''Search for users in the Example system by name, email, or team. [Full docstring as shown above] ''' try: # Make API request using validated parameters data = await _make_api_request( "users/search", params={ "q": params.query, "limit": params.limit, "offset": params.offset } ) users = data.get("users", []) total = data.get("total", 0) if not users: return f"No users found matching '{params.query}'" # Format response based on requested format if params.response_format == ResponseFormat.MARKDOWN: lines = [f"# User Search Results: '{params.query}'", ""] lines.append(f"Found {total} users (showing {len(users)})") lines.append("") for user in users: lines.append(f"## {user['name']} ({user['id']})") lines.append(f"- **Email**: {user['email']}") if user.get('team'): lines.append(f"- **Team**: {user['team']}") lines.append("") return "\n".join(lines) else: # Machine-readable JSON format import json response = { "total": total, "count": len(users), "offset": params.offset, "users": users } return json.dumps(response, indent=2) except Exception as e: return _handle_api_error(e) if __name__ == "__main__": mcp.run() ``` --- ## Advanced FastMCP Features ### Context Parameter Injection FastMCP can automatically inject a `Context` parameter into tools for advanced capabilities like logging, progress reporting, resource reading, and user interaction: ```python from mcp.server.fastmcp import FastMCP, Context mcp = FastMCP("example_mcp") @mcp.tool() async def advanced_search(query: str, ctx: Context) -> str: '''Advanced tool with context access for logging and progress.''' # Report progress for long operations await ctx.report_progress(0.25, "Starting search...") # Log information for debugging await ctx.log_info("Processing query", {"query": query, "timestamp": datetime.now()}) # Perform search results = await search_api(query) await ctx.report_progress(0.75, "Formatting results...") # Access server configuration server_name = ctx.fastmcp.name return format_results(results) @mcp.tool() async def interactive_tool(resource_id: str, ctx: Context) -> str: '''Tool that can request additional input from users.''' # Request sensitive information when needed api_key = await ctx.elicit( prompt="Please provide your API key:", input_type="password" ) # Use the provided key return await api_call(resource_id, api_key) ``` **Context capabilities:** - `ctx.report_progress(progress, message)` - Report progress for long operations - `ctx.log_info(message, data)` / `ctx.log_error()` / `ctx.log_debug()` - Logging - `ctx.elicit(prompt, input_type)` - Request input from users - `ctx.fastmcp.name` - Access server configuration - `ctx.read_resource(uri)` - Read MCP resources ### Resource Registration Expose data as resources for efficient, template-based access: ```python @mcp.resource("file://documents/{name}") async def get_document(name: str) -> str: '''Expose documents as MCP resources. Resources are useful for static or semi-static data that doesn't require complex parameters. They use URI templates for flexible access. ''' document_path = f"./docs/{name}" with open(document_path, "r") as f: return f.read() @mcp.resource("config://settings/{key}") async def get_setting(key: str, ctx: Context) -> str: '''Expose configuration as resources with context.''' settings = await load_settings() return json.dumps(settings.get(key, {})) ``` **When to use Resources vs Tools:** - **Resources**: For data access with simple parameters (URI templates) - **Tools**: For complex operations with validation and business logic ### Structured Output Types FastMCP supports multiple return types beyond strings: ```python from typing import TypedDict from dataclasses import dataclass from pydantic import BaseModel # TypedDict for structured returns class UserData(TypedDict): id: str name: str email: str @mcp.tool() async def get_user_typed(user_id: str) -> UserData: '''Returns structured data - FastMCP handles serialization.''' return {"id": user_id, "name": "John Doe", "email": "john@example.com"} # Pydantic models for complex validation class DetailedUser(BaseModel): id: str name: str email: str created_at: datetime metadata: Dict[str, Any] @mcp.tool() async def get_user_detailed(user_id: str) -> DetailedUser: '''Returns Pydantic model - automatically generates schema.''' user = await fetch_user(user_id) return DetailedUser(**user) ``` ### Lifespan Management Initialize resources that persist across requests: ```python from contextlib import asynccontextmanager @asynccontextmanager async def app_lifespan(): '''Manage resources that live for the server's lifetime.''' # Initialize connections, load config, etc. db = await connect_to_database() config = load_configuration() # Make available to all tools yield {"db": db, "config": config} # Cleanup on shutdown await db.close() mcp = FastMCP("example_mcp", lifespan=app_lifespan) @mcp.tool() async def query_data(query: str, ctx: Context) -> str: '''Access lifespan resources through context.''' db = ctx.request_context.lifespan_state["db"] results = await db.query(query) return format_results(results) ``` ### Transport Options FastMCP supports two main transport mechanisms: ```python # stdio transport (for local tools) - default if __name__ == "__main__": mcp.run() # Streamable HTTP transport (for remote servers) if __name__ == "__main__": mcp.run(transport="streamable_http", port=8000) ``` **Transport selection:** - **stdio**: Command-line tools, local integrations, subprocess execution - **Streamable HTTP**: Web services, remote access, multiple clients --- ## Code Best Practices ### Code Composability and Reusability Your implementation MUST prioritize composability and code reuse: 1. **Extract Common Functionality**: - Create reusable helper functions for operations used across multiple tools - Build shared API clients for HTTP requests instead of duplicating code - Centralize error handling logic in utility functions - Extract business logic into dedicated functions that can be composed - Extract shared markdown or JSON field selection & formatting functionality 2. **Avoid Duplication**: - NEVER copy-paste similar code between tools - If you find yourself writing similar logic twice, extract it into a function - Common operations like pagination, filtering, field selection, and formatting should be shared - Authentication/authorization logic should be centralized ### Python-Specific Best Practices 1. **Use Type Hints**: Always include type annotations for function parameters and return values 2. **Pydantic Models**: Define clear Pydantic models for all input validation 3. **Avoid Manual Validation**: Let Pydantic handle input validation with constraints 4. **Proper Imports**: Group imports (standard library, third-party, local) 5. **Error Handling**: Use specific exception types (httpx.HTTPStatusError, not generic Exception) 6. **Async Context Managers**: Use `async with` for resources that need cleanup 7. **Constants**: Define module-level constants in UPPER_CASE ## Quality Checklist Before finalizing your Python MCP server implementation, ensure: ### Strategic Design - [ ] Tools enable complete workflows, not just API endpoint wrappers - [ ] Tool names reflect natural task subdivisions - [ ] Response formats optimize for agent context efficiency - [ ] Human-readable identifiers used where appropriate - [ ] Error messages guide agents toward correct usage ### Implementation Quality - [ ] FOCUSED IMPLEMENTATION: Most important and valuable tools implemented - [ ] All tools have descriptive names and documentation - [ ] Return types are consistent across similar operations - [ ] Error handling is implemented for all external calls - [ ] Server name follows format: `{service}_mcp` - [ ] All network operations use async/await - [ ] Common functionality is extracted into reusable functions - [ ] Error messages are clear, actionable, and educational - [ ] Outputs are properly validated and formatted ### Tool Configuration - [ ] All tools implement 'name' and 'annotations' in the decorator - [ ] Annotations correctly set (readOnlyHint, destructiveHint, idempotentHint, openWorldHint) - [ ] All tools use Pydantic BaseModel for input validation with Field() definitions - [ ] All Pydantic Fields have explicit types and descriptions with constraints - [ ] All tools have comprehensive docstrings with explicit input/output types - [ ] Docstrings include complete schema structure for dict/JSON returns - [ ] Pydantic models handle input validation (no manual validation needed) ### Advanced Features (where applicable) - [ ] Context injection used for logging, progress, or elicitation - [ ] Resources registered for appropriate data endpoints - [ ] Lifespan management implemented for persistent connections - [ ] Structured output types used (TypedDict, Pydantic models) - [ ] Appropriate transport configured (stdio or streamable HTTP) ### Code Quality - [ ] File includes proper imports including Pydantic imports - [ ] Pagination is properly implemented where applicable - [ ] Filtering options are provided for potentially large result sets - [ ] All async functions are properly defined with `async def` - [ ] HTTP client usage follows async patterns with proper context managers - [ ] Type hints are used throughout the code - [ ] Constants are defined at module level in UPPER_CASE ### Testing - [ ] Server runs successfully: `python your_server.py --help` - [ ] All imports resolve correctly - [ ] Sample tool calls work as expected - [ ] Error scenarios handled gracefully ================================================ FILE: skills/mcp-builder/scripts/connections.py ================================================ """Lightweight connection handling for MCP servers.""" from abc import ABC, abstractmethod from contextlib import AsyncExitStack from typing import Any from mcp import ClientSession, StdioServerParameters from mcp.client.sse import sse_client from mcp.client.stdio import stdio_client from mcp.client.streamable_http import streamablehttp_client class MCPConnection(ABC): """Base class for MCP server connections.""" def __init__(self): self.session = None self._stack = None @abstractmethod def _create_context(self): """Create the connection context based on connection type.""" async def __aenter__(self): """Initialize MCP server connection.""" self._stack = AsyncExitStack() await self._stack.__aenter__() try: ctx = self._create_context() result = await self._stack.enter_async_context(ctx) if len(result) == 2: read, write = result elif len(result) == 3: read, write, _ = result else: raise ValueError(f"Unexpected context result: {result}") session_ctx = ClientSession(read, write) self.session = await self._stack.enter_async_context(session_ctx) await self.session.initialize() return self except BaseException: await self._stack.__aexit__(None, None, None) raise async def __aexit__(self, exc_type, exc_val, exc_tb): """Clean up MCP server connection resources.""" if self._stack: await self._stack.__aexit__(exc_type, exc_val, exc_tb) self.session = None self._stack = None async def list_tools(self) -> list[dict[str, Any]]: """Retrieve available tools from the MCP server.""" response = await self.session.list_tools() return [ { "name": tool.name, "description": tool.description, "input_schema": tool.inputSchema, } for tool in response.tools ] async def call_tool(self, tool_name: str, arguments: dict[str, Any]) -> Any: """Call a tool on the MCP server with provided arguments.""" result = await self.session.call_tool(tool_name, arguments=arguments) return result.content class MCPConnectionStdio(MCPConnection): """MCP connection using standard input/output.""" def __init__(self, command: str, args: list[str] = None, env: dict[str, str] = None): super().__init__() self.command = command self.args = args or [] self.env = env def _create_context(self): return stdio_client( StdioServerParameters(command=self.command, args=self.args, env=self.env) ) class MCPConnectionSSE(MCPConnection): """MCP connection using Server-Sent Events.""" def __init__(self, url: str, headers: dict[str, str] = None): super().__init__() self.url = url self.headers = headers or {} def _create_context(self): return sse_client(url=self.url, headers=self.headers) class MCPConnectionHTTP(MCPConnection): """MCP connection using Streamable HTTP.""" def __init__(self, url: str, headers: dict[str, str] = None): super().__init__() self.url = url self.headers = headers or {} def _create_context(self): return streamablehttp_client(url=self.url, headers=self.headers) def create_connection( transport: str, command: str = None, args: list[str] = None, env: dict[str, str] = None, url: str = None, headers: dict[str, str] = None, ) -> MCPConnection: """Factory function to create the appropriate MCP connection. Args: transport: Connection type ("stdio", "sse", or "http") command: Command to run (stdio only) args: Command arguments (stdio only) env: Environment variables (stdio only) url: Server URL (sse and http only) headers: HTTP headers (sse and http only) Returns: MCPConnection instance """ transport = transport.lower() if transport == "stdio": if not command: raise ValueError("Command is required for stdio transport") return MCPConnectionStdio(command=command, args=args, env=env) elif transport == "sse": if not url: raise ValueError("URL is required for sse transport") return MCPConnectionSSE(url=url, headers=headers) elif transport in ["http", "streamable_http", "streamable-http"]: if not url: raise ValueError("URL is required for http transport") return MCPConnectionHTTP(url=url, headers=headers) else: raise ValueError(f"Unsupported transport type: {transport}. Use 'stdio', 'sse', or 'http'") ================================================ FILE: skills/mcp-builder/scripts/evaluation.py ================================================ """MCP Server Evaluation Harness This script evaluates MCP servers by running test questions against them using Claude. """ import argparse import asyncio import json import re import sys import time import traceback import xml.etree.ElementTree as ET from pathlib import Path from typing import Any from anthropic import Anthropic from connections import create_connection EVALUATION_PROMPT = """You are an AI assistant with access to tools. When given a task, you MUST: 1. Use the available tools to complete the task 2. Provide summary of each step in your approach, wrapped in tags 3. Provide feedback on the tools provided, wrapped in tags 4. Provide your final response, wrapped in tags Summary Requirements: - In your tags, you must explain: - The steps you took to complete the task - Which tools you used, in what order, and why - The inputs you provided to each tool - The outputs you received from each tool - A summary for how you arrived at the response Feedback Requirements: - In your tags, provide constructive feedback on the tools: - Comment on tool names: Are they clear and descriptive? - Comment on input parameters: Are they well-documented? Are required vs optional parameters clear? - Comment on descriptions: Do they accurately describe what the tool does? - Comment on any errors encountered during tool usage: Did the tool fail to execute? Did the tool return too many tokens? - Identify specific areas for improvement and explain WHY they would help - Be specific and actionable in your suggestions Response Requirements: - Your response should be concise and directly address what was asked - Always wrap your final response in tags - If you cannot solve the task return NOT_FOUND - For numeric responses, provide just the number - For IDs, provide just the ID - For names or text, provide the exact text requested - Your response should go last""" def parse_evaluation_file(file_path: Path) -> list[dict[str, Any]]: """Parse XML evaluation file with qa_pair elements.""" try: tree = ET.parse(file_path) root = tree.getroot() evaluations = [] for qa_pair in root.findall(".//qa_pair"): question_elem = qa_pair.find("question") answer_elem = qa_pair.find("answer") if question_elem is not None and answer_elem is not None: evaluations.append({ "question": (question_elem.text or "").strip(), "answer": (answer_elem.text or "").strip(), }) return evaluations except Exception as e: print(f"Error parsing evaluation file {file_path}: {e}") return [] def extract_xml_content(text: str, tag: str) -> str | None: """Extract content from XML tags.""" pattern = rf"<{tag}>(.*?)" matches = re.findall(pattern, text, re.DOTALL) return matches[-1].strip() if matches else None async def agent_loop( client: Anthropic, model: str, question: str, tools: list[dict[str, Any]], connection: Any, ) -> tuple[str, dict[str, Any]]: """Run the agent loop with MCP tools.""" messages = [{"role": "user", "content": question}] response = await asyncio.to_thread( client.messages.create, model=model, max_tokens=4096, system=EVALUATION_PROMPT, messages=messages, tools=tools, ) messages.append({"role": "assistant", "content": response.content}) tool_metrics = {} while response.stop_reason == "tool_use": tool_use = next(block for block in response.content if block.type == "tool_use") tool_name = tool_use.name tool_input = tool_use.input tool_start_ts = time.time() try: tool_result = await connection.call_tool(tool_name, tool_input) tool_response = json.dumps(tool_result) if isinstance(tool_result, (dict, list)) else str(tool_result) except Exception as e: tool_response = f"Error executing tool {tool_name}: {str(e)}\n" tool_response += traceback.format_exc() tool_duration = time.time() - tool_start_ts if tool_name not in tool_metrics: tool_metrics[tool_name] = {"count": 0, "durations": []} tool_metrics[tool_name]["count"] += 1 tool_metrics[tool_name]["durations"].append(tool_duration) messages.append({ "role": "user", "content": [{ "type": "tool_result", "tool_use_id": tool_use.id, "content": tool_response, }] }) response = await asyncio.to_thread( client.messages.create, model=model, max_tokens=4096, system=EVALUATION_PROMPT, messages=messages, tools=tools, ) messages.append({"role": "assistant", "content": response.content}) response_text = next( (block.text for block in response.content if hasattr(block, "text")), None, ) return response_text, tool_metrics async def evaluate_single_task( client: Anthropic, model: str, qa_pair: dict[str, Any], tools: list[dict[str, Any]], connection: Any, task_index: int, ) -> dict[str, Any]: """Evaluate a single QA pair with the given tools.""" start_time = time.time() print(f"Task {task_index + 1}: Running task with question: {qa_pair['question']}") response, tool_metrics = await agent_loop(client, model, qa_pair["question"], tools, connection) response_value = extract_xml_content(response, "response") summary = extract_xml_content(response, "summary") feedback = extract_xml_content(response, "feedback") duration_seconds = time.time() - start_time return { "question": qa_pair["question"], "expected": qa_pair["answer"], "actual": response_value, "score": int(response_value == qa_pair["answer"]) if response_value else 0, "total_duration": duration_seconds, "tool_calls": tool_metrics, "num_tool_calls": sum(len(metrics["durations"]) for metrics in tool_metrics.values()), "summary": summary, "feedback": feedback, } REPORT_HEADER = """ # Evaluation Report ## Summary - **Accuracy**: {correct}/{total} ({accuracy:.1f}%) - **Average Task Duration**: {average_duration_s:.2f}s - **Average Tool Calls per Task**: {average_tool_calls:.2f} - **Total Tool Calls**: {total_tool_calls} --- """ TASK_TEMPLATE = """ ### Task {task_num} **Question**: {question} **Ground Truth Answer**: `{expected_answer}` **Actual Answer**: `{actual_answer}` **Correct**: {correct_indicator} **Duration**: {total_duration:.2f}s **Tool Calls**: {tool_calls} **Summary** {summary} **Feedback** {feedback} --- """ async def run_evaluation( eval_path: Path, connection: Any, model: str = "claude-3-7-sonnet-20250219", ) -> str: """Run evaluation with MCP server tools.""" print("🚀 Starting Evaluation") client = Anthropic() tools = await connection.list_tools() print(f"📋 Loaded {len(tools)} tools from MCP server") qa_pairs = parse_evaluation_file(eval_path) print(f"📋 Loaded {len(qa_pairs)} evaluation tasks") results = [] for i, qa_pair in enumerate(qa_pairs): print(f"Processing task {i + 1}/{len(qa_pairs)}") result = await evaluate_single_task(client, model, qa_pair, tools, connection, i) results.append(result) correct = sum(r["score"] for r in results) accuracy = (correct / len(results)) * 100 if results else 0 average_duration_s = sum(r["total_duration"] for r in results) / len(results) if results else 0 average_tool_calls = sum(r["num_tool_calls"] for r in results) / len(results) if results else 0 total_tool_calls = sum(r["num_tool_calls"] for r in results) report = REPORT_HEADER.format( correct=correct, total=len(results), accuracy=accuracy, average_duration_s=average_duration_s, average_tool_calls=average_tool_calls, total_tool_calls=total_tool_calls, ) report += "".join([ TASK_TEMPLATE.format( task_num=i + 1, question=qa_pair["question"], expected_answer=qa_pair["answer"], actual_answer=result["actual"] or "N/A", correct_indicator="✅" if result["score"] else "❌", total_duration=result["total_duration"], tool_calls=json.dumps(result["tool_calls"], indent=2), summary=result["summary"] or "N/A", feedback=result["feedback"] or "N/A", ) for i, (qa_pair, result) in enumerate(zip(qa_pairs, results)) ]) return report def parse_headers(header_list: list[str]) -> dict[str, str]: """Parse header strings in format 'Key: Value' into a dictionary.""" headers = {} if not header_list: return headers for header in header_list: if ":" in header: key, value = header.split(":", 1) headers[key.strip()] = value.strip() else: print(f"Warning: Ignoring malformed header: {header}") return headers def parse_env_vars(env_list: list[str]) -> dict[str, str]: """Parse environment variable strings in format 'KEY=VALUE' into a dictionary.""" env = {} if not env_list: return env for env_var in env_list: if "=" in env_var: key, value = env_var.split("=", 1) env[key.strip()] = value.strip() else: print(f"Warning: Ignoring malformed environment variable: {env_var}") return env async def main(): parser = argparse.ArgumentParser( description="Evaluate MCP servers using test questions", formatter_class=argparse.RawDescriptionHelpFormatter, epilog=""" Examples: # Evaluate a local stdio MCP server python evaluation.py -t stdio -c python -a my_server.py eval.xml # Evaluate an SSE MCP server python evaluation.py -t sse -u https://example.com/mcp -H "Authorization: Bearer token" eval.xml # Evaluate an HTTP MCP server with custom model python evaluation.py -t http -u https://example.com/mcp -m claude-3-5-sonnet-20241022 eval.xml """, ) parser.add_argument("eval_file", type=Path, help="Path to evaluation XML file") parser.add_argument("-t", "--transport", choices=["stdio", "sse", "http"], default="stdio", help="Transport type (default: stdio)") parser.add_argument("-m", "--model", default="claude-3-7-sonnet-20250219", help="Claude model to use (default: claude-3-7-sonnet-20250219)") stdio_group = parser.add_argument_group("stdio options") stdio_group.add_argument("-c", "--command", help="Command to run MCP server (stdio only)") stdio_group.add_argument("-a", "--args", nargs="+", help="Arguments for the command (stdio only)") stdio_group.add_argument("-e", "--env", nargs="+", help="Environment variables in KEY=VALUE format (stdio only)") remote_group = parser.add_argument_group("sse/http options") remote_group.add_argument("-u", "--url", help="MCP server URL (sse/http only)") remote_group.add_argument("-H", "--header", nargs="+", dest="headers", help="HTTP headers in 'Key: Value' format (sse/http only)") parser.add_argument("-o", "--output", type=Path, help="Output file for evaluation report (default: stdout)") args = parser.parse_args() if not args.eval_file.exists(): print(f"Error: Evaluation file not found: {args.eval_file}") sys.exit(1) headers = parse_headers(args.headers) if args.headers else None env_vars = parse_env_vars(args.env) if args.env else None try: connection = create_connection( transport=args.transport, command=args.command, args=args.args, env=env_vars, url=args.url, headers=headers, ) except ValueError as e: print(f"Error: {e}") sys.exit(1) print(f"🔗 Connecting to MCP server via {args.transport}...") async with connection: print("✅ Connected successfully") report = await run_evaluation(args.eval_file, connection, args.model) if args.output: args.output.write_text(report) print(f"\n✅ Report saved to {args.output}") else: print("\n" + report) if __name__ == "__main__": asyncio.run(main()) ================================================ FILE: skills/mcp-builder/scripts/example_evaluation.xml ================================================ Calculate the compound interest on $10,000 invested at 5% annual interest rate, compounded monthly for 3 years. What is the final amount in dollars (rounded to 2 decimal places)? 11614.72 A projectile is launched at a 45-degree angle with an initial velocity of 50 m/s. Calculate the total distance (in meters) it has traveled from the launch point after 2 seconds, assuming g=9.8 m/s². Round to 2 decimal places. 87.25 A sphere has a volume of 500 cubic meters. Calculate its surface area in square meters. Round to 2 decimal places. 304.65 Calculate the population standard deviation of this dataset: [12, 15, 18, 22, 25, 30, 35]. Round to 2 decimal places. 7.61 Calculate the pH of a solution with a hydrogen ion concentration of 3.5 × 10^-5 M. Round to 2 decimal places. 4.46 ================================================ FILE: skills/mcp-builder/scripts/requirements.txt ================================================ anthropic>=0.39.0 mcp>=1.1.0 ================================================ FILE: skills/pdf/LICENSE.txt ================================================ © 2025 Anthropic, PBC. All rights reserved. LICENSE: Use of these materials (including all code, prompts, assets, files, and other components of this Skill) is governed by your agreement with Anthropic regarding use of Anthropic's services. If no separate agreement exists, use is governed by Anthropic's Consumer Terms of Service or Commercial Terms of Service, as applicable: https://www.anthropic.com/legal/consumer-terms https://www.anthropic.com/legal/commercial-terms Your applicable agreement is referred to as the "Agreement." "Services" are as defined in the Agreement. ADDITIONAL RESTRICTIONS: Notwithstanding anything in the Agreement to the contrary, users may not: - Extract these materials from the Services or retain copies of these materials outside the Services - Reproduce or copy these materials, except for temporary copies created automatically during authorized use of the Services - Create derivative works based on these materials - Distribute, sublicense, or transfer these materials to any third party - Make, offer to sell, sell, or import any inventions embodied in these materials - Reverse engineer, decompile, or disassemble these materials The receipt, viewing, or possession of these materials does not convey or imply any license or right beyond those expressly granted above. Anthropic retains all right, title, and interest in these materials, including all copyrights, patents, and other intellectual property rights. ================================================ FILE: skills/pdf/SKILL.md ================================================ --- name: pdf description: Use this skill whenever the user wants to do anything with PDF files. This includes reading or extracting text/tables from PDFs, combining or merging multiple PDFs into one, splitting PDFs apart, rotating pages, adding watermarks, creating new PDFs, filling PDF forms, encrypting/decrypting PDFs, extracting images, and OCR on scanned PDFs to make them searchable. If the user mentions a .pdf file or asks to produce one, use this skill. license: Proprietary. LICENSE.txt has complete terms --- # PDF Processing Guide ## Overview This guide covers essential PDF processing operations using Python libraries and command-line tools. For advanced features, JavaScript libraries, and detailed examples, see REFERENCE.md. If you need to fill out a PDF form, read FORMS.md and follow its instructions. ## Quick Start ```python from pypdf import PdfReader, PdfWriter # Read a PDF reader = PdfReader("document.pdf") print(f"Pages: {len(reader.pages)}") # Extract text text = "" for page in reader.pages: text += page.extract_text() ``` ## Python Libraries ### pypdf - Basic Operations #### Merge PDFs ```python from pypdf import PdfWriter, PdfReader writer = PdfWriter() for pdf_file in ["doc1.pdf", "doc2.pdf", "doc3.pdf"]: reader = PdfReader(pdf_file) for page in reader.pages: writer.add_page(page) with open("merged.pdf", "wb") as output: writer.write(output) ``` #### Split PDF ```python reader = PdfReader("input.pdf") for i, page in enumerate(reader.pages): writer = PdfWriter() writer.add_page(page) with open(f"page_{i+1}.pdf", "wb") as output: writer.write(output) ``` #### Extract Metadata ```python reader = PdfReader("document.pdf") meta = reader.metadata print(f"Title: {meta.title}") print(f"Author: {meta.author}") print(f"Subject: {meta.subject}") print(f"Creator: {meta.creator}") ``` #### Rotate Pages ```python reader = PdfReader("input.pdf") writer = PdfWriter() page = reader.pages[0] page.rotate(90) # Rotate 90 degrees clockwise writer.add_page(page) with open("rotated.pdf", "wb") as output: writer.write(output) ``` ### pdfplumber - Text and Table Extraction #### Extract Text with Layout ```python import pdfplumber with pdfplumber.open("document.pdf") as pdf: for page in pdf.pages: text = page.extract_text() print(text) ``` #### Extract Tables ```python with pdfplumber.open("document.pdf") as pdf: for i, page in enumerate(pdf.pages): tables = page.extract_tables() for j, table in enumerate(tables): print(f"Table {j+1} on page {i+1}:") for row in table: print(row) ``` #### Advanced Table Extraction ```python import pandas as pd with pdfplumber.open("document.pdf") as pdf: all_tables = [] for page in pdf.pages: tables = page.extract_tables() for table in tables: if table: # Check if table is not empty df = pd.DataFrame(table[1:], columns=table[0]) all_tables.append(df) # Combine all tables if all_tables: combined_df = pd.concat(all_tables, ignore_index=True) combined_df.to_excel("extracted_tables.xlsx", index=False) ``` ### reportlab - Create PDFs #### Basic PDF Creation ```python from reportlab.lib.pagesizes import letter from reportlab.pdfgen import canvas c = canvas.Canvas("hello.pdf", pagesize=letter) width, height = letter # Add text c.drawString(100, height - 100, "Hello World!") c.drawString(100, height - 120, "This is a PDF created with reportlab") # Add a line c.line(100, height - 140, 400, height - 140) # Save c.save() ``` #### Create PDF with Multiple Pages ```python from reportlab.lib.pagesizes import letter from reportlab.platypus import SimpleDocTemplate, Paragraph, Spacer, PageBreak from reportlab.lib.styles import getSampleStyleSheet doc = SimpleDocTemplate("report.pdf", pagesize=letter) styles = getSampleStyleSheet() story = [] # Add content title = Paragraph("Report Title", styles['Title']) story.append(title) story.append(Spacer(1, 12)) body = Paragraph("This is the body of the report. " * 20, styles['Normal']) story.append(body) story.append(PageBreak()) # Page 2 story.append(Paragraph("Page 2", styles['Heading1'])) story.append(Paragraph("Content for page 2", styles['Normal'])) # Build PDF doc.build(story) ``` #### Subscripts and Superscripts **IMPORTANT**: Never use Unicode subscript/superscript characters (₀₁₂₃₄₅₆₇₈₉, ⁰¹²³⁴⁵⁶⁷⁸⁹) in ReportLab PDFs. The built-in fonts do not include these glyphs, causing them to render as solid black boxes. Instead, use ReportLab's XML markup tags in Paragraph objects: ```python from reportlab.platypus import Paragraph from reportlab.lib.styles import getSampleStyleSheet styles = getSampleStyleSheet() # Subscripts: use tag chemical = Paragraph("H2O", styles['Normal']) # Superscripts: use tag squared = Paragraph("x2 + y2", styles['Normal']) ``` For canvas-drawn text (not Paragraph objects), manually adjust font the size and position rather than using Unicode subscripts/superscripts. ## Command-Line Tools ### pdftotext (poppler-utils) ```bash # Extract text pdftotext input.pdf output.txt # Extract text preserving layout pdftotext -layout input.pdf output.txt # Extract specific pages pdftotext -f 1 -l 5 input.pdf output.txt # Pages 1-5 ``` ### qpdf ```bash # Merge PDFs qpdf --empty --pages file1.pdf file2.pdf -- merged.pdf # Split pages qpdf input.pdf --pages . 1-5 -- pages1-5.pdf qpdf input.pdf --pages . 6-10 -- pages6-10.pdf # Rotate pages qpdf input.pdf output.pdf --rotate=+90:1 # Rotate page 1 by 90 degrees # Remove password qpdf --password=mypassword --decrypt encrypted.pdf decrypted.pdf ``` ### pdftk (if available) ```bash # Merge pdftk file1.pdf file2.pdf cat output merged.pdf # Split pdftk input.pdf burst # Rotate pdftk input.pdf rotate 1east output rotated.pdf ``` ## Common Tasks ### Extract Text from Scanned PDFs ```python # Requires: pip install pytesseract pdf2image import pytesseract from pdf2image import convert_from_path # Convert PDF to images images = convert_from_path('scanned.pdf') # OCR each page text = "" for i, image in enumerate(images): text += f"Page {i+1}:\n" text += pytesseract.image_to_string(image) text += "\n\n" print(text) ``` ### Add Watermark ```python from pypdf import PdfReader, PdfWriter # Create watermark (or load existing) watermark = PdfReader("watermark.pdf").pages[0] # Apply to all pages reader = PdfReader("document.pdf") writer = PdfWriter() for page in reader.pages: page.merge_page(watermark) writer.add_page(page) with open("watermarked.pdf", "wb") as output: writer.write(output) ``` ### Extract Images ```bash # Using pdfimages (poppler-utils) pdfimages -j input.pdf output_prefix # This extracts all images as output_prefix-000.jpg, output_prefix-001.jpg, etc. ``` ### Password Protection ```python from pypdf import PdfReader, PdfWriter reader = PdfReader("input.pdf") writer = PdfWriter() for page in reader.pages: writer.add_page(page) # Add password writer.encrypt("userpassword", "ownerpassword") with open("encrypted.pdf", "wb") as output: writer.write(output) ``` ## Quick Reference | Task | Best Tool | Command/Code | |------|-----------|--------------| | Merge PDFs | pypdf | `writer.add_page(page)` | | Split PDFs | pypdf | One page per file | | Extract text | pdfplumber | `page.extract_text()` | | Extract tables | pdfplumber | `page.extract_tables()` | | Create PDFs | reportlab | Canvas or Platypus | | Command line merge | qpdf | `qpdf --empty --pages ...` | | OCR scanned PDFs | pytesseract | Convert to image first | | Fill PDF forms | pdf-lib or pypdf (see FORMS.md) | See FORMS.md | ## Next Steps - For advanced pypdfium2 usage, see REFERENCE.md - For JavaScript libraries (pdf-lib), see REFERENCE.md - If you need to fill out a PDF form, follow the instructions in FORMS.md - For troubleshooting guides, see REFERENCE.md ================================================ FILE: skills/pdf/forms.md ================================================ **CRITICAL: You MUST complete these steps in order. Do not skip ahead to writing code.** If you need to fill out a PDF form, first check to see if the PDF has fillable form fields. Run this script from this file's directory: `python scripts/check_fillable_fields `, and depending on the result go to either the "Fillable fields" or "Non-fillable fields" and follow those instructions. # Fillable fields If the PDF has fillable form fields: - Run this script from this file's directory: `python scripts/extract_form_field_info.py `. It will create a JSON file with a list of fields in this format: ``` [ { "field_id": (unique ID for the field), "page": (page number, 1-based), "rect": ([left, bottom, right, top] bounding box in PDF coordinates, y=0 is the bottom of the page), "type": ("text", "checkbox", "radio_group", or "choice"), }, // Checkboxes have "checked_value" and "unchecked_value" properties: { "field_id": (unique ID for the field), "page": (page number, 1-based), "type": "checkbox", "checked_value": (Set the field to this value to check the checkbox), "unchecked_value": (Set the field to this value to uncheck the checkbox), }, // Radio groups have a "radio_options" list with the possible choices. { "field_id": (unique ID for the field), "page": (page number, 1-based), "type": "radio_group", "radio_options": [ { "value": (set the field to this value to select this radio option), "rect": (bounding box for the radio button for this option) }, // Other radio options ] }, // Multiple choice fields have a "choice_options" list with the possible choices: { "field_id": (unique ID for the field), "page": (page number, 1-based), "type": "choice", "choice_options": [ { "value": (set the field to this value to select this option), "text": (display text of the option) }, // Other choice options ], } ] ``` - Convert the PDF to PNGs (one image for each page) with this script (run from this file's directory): `python scripts/convert_pdf_to_images.py ` Then analyze the images to determine the purpose of each form field (make sure to convert the bounding box PDF coordinates to image coordinates). - Create a `field_values.json` file in this format with the values to be entered for each field: ``` [ { "field_id": "last_name", // Must match the field_id from `extract_form_field_info.py` "description": "The user's last name", "page": 1, // Must match the "page" value in field_info.json "value": "Simpson" }, { "field_id": "Checkbox12", "description": "Checkbox to be checked if the user is 18 or over", "page": 1, "value": "/On" // If this is a checkbox, use its "checked_value" value to check it. If it's a radio button group, use one of the "value" values in "radio_options". }, // more fields ] ``` - Run the `fill_fillable_fields.py` script from this file's directory to create a filled-in PDF: `python scripts/fill_fillable_fields.py ` This script will verify that the field IDs and values you provide are valid; if it prints error messages, correct the appropriate fields and try again. # Non-fillable fields If the PDF doesn't have fillable form fields, you'll add text annotations. First try to extract coordinates from the PDF structure (more accurate), then fall back to visual estimation if needed. ## Step 1: Try Structure Extraction First Run this script to extract text labels, lines, and checkboxes with their exact PDF coordinates: `python scripts/extract_form_structure.py form_structure.json` This creates a JSON file containing: - **labels**: Every text element with exact coordinates (x0, top, x1, bottom in PDF points) - **lines**: Horizontal lines that define row boundaries - **checkboxes**: Small square rectangles that are checkboxes (with center coordinates) - **row_boundaries**: Row top/bottom positions calculated from horizontal lines **Check the results**: If `form_structure.json` has meaningful labels (text elements that correspond to form fields), use **Approach A: Structure-Based Coordinates**. If the PDF is scanned/image-based and has few or no labels, use **Approach B: Visual Estimation**. --- ## Approach A: Structure-Based Coordinates (Preferred) Use this when `extract_form_structure.py` found text labels in the PDF. ### A.1: Analyze the Structure Read form_structure.json and identify: 1. **Label groups**: Adjacent text elements that form a single label (e.g., "Last" + "Name") 2. **Row structure**: Labels with similar `top` values are in the same row 3. **Field columns**: Entry areas start after label ends (x0 = label.x1 + gap) 4. **Checkboxes**: Use the checkbox coordinates directly from the structure **Coordinate system**: PDF coordinates where y=0 is at TOP of page, y increases downward. ### A.2: Check for Missing Elements The structure extraction may not detect all form elements. Common cases: - **Circular checkboxes**: Only square rectangles are detected as checkboxes - **Complex graphics**: Decorative elements or non-standard form controls - **Faded or light-colored elements**: May not be extracted If you see form fields in the PDF images that aren't in form_structure.json, you'll need to use **visual analysis** for those specific fields (see "Hybrid Approach" below). ### A.3: Create fields.json with PDF Coordinates For each field, calculate entry coordinates from the extracted structure: **Text fields:** - entry x0 = label x1 + 5 (small gap after label) - entry x1 = next label's x0, or row boundary - entry top = same as label top - entry bottom = row boundary line below, or label bottom + row_height **Checkboxes:** - Use the checkbox rectangle coordinates directly from form_structure.json - entry_bounding_box = [checkbox.x0, checkbox.top, checkbox.x1, checkbox.bottom] Create fields.json using `pdf_width` and `pdf_height` (signals PDF coordinates): ```json { "pages": [ {"page_number": 1, "pdf_width": 612, "pdf_height": 792} ], "form_fields": [ { "page_number": 1, "description": "Last name entry field", "field_label": "Last Name", "label_bounding_box": [43, 63, 87, 73], "entry_bounding_box": [92, 63, 260, 79], "entry_text": {"text": "Smith", "font_size": 10} }, { "page_number": 1, "description": "US Citizen Yes checkbox", "field_label": "Yes", "label_bounding_box": [260, 200, 280, 210], "entry_bounding_box": [285, 197, 292, 205], "entry_text": {"text": "X"} } ] } ``` **Important**: Use `pdf_width`/`pdf_height` and coordinates directly from form_structure.json. ### A.4: Validate Bounding Boxes Before filling, check your bounding boxes for errors: `python scripts/check_bounding_boxes.py fields.json` This checks for intersecting bounding boxes and entry boxes that are too small for the font size. Fix any reported errors before filling. --- ## Approach B: Visual Estimation (Fallback) Use this when the PDF is scanned/image-based and structure extraction found no usable text labels (e.g., all text shows as "(cid:X)" patterns). ### B.1: Convert PDF to Images `python scripts/convert_pdf_to_images.py ` ### B.2: Initial Field Identification Examine each page image to identify form sections and get **rough estimates** of field locations: - Form field labels and their approximate positions - Entry areas (lines, boxes, or blank spaces for text input) - Checkboxes and their approximate locations For each field, note approximate pixel coordinates (they don't need to be precise yet). ### B.3: Zoom Refinement (CRITICAL for accuracy) For each field, crop a region around the estimated position to refine coordinates precisely. **Create a zoomed crop using ImageMagick:** ```bash magick -crop x++ +repage ``` Where: - `, ` = top-left corner of crop region (use your rough estimate minus padding) - `, ` = size of crop region (field area plus ~50px padding on each side) **Example:** To refine a "Name" field estimated around (100, 150): ```bash magick images_dir/page_1.png -crop 300x80+50+120 +repage crops/name_field.png ``` (Note: if the `magick` command isn't available, try `convert` with the same arguments). **Examine the cropped image** to determine precise coordinates: 1. Identify the exact pixel where the entry area begins (after the label) 2. Identify where the entry area ends (before next field or edge) 3. Identify the top and bottom of the entry line/box **Convert crop coordinates back to full image coordinates:** - full_x = crop_x + crop_offset_x - full_y = crop_y + crop_offset_y Example: If the crop started at (50, 120) and the entry box starts at (52, 18) within the crop: - entry_x0 = 52 + 50 = 102 - entry_top = 18 + 120 = 138 **Repeat for each field**, grouping nearby fields into single crops when possible. ### B.4: Create fields.json with Refined Coordinates Create fields.json using `image_width` and `image_height` (signals image coordinates): ```json { "pages": [ {"page_number": 1, "image_width": 1700, "image_height": 2200} ], "form_fields": [ { "page_number": 1, "description": "Last name entry field", "field_label": "Last Name", "label_bounding_box": [120, 175, 242, 198], "entry_bounding_box": [255, 175, 720, 218], "entry_text": {"text": "Smith", "font_size": 10} } ] } ``` **Important**: Use `image_width`/`image_height` and the refined pixel coordinates from the zoom analysis. ### B.5: Validate Bounding Boxes Before filling, check your bounding boxes for errors: `python scripts/check_bounding_boxes.py fields.json` This checks for intersecting bounding boxes and entry boxes that are too small for the font size. Fix any reported errors before filling. --- ## Hybrid Approach: Structure + Visual Use this when structure extraction works for most fields but misses some elements (e.g., circular checkboxes, unusual form controls). 1. **Use Approach A** for fields that were detected in form_structure.json 2. **Convert PDF to images** for visual analysis of missing fields 3. **Use zoom refinement** (from Approach B) for the missing fields 4. **Combine coordinates**: For fields from structure extraction, use `pdf_width`/`pdf_height`. For visually-estimated fields, you must convert image coordinates to PDF coordinates: - pdf_x = image_x * (pdf_width / image_width) - pdf_y = image_y * (pdf_height / image_height) 5. **Use a single coordinate system** in fields.json - convert all to PDF coordinates with `pdf_width`/`pdf_height` --- ## Step 2: Validate Before Filling **Always validate bounding boxes before filling:** `python scripts/check_bounding_boxes.py fields.json` This checks for: - Intersecting bounding boxes (which would cause overlapping text) - Entry boxes that are too small for the specified font size Fix any reported errors in fields.json before proceeding. ## Step 3: Fill the Form The fill script auto-detects the coordinate system and handles conversion: `python scripts/fill_pdf_form_with_annotations.py fields.json ` ## Step 4: Verify Output Convert the filled PDF to images and verify text placement: `python scripts/convert_pdf_to_images.py ` If text is mispositioned: - **Approach A**: Check that you're using PDF coordinates from form_structure.json with `pdf_width`/`pdf_height` - **Approach B**: Check that image dimensions match and coordinates are accurate pixels - **Hybrid**: Ensure coordinate conversions are correct for visually-estimated fields ================================================ FILE: skills/pdf/reference.md ================================================ # PDF Processing Advanced Reference This document contains advanced PDF processing features, detailed examples, and additional libraries not covered in the main skill instructions. ## pypdfium2 Library (Apache/BSD License) ### Overview pypdfium2 is a Python binding for PDFium (Chromium's PDF library). It's excellent for fast PDF rendering, image generation, and serves as a PyMuPDF replacement. ### Render PDF to Images ```python import pypdfium2 as pdfium from PIL import Image # Load PDF pdf = pdfium.PdfDocument("document.pdf") # Render page to image page = pdf[0] # First page bitmap = page.render( scale=2.0, # Higher resolution rotation=0 # No rotation ) # Convert to PIL Image img = bitmap.to_pil() img.save("page_1.png", "PNG") # Process multiple pages for i, page in enumerate(pdf): bitmap = page.render(scale=1.5) img = bitmap.to_pil() img.save(f"page_{i+1}.jpg", "JPEG", quality=90) ``` ### Extract Text with pypdfium2 ```python import pypdfium2 as pdfium pdf = pdfium.PdfDocument("document.pdf") for i, page in enumerate(pdf): text = page.get_text() print(f"Page {i+1} text length: {len(text)} chars") ``` ## JavaScript Libraries ### pdf-lib (MIT License) pdf-lib is a powerful JavaScript library for creating and modifying PDF documents in any JavaScript environment. #### Load and Manipulate Existing PDF ```javascript import { PDFDocument } from 'pdf-lib'; import fs from 'fs'; async function manipulatePDF() { // Load existing PDF const existingPdfBytes = fs.readFileSync('input.pdf'); const pdfDoc = await PDFDocument.load(existingPdfBytes); // Get page count const pageCount = pdfDoc.getPageCount(); console.log(`Document has ${pageCount} pages`); // Add new page const newPage = pdfDoc.addPage([600, 400]); newPage.drawText('Added by pdf-lib', { x: 100, y: 300, size: 16 }); // Save modified PDF const pdfBytes = await pdfDoc.save(); fs.writeFileSync('modified.pdf', pdfBytes); } ``` #### Create Complex PDFs from Scratch ```javascript import { PDFDocument, rgb, StandardFonts } from 'pdf-lib'; import fs from 'fs'; async function createPDF() { const pdfDoc = await PDFDocument.create(); // Add fonts const helveticaFont = await pdfDoc.embedFont(StandardFonts.Helvetica); const helveticaBold = await pdfDoc.embedFont(StandardFonts.HelveticaBold); // Add page const page = pdfDoc.addPage([595, 842]); // A4 size const { width, height } = page.getSize(); // Add text with styling page.drawText('Invoice #12345', { x: 50, y: height - 50, size: 18, font: helveticaBold, color: rgb(0.2, 0.2, 0.8) }); // Add rectangle (header background) page.drawRectangle({ x: 40, y: height - 100, width: width - 80, height: 30, color: rgb(0.9, 0.9, 0.9) }); // Add table-like content const items = [ ['Item', 'Qty', 'Price', 'Total'], ['Widget', '2', '$50', '$100'], ['Gadget', '1', '$75', '$75'] ]; let yPos = height - 150; items.forEach(row => { let xPos = 50; row.forEach(cell => { page.drawText(cell, { x: xPos, y: yPos, size: 12, font: helveticaFont }); xPos += 120; }); yPos -= 25; }); const pdfBytes = await pdfDoc.save(); fs.writeFileSync('created.pdf', pdfBytes); } ``` #### Advanced Merge and Split Operations ```javascript import { PDFDocument } from 'pdf-lib'; import fs from 'fs'; async function mergePDFs() { // Create new document const mergedPdf = await PDFDocument.create(); // Load source PDFs const pdf1Bytes = fs.readFileSync('doc1.pdf'); const pdf2Bytes = fs.readFileSync('doc2.pdf'); const pdf1 = await PDFDocument.load(pdf1Bytes); const pdf2 = await PDFDocument.load(pdf2Bytes); // Copy pages from first PDF const pdf1Pages = await mergedPdf.copyPages(pdf1, pdf1.getPageIndices()); pdf1Pages.forEach(page => mergedPdf.addPage(page)); // Copy specific pages from second PDF (pages 0, 2, 4) const pdf2Pages = await mergedPdf.copyPages(pdf2, [0, 2, 4]); pdf2Pages.forEach(page => mergedPdf.addPage(page)); const mergedPdfBytes = await mergedPdf.save(); fs.writeFileSync('merged.pdf', mergedPdfBytes); } ``` ### pdfjs-dist (Apache License) PDF.js is Mozilla's JavaScript library for rendering PDFs in the browser. #### Basic PDF Loading and Rendering ```javascript import * as pdfjsLib from 'pdfjs-dist'; // Configure worker (important for performance) pdfjsLib.GlobalWorkerOptions.workerSrc = './pdf.worker.js'; async function renderPDF() { // Load PDF const loadingTask = pdfjsLib.getDocument('document.pdf'); const pdf = await loadingTask.promise; console.log(`Loaded PDF with ${pdf.numPages} pages`); // Get first page const page = await pdf.getPage(1); const viewport = page.getViewport({ scale: 1.5 }); // Render to canvas const canvas = document.createElement('canvas'); const context = canvas.getContext('2d'); canvas.height = viewport.height; canvas.width = viewport.width; const renderContext = { canvasContext: context, viewport: viewport }; await page.render(renderContext).promise; document.body.appendChild(canvas); } ``` #### Extract Text with Coordinates ```javascript import * as pdfjsLib from 'pdfjs-dist'; async function extractText() { const loadingTask = pdfjsLib.getDocument('document.pdf'); const pdf = await loadingTask.promise; let fullText = ''; // Extract text from all pages for (let i = 1; i <= pdf.numPages; i++) { const page = await pdf.getPage(i); const textContent = await page.getTextContent(); const pageText = textContent.items .map(item => item.str) .join(' '); fullText += `\n--- Page ${i} ---\n${pageText}`; // Get text with coordinates for advanced processing const textWithCoords = textContent.items.map(item => ({ text: item.str, x: item.transform[4], y: item.transform[5], width: item.width, height: item.height })); } console.log(fullText); return fullText; } ``` #### Extract Annotations and Forms ```javascript import * as pdfjsLib from 'pdfjs-dist'; async function extractAnnotations() { const loadingTask = pdfjsLib.getDocument('annotated.pdf'); const pdf = await loadingTask.promise; for (let i = 1; i <= pdf.numPages; i++) { const page = await pdf.getPage(i); const annotations = await page.getAnnotations(); annotations.forEach(annotation => { console.log(`Annotation type: ${annotation.subtype}`); console.log(`Content: ${annotation.contents}`); console.log(`Coordinates: ${JSON.stringify(annotation.rect)}`); }); } } ``` ## Advanced Command-Line Operations ### poppler-utils Advanced Features #### Extract Text with Bounding Box Coordinates ```bash # Extract text with bounding box coordinates (essential for structured data) pdftotext -bbox-layout document.pdf output.xml # The XML output contains precise coordinates for each text element ``` #### Advanced Image Conversion ```bash # Convert to PNG images with specific resolution pdftoppm -png -r 300 document.pdf output_prefix # Convert specific page range with high resolution pdftoppm -png -r 600 -f 1 -l 3 document.pdf high_res_pages # Convert to JPEG with quality setting pdftoppm -jpeg -jpegopt quality=85 -r 200 document.pdf jpeg_output ``` #### Extract Embedded Images ```bash # Extract all embedded images with metadata pdfimages -j -p document.pdf page_images # List image info without extracting pdfimages -list document.pdf # Extract images in their original format pdfimages -all document.pdf images/img ``` ### qpdf Advanced Features #### Complex Page Manipulation ```bash # Split PDF into groups of pages qpdf --split-pages=3 input.pdf output_group_%02d.pdf # Extract specific pages with complex ranges qpdf input.pdf --pages input.pdf 1,3-5,8,10-end -- extracted.pdf # Merge specific pages from multiple PDFs qpdf --empty --pages doc1.pdf 1-3 doc2.pdf 5-7 doc3.pdf 2,4 -- combined.pdf ``` #### PDF Optimization and Repair ```bash # Optimize PDF for web (linearize for streaming) qpdf --linearize input.pdf optimized.pdf # Remove unused objects and compress qpdf --optimize-level=all input.pdf compressed.pdf # Attempt to repair corrupted PDF structure qpdf --check input.pdf qpdf --fix-qdf damaged.pdf repaired.pdf # Show detailed PDF structure for debugging qpdf --show-all-pages input.pdf > structure.txt ``` #### Advanced Encryption ```bash # Add password protection with specific permissions qpdf --encrypt user_pass owner_pass 256 --print=none --modify=none -- input.pdf encrypted.pdf # Check encryption status qpdf --show-encryption encrypted.pdf # Remove password protection (requires password) qpdf --password=secret123 --decrypt encrypted.pdf decrypted.pdf ``` ## Advanced Python Techniques ### pdfplumber Advanced Features #### Extract Text with Precise Coordinates ```python import pdfplumber with pdfplumber.open("document.pdf") as pdf: page = pdf.pages[0] # Extract all text with coordinates chars = page.chars for char in chars[:10]: # First 10 characters print(f"Char: '{char['text']}' at x:{char['x0']:.1f} y:{char['y0']:.1f}") # Extract text by bounding box (left, top, right, bottom) bbox_text = page.within_bbox((100, 100, 400, 200)).extract_text() ``` #### Advanced Table Extraction with Custom Settings ```python import pdfplumber import pandas as pd with pdfplumber.open("complex_table.pdf") as pdf: page = pdf.pages[0] # Extract tables with custom settings for complex layouts table_settings = { "vertical_strategy": "lines", "horizontal_strategy": "lines", "snap_tolerance": 3, "intersection_tolerance": 15 } tables = page.extract_tables(table_settings) # Visual debugging for table extraction img = page.to_image(resolution=150) img.save("debug_layout.png") ``` ### reportlab Advanced Features #### Create Professional Reports with Tables ```python from reportlab.platypus import SimpleDocTemplate, Table, TableStyle, Paragraph from reportlab.lib.styles import getSampleStyleSheet from reportlab.lib import colors # Sample data data = [ ['Product', 'Q1', 'Q2', 'Q3', 'Q4'], ['Widgets', '120', '135', '142', '158'], ['Gadgets', '85', '92', '98', '105'] ] # Create PDF with table doc = SimpleDocTemplate("report.pdf") elements = [] # Add title styles = getSampleStyleSheet() title = Paragraph("Quarterly Sales Report", styles['Title']) elements.append(title) # Add table with advanced styling table = Table(data) table.setStyle(TableStyle([ ('BACKGROUND', (0, 0), (-1, 0), colors.grey), ('TEXTCOLOR', (0, 0), (-1, 0), colors.whitesmoke), ('ALIGN', (0, 0), (-1, -1), 'CENTER'), ('FONTNAME', (0, 0), (-1, 0), 'Helvetica-Bold'), ('FONTSIZE', (0, 0), (-1, 0), 14), ('BOTTOMPADDING', (0, 0), (-1, 0), 12), ('BACKGROUND', (0, 1), (-1, -1), colors.beige), ('GRID', (0, 0), (-1, -1), 1, colors.black) ])) elements.append(table) doc.build(elements) ``` ## Complex Workflows ### Extract Figures/Images from PDF #### Method 1: Using pdfimages (fastest) ```bash # Extract all images with original quality pdfimages -all document.pdf images/img ``` #### Method 2: Using pypdfium2 + Image Processing ```python import pypdfium2 as pdfium from PIL import Image import numpy as np def extract_figures(pdf_path, output_dir): pdf = pdfium.PdfDocument(pdf_path) for page_num, page in enumerate(pdf): # Render high-resolution page bitmap = page.render(scale=3.0) img = bitmap.to_pil() # Convert to numpy for processing img_array = np.array(img) # Simple figure detection (non-white regions) mask = np.any(img_array != [255, 255, 255], axis=2) # Find contours and extract bounding boxes # (This is simplified - real implementation would need more sophisticated detection) # Save detected figures # ... implementation depends on specific needs ``` ### Batch PDF Processing with Error Handling ```python import os import glob from pypdf import PdfReader, PdfWriter import logging logging.basicConfig(level=logging.INFO) logger = logging.getLogger(__name__) def batch_process_pdfs(input_dir, operation='merge'): pdf_files = glob.glob(os.path.join(input_dir, "*.pdf")) if operation == 'merge': writer = PdfWriter() for pdf_file in pdf_files: try: reader = PdfReader(pdf_file) for page in reader.pages: writer.add_page(page) logger.info(f"Processed: {pdf_file}") except Exception as e: logger.error(f"Failed to process {pdf_file}: {e}") continue with open("batch_merged.pdf", "wb") as output: writer.write(output) elif operation == 'extract_text': for pdf_file in pdf_files: try: reader = PdfReader(pdf_file) text = "" for page in reader.pages: text += page.extract_text() output_file = pdf_file.replace('.pdf', '.txt') with open(output_file, 'w', encoding='utf-8') as f: f.write(text) logger.info(f"Extracted text from: {pdf_file}") except Exception as e: logger.error(f"Failed to extract text from {pdf_file}: {e}") continue ``` ### Advanced PDF Cropping ```python from pypdf import PdfWriter, PdfReader reader = PdfReader("input.pdf") writer = PdfWriter() # Crop page (left, bottom, right, top in points) page = reader.pages[0] page.mediabox.left = 50 page.mediabox.bottom = 50 page.mediabox.right = 550 page.mediabox.top = 750 writer.add_page(page) with open("cropped.pdf", "wb") as output: writer.write(output) ``` ## Performance Optimization Tips ### 1. For Large PDFs - Use streaming approaches instead of loading entire PDF in memory - Use `qpdf --split-pages` for splitting large files - Process pages individually with pypdfium2 ### 2. For Text Extraction - `pdftotext -bbox-layout` is fastest for plain text extraction - Use pdfplumber for structured data and tables - Avoid `pypdf.extract_text()` for very large documents ### 3. For Image Extraction - `pdfimages` is much faster than rendering pages - Use low resolution for previews, high resolution for final output ### 4. For Form Filling - pdf-lib maintains form structure better than most alternatives - Pre-validate form fields before processing ### 5. Memory Management ```python # Process PDFs in chunks def process_large_pdf(pdf_path, chunk_size=10): reader = PdfReader(pdf_path) total_pages = len(reader.pages) for start_idx in range(0, total_pages, chunk_size): end_idx = min(start_idx + chunk_size, total_pages) writer = PdfWriter() for i in range(start_idx, end_idx): writer.add_page(reader.pages[i]) # Process chunk with open(f"chunk_{start_idx//chunk_size}.pdf", "wb") as output: writer.write(output) ``` ## Troubleshooting Common Issues ### Encrypted PDFs ```python # Handle password-protected PDFs from pypdf import PdfReader try: reader = PdfReader("encrypted.pdf") if reader.is_encrypted: reader.decrypt("password") except Exception as e: print(f"Failed to decrypt: {e}") ``` ### Corrupted PDFs ```bash # Use qpdf to repair qpdf --check corrupted.pdf qpdf --replace-input corrupted.pdf ``` ### Text Extraction Issues ```python # Fallback to OCR for scanned PDFs import pytesseract from pdf2image import convert_from_path def extract_text_with_ocr(pdf_path): images = convert_from_path(pdf_path) text = "" for i, image in enumerate(images): text += pytesseract.image_to_string(image) return text ``` ## License Information - **pypdf**: BSD License - **pdfplumber**: MIT License - **pypdfium2**: Apache/BSD License - **reportlab**: BSD License - **poppler-utils**: GPL-2 License - **qpdf**: Apache License - **pdf-lib**: MIT License - **pdfjs-dist**: Apache License ================================================ FILE: skills/pdf/scripts/check_bounding_boxes.py ================================================ from dataclasses import dataclass import json import sys @dataclass class RectAndField: rect: list[float] rect_type: str field: dict def get_bounding_box_messages(fields_json_stream) -> list[str]: messages = [] fields = json.load(fields_json_stream) messages.append(f"Read {len(fields['form_fields'])} fields") def rects_intersect(r1, r2): disjoint_horizontal = r1[0] >= r2[2] or r1[2] <= r2[0] disjoint_vertical = r1[1] >= r2[3] or r1[3] <= r2[1] return not (disjoint_horizontal or disjoint_vertical) rects_and_fields = [] for f in fields["form_fields"]: rects_and_fields.append(RectAndField(f["label_bounding_box"], "label", f)) rects_and_fields.append(RectAndField(f["entry_bounding_box"], "entry", f)) has_error = False for i, ri in enumerate(rects_and_fields): for j in range(i + 1, len(rects_and_fields)): rj = rects_and_fields[j] if ri.field["page_number"] == rj.field["page_number"] and rects_intersect(ri.rect, rj.rect): has_error = True if ri.field is rj.field: messages.append(f"FAILURE: intersection between label and entry bounding boxes for `{ri.field['description']}` ({ri.rect}, {rj.rect})") else: messages.append(f"FAILURE: intersection between {ri.rect_type} bounding box for `{ri.field['description']}` ({ri.rect}) and {rj.rect_type} bounding box for `{rj.field['description']}` ({rj.rect})") if len(messages) >= 20: messages.append("Aborting further checks; fix bounding boxes and try again") return messages if ri.rect_type == "entry": if "entry_text" in ri.field: font_size = ri.field["entry_text"].get("font_size", 14) entry_height = ri.rect[3] - ri.rect[1] if entry_height < font_size: has_error = True messages.append(f"FAILURE: entry bounding box height ({entry_height}) for `{ri.field['description']}` is too short for the text content (font size: {font_size}). Increase the box height or decrease the font size.") if len(messages) >= 20: messages.append("Aborting further checks; fix bounding boxes and try again") return messages if not has_error: messages.append("SUCCESS: All bounding boxes are valid") return messages if __name__ == "__main__": if len(sys.argv) != 2: print("Usage: check_bounding_boxes.py [fields.json]") sys.exit(1) with open(sys.argv[1]) as f: messages = get_bounding_box_messages(f) for msg in messages: print(msg) ================================================ FILE: skills/pdf/scripts/check_fillable_fields.py ================================================ import sys from pypdf import PdfReader reader = PdfReader(sys.argv[1]) if (reader.get_fields()): print("This PDF has fillable form fields") else: print("This PDF does not have fillable form fields; you will need to visually determine where to enter data") ================================================ FILE: skills/pdf/scripts/convert_pdf_to_images.py ================================================ import os import sys from pdf2image import convert_from_path def convert(pdf_path, output_dir, max_dim=1000): images = convert_from_path(pdf_path, dpi=200) for i, image in enumerate(images): width, height = image.size if width > max_dim or height > max_dim: scale_factor = min(max_dim / width, max_dim / height) new_width = int(width * scale_factor) new_height = int(height * scale_factor) image = image.resize((new_width, new_height)) image_path = os.path.join(output_dir, f"page_{i+1}.png") image.save(image_path) print(f"Saved page {i+1} as {image_path} (size: {image.size})") print(f"Converted {len(images)} pages to PNG images") if __name__ == "__main__": if len(sys.argv) != 3: print("Usage: convert_pdf_to_images.py [input pdf] [output directory]") sys.exit(1) pdf_path = sys.argv[1] output_directory = sys.argv[2] convert(pdf_path, output_directory) ================================================ FILE: skills/pdf/scripts/create_validation_image.py ================================================ import json import sys from PIL import Image, ImageDraw def create_validation_image(page_number, fields_json_path, input_path, output_path): with open(fields_json_path, 'r') as f: data = json.load(f) img = Image.open(input_path) draw = ImageDraw.Draw(img) num_boxes = 0 for field in data["form_fields"]: if field["page_number"] == page_number: entry_box = field['entry_bounding_box'] label_box = field['label_bounding_box'] draw.rectangle(entry_box, outline='red', width=2) draw.rectangle(label_box, outline='blue', width=2) num_boxes += 2 img.save(output_path) print(f"Created validation image at {output_path} with {num_boxes} bounding boxes") if __name__ == "__main__": if len(sys.argv) != 5: print("Usage: create_validation_image.py [page number] [fields.json file] [input image path] [output image path]") sys.exit(1) page_number = int(sys.argv[1]) fields_json_path = sys.argv[2] input_image_path = sys.argv[3] output_image_path = sys.argv[4] create_validation_image(page_number, fields_json_path, input_image_path, output_image_path) ================================================ FILE: skills/pdf/scripts/extract_form_field_info.py ================================================ import json import sys from pypdf import PdfReader def get_full_annotation_field_id(annotation): components = [] while annotation: field_name = annotation.get('/T') if field_name: components.append(field_name) annotation = annotation.get('/Parent') return ".".join(reversed(components)) if components else None def make_field_dict(field, field_id): field_dict = {"field_id": field_id} ft = field.get('/FT') if ft == "/Tx": field_dict["type"] = "text" elif ft == "/Btn": field_dict["type"] = "checkbox" states = field.get("/_States_", []) if len(states) == 2: if "/Off" in states: field_dict["checked_value"] = states[0] if states[0] != "/Off" else states[1] field_dict["unchecked_value"] = "/Off" else: print(f"Unexpected state values for checkbox `${field_id}`. Its checked and unchecked values may not be correct; if you're trying to check it, visually verify the results.") field_dict["checked_value"] = states[0] field_dict["unchecked_value"] = states[1] elif ft == "/Ch": field_dict["type"] = "choice" states = field.get("/_States_", []) field_dict["choice_options"] = [{ "value": state[0], "text": state[1], } for state in states] else: field_dict["type"] = f"unknown ({ft})" return field_dict def get_field_info(reader: PdfReader): fields = reader.get_fields() field_info_by_id = {} possible_radio_names = set() for field_id, field in fields.items(): if field.get("/Kids"): if field.get("/FT") == "/Btn": possible_radio_names.add(field_id) continue field_info_by_id[field_id] = make_field_dict(field, field_id) radio_fields_by_id = {} for page_index, page in enumerate(reader.pages): annotations = page.get('/Annots', []) for ann in annotations: field_id = get_full_annotation_field_id(ann) if field_id in field_info_by_id: field_info_by_id[field_id]["page"] = page_index + 1 field_info_by_id[field_id]["rect"] = ann.get('/Rect') elif field_id in possible_radio_names: try: on_values = [v for v in ann["/AP"]["/N"] if v != "/Off"] except KeyError: continue if len(on_values) == 1: rect = ann.get("/Rect") if field_id not in radio_fields_by_id: radio_fields_by_id[field_id] = { "field_id": field_id, "type": "radio_group", "page": page_index + 1, "radio_options": [], } radio_fields_by_id[field_id]["radio_options"].append({ "value": on_values[0], "rect": rect, }) fields_with_location = [] for field_info in field_info_by_id.values(): if "page" in field_info: fields_with_location.append(field_info) else: print(f"Unable to determine location for field id: {field_info.get('field_id')}, ignoring") def sort_key(f): if "radio_options" in f: rect = f["radio_options"][0]["rect"] or [0, 0, 0, 0] else: rect = f.get("rect") or [0, 0, 0, 0] adjusted_position = [-rect[1], rect[0]] return [f.get("page"), adjusted_position] sorted_fields = fields_with_location + list(radio_fields_by_id.values()) sorted_fields.sort(key=sort_key) return sorted_fields def write_field_info(pdf_path: str, json_output_path: str): reader = PdfReader(pdf_path) field_info = get_field_info(reader) with open(json_output_path, "w") as f: json.dump(field_info, f, indent=2) print(f"Wrote {len(field_info)} fields to {json_output_path}") if __name__ == "__main__": if len(sys.argv) != 3: print("Usage: extract_form_field_info.py [input pdf] [output json]") sys.exit(1) write_field_info(sys.argv[1], sys.argv[2]) ================================================ FILE: skills/pdf/scripts/extract_form_structure.py ================================================ """ Extract form structure from a non-fillable PDF. This script analyzes the PDF to find: - Text labels with their exact coordinates - Horizontal lines (row boundaries) - Checkboxes (small rectangles) Output: A JSON file with the form structure that can be used to generate accurate field coordinates for filling. Usage: python extract_form_structure.py """ import json import sys import pdfplumber def extract_form_structure(pdf_path): structure = { "pages": [], "labels": [], "lines": [], "checkboxes": [], "row_boundaries": [] } with pdfplumber.open(pdf_path) as pdf: for page_num, page in enumerate(pdf.pages, 1): structure["pages"].append({ "page_number": page_num, "width": float(page.width), "height": float(page.height) }) words = page.extract_words() for word in words: structure["labels"].append({ "page": page_num, "text": word["text"], "x0": round(float(word["x0"]), 1), "top": round(float(word["top"]), 1), "x1": round(float(word["x1"]), 1), "bottom": round(float(word["bottom"]), 1) }) for line in page.lines: if abs(float(line["x1"]) - float(line["x0"])) > page.width * 0.5: structure["lines"].append({ "page": page_num, "y": round(float(line["top"]), 1), "x0": round(float(line["x0"]), 1), "x1": round(float(line["x1"]), 1) }) for rect in page.rects: width = float(rect["x1"]) - float(rect["x0"]) height = float(rect["bottom"]) - float(rect["top"]) if 5 <= width <= 15 and 5 <= height <= 15 and abs(width - height) < 2: structure["checkboxes"].append({ "page": page_num, "x0": round(float(rect["x0"]), 1), "top": round(float(rect["top"]), 1), "x1": round(float(rect["x1"]), 1), "bottom": round(float(rect["bottom"]), 1), "center_x": round((float(rect["x0"]) + float(rect["x1"])) / 2, 1), "center_y": round((float(rect["top"]) + float(rect["bottom"])) / 2, 1) }) lines_by_page = {} for line in structure["lines"]: page = line["page"] if page not in lines_by_page: lines_by_page[page] = [] lines_by_page[page].append(line["y"]) for page, y_coords in lines_by_page.items(): y_coords = sorted(set(y_coords)) for i in range(len(y_coords) - 1): structure["row_boundaries"].append({ "page": page, "row_top": y_coords[i], "row_bottom": y_coords[i + 1], "row_height": round(y_coords[i + 1] - y_coords[i], 1) }) return structure def main(): if len(sys.argv) != 3: print("Usage: extract_form_structure.py ") sys.exit(1) pdf_path = sys.argv[1] output_path = sys.argv[2] print(f"Extracting structure from {pdf_path}...") structure = extract_form_structure(pdf_path) with open(output_path, "w") as f: json.dump(structure, f, indent=2) print(f"Found:") print(f" - {len(structure['pages'])} pages") print(f" - {len(structure['labels'])} text labels") print(f" - {len(structure['lines'])} horizontal lines") print(f" - {len(structure['checkboxes'])} checkboxes") print(f" - {len(structure['row_boundaries'])} row boundaries") print(f"Saved to {output_path}") if __name__ == "__main__": main() ================================================ FILE: skills/pdf/scripts/fill_fillable_fields.py ================================================ import json import sys from pypdf import PdfReader, PdfWriter from extract_form_field_info import get_field_info def fill_pdf_fields(input_pdf_path: str, fields_json_path: str, output_pdf_path: str): with open(fields_json_path) as f: fields = json.load(f) fields_by_page = {} for field in fields: if "value" in field: field_id = field["field_id"] page = field["page"] if page not in fields_by_page: fields_by_page[page] = {} fields_by_page[page][field_id] = field["value"] reader = PdfReader(input_pdf_path) has_error = False field_info = get_field_info(reader) fields_by_ids = {f["field_id"]: f for f in field_info} for field in fields: existing_field = fields_by_ids.get(field["field_id"]) if not existing_field: has_error = True print(f"ERROR: `{field['field_id']}` is not a valid field ID") elif field["page"] != existing_field["page"]: has_error = True print(f"ERROR: Incorrect page number for `{field['field_id']}` (got {field['page']}, expected {existing_field['page']})") else: if "value" in field: err = validation_error_for_field_value(existing_field, field["value"]) if err: print(err) has_error = True if has_error: sys.exit(1) writer = PdfWriter(clone_from=reader) for page, field_values in fields_by_page.items(): writer.update_page_form_field_values(writer.pages[page - 1], field_values, auto_regenerate=False) writer.set_need_appearances_writer(True) with open(output_pdf_path, "wb") as f: writer.write(f) def validation_error_for_field_value(field_info, field_value): field_type = field_info["type"] field_id = field_info["field_id"] if field_type == "checkbox": checked_val = field_info["checked_value"] unchecked_val = field_info["unchecked_value"] if field_value != checked_val and field_value != unchecked_val: return f'ERROR: Invalid value "{field_value}" for checkbox field "{field_id}". The checked value is "{checked_val}" and the unchecked value is "{unchecked_val}"' elif field_type == "radio_group": option_values = [opt["value"] for opt in field_info["radio_options"]] if field_value not in option_values: return f'ERROR: Invalid value "{field_value}" for radio group field "{field_id}". Valid values are: {option_values}' elif field_type == "choice": choice_values = [opt["value"] for opt in field_info["choice_options"]] if field_value not in choice_values: return f'ERROR: Invalid value "{field_value}" for choice field "{field_id}". Valid values are: {choice_values}' return None def monkeypatch_pydpf_method(): from pypdf.generic import DictionaryObject from pypdf.constants import FieldDictionaryAttributes original_get_inherited = DictionaryObject.get_inherited def patched_get_inherited(self, key: str, default = None): result = original_get_inherited(self, key, default) if key == FieldDictionaryAttributes.Opt: if isinstance(result, list) and all(isinstance(v, list) and len(v) == 2 for v in result): result = [r[0] for r in result] return result DictionaryObject.get_inherited = patched_get_inherited if __name__ == "__main__": if len(sys.argv) != 4: print("Usage: fill_fillable_fields.py [input pdf] [field_values.json] [output pdf]") sys.exit(1) monkeypatch_pydpf_method() input_pdf = sys.argv[1] fields_json = sys.argv[2] output_pdf = sys.argv[3] fill_pdf_fields(input_pdf, fields_json, output_pdf) ================================================ FILE: skills/pdf/scripts/fill_pdf_form_with_annotations.py ================================================ import json import sys from pypdf import PdfReader, PdfWriter from pypdf.annotations import FreeText def transform_from_image_coords(bbox, image_width, image_height, pdf_width, pdf_height): x_scale = pdf_width / image_width y_scale = pdf_height / image_height left = bbox[0] * x_scale right = bbox[2] * x_scale top = pdf_height - (bbox[1] * y_scale) bottom = pdf_height - (bbox[3] * y_scale) return left, bottom, right, top def transform_from_pdf_coords(bbox, pdf_height): left = bbox[0] right = bbox[2] pypdf_top = pdf_height - bbox[1] pypdf_bottom = pdf_height - bbox[3] return left, pypdf_bottom, right, pypdf_top def fill_pdf_form(input_pdf_path, fields_json_path, output_pdf_path): with open(fields_json_path, "r") as f: fields_data = json.load(f) reader = PdfReader(input_pdf_path) writer = PdfWriter() writer.append(reader) pdf_dimensions = {} for i, page in enumerate(reader.pages): mediabox = page.mediabox pdf_dimensions[i + 1] = [mediabox.width, mediabox.height] annotations = [] for field in fields_data["form_fields"]: page_num = field["page_number"] page_info = next(p for p in fields_data["pages"] if p["page_number"] == page_num) pdf_width, pdf_height = pdf_dimensions[page_num] if "pdf_width" in page_info: transformed_entry_box = transform_from_pdf_coords( field["entry_bounding_box"], float(pdf_height) ) else: image_width = page_info["image_width"] image_height = page_info["image_height"] transformed_entry_box = transform_from_image_coords( field["entry_bounding_box"], image_width, image_height, float(pdf_width), float(pdf_height) ) if "entry_text" not in field or "text" not in field["entry_text"]: continue entry_text = field["entry_text"] text = entry_text["text"] if not text: continue font_name = entry_text.get("font", "Arial") font_size = str(entry_text.get("font_size", 14)) + "pt" font_color = entry_text.get("font_color", "000000") annotation = FreeText( text=text, rect=transformed_entry_box, font=font_name, font_size=font_size, font_color=font_color, border_color=None, background_color=None, ) annotations.append(annotation) writer.add_annotation(page_number=page_num - 1, annotation=annotation) with open(output_pdf_path, "wb") as output: writer.write(output) print(f"Successfully filled PDF form and saved to {output_pdf_path}") print(f"Added {len(annotations)} text annotations") if __name__ == "__main__": if len(sys.argv) != 4: print("Usage: fill_pdf_form_with_annotations.py [input pdf] [fields.json] [output pdf]") sys.exit(1) input_pdf = sys.argv[1] fields_json = sys.argv[2] output_pdf = sys.argv[3] fill_pdf_form(input_pdf, fields_json, output_pdf) ================================================ FILE: skills/pptx/LICENSE.txt ================================================ © 2025 Anthropic, PBC. All rights reserved. LICENSE: Use of these materials (including all code, prompts, assets, files, and other components of this Skill) is governed by your agreement with Anthropic regarding use of Anthropic's services. If no separate agreement exists, use is governed by Anthropic's Consumer Terms of Service or Commercial Terms of Service, as applicable: https://www.anthropic.com/legal/consumer-terms https://www.anthropic.com/legal/commercial-terms Your applicable agreement is referred to as the "Agreement." "Services" are as defined in the Agreement. ADDITIONAL RESTRICTIONS: Notwithstanding anything in the Agreement to the contrary, users may not: - Extract these materials from the Services or retain copies of these materials outside the Services - Reproduce or copy these materials, except for temporary copies created automatically during authorized use of the Services - Create derivative works based on these materials - Distribute, sublicense, or transfer these materials to any third party - Make, offer to sell, sell, or import any inventions embodied in these materials - Reverse engineer, decompile, or disassemble these materials The receipt, viewing, or possession of these materials does not convey or imply any license or right beyond those expressly granted above. Anthropic retains all right, title, and interest in these materials, including all copyrights, patents, and other intellectual property rights. ================================================ FILE: skills/pptx/SKILL.md ================================================ --- name: pptx description: "Use this skill any time a .pptx file is involved in any way — as input, output, or both. This includes: creating slide decks, pitch decks, or presentations; reading, parsing, or extracting text from any .pptx file (even if the extracted content will be used elsewhere, like in an email or summary); editing, modifying, or updating existing presentations; combining or splitting slide files; working with templates, layouts, speaker notes, or comments. Trigger whenever the user mentions \"deck,\" \"slides,\" \"presentation,\" or references a .pptx filename, regardless of what they plan to do with the content afterward. If a .pptx file needs to be opened, created, or touched, use this skill." license: Proprietary. LICENSE.txt has complete terms --- # PPTX Skill ## Quick Reference | Task | Guide | |------|-------| | Read/analyze content | `python -m markitdown presentation.pptx` | | Edit or create from template | Read [editing.md](editing.md) | | Create from scratch | Read [pptxgenjs.md](pptxgenjs.md) | --- ## Reading Content ```bash # Text extraction python -m markitdown presentation.pptx # Visual overview python scripts/thumbnail.py presentation.pptx # Raw XML python scripts/office/unpack.py presentation.pptx unpacked/ ``` --- ## Editing Workflow **Read [editing.md](editing.md) for full details.** 1. Analyze template with `thumbnail.py` 2. Unpack → manipulate slides → edit content → clean → pack --- ## Creating from Scratch **Read [pptxgenjs.md](pptxgenjs.md) for full details.** Use when no template or reference presentation is available. --- ## Design Ideas **Don't create boring slides.** Plain bullets on a white background won't impress anyone. Consider ideas from this list for each slide. ### Before Starting - **Pick a bold, content-informed color palette**: The palette should feel designed for THIS topic. If swapping your colors into a completely different presentation would still "work," you haven't made specific enough choices. - **Dominance over equality**: One color should dominate (60-70% visual weight), with 1-2 supporting tones and one sharp accent. Never give all colors equal weight. - **Dark/light contrast**: Dark backgrounds for title + conclusion slides, light for content ("sandwich" structure). Or commit to dark throughout for a premium feel. - **Commit to a visual motif**: Pick ONE distinctive element and repeat it — rounded image frames, icons in colored circles, thick single-side borders. Carry it across every slide. ### Color Palettes Choose colors that match your topic — don't default to generic blue. Use these palettes as inspiration: | Theme | Primary | Secondary | Accent | |-------|---------|-----------|--------| | **Midnight Executive** | `1E2761` (navy) | `CADCFC` (ice blue) | `FFFFFF` (white) | | **Forest & Moss** | `2C5F2D` (forest) | `97BC62` (moss) | `F5F5F5` (cream) | | **Coral Energy** | `F96167` (coral) | `F9E795` (gold) | `2F3C7E` (navy) | | **Warm Terracotta** | `B85042` (terracotta) | `E7E8D1` (sand) | `A7BEAE` (sage) | | **Ocean Gradient** | `065A82` (deep blue) | `1C7293` (teal) | `21295C` (midnight) | | **Charcoal Minimal** | `36454F` (charcoal) | `F2F2F2` (off-white) | `212121` (black) | | **Teal Trust** | `028090` (teal) | `00A896` (seafoam) | `02C39A` (mint) | | **Berry & Cream** | `6D2E46` (berry) | `A26769` (dusty rose) | `ECE2D0` (cream) | | **Sage Calm** | `84B59F` (sage) | `69A297` (eucalyptus) | `50808E` (slate) | | **Cherry Bold** | `990011` (cherry) | `FCF6F5` (off-white) | `2F3C7E` (navy) | ### For Each Slide **Every slide needs a visual element** — image, chart, icon, or shape. Text-only slides are forgettable. **Layout options:** - Two-column (text left, illustration on right) - Icon + text rows (icon in colored circle, bold header, description below) - 2x2 or 2x3 grid (image on one side, grid of content blocks on other) - Half-bleed image (full left or right side) with content overlay **Data display:** - Large stat callouts (big numbers 60-72pt with small labels below) - Comparison columns (before/after, pros/cons, side-by-side options) - Timeline or process flow (numbered steps, arrows) **Visual polish:** - Icons in small colored circles next to section headers - Italic accent text for key stats or taglines ### Typography **Choose an interesting font pairing** — don't default to Arial. Pick a header font with personality and pair it with a clean body font. | Header Font | Body Font | |-------------|-----------| | Georgia | Calibri | | Arial Black | Arial | | Calibri | Calibri Light | | Cambria | Calibri | | Trebuchet MS | Calibri | | Impact | Arial | | Palatino | Garamond | | Consolas | Calibri | | Element | Size | |---------|------| | Slide title | 36-44pt bold | | Section header | 20-24pt bold | | Body text | 14-16pt | | Captions | 10-12pt muted | ### Spacing - 0.5" minimum margins - 0.3-0.5" between content blocks - Leave breathing room—don't fill every inch ### Avoid (Common Mistakes) - **Don't repeat the same layout** — vary columns, cards, and callouts across slides - **Don't center body text** — left-align paragraphs and lists; center only titles - **Don't skimp on size contrast** — titles need 36pt+ to stand out from 14-16pt body - **Don't default to blue** — pick colors that reflect the specific topic - **Don't mix spacing randomly** — choose 0.3" or 0.5" gaps and use consistently - **Don't style one slide and leave the rest plain** — commit fully or keep it simple throughout - **Don't create text-only slides** — add images, icons, charts, or visual elements; avoid plain title + bullets - **Don't forget text box padding** — when aligning lines or shapes with text edges, set `margin: 0` on the text box or offset the shape to account for padding - **Don't use low-contrast elements** — icons AND text need strong contrast against the background; avoid light text on light backgrounds or dark text on dark backgrounds - **NEVER use accent lines under titles** — these are a hallmark of AI-generated slides; use whitespace or background color instead --- ## QA (Required) **Assume there are problems. Your job is to find them.** Your first render is almost never correct. Approach QA as a bug hunt, not a confirmation step. If you found zero issues on first inspection, you weren't looking hard enough. ### Content QA ```bash python -m markitdown output.pptx ``` Check for missing content, typos, wrong order. **When using templates, check for leftover placeholder text:** ```bash python -m markitdown output.pptx | grep -iE "xxxx|lorem|ipsum|this.*(page|slide).*layout" ``` If grep returns results, fix them before declaring success. ### Visual QA **⚠️ USE SUBAGENTS** — even for 2-3 slides. You've been staring at the code and will see what you expect, not what's there. Subagents have fresh eyes. Convert slides to images (see [Converting to Images](#converting-to-images)), then use this prompt: ``` Visually inspect these slides. Assume there are issues — find them. Look for: - Overlapping elements (text through shapes, lines through words, stacked elements) - Text overflow or cut off at edges/box boundaries - Decorative lines positioned for single-line text but title wrapped to two lines - Source citations or footers colliding with content above - Elements too close (< 0.3" gaps) or cards/sections nearly touching - Uneven gaps (large empty area in one place, cramped in another) - Insufficient margin from slide edges (< 0.5") - Columns or similar elements not aligned consistently - Low-contrast text (e.g., light gray text on cream-colored background) - Low-contrast icons (e.g., dark icons on dark backgrounds without a contrasting circle) - Text boxes too narrow causing excessive wrapping - Leftover placeholder content For each slide, list issues or areas of concern, even if minor. Read and analyze these images: 1. /path/to/slide-01.jpg (Expected: [brief description]) 2. /path/to/slide-02.jpg (Expected: [brief description]) Report ALL issues found, including minor ones. ``` ### Verification Loop 1. Generate slides → Convert to images → Inspect 2. **List issues found** (if none found, look again more critically) 3. Fix issues 4. **Re-verify affected slides** — one fix often creates another problem 5. Repeat until a full pass reveals no new issues **Do not declare success until you've completed at least one fix-and-verify cycle.** --- ## Converting to Images Convert presentations to individual slide images for visual inspection: ```bash python scripts/office/soffice.py --headless --convert-to pdf output.pptx pdftoppm -jpeg -r 150 output.pdf slide ``` This creates `slide-01.jpg`, `slide-02.jpg`, etc. To re-render specific slides after fixes: ```bash pdftoppm -jpeg -r 150 -f N -l N output.pdf slide-fixed ``` --- ## Dependencies - `pip install "markitdown[pptx]"` - text extraction - `pip install Pillow` - thumbnail grids - `npm install -g pptxgenjs` - creating from scratch - LibreOffice (`soffice`) - PDF conversion (auto-configured for sandboxed environments via `scripts/office/soffice.py`) - Poppler (`pdftoppm`) - PDF to images ================================================ FILE: skills/pptx/editing.md ================================================ # Editing Presentations ## Template-Based Workflow When using an existing presentation as a template: 1. **Analyze existing slides**: ```bash python scripts/thumbnail.py template.pptx python -m markitdown template.pptx ``` Review `thumbnails.jpg` to see layouts, and markitdown output to see placeholder text. 2. **Plan slide mapping**: For each content section, choose a template slide. ⚠️ **USE VARIED LAYOUTS** — monotonous presentations are a common failure mode. Don't default to basic title + bullet slides. Actively seek out: - Multi-column layouts (2-column, 3-column) - Image + text combinations - Full-bleed images with text overlay - Quote or callout slides - Section dividers - Stat/number callouts - Icon grids or icon + text rows **Avoid:** Repeating the same text-heavy layout for every slide. Match content type to layout style (e.g., key points → bullet slide, team info → multi-column, testimonials → quote slide). 3. **Unpack**: `python scripts/office/unpack.py template.pptx unpacked/` 4. **Build presentation** (do this yourself, not with subagents): - Delete unwanted slides (remove from ``) - Duplicate slides you want to reuse (`add_slide.py`) - Reorder slides in `` - **Complete all structural changes before step 5** 5. **Edit content**: Update text in each `slide{N}.xml`. **Use subagents here if available** — slides are separate XML files, so subagents can edit in parallel. 6. **Clean**: `python scripts/clean.py unpacked/` 7. **Pack**: `python scripts/office/pack.py unpacked/ output.pptx --original template.pptx` --- ## Scripts | Script | Purpose | |--------|---------| | `unpack.py` | Extract and pretty-print PPTX | | `add_slide.py` | Duplicate slide or create from layout | | `clean.py` | Remove orphaned files | | `pack.py` | Repack with validation | | `thumbnail.py` | Create visual grid of slides | ### unpack.py ```bash python scripts/office/unpack.py input.pptx unpacked/ ``` Extracts PPTX, pretty-prints XML, escapes smart quotes. ### add_slide.py ```bash python scripts/add_slide.py unpacked/ slide2.xml # Duplicate slide python scripts/add_slide.py unpacked/ slideLayout2.xml # From layout ``` Prints `` to add to `` at desired position. ### clean.py ```bash python scripts/clean.py unpacked/ ``` Removes slides not in ``, unreferenced media, orphaned rels. ### pack.py ```bash python scripts/office/pack.py unpacked/ output.pptx --original input.pptx ``` Validates, repairs, condenses XML, re-encodes smart quotes. ### thumbnail.py ```bash python scripts/thumbnail.py input.pptx [output_prefix] [--cols N] ``` Creates `thumbnails.jpg` with slide filenames as labels. Default 3 columns, max 12 per grid. **Use for template analysis only** (choosing layouts). For visual QA, use `soffice` + `pdftoppm` to create full-resolution individual slide images—see SKILL.md. --- ## Slide Operations Slide order is in `ppt/presentation.xml` → ``. **Reorder**: Rearrange `` elements. **Delete**: Remove ``, then run `clean.py`. **Add**: Use `add_slide.py`. Never manually copy slide files—the script handles notes references, Content_Types.xml, and relationship IDs that manual copying misses. --- ## Editing Content **Subagents:** If available, use them here (after completing step 4). Each slide is a separate XML file, so subagents can edit in parallel. In your prompt to subagents, include: - The slide file path(s) to edit - **"Use the Edit tool for all changes"** - The formatting rules and common pitfalls below For each slide: 1. Read the slide's XML 2. Identify ALL placeholder content—text, images, charts, icons, captions 3. Replace each placeholder with final content **Use the Edit tool, not sed or Python scripts.** The Edit tool forces specificity about what to replace and where, yielding better reliability. ### Formatting Rules - **Bold all headers, subheadings, and inline labels**: Use `b="1"` on ``. This includes: - Slide titles - Section headers within a slide - Inline labels like (e.g.: "Status:", "Description:") at the start of a line - **Never use unicode bullets (•)**: Use proper list formatting with `` or `` - **Bullet consistency**: Let bullets inherit from the layout. Only specify `` or ``. --- ## Common Pitfalls ### Template Adaptation When source content has fewer items than the template: - **Remove excess elements entirely** (images, shapes, text boxes), don't just clear text - Check for orphaned visuals after clearing text content - Run visual QA to catch mismatched counts When replacing text with different length content: - **Shorter replacements**: Usually safe - **Longer replacements**: May overflow or wrap unexpectedly - Test with visual QA after text changes - Consider truncating or splitting content to fit the template's design constraints **Template slots ≠ Source items**: If template has 4 team members but source has 3 users, delete the 4th member's entire group (image + text boxes), not just the text. ### Multi-Item Content If source has multiple items (numbered lists, multiple sections), create separate `` elements for each — **never concatenate into one string**. **❌ WRONG** — all items in one paragraph: ```xml Step 1: Do the first thing. Step 2: Do the second thing. ``` **✅ CORRECT** — separate paragraphs with bold headers: ```xml Step 1 Do the first thing. Step 2 ``` Copy `` from the original paragraph to preserve line spacing. Use `b="1"` on headers. ### Smart Quotes Handled automatically by unpack/pack. But the Edit tool converts smart quotes to ASCII. **When adding new text with quotes, use XML entities:** ```xml the “Agreement” ``` | Character | Name | Unicode | XML Entity | |-----------|------|---------|------------| | `“` | Left double quote | U+201C | `“` | | `”` | Right double quote | U+201D | `”` | | `‘` | Left single quote | U+2018 | `‘` | | `’` | Right single quote | U+2019 | `’` | ### Other - **Whitespace**: Use `xml:space="preserve"` on `` with leading/trailing spaces - **XML parsing**: Use `defusedxml.minidom`, not `xml.etree.ElementTree` (corrupts namespaces) ================================================ FILE: skills/pptx/pptxgenjs.md ================================================ # PptxGenJS Tutorial ## Setup & Basic Structure ```javascript const pptxgen = require("pptxgenjs"); let pres = new pptxgen(); pres.layout = 'LAYOUT_16x9'; // or 'LAYOUT_16x10', 'LAYOUT_4x3', 'LAYOUT_WIDE' pres.author = 'Your Name'; pres.title = 'Presentation Title'; let slide = pres.addSlide(); slide.addText("Hello World!", { x: 0.5, y: 0.5, fontSize: 36, color: "363636" }); pres.writeFile({ fileName: "Presentation.pptx" }); ``` ## Layout Dimensions Slide dimensions (coordinates in inches): - `LAYOUT_16x9`: 10" × 5.625" (default) - `LAYOUT_16x10`: 10" × 6.25" - `LAYOUT_4x3`: 10" × 7.5" - `LAYOUT_WIDE`: 13.3" × 7.5" --- ## Text & Formatting ```javascript // Basic text slide.addText("Simple Text", { x: 1, y: 1, w: 8, h: 2, fontSize: 24, fontFace: "Arial", color: "363636", bold: true, align: "center", valign: "middle" }); // Character spacing (use charSpacing, not letterSpacing which is silently ignored) slide.addText("SPACED TEXT", { x: 1, y: 1, w: 8, h: 1, charSpacing: 6 }); // Rich text arrays slide.addText([ { text: "Bold ", options: { bold: true } }, { text: "Italic ", options: { italic: true } } ], { x: 1, y: 3, w: 8, h: 1 }); // Multi-line text (requires breakLine: true) slide.addText([ { text: "Line 1", options: { breakLine: true } }, { text: "Line 2", options: { breakLine: true } }, { text: "Line 3" } // Last item doesn't need breakLine ], { x: 0.5, y: 0.5, w: 8, h: 2 }); // Text box margin (internal padding) slide.addText("Title", { x: 0.5, y: 0.3, w: 9, h: 0.6, margin: 0 // Use 0 when aligning text with other elements like shapes or icons }); ``` **Tip:** Text boxes have internal margin by default. Set `margin: 0` when you need text to align precisely with shapes, lines, or icons at the same x-position. --- ## Lists & Bullets ```javascript // ✅ CORRECT: Multiple bullets slide.addText([ { text: "First item", options: { bullet: true, breakLine: true } }, { text: "Second item", options: { bullet: true, breakLine: true } }, { text: "Third item", options: { bullet: true } } ], { x: 0.5, y: 0.5, w: 8, h: 3 }); // ❌ WRONG: Never use unicode bullets slide.addText("• First item", { ... }); // Creates double bullets // Sub-items and numbered lists { text: "Sub-item", options: { bullet: true, indentLevel: 1 } } { text: "First", options: { bullet: { type: "number" }, breakLine: true } } ``` --- ## Shapes ```javascript slide.addShape(pres.shapes.RECTANGLE, { x: 0.5, y: 0.8, w: 1.5, h: 3.0, fill: { color: "FF0000" }, line: { color: "000000", width: 2 } }); slide.addShape(pres.shapes.OVAL, { x: 4, y: 1, w: 2, h: 2, fill: { color: "0000FF" } }); slide.addShape(pres.shapes.LINE, { x: 1, y: 3, w: 5, h: 0, line: { color: "FF0000", width: 3, dashType: "dash" } }); // With transparency slide.addShape(pres.shapes.RECTANGLE, { x: 1, y: 1, w: 3, h: 2, fill: { color: "0088CC", transparency: 50 } }); // Rounded rectangle (rectRadius only works with ROUNDED_RECTANGLE, not RECTANGLE) // ⚠️ Don't pair with rectangular accent overlays — they won't cover rounded corners. Use RECTANGLE instead. slide.addShape(pres.shapes.ROUNDED_RECTANGLE, { x: 1, y: 1, w: 3, h: 2, fill: { color: "FFFFFF" }, rectRadius: 0.1 }); // With shadow slide.addShape(pres.shapes.RECTANGLE, { x: 1, y: 1, w: 3, h: 2, fill: { color: "FFFFFF" }, shadow: { type: "outer", color: "000000", blur: 6, offset: 2, angle: 135, opacity: 0.15 } }); ``` Shadow options: | Property | Type | Range | Notes | |----------|------|-------|-------| | `type` | string | `"outer"`, `"inner"` | | | `color` | string | 6-char hex (e.g. `"000000"`) | No `#` prefix, no 8-char hex — see Common Pitfalls | | `blur` | number | 0-100 pt | | | `offset` | number | 0-200 pt | **Must be non-negative** — negative values corrupt the file | | `angle` | number | 0-359 degrees | Direction the shadow falls (135 = bottom-right, 270 = upward) | | `opacity` | number | 0.0-1.0 | Use this for transparency, never encode in color string | To cast a shadow upward (e.g. on a footer bar), use `angle: 270` with a positive offset — do **not** use a negative offset. **Note**: Gradient fills are not natively supported. Use a gradient image as a background instead. --- ## Images ### Image Sources ```javascript // From file path slide.addImage({ path: "images/chart.png", x: 1, y: 1, w: 5, h: 3 }); // From URL slide.addImage({ path: "https://example.com/image.jpg", x: 1, y: 1, w: 5, h: 3 }); // From base64 (faster, no file I/O) slide.addImage({ data: "image/png;base64,iVBORw0KGgo...", x: 1, y: 1, w: 5, h: 3 }); ``` ### Image Options ```javascript slide.addImage({ path: "image.png", x: 1, y: 1, w: 5, h: 3, rotate: 45, // 0-359 degrees rounding: true, // Circular crop transparency: 50, // 0-100 flipH: true, // Horizontal flip flipV: false, // Vertical flip altText: "Description", // Accessibility hyperlink: { url: "https://example.com" } }); ``` ### Image Sizing Modes ```javascript // Contain - fit inside, preserve ratio { sizing: { type: 'contain', w: 4, h: 3 } } // Cover - fill area, preserve ratio (may crop) { sizing: { type: 'cover', w: 4, h: 3 } } // Crop - cut specific portion { sizing: { type: 'crop', x: 0.5, y: 0.5, w: 2, h: 2 } } ``` ### Calculate Dimensions (preserve aspect ratio) ```javascript const origWidth = 1978, origHeight = 923, maxHeight = 3.0; const calcWidth = maxHeight * (origWidth / origHeight); const centerX = (10 - calcWidth) / 2; slide.addImage({ path: "image.png", x: centerX, y: 1.2, w: calcWidth, h: maxHeight }); ``` ### Supported Formats - **Standard**: PNG, JPG, GIF (animated GIFs work in Microsoft 365) - **SVG**: Works in modern PowerPoint/Microsoft 365 --- ## Icons Use react-icons to generate SVG icons, then rasterize to PNG for universal compatibility. ### Setup ```javascript const React = require("react"); const ReactDOMServer = require("react-dom/server"); const sharp = require("sharp"); const { FaCheckCircle, FaChartLine } = require("react-icons/fa"); function renderIconSvg(IconComponent, color = "#000000", size = 256) { return ReactDOMServer.renderToStaticMarkup( React.createElement(IconComponent, { color, size: String(size) }) ); } async function iconToBase64Png(IconComponent, color, size = 256) { const svg = renderIconSvg(IconComponent, color, size); const pngBuffer = await sharp(Buffer.from(svg)).png().toBuffer(); return "image/png;base64," + pngBuffer.toString("base64"); } ``` ### Add Icon to Slide ```javascript const iconData = await iconToBase64Png(FaCheckCircle, "#4472C4", 256); slide.addImage({ data: iconData, x: 1, y: 1, w: 0.5, h: 0.5 // Size in inches }); ``` **Note**: Use size 256 or higher for crisp icons. The size parameter controls the rasterization resolution, not the display size on the slide (which is set by `w` and `h` in inches). ### Icon Libraries Install: `npm install -g react-icons react react-dom sharp` Popular icon sets in react-icons: - `react-icons/fa` - Font Awesome - `react-icons/md` - Material Design - `react-icons/hi` - Heroicons - `react-icons/bi` - Bootstrap Icons --- ## Slide Backgrounds ```javascript // Solid color slide.background = { color: "F1F1F1" }; // Color with transparency slide.background = { color: "FF3399", transparency: 50 }; // Image from URL slide.background = { path: "https://example.com/bg.jpg" }; // Image from base64 slide.background = { data: "image/png;base64,iVBORw0KGgo..." }; ``` --- ## Tables ```javascript slide.addTable([ ["Header 1", "Header 2"], ["Cell 1", "Cell 2"] ], { x: 1, y: 1, w: 8, h: 2, border: { pt: 1, color: "999999" }, fill: { color: "F1F1F1" } }); // Advanced with merged cells let tableData = [ [{ text: "Header", options: { fill: { color: "6699CC" }, color: "FFFFFF", bold: true } }, "Cell"], [{ text: "Merged", options: { colspan: 2 } }] ]; slide.addTable(tableData, { x: 1, y: 3.5, w: 8, colW: [4, 4] }); ``` --- ## Charts ```javascript // Bar chart slide.addChart(pres.charts.BAR, [{ name: "Sales", labels: ["Q1", "Q2", "Q3", "Q4"], values: [4500, 5500, 6200, 7100] }], { x: 0.5, y: 0.6, w: 6, h: 3, barDir: 'col', showTitle: true, title: 'Quarterly Sales' }); // Line chart slide.addChart(pres.charts.LINE, [{ name: "Temp", labels: ["Jan", "Feb", "Mar"], values: [32, 35, 42] }], { x: 0.5, y: 4, w: 6, h: 3, lineSize: 3, lineSmooth: true }); // Pie chart slide.addChart(pres.charts.PIE, [{ name: "Share", labels: ["A", "B", "Other"], values: [35, 45, 20] }], { x: 7, y: 1, w: 5, h: 4, showPercent: true }); ``` ### Better-Looking Charts Default charts look dated. Apply these options for a modern, clean appearance: ```javascript slide.addChart(pres.charts.BAR, chartData, { x: 0.5, y: 1, w: 9, h: 4, barDir: "col", // Custom colors (match your presentation palette) chartColors: ["0D9488", "14B8A6", "5EEAD4"], // Clean background chartArea: { fill: { color: "FFFFFF" }, roundedCorners: true }, // Muted axis labels catAxisLabelColor: "64748B", valAxisLabelColor: "64748B", // Subtle grid (value axis only) valGridLine: { color: "E2E8F0", size: 0.5 }, catGridLine: { style: "none" }, // Data labels on bars showValue: true, dataLabelPosition: "outEnd", dataLabelColor: "1E293B", // Hide legend for single series showLegend: false, }); ``` **Key styling options:** - `chartColors: [...]` - hex colors for series/segments - `chartArea: { fill, border, roundedCorners }` - chart background - `catGridLine/valGridLine: { color, style, size }` - grid lines (`style: "none"` to hide) - `lineSmooth: true` - curved lines (line charts) - `legendPos: "r"` - legend position: "b", "t", "l", "r", "tr" --- ## Slide Masters ```javascript pres.defineSlideMaster({ title: 'TITLE_SLIDE', background: { color: '283A5E' }, objects: [{ placeholder: { options: { name: 'title', type: 'title', x: 1, y: 2, w: 8, h: 2 } } }] }); let titleSlide = pres.addSlide({ masterName: "TITLE_SLIDE" }); titleSlide.addText("My Title", { placeholder: "title" }); ``` --- ## Common Pitfalls ⚠️ These issues cause file corruption, visual bugs, or broken output. Avoid them. 1. **NEVER use "#" with hex colors** - causes file corruption ```javascript color: "FF0000" // ✅ CORRECT color: "#FF0000" // ❌ WRONG ``` 2. **NEVER encode opacity in hex color strings** - 8-char colors (e.g., `"00000020"`) corrupt the file. Use the `opacity` property instead. ```javascript shadow: { type: "outer", blur: 6, offset: 2, color: "00000020" } // ❌ CORRUPTS FILE shadow: { type: "outer", blur: 6, offset: 2, color: "000000", opacity: 0.12 } // ✅ CORRECT ``` 3. **Use `bullet: true`** - NEVER unicode symbols like "•" (creates double bullets) 4. **Use `breakLine: true`** between array items or text runs together 5. **Avoid `lineSpacing` with bullets** - causes excessive gaps; use `paraSpaceAfter` instead 6. **Each presentation needs fresh instance** - don't reuse `pptxgen()` objects 7. **NEVER reuse option objects across calls** - PptxGenJS mutates objects in-place (e.g. converting shadow values to EMU). Sharing one object between multiple calls corrupts the second shape. ```javascript const shadow = { type: "outer", blur: 6, offset: 2, color: "000000", opacity: 0.15 }; slide.addShape(pres.shapes.RECTANGLE, { shadow, ... }); // ❌ second call gets already-converted values slide.addShape(pres.shapes.RECTANGLE, { shadow, ... }); const makeShadow = () => ({ type: "outer", blur: 6, offset: 2, color: "000000", opacity: 0.15 }); slide.addShape(pres.shapes.RECTANGLE, { shadow: makeShadow(), ... }); // ✅ fresh object each time slide.addShape(pres.shapes.RECTANGLE, { shadow: makeShadow(), ... }); ``` 8. **Don't use `ROUNDED_RECTANGLE` with accent borders** - rectangular overlay bars won't cover rounded corners. Use `RECTANGLE` instead. ```javascript // ❌ WRONG: Accent bar doesn't cover rounded corners slide.addShape(pres.shapes.ROUNDED_RECTANGLE, { x: 1, y: 1, w: 3, h: 1.5, fill: { color: "FFFFFF" } }); slide.addShape(pres.shapes.RECTANGLE, { x: 1, y: 1, w: 0.08, h: 1.5, fill: { color: "0891B2" } }); // ✅ CORRECT: Use RECTANGLE for clean alignment slide.addShape(pres.shapes.RECTANGLE, { x: 1, y: 1, w: 3, h: 1.5, fill: { color: "FFFFFF" } }); slide.addShape(pres.shapes.RECTANGLE, { x: 1, y: 1, w: 0.08, h: 1.5, fill: { color: "0891B2" } }); ``` --- ## Quick Reference - **Shapes**: RECTANGLE, OVAL, LINE, ROUNDED_RECTANGLE - **Charts**: BAR, LINE, PIE, DOUGHNUT, SCATTER, BUBBLE, RADAR - **Layouts**: LAYOUT_16x9 (10"×5.625"), LAYOUT_16x10, LAYOUT_4x3, LAYOUT_WIDE - **Alignment**: "left", "center", "right" - **Chart data labels**: "outEnd", "inEnd", "center" ================================================ FILE: skills/pptx/scripts/__init__.py ================================================ ================================================ FILE: skills/pptx/scripts/add_slide.py ================================================ """Add a new slide to an unpacked PPTX directory. Usage: python add_slide.py The source can be: - A slide file (e.g., slide2.xml) - duplicates the slide - A layout file (e.g., slideLayout2.xml) - creates from layout Examples: python add_slide.py unpacked/ slide2.xml # Duplicates slide2, creates slide5.xml python add_slide.py unpacked/ slideLayout2.xml # Creates slide5.xml from slideLayout2.xml To see available layouts: ls unpacked/ppt/slideLayouts/ Prints the element to add to presentation.xml. """ import re import shutil import sys from pathlib import Path def get_next_slide_number(slides_dir: Path) -> int: existing = [int(m.group(1)) for f in slides_dir.glob("slide*.xml") if (m := re.match(r"slide(\d+)\.xml", f.name))] return max(existing) + 1 if existing else 1 def create_slide_from_layout(unpacked_dir: Path, layout_file: str) -> None: slides_dir = unpacked_dir / "ppt" / "slides" rels_dir = slides_dir / "_rels" layouts_dir = unpacked_dir / "ppt" / "slideLayouts" layout_path = layouts_dir / layout_file if not layout_path.exists(): print(f"Error: {layout_path} not found", file=sys.stderr) sys.exit(1) next_num = get_next_slide_number(slides_dir) dest = f"slide{next_num}.xml" dest_slide = slides_dir / dest dest_rels = rels_dir / f"{dest}.rels" slide_xml = ''' ''' dest_slide.write_text(slide_xml, encoding="utf-8") rels_dir.mkdir(exist_ok=True) rels_xml = f''' ''' dest_rels.write_text(rels_xml, encoding="utf-8") _add_to_content_types(unpacked_dir, dest) rid = _add_to_presentation_rels(unpacked_dir, dest) next_slide_id = _get_next_slide_id(unpacked_dir) print(f"Created {dest} from {layout_file}") print(f'Add to presentation.xml : ') def duplicate_slide(unpacked_dir: Path, source: str) -> None: slides_dir = unpacked_dir / "ppt" / "slides" rels_dir = slides_dir / "_rels" source_slide = slides_dir / source if not source_slide.exists(): print(f"Error: {source_slide} not found", file=sys.stderr) sys.exit(1) next_num = get_next_slide_number(slides_dir) dest = f"slide{next_num}.xml" dest_slide = slides_dir / dest source_rels = rels_dir / f"{source}.rels" dest_rels = rels_dir / f"{dest}.rels" shutil.copy2(source_slide, dest_slide) if source_rels.exists(): shutil.copy2(source_rels, dest_rels) rels_content = dest_rels.read_text(encoding="utf-8") rels_content = re.sub( r'\s*]*Type="[^"]*notesSlide"[^>]*/>\s*', "\n", rels_content, ) dest_rels.write_text(rels_content, encoding="utf-8") _add_to_content_types(unpacked_dir, dest) rid = _add_to_presentation_rels(unpacked_dir, dest) next_slide_id = _get_next_slide_id(unpacked_dir) print(f"Created {dest} from {source}") print(f'Add to presentation.xml : ') def _add_to_content_types(unpacked_dir: Path, dest: str) -> None: content_types_path = unpacked_dir / "[Content_Types].xml" content_types = content_types_path.read_text(encoding="utf-8") new_override = f'' if f"/ppt/slides/{dest}" not in content_types: content_types = content_types.replace("", f" {new_override}\n") content_types_path.write_text(content_types, encoding="utf-8") def _add_to_presentation_rels(unpacked_dir: Path, dest: str) -> str: pres_rels_path = unpacked_dir / "ppt" / "_rels" / "presentation.xml.rels" pres_rels = pres_rels_path.read_text(encoding="utf-8") rids = [int(m) for m in re.findall(r'Id="rId(\d+)"', pres_rels)] next_rid = max(rids) + 1 if rids else 1 rid = f"rId{next_rid}" new_rel = f'' if f"slides/{dest}" not in pres_rels: pres_rels = pres_rels.replace("", f" {new_rel}\n") pres_rels_path.write_text(pres_rels, encoding="utf-8") return rid def _get_next_slide_id(unpacked_dir: Path) -> int: pres_path = unpacked_dir / "ppt" / "presentation.xml" pres_content = pres_path.read_text(encoding="utf-8") slide_ids = [int(m) for m in re.findall(r']*id="(\d+)"', pres_content)] return max(slide_ids) + 1 if slide_ids else 256 def parse_source(source: str) -> tuple[str, str | None]: if source.startswith("slideLayout") and source.endswith(".xml"): return ("layout", source) return ("slide", None) if __name__ == "__main__": if len(sys.argv) != 3: print("Usage: python add_slide.py ", file=sys.stderr) print("", file=sys.stderr) print("Source can be:", file=sys.stderr) print(" slide2.xml - duplicate an existing slide", file=sys.stderr) print(" slideLayout2.xml - create from a layout template", file=sys.stderr) print("", file=sys.stderr) print("To see available layouts: ls /ppt/slideLayouts/", file=sys.stderr) sys.exit(1) unpacked_dir = Path(sys.argv[1]) source = sys.argv[2] if not unpacked_dir.exists(): print(f"Error: {unpacked_dir} not found", file=sys.stderr) sys.exit(1) source_type, layout_file = parse_source(source) if source_type == "layout" and layout_file is not None: create_slide_from_layout(unpacked_dir, layout_file) else: duplicate_slide(unpacked_dir, source) ================================================ FILE: skills/pptx/scripts/clean.py ================================================ """Remove unreferenced files from an unpacked PPTX directory. Usage: python clean.py Example: python clean.py unpacked/ This script removes: - Orphaned slides (not in sldIdLst) and their relationships - [trash] directory (unreferenced files) - Orphaned .rels files for deleted resources - Unreferenced media, embeddings, charts, diagrams, drawings, ink files - Unreferenced theme files - Unreferenced notes slides - Content-Type overrides for deleted files """ import sys from pathlib import Path import defusedxml.minidom import re def get_slides_in_sldidlst(unpacked_dir: Path) -> set[str]: pres_path = unpacked_dir / "ppt" / "presentation.xml" pres_rels_path = unpacked_dir / "ppt" / "_rels" / "presentation.xml.rels" if not pres_path.exists() or not pres_rels_path.exists(): return set() rels_dom = defusedxml.minidom.parse(str(pres_rels_path)) rid_to_slide = {} for rel in rels_dom.getElementsByTagName("Relationship"): rid = rel.getAttribute("Id") target = rel.getAttribute("Target") rel_type = rel.getAttribute("Type") if "slide" in rel_type and target.startswith("slides/"): rid_to_slide[rid] = target.replace("slides/", "") pres_content = pres_path.read_text(encoding="utf-8") referenced_rids = set(re.findall(r']*r:id="([^"]+)"', pres_content)) return {rid_to_slide[rid] for rid in referenced_rids if rid in rid_to_slide} def remove_orphaned_slides(unpacked_dir: Path) -> list[str]: slides_dir = unpacked_dir / "ppt" / "slides" slides_rels_dir = slides_dir / "_rels" pres_rels_path = unpacked_dir / "ppt" / "_rels" / "presentation.xml.rels" if not slides_dir.exists(): return [] referenced_slides = get_slides_in_sldidlst(unpacked_dir) removed = [] for slide_file in slides_dir.glob("slide*.xml"): if slide_file.name not in referenced_slides: rel_path = slide_file.relative_to(unpacked_dir) slide_file.unlink() removed.append(str(rel_path)) rels_file = slides_rels_dir / f"{slide_file.name}.rels" if rels_file.exists(): rels_file.unlink() removed.append(str(rels_file.relative_to(unpacked_dir))) if removed and pres_rels_path.exists(): rels_dom = defusedxml.minidom.parse(str(pres_rels_path)) changed = False for rel in list(rels_dom.getElementsByTagName("Relationship")): target = rel.getAttribute("Target") if target.startswith("slides/"): slide_name = target.replace("slides/", "") if slide_name not in referenced_slides: if rel.parentNode: rel.parentNode.removeChild(rel) changed = True if changed: with open(pres_rels_path, "wb") as f: f.write(rels_dom.toxml(encoding="utf-8")) return removed def remove_trash_directory(unpacked_dir: Path) -> list[str]: trash_dir = unpacked_dir / "[trash]" removed = [] if trash_dir.exists() and trash_dir.is_dir(): for file_path in trash_dir.iterdir(): if file_path.is_file(): rel_path = file_path.relative_to(unpacked_dir) removed.append(str(rel_path)) file_path.unlink() trash_dir.rmdir() return removed def get_slide_referenced_files(unpacked_dir: Path) -> set: referenced = set() slides_rels_dir = unpacked_dir / "ppt" / "slides" / "_rels" if not slides_rels_dir.exists(): return referenced for rels_file in slides_rels_dir.glob("*.rels"): dom = defusedxml.minidom.parse(str(rels_file)) for rel in dom.getElementsByTagName("Relationship"): target = rel.getAttribute("Target") if not target: continue target_path = (rels_file.parent.parent / target).resolve() try: referenced.add(target_path.relative_to(unpacked_dir.resolve())) except ValueError: pass return referenced def remove_orphaned_rels_files(unpacked_dir: Path) -> list[str]: resource_dirs = ["charts", "diagrams", "drawings"] removed = [] slide_referenced = get_slide_referenced_files(unpacked_dir) for dir_name in resource_dirs: rels_dir = unpacked_dir / "ppt" / dir_name / "_rels" if not rels_dir.exists(): continue for rels_file in rels_dir.glob("*.rels"): resource_file = rels_dir.parent / rels_file.name.replace(".rels", "") try: resource_rel_path = resource_file.resolve().relative_to(unpacked_dir.resolve()) except ValueError: continue if not resource_file.exists() or resource_rel_path not in slide_referenced: rels_file.unlink() rel_path = rels_file.relative_to(unpacked_dir) removed.append(str(rel_path)) return removed def get_referenced_files(unpacked_dir: Path) -> set: referenced = set() for rels_file in unpacked_dir.rglob("*.rels"): dom = defusedxml.minidom.parse(str(rels_file)) for rel in dom.getElementsByTagName("Relationship"): target = rel.getAttribute("Target") if not target: continue target_path = (rels_file.parent.parent / target).resolve() try: referenced.add(target_path.relative_to(unpacked_dir.resolve())) except ValueError: pass return referenced def remove_orphaned_files(unpacked_dir: Path, referenced: set) -> list[str]: resource_dirs = ["media", "embeddings", "charts", "diagrams", "tags", "drawings", "ink"] removed = [] for dir_name in resource_dirs: dir_path = unpacked_dir / "ppt" / dir_name if not dir_path.exists(): continue for file_path in dir_path.glob("*"): if not file_path.is_file(): continue rel_path = file_path.relative_to(unpacked_dir) if rel_path not in referenced: file_path.unlink() removed.append(str(rel_path)) theme_dir = unpacked_dir / "ppt" / "theme" if theme_dir.exists(): for file_path in theme_dir.glob("theme*.xml"): rel_path = file_path.relative_to(unpacked_dir) if rel_path not in referenced: file_path.unlink() removed.append(str(rel_path)) theme_rels = theme_dir / "_rels" / f"{file_path.name}.rels" if theme_rels.exists(): theme_rels.unlink() removed.append(str(theme_rels.relative_to(unpacked_dir))) notes_dir = unpacked_dir / "ppt" / "notesSlides" if notes_dir.exists(): for file_path in notes_dir.glob("*.xml"): if not file_path.is_file(): continue rel_path = file_path.relative_to(unpacked_dir) if rel_path not in referenced: file_path.unlink() removed.append(str(rel_path)) notes_rels_dir = notes_dir / "_rels" if notes_rels_dir.exists(): for file_path in notes_rels_dir.glob("*.rels"): notes_file = notes_dir / file_path.name.replace(".rels", "") if not notes_file.exists(): file_path.unlink() removed.append(str(file_path.relative_to(unpacked_dir))) return removed def update_content_types(unpacked_dir: Path, removed_files: list[str]) -> None: ct_path = unpacked_dir / "[Content_Types].xml" if not ct_path.exists(): return dom = defusedxml.minidom.parse(str(ct_path)) changed = False for override in list(dom.getElementsByTagName("Override")): part_name = override.getAttribute("PartName").lstrip("/") if part_name in removed_files: if override.parentNode: override.parentNode.removeChild(override) changed = True if changed: with open(ct_path, "wb") as f: f.write(dom.toxml(encoding="utf-8")) def clean_unused_files(unpacked_dir: Path) -> list[str]: all_removed = [] slides_removed = remove_orphaned_slides(unpacked_dir) all_removed.extend(slides_removed) trash_removed = remove_trash_directory(unpacked_dir) all_removed.extend(trash_removed) while True: removed_rels = remove_orphaned_rels_files(unpacked_dir) referenced = get_referenced_files(unpacked_dir) removed_files = remove_orphaned_files(unpacked_dir, referenced) total_removed = removed_rels + removed_files if not total_removed: break all_removed.extend(total_removed) if all_removed: update_content_types(unpacked_dir, all_removed) return all_removed if __name__ == "__main__": if len(sys.argv) != 2: print("Usage: python clean.py ", file=sys.stderr) print("Example: python clean.py unpacked/", file=sys.stderr) sys.exit(1) unpacked_dir = Path(sys.argv[1]) if not unpacked_dir.exists(): print(f"Error: {unpacked_dir} not found", file=sys.stderr) sys.exit(1) removed = clean_unused_files(unpacked_dir) if removed: print(f"Removed {len(removed)} unreferenced files:") for f in removed: print(f" {f}") else: print("No unreferenced files found") ================================================ FILE: skills/pptx/scripts/office/helpers/__init__.py ================================================ ================================================ FILE: skills/pptx/scripts/office/helpers/merge_runs.py ================================================ """Merge adjacent runs with identical formatting in DOCX. Merges adjacent elements that have identical properties. Works on runs in paragraphs and inside tracked changes (, ). Also: - Removes rsid attributes from runs (revision metadata that doesn't affect rendering) - Removes proofErr elements (spell/grammar markers that block merging) """ from pathlib import Path import defusedxml.minidom def merge_runs(input_dir: str) -> tuple[int, str]: doc_xml = Path(input_dir) / "word" / "document.xml" if not doc_xml.exists(): return 0, f"Error: {doc_xml} not found" try: dom = defusedxml.minidom.parseString(doc_xml.read_text(encoding="utf-8")) root = dom.documentElement _remove_elements(root, "proofErr") _strip_run_rsid_attrs(root) containers = {run.parentNode for run in _find_elements(root, "r")} merge_count = 0 for container in containers: merge_count += _merge_runs_in(container) doc_xml.write_bytes(dom.toxml(encoding="UTF-8")) return merge_count, f"Merged {merge_count} runs" except Exception as e: return 0, f"Error: {e}" def _find_elements(root, tag: str) -> list: results = [] def traverse(node): if node.nodeType == node.ELEMENT_NODE: name = node.localName or node.tagName if name == tag or name.endswith(f":{tag}"): results.append(node) for child in node.childNodes: traverse(child) traverse(root) return results def _get_child(parent, tag: str): for child in parent.childNodes: if child.nodeType == child.ELEMENT_NODE: name = child.localName or child.tagName if name == tag or name.endswith(f":{tag}"): return child return None def _get_children(parent, tag: str) -> list: results = [] for child in parent.childNodes: if child.nodeType == child.ELEMENT_NODE: name = child.localName or child.tagName if name == tag or name.endswith(f":{tag}"): results.append(child) return results def _is_adjacent(elem1, elem2) -> bool: node = elem1.nextSibling while node: if node == elem2: return True if node.nodeType == node.ELEMENT_NODE: return False if node.nodeType == node.TEXT_NODE and node.data.strip(): return False node = node.nextSibling return False def _remove_elements(root, tag: str): for elem in _find_elements(root, tag): if elem.parentNode: elem.parentNode.removeChild(elem) def _strip_run_rsid_attrs(root): for run in _find_elements(root, "r"): for attr in list(run.attributes.values()): if "rsid" in attr.name.lower(): run.removeAttribute(attr.name) def _merge_runs_in(container) -> int: merge_count = 0 run = _first_child_run(container) while run: while True: next_elem = _next_element_sibling(run) if next_elem and _is_run(next_elem) and _can_merge(run, next_elem): _merge_run_content(run, next_elem) container.removeChild(next_elem) merge_count += 1 else: break _consolidate_text(run) run = _next_sibling_run(run) return merge_count def _first_child_run(container): for child in container.childNodes: if child.nodeType == child.ELEMENT_NODE and _is_run(child): return child return None def _next_element_sibling(node): sibling = node.nextSibling while sibling: if sibling.nodeType == sibling.ELEMENT_NODE: return sibling sibling = sibling.nextSibling return None def _next_sibling_run(node): sibling = node.nextSibling while sibling: if sibling.nodeType == sibling.ELEMENT_NODE: if _is_run(sibling): return sibling sibling = sibling.nextSibling return None def _is_run(node) -> bool: name = node.localName or node.tagName return name == "r" or name.endswith(":r") def _can_merge(run1, run2) -> bool: rpr1 = _get_child(run1, "rPr") rpr2 = _get_child(run2, "rPr") if (rpr1 is None) != (rpr2 is None): return False if rpr1 is None: return True return rpr1.toxml() == rpr2.toxml() def _merge_run_content(target, source): for child in list(source.childNodes): if child.nodeType == child.ELEMENT_NODE: name = child.localName or child.tagName if name != "rPr" and not name.endswith(":rPr"): target.appendChild(child) def _consolidate_text(run): t_elements = _get_children(run, "t") for i in range(len(t_elements) - 1, 0, -1): curr, prev = t_elements[i], t_elements[i - 1] if _is_adjacent(prev, curr): prev_text = prev.firstChild.data if prev.firstChild else "" curr_text = curr.firstChild.data if curr.firstChild else "" merged = prev_text + curr_text if prev.firstChild: prev.firstChild.data = merged else: prev.appendChild(run.ownerDocument.createTextNode(merged)) if merged.startswith(" ") or merged.endswith(" "): prev.setAttribute("xml:space", "preserve") elif prev.hasAttribute("xml:space"): prev.removeAttribute("xml:space") run.removeChild(curr) ================================================ FILE: skills/pptx/scripts/office/helpers/simplify_redlines.py ================================================ """Simplify tracked changes by merging adjacent w:ins or w:del elements. Merges adjacent elements from the same author into a single element. Same for elements. This makes heavily-redlined documents easier to work with by reducing the number of tracked change wrappers. Rules: - Only merges w:ins with w:ins, w:del with w:del (same element type) - Only merges if same author (ignores timestamp differences) - Only merges if truly adjacent (only whitespace between them) """ import xml.etree.ElementTree as ET import zipfile from pathlib import Path import defusedxml.minidom WORD_NS = "http://schemas.openxmlformats.org/wordprocessingml/2006/main" def simplify_redlines(input_dir: str) -> tuple[int, str]: doc_xml = Path(input_dir) / "word" / "document.xml" if not doc_xml.exists(): return 0, f"Error: {doc_xml} not found" try: dom = defusedxml.minidom.parseString(doc_xml.read_text(encoding="utf-8")) root = dom.documentElement merge_count = 0 containers = _find_elements(root, "p") + _find_elements(root, "tc") for container in containers: merge_count += _merge_tracked_changes_in(container, "ins") merge_count += _merge_tracked_changes_in(container, "del") doc_xml.write_bytes(dom.toxml(encoding="UTF-8")) return merge_count, f"Simplified {merge_count} tracked changes" except Exception as e: return 0, f"Error: {e}" def _merge_tracked_changes_in(container, tag: str) -> int: merge_count = 0 tracked = [ child for child in container.childNodes if child.nodeType == child.ELEMENT_NODE and _is_element(child, tag) ] if len(tracked) < 2: return 0 i = 0 while i < len(tracked) - 1: curr = tracked[i] next_elem = tracked[i + 1] if _can_merge_tracked(curr, next_elem): _merge_tracked_content(curr, next_elem) container.removeChild(next_elem) tracked.pop(i + 1) merge_count += 1 else: i += 1 return merge_count def _is_element(node, tag: str) -> bool: name = node.localName or node.tagName return name == tag or name.endswith(f":{tag}") def _get_author(elem) -> str: author = elem.getAttribute("w:author") if not author: for attr in elem.attributes.values(): if attr.localName == "author" or attr.name.endswith(":author"): return attr.value return author def _can_merge_tracked(elem1, elem2) -> bool: if _get_author(elem1) != _get_author(elem2): return False node = elem1.nextSibling while node and node != elem2: if node.nodeType == node.ELEMENT_NODE: return False if node.nodeType == node.TEXT_NODE and node.data.strip(): return False node = node.nextSibling return True def _merge_tracked_content(target, source): while source.firstChild: child = source.firstChild source.removeChild(child) target.appendChild(child) def _find_elements(root, tag: str) -> list: results = [] def traverse(node): if node.nodeType == node.ELEMENT_NODE: name = node.localName or node.tagName if name == tag or name.endswith(f":{tag}"): results.append(node) for child in node.childNodes: traverse(child) traverse(root) return results def get_tracked_change_authors(doc_xml_path: Path) -> dict[str, int]: if not doc_xml_path.exists(): return {} try: tree = ET.parse(doc_xml_path) root = tree.getroot() except ET.ParseError: return {} namespaces = {"w": WORD_NS} author_attr = f"{{{WORD_NS}}}author" authors: dict[str, int] = {} for tag in ["ins", "del"]: for elem in root.findall(f".//w:{tag}", namespaces): author = elem.get(author_attr) if author: authors[author] = authors.get(author, 0) + 1 return authors def _get_authors_from_docx(docx_path: Path) -> dict[str, int]: try: with zipfile.ZipFile(docx_path, "r") as zf: if "word/document.xml" not in zf.namelist(): return {} with zf.open("word/document.xml") as f: tree = ET.parse(f) root = tree.getroot() namespaces = {"w": WORD_NS} author_attr = f"{{{WORD_NS}}}author" authors: dict[str, int] = {} for tag in ["ins", "del"]: for elem in root.findall(f".//w:{tag}", namespaces): author = elem.get(author_attr) if author: authors[author] = authors.get(author, 0) + 1 return authors except (zipfile.BadZipFile, ET.ParseError): return {} def infer_author(modified_dir: Path, original_docx: Path, default: str = "Claude") -> str: modified_xml = modified_dir / "word" / "document.xml" modified_authors = get_tracked_change_authors(modified_xml) if not modified_authors: return default original_authors = _get_authors_from_docx(original_docx) new_changes: dict[str, int] = {} for author, count in modified_authors.items(): original_count = original_authors.get(author, 0) diff = count - original_count if diff > 0: new_changes[author] = diff if not new_changes: return default if len(new_changes) == 1: return next(iter(new_changes)) raise ValueError( f"Multiple authors added new changes: {new_changes}. " "Cannot infer which author to validate." ) ================================================ FILE: skills/pptx/scripts/office/pack.py ================================================ """Pack a directory into a DOCX, PPTX, or XLSX file. Validates with auto-repair, condenses XML formatting, and creates the Office file. Usage: python pack.py [--original ] [--validate true|false] Examples: python pack.py unpacked/ output.docx --original input.docx python pack.py unpacked/ output.pptx --validate false """ import argparse import sys import shutil import tempfile import zipfile from pathlib import Path import defusedxml.minidom from validators import DOCXSchemaValidator, PPTXSchemaValidator, RedliningValidator def pack( input_directory: str, output_file: str, original_file: str | None = None, validate: bool = True, infer_author_func=None, ) -> tuple[None, str]: input_dir = Path(input_directory) output_path = Path(output_file) suffix = output_path.suffix.lower() if not input_dir.is_dir(): return None, f"Error: {input_dir} is not a directory" if suffix not in {".docx", ".pptx", ".xlsx"}: return None, f"Error: {output_file} must be a .docx, .pptx, or .xlsx file" if validate and original_file: original_path = Path(original_file) if original_path.exists(): success, output = _run_validation( input_dir, original_path, suffix, infer_author_func ) if output: print(output) if not success: return None, f"Error: Validation failed for {input_dir}" with tempfile.TemporaryDirectory() as temp_dir: temp_content_dir = Path(temp_dir) / "content" shutil.copytree(input_dir, temp_content_dir) for pattern in ["*.xml", "*.rels"]: for xml_file in temp_content_dir.rglob(pattern): _condense_xml(xml_file) output_path.parent.mkdir(parents=True, exist_ok=True) with zipfile.ZipFile(output_path, "w", zipfile.ZIP_DEFLATED) as zf: for f in temp_content_dir.rglob("*"): if f.is_file(): zf.write(f, f.relative_to(temp_content_dir)) return None, f"Successfully packed {input_dir} to {output_file}" def _run_validation( unpacked_dir: Path, original_file: Path, suffix: str, infer_author_func=None, ) -> tuple[bool, str | None]: output_lines = [] validators = [] if suffix == ".docx": author = "Claude" if infer_author_func: try: author = infer_author_func(unpacked_dir, original_file) except ValueError as e: print(f"Warning: {e} Using default author 'Claude'.", file=sys.stderr) validators = [ DOCXSchemaValidator(unpacked_dir, original_file), RedliningValidator(unpacked_dir, original_file, author=author), ] elif suffix == ".pptx": validators = [PPTXSchemaValidator(unpacked_dir, original_file)] if not validators: return True, None total_repairs = sum(v.repair() for v in validators) if total_repairs: output_lines.append(f"Auto-repaired {total_repairs} issue(s)") success = all(v.validate() for v in validators) if success: output_lines.append("All validations PASSED!") return success, "\n".join(output_lines) if output_lines else None def _condense_xml(xml_file: Path) -> None: try: with open(xml_file, encoding="utf-8") as f: dom = defusedxml.minidom.parse(f) for element in dom.getElementsByTagName("*"): if element.tagName.endswith(":t"): continue for child in list(element.childNodes): if ( child.nodeType == child.TEXT_NODE and child.nodeValue and child.nodeValue.strip() == "" ) or child.nodeType == child.COMMENT_NODE: element.removeChild(child) xml_file.write_bytes(dom.toxml(encoding="UTF-8")) except Exception as e: print(f"ERROR: Failed to parse {xml_file.name}: {e}", file=sys.stderr) raise if __name__ == "__main__": parser = argparse.ArgumentParser( description="Pack a directory into a DOCX, PPTX, or XLSX file" ) parser.add_argument("input_directory", help="Unpacked Office document directory") parser.add_argument("output_file", help="Output Office file (.docx/.pptx/.xlsx)") parser.add_argument( "--original", help="Original file for validation comparison", ) parser.add_argument( "--validate", type=lambda x: x.lower() == "true", default=True, metavar="true|false", help="Run validation with auto-repair (default: true)", ) args = parser.parse_args() _, message = pack( args.input_directory, args.output_file, original_file=args.original, validate=args.validate, ) print(message) if "Error" in message: sys.exit(1) ================================================ FILE: skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd ================================================ ================================================ FILE: skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd ================================================ ================================================ FILE: skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd ================================================ ================================================ FILE: skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd ================================================ ================================================ FILE: skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd ================================================ ================================================ FILE: skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-picture.xsd ================================================ ================================================ FILE: skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd ================================================ ================================================ FILE: skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd ================================================ ================================================ FILE: skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/pml.xsd ================================================ ================================================ FILE: skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd ================================================ ================================================ FILE: skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd ================================================ ================================================ FILE: skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd ================================================ ================================================ FILE: skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd ================================================ ================================================ FILE: skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd ================================================ ================================================ FILE: skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd ================================================ ================================================ FILE: skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd ================================================ ================================================ FILE: skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd ================================================ ================================================ FILE: skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-math.xsd ================================================ ================================================ FILE: skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd ================================================ ================================================ FILE: skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/sml.xsd ================================================ ================================================ FILE: skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-main.xsd ================================================ ================================================ FILE: skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd ================================================ ================================================ FILE: skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd ================================================ ================================================ FILE: skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd ================================================ ================================================ FILE: skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd ================================================ ================================================ FILE: skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/wml.xsd ================================================ ================================================ FILE: skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/xml.xsd ================================================ See http://www.w3.org/XML/1998/namespace.html and http://www.w3.org/TR/REC-xml for information about this namespace. This schema document describes the XML namespace, in a form suitable for import by other schema documents. Note that local names in this namespace are intended to be defined only by the World Wide Web Consortium or its subgroups. The following names are currently defined in this namespace and should not be used with conflicting semantics by any Working Group, specification, or document instance: base (as an attribute name): denotes an attribute whose value provides a URI to be used as the base for interpreting any relative URIs in the scope of the element on which it appears; its value is inherited. This name is reserved by virtue of its definition in the XML Base specification. lang (as an attribute name): denotes an attribute whose value is a language code for the natural language of the content of any element; its value is inherited. This name is reserved by virtue of its definition in the XML specification. space (as an attribute name): denotes an attribute whose value is a keyword indicating what whitespace processing discipline is intended for the content of the element; its value is inherited. This name is reserved by virtue of its definition in the XML specification. Father (in any context at all): denotes Jon Bosak, the chair of the original XML Working Group. This name is reserved by the following decision of the W3C XML Plenary and XML Coordination groups: In appreciation for his vision, leadership and dedication the W3C XML Plenary on this 10th day of February, 2000 reserves for Jon Bosak in perpetuity the XML name xml:Father This schema defines attributes and an attribute group suitable for use by schemas wishing to allow xml:base, xml:lang or xml:space attributes on elements they define. To enable this, such a schema must import this schema for the XML namespace, e.g. as follows: <schema . . .> . . . <import namespace="http://www.w3.org/XML/1998/namespace" schemaLocation="http://www.w3.org/2001/03/xml.xsd"/> Subsequently, qualified reference to any of the attributes or the group defined below will have the desired effect, e.g. <type . . .> . . . <attributeGroup ref="xml:specialAttrs"/> will define a type which will schema-validate an instance element with any of those attributes In keeping with the XML Schema WG's standard versioning policy, this schema document will persist at http://www.w3.org/2001/03/xml.xsd. At the date of issue it can also be found at http://www.w3.org/2001/xml.xsd. The schema document at that URI may however change in the future, in order to remain compatible with the latest version of XML Schema itself. In other words, if the XML Schema namespace changes, the version of this document at http://www.w3.org/2001/xml.xsd will change accordingly; the version at http://www.w3.org/2001/03/xml.xsd will not change. In due course, we should install the relevant ISO 2- and 3-letter codes as the enumerated possible values . . . See http://www.w3.org/TR/xmlbase/ for information about this attribute. ================================================ FILE: skills/pptx/scripts/office/schemas/ecma/fouth-edition/opc-contentTypes.xsd ================================================  ================================================ FILE: skills/pptx/scripts/office/schemas/ecma/fouth-edition/opc-coreProperties.xsd ================================================  ================================================ FILE: skills/pptx/scripts/office/schemas/ecma/fouth-edition/opc-digSig.xsd ================================================ ================================================ FILE: skills/pptx/scripts/office/schemas/ecma/fouth-edition/opc-relationships.xsd ================================================  ================================================ FILE: skills/pptx/scripts/office/schemas/mce/mc.xsd ================================================ ================================================ FILE: skills/pptx/scripts/office/schemas/microsoft/wml-2010.xsd ================================================ ================================================ FILE: skills/pptx/scripts/office/schemas/microsoft/wml-2012.xsd ================================================ ================================================ FILE: skills/pptx/scripts/office/schemas/microsoft/wml-2018.xsd ================================================ ================================================ FILE: skills/pptx/scripts/office/schemas/microsoft/wml-cex-2018.xsd ================================================ ================================================ FILE: skills/pptx/scripts/office/schemas/microsoft/wml-cid-2016.xsd ================================================ ================================================ FILE: skills/pptx/scripts/office/schemas/microsoft/wml-sdtdatahash-2020.xsd ================================================ ================================================ FILE: skills/pptx/scripts/office/schemas/microsoft/wml-symex-2015.xsd ================================================ ================================================ FILE: skills/pptx/scripts/office/soffice.py ================================================ """ Helper for running LibreOffice (soffice) in environments where AF_UNIX sockets may be blocked (e.g., sandboxed VMs). Detects the restriction at runtime and applies an LD_PRELOAD shim if needed. Usage: from office.soffice import run_soffice, get_soffice_env # Option 1 – run soffice directly result = run_soffice(["--headless", "--convert-to", "pdf", "input.docx"]) # Option 2 – get env dict for your own subprocess calls env = get_soffice_env() subprocess.run(["soffice", ...], env=env) """ import os import socket import subprocess import tempfile from pathlib import Path def get_soffice_env() -> dict: env = os.environ.copy() env["SAL_USE_VCLPLUGIN"] = "svp" if _needs_shim(): shim = _ensure_shim() env["LD_PRELOAD"] = str(shim) return env def run_soffice(args: list[str], **kwargs) -> subprocess.CompletedProcess: env = get_soffice_env() return subprocess.run(["soffice"] + args, env=env, **kwargs) _SHIM_SO = Path(tempfile.gettempdir()) / "lo_socket_shim.so" def _needs_shim() -> bool: try: s = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM) s.close() return False except OSError: return True def _ensure_shim() -> Path: if _SHIM_SO.exists(): return _SHIM_SO src = Path(tempfile.gettempdir()) / "lo_socket_shim.c" src.write_text(_SHIM_SOURCE) subprocess.run( ["gcc", "-shared", "-fPIC", "-o", str(_SHIM_SO), str(src), "-ldl"], check=True, capture_output=True, ) src.unlink() return _SHIM_SO _SHIM_SOURCE = r""" #define _GNU_SOURCE #include #include #include #include #include #include #include static int (*real_socket)(int, int, int); static int (*real_socketpair)(int, int, int, int[2]); static int (*real_listen)(int, int); static int (*real_accept)(int, struct sockaddr *, socklen_t *); static int (*real_close)(int); static int (*real_read)(int, void *, size_t); /* Per-FD bookkeeping (FDs >= 1024 are passed through unshimmed). */ static int is_shimmed[1024]; static int peer_of[1024]; static int wake_r[1024]; /* accept() blocks reading this */ static int wake_w[1024]; /* close() writes to this */ static int listener_fd = -1; /* FD that received listen() */ __attribute__((constructor)) static void init(void) { real_socket = dlsym(RTLD_NEXT, "socket"); real_socketpair = dlsym(RTLD_NEXT, "socketpair"); real_listen = dlsym(RTLD_NEXT, "listen"); real_accept = dlsym(RTLD_NEXT, "accept"); real_close = dlsym(RTLD_NEXT, "close"); real_read = dlsym(RTLD_NEXT, "read"); for (int i = 0; i < 1024; i++) { peer_of[i] = -1; wake_r[i] = -1; wake_w[i] = -1; } } /* ---- socket ---------------------------------------------------------- */ int socket(int domain, int type, int protocol) { if (domain == AF_UNIX) { int fd = real_socket(domain, type, protocol); if (fd >= 0) return fd; /* socket(AF_UNIX) blocked – fall back to socketpair(). */ int sv[2]; if (real_socketpair(domain, type, protocol, sv) == 0) { if (sv[0] >= 0 && sv[0] < 1024) { is_shimmed[sv[0]] = 1; peer_of[sv[0]] = sv[1]; int wp[2]; if (pipe(wp) == 0) { wake_r[sv[0]] = wp[0]; wake_w[sv[0]] = wp[1]; } } return sv[0]; } errno = EPERM; return -1; } return real_socket(domain, type, protocol); } /* ---- listen ---------------------------------------------------------- */ int listen(int sockfd, int backlog) { if (sockfd >= 0 && sockfd < 1024 && is_shimmed[sockfd]) { listener_fd = sockfd; return 0; } return real_listen(sockfd, backlog); } /* ---- accept ---------------------------------------------------------- */ int accept(int sockfd, struct sockaddr *addr, socklen_t *addrlen) { if (sockfd >= 0 && sockfd < 1024 && is_shimmed[sockfd]) { /* Block until close() writes to the wake pipe. */ if (wake_r[sockfd] >= 0) { char buf; real_read(wake_r[sockfd], &buf, 1); } errno = ECONNABORTED; return -1; } return real_accept(sockfd, addr, addrlen); } /* ---- close ----------------------------------------------------------- */ int close(int fd) { if (fd >= 0 && fd < 1024 && is_shimmed[fd]) { int was_listener = (fd == listener_fd); is_shimmed[fd] = 0; if (wake_w[fd] >= 0) { /* unblock accept() */ char c = 0; write(wake_w[fd], &c, 1); real_close(wake_w[fd]); wake_w[fd] = -1; } if (wake_r[fd] >= 0) { real_close(wake_r[fd]); wake_r[fd] = -1; } if (peer_of[fd] >= 0) { real_close(peer_of[fd]); peer_of[fd] = -1; } if (was_listener) _exit(0); /* conversion done – exit */ } return real_close(fd); } """ if __name__ == "__main__": import sys result = run_soffice(sys.argv[1:]) sys.exit(result.returncode) ================================================ FILE: skills/pptx/scripts/office/unpack.py ================================================ """Unpack Office files (DOCX, PPTX, XLSX) for editing. Extracts the ZIP archive, pretty-prints XML files, and optionally: - Merges adjacent runs with identical formatting (DOCX only) - Simplifies adjacent tracked changes from same author (DOCX only) Usage: python unpack.py [options] Examples: python unpack.py document.docx unpacked/ python unpack.py presentation.pptx unpacked/ python unpack.py document.docx unpacked/ --merge-runs false """ import argparse import sys import zipfile from pathlib import Path import defusedxml.minidom from helpers.merge_runs import merge_runs as do_merge_runs from helpers.simplify_redlines import simplify_redlines as do_simplify_redlines SMART_QUOTE_REPLACEMENTS = { "\u201c": "“", "\u201d": "”", "\u2018": "‘", "\u2019": "’", } def unpack( input_file: str, output_directory: str, merge_runs: bool = True, simplify_redlines: bool = True, ) -> tuple[None, str]: input_path = Path(input_file) output_path = Path(output_directory) suffix = input_path.suffix.lower() if not input_path.exists(): return None, f"Error: {input_file} does not exist" if suffix not in {".docx", ".pptx", ".xlsx"}: return None, f"Error: {input_file} must be a .docx, .pptx, or .xlsx file" try: output_path.mkdir(parents=True, exist_ok=True) with zipfile.ZipFile(input_path, "r") as zf: zf.extractall(output_path) xml_files = list(output_path.rglob("*.xml")) + list(output_path.rglob("*.rels")) for xml_file in xml_files: _pretty_print_xml(xml_file) message = f"Unpacked {input_file} ({len(xml_files)} XML files)" if suffix == ".docx": if simplify_redlines: simplify_count, _ = do_simplify_redlines(str(output_path)) message += f", simplified {simplify_count} tracked changes" if merge_runs: merge_count, _ = do_merge_runs(str(output_path)) message += f", merged {merge_count} runs" for xml_file in xml_files: _escape_smart_quotes(xml_file) return None, message except zipfile.BadZipFile: return None, f"Error: {input_file} is not a valid Office file" except Exception as e: return None, f"Error unpacking: {e}" def _pretty_print_xml(xml_file: Path) -> None: try: content = xml_file.read_text(encoding="utf-8") dom = defusedxml.minidom.parseString(content) xml_file.write_bytes(dom.toprettyxml(indent=" ", encoding="utf-8")) except Exception: pass def _escape_smart_quotes(xml_file: Path) -> None: try: content = xml_file.read_text(encoding="utf-8") for char, entity in SMART_QUOTE_REPLACEMENTS.items(): content = content.replace(char, entity) xml_file.write_text(content, encoding="utf-8") except Exception: pass if __name__ == "__main__": parser = argparse.ArgumentParser( description="Unpack an Office file (DOCX, PPTX, XLSX) for editing" ) parser.add_argument("input_file", help="Office file to unpack") parser.add_argument("output_directory", help="Output directory") parser.add_argument( "--merge-runs", type=lambda x: x.lower() == "true", default=True, metavar="true|false", help="Merge adjacent runs with identical formatting (DOCX only, default: true)", ) parser.add_argument( "--simplify-redlines", type=lambda x: x.lower() == "true", default=True, metavar="true|false", help="Merge adjacent tracked changes from same author (DOCX only, default: true)", ) args = parser.parse_args() _, message = unpack( args.input_file, args.output_directory, merge_runs=args.merge_runs, simplify_redlines=args.simplify_redlines, ) print(message) if "Error" in message: sys.exit(1) ================================================ FILE: skills/pptx/scripts/office/validate.py ================================================ """ Command line tool to validate Office document XML files against XSD schemas and tracked changes. Usage: python validate.py [--original ] [--auto-repair] [--author NAME] The first argument can be either: - An unpacked directory containing the Office document XML files - A packed Office file (.docx/.pptx/.xlsx) which will be unpacked to a temp directory Auto-repair fixes: - paraId/durableId values that exceed OOXML limits - Missing xml:space="preserve" on w:t elements with whitespace """ import argparse import sys import tempfile import zipfile from pathlib import Path from validators import DOCXSchemaValidator, PPTXSchemaValidator, RedliningValidator def main(): parser = argparse.ArgumentParser(description="Validate Office document XML files") parser.add_argument( "path", help="Path to unpacked directory or packed Office file (.docx/.pptx/.xlsx)", ) parser.add_argument( "--original", required=False, default=None, help="Path to original file (.docx/.pptx/.xlsx). If omitted, all XSD errors are reported and redlining validation is skipped.", ) parser.add_argument( "-v", "--verbose", action="store_true", help="Enable verbose output", ) parser.add_argument( "--auto-repair", action="store_true", help="Automatically repair common issues (hex IDs, whitespace preservation)", ) parser.add_argument( "--author", default="Claude", help="Author name for redlining validation (default: Claude)", ) args = parser.parse_args() path = Path(args.path) assert path.exists(), f"Error: {path} does not exist" original_file = None if args.original: original_file = Path(args.original) assert original_file.is_file(), f"Error: {original_file} is not a file" assert original_file.suffix.lower() in [".docx", ".pptx", ".xlsx"], ( f"Error: {original_file} must be a .docx, .pptx, or .xlsx file" ) file_extension = (original_file or path).suffix.lower() assert file_extension in [".docx", ".pptx", ".xlsx"], ( f"Error: Cannot determine file type from {path}. Use --original or provide a .docx/.pptx/.xlsx file." ) if path.is_file() and path.suffix.lower() in [".docx", ".pptx", ".xlsx"]: temp_dir = tempfile.mkdtemp() with zipfile.ZipFile(path, "r") as zf: zf.extractall(temp_dir) unpacked_dir = Path(temp_dir) else: assert path.is_dir(), f"Error: {path} is not a directory or Office file" unpacked_dir = path match file_extension: case ".docx": validators = [ DOCXSchemaValidator(unpacked_dir, original_file, verbose=args.verbose), ] if original_file: validators.append( RedliningValidator(unpacked_dir, original_file, verbose=args.verbose, author=args.author) ) case ".pptx": validators = [ PPTXSchemaValidator(unpacked_dir, original_file, verbose=args.verbose), ] case _: print(f"Error: Validation not supported for file type {file_extension}") sys.exit(1) if args.auto_repair: total_repairs = sum(v.repair() for v in validators) if total_repairs: print(f"Auto-repaired {total_repairs} issue(s)") success = all(v.validate() for v in validators) if success: print("All validations PASSED!") sys.exit(0 if success else 1) if __name__ == "__main__": main() ================================================ FILE: skills/pptx/scripts/office/validators/__init__.py ================================================ """ Validation modules for Word document processing. """ from .base import BaseSchemaValidator from .docx import DOCXSchemaValidator from .pptx import PPTXSchemaValidator from .redlining import RedliningValidator __all__ = [ "BaseSchemaValidator", "DOCXSchemaValidator", "PPTXSchemaValidator", "RedliningValidator", ] ================================================ FILE: skills/pptx/scripts/office/validators/base.py ================================================ """ Base validator with common validation logic for document files. """ import re from pathlib import Path import defusedxml.minidom import lxml.etree class BaseSchemaValidator: IGNORED_VALIDATION_ERRORS = [ "hyphenationZone", "purl.org/dc/terms", ] UNIQUE_ID_REQUIREMENTS = { "comment": ("id", "file"), "commentrangestart": ("id", "file"), "commentrangeend": ("id", "file"), "bookmarkstart": ("id", "file"), "bookmarkend": ("id", "file"), "sldid": ("id", "file"), "sldmasterid": ("id", "global"), "sldlayoutid": ("id", "global"), "cm": ("authorid", "file"), "sheet": ("sheetid", "file"), "definedname": ("id", "file"), "cxnsp": ("id", "file"), "sp": ("id", "file"), "pic": ("id", "file"), "grpsp": ("id", "file"), } EXCLUDED_ID_CONTAINERS = { "sectionlst", } ELEMENT_RELATIONSHIP_TYPES = {} SCHEMA_MAPPINGS = { "word": "ISO-IEC29500-4_2016/wml.xsd", "ppt": "ISO-IEC29500-4_2016/pml.xsd", "xl": "ISO-IEC29500-4_2016/sml.xsd", "[Content_Types].xml": "ecma/fouth-edition/opc-contentTypes.xsd", "app.xml": "ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd", "core.xml": "ecma/fouth-edition/opc-coreProperties.xsd", "custom.xml": "ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd", ".rels": "ecma/fouth-edition/opc-relationships.xsd", "people.xml": "microsoft/wml-2012.xsd", "commentsIds.xml": "microsoft/wml-cid-2016.xsd", "commentsExtensible.xml": "microsoft/wml-cex-2018.xsd", "commentsExtended.xml": "microsoft/wml-2012.xsd", "chart": "ISO-IEC29500-4_2016/dml-chart.xsd", "theme": "ISO-IEC29500-4_2016/dml-main.xsd", "drawing": "ISO-IEC29500-4_2016/dml-main.xsd", } MC_NAMESPACE = "http://schemas.openxmlformats.org/markup-compatibility/2006" XML_NAMESPACE = "http://www.w3.org/XML/1998/namespace" PACKAGE_RELATIONSHIPS_NAMESPACE = ( "http://schemas.openxmlformats.org/package/2006/relationships" ) OFFICE_RELATIONSHIPS_NAMESPACE = ( "http://schemas.openxmlformats.org/officeDocument/2006/relationships" ) CONTENT_TYPES_NAMESPACE = ( "http://schemas.openxmlformats.org/package/2006/content-types" ) MAIN_CONTENT_FOLDERS = {"word", "ppt", "xl"} OOXML_NAMESPACES = { "http://schemas.openxmlformats.org/officeDocument/2006/math", "http://schemas.openxmlformats.org/officeDocument/2006/relationships", "http://schemas.openxmlformats.org/schemaLibrary/2006/main", "http://schemas.openxmlformats.org/drawingml/2006/main", "http://schemas.openxmlformats.org/drawingml/2006/chart", "http://schemas.openxmlformats.org/drawingml/2006/chartDrawing", "http://schemas.openxmlformats.org/drawingml/2006/diagram", "http://schemas.openxmlformats.org/drawingml/2006/picture", "http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing", "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing", "http://schemas.openxmlformats.org/wordprocessingml/2006/main", "http://schemas.openxmlformats.org/presentationml/2006/main", "http://schemas.openxmlformats.org/spreadsheetml/2006/main", "http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes", "http://www.w3.org/XML/1998/namespace", } def __init__(self, unpacked_dir, original_file=None, verbose=False): self.unpacked_dir = Path(unpacked_dir).resolve() self.original_file = Path(original_file) if original_file else None self.verbose = verbose self.schemas_dir = Path(__file__).parent.parent / "schemas" patterns = ["*.xml", "*.rels"] self.xml_files = [ f for pattern in patterns for f in self.unpacked_dir.rglob(pattern) ] if not self.xml_files: print(f"Warning: No XML files found in {self.unpacked_dir}") def validate(self): raise NotImplementedError("Subclasses must implement the validate method") def repair(self) -> int: return self.repair_whitespace_preservation() def repair_whitespace_preservation(self) -> int: repairs = 0 for xml_file in self.xml_files: try: content = xml_file.read_text(encoding="utf-8") dom = defusedxml.minidom.parseString(content) modified = False for elem in dom.getElementsByTagName("*"): if elem.tagName.endswith(":t") and elem.firstChild: text = elem.firstChild.nodeValue if text and (text.startswith((' ', '\t')) or text.endswith((' ', '\t'))): if elem.getAttribute("xml:space") != "preserve": elem.setAttribute("xml:space", "preserve") text_preview = repr(text[:30]) + "..." if len(text) > 30 else repr(text) print(f" Repaired: {xml_file.name}: Added xml:space='preserve' to {elem.tagName}: {text_preview}") repairs += 1 modified = True if modified: xml_file.write_bytes(dom.toxml(encoding="UTF-8")) except Exception: pass return repairs def validate_xml(self): errors = [] for xml_file in self.xml_files: try: lxml.etree.parse(str(xml_file)) except lxml.etree.XMLSyntaxError as e: errors.append( f" {xml_file.relative_to(self.unpacked_dir)}: " f"Line {e.lineno}: {e.msg}" ) except Exception as e: errors.append( f" {xml_file.relative_to(self.unpacked_dir)}: " f"Unexpected error: {str(e)}" ) if errors: print(f"FAILED - Found {len(errors)} XML violations:") for error in errors: print(error) return False else: if self.verbose: print("PASSED - All XML files are well-formed") return True def validate_namespaces(self): errors = [] for xml_file in self.xml_files: try: root = lxml.etree.parse(str(xml_file)).getroot() declared = set(root.nsmap.keys()) - {None} for attr_val in [ v for k, v in root.attrib.items() if k.endswith("Ignorable") ]: undeclared = set(attr_val.split()) - declared errors.extend( f" {xml_file.relative_to(self.unpacked_dir)}: " f"Namespace '{ns}' in Ignorable but not declared" for ns in undeclared ) except lxml.etree.XMLSyntaxError: continue if errors: print(f"FAILED - {len(errors)} namespace issues:") for error in errors: print(error) return False if self.verbose: print("PASSED - All namespace prefixes properly declared") return True def validate_unique_ids(self): errors = [] global_ids = {} for xml_file in self.xml_files: try: root = lxml.etree.parse(str(xml_file)).getroot() file_ids = {} mc_elements = root.xpath( ".//mc:AlternateContent", namespaces={"mc": self.MC_NAMESPACE} ) for elem in mc_elements: elem.getparent().remove(elem) for elem in root.iter(): tag = ( elem.tag.split("}")[-1].lower() if "}" in elem.tag else elem.tag.lower() ) if tag in self.UNIQUE_ID_REQUIREMENTS: in_excluded_container = any( ancestor.tag.split("}")[-1].lower() in self.EXCLUDED_ID_CONTAINERS for ancestor in elem.iterancestors() ) if in_excluded_container: continue attr_name, scope = self.UNIQUE_ID_REQUIREMENTS[tag] id_value = None for attr, value in elem.attrib.items(): attr_local = ( attr.split("}")[-1].lower() if "}" in attr else attr.lower() ) if attr_local == attr_name: id_value = value break if id_value is not None: if scope == "global": if id_value in global_ids: prev_file, prev_line, prev_tag = global_ids[ id_value ] errors.append( f" {xml_file.relative_to(self.unpacked_dir)}: " f"Line {elem.sourceline}: Global ID '{id_value}' in <{tag}> " f"already used in {prev_file} at line {prev_line} in <{prev_tag}>" ) else: global_ids[id_value] = ( xml_file.relative_to(self.unpacked_dir), elem.sourceline, tag, ) elif scope == "file": key = (tag, attr_name) if key not in file_ids: file_ids[key] = {} if id_value in file_ids[key]: prev_line = file_ids[key][id_value] errors.append( f" {xml_file.relative_to(self.unpacked_dir)}: " f"Line {elem.sourceline}: Duplicate {attr_name}='{id_value}' in <{tag}> " f"(first occurrence at line {prev_line})" ) else: file_ids[key][id_value] = elem.sourceline except (lxml.etree.XMLSyntaxError, Exception) as e: errors.append( f" {xml_file.relative_to(self.unpacked_dir)}: Error: {e}" ) if errors: print(f"FAILED - Found {len(errors)} ID uniqueness violations:") for error in errors: print(error) return False else: if self.verbose: print("PASSED - All required IDs are unique") return True def validate_file_references(self): errors = [] rels_files = list(self.unpacked_dir.rglob("*.rels")) if not rels_files: if self.verbose: print("PASSED - No .rels files found") return True all_files = [] for file_path in self.unpacked_dir.rglob("*"): if ( file_path.is_file() and file_path.name != "[Content_Types].xml" and not file_path.name.endswith(".rels") ): all_files.append(file_path.resolve()) all_referenced_files = set() if self.verbose: print( f"Found {len(rels_files)} .rels files and {len(all_files)} target files" ) for rels_file in rels_files: try: rels_root = lxml.etree.parse(str(rels_file)).getroot() rels_dir = rels_file.parent referenced_files = set() broken_refs = [] for rel in rels_root.findall( ".//ns:Relationship", namespaces={"ns": self.PACKAGE_RELATIONSHIPS_NAMESPACE}, ): target = rel.get("Target") if target and not target.startswith( ("http", "mailto:") ): if target.startswith("/"): target_path = self.unpacked_dir / target.lstrip("/") elif rels_file.name == ".rels": target_path = self.unpacked_dir / target else: base_dir = rels_dir.parent target_path = base_dir / target try: target_path = target_path.resolve() if target_path.exists() and target_path.is_file(): referenced_files.add(target_path) all_referenced_files.add(target_path) else: broken_refs.append((target, rel.sourceline)) except (OSError, ValueError): broken_refs.append((target, rel.sourceline)) if broken_refs: rel_path = rels_file.relative_to(self.unpacked_dir) for broken_ref, line_num in broken_refs: errors.append( f" {rel_path}: Line {line_num}: Broken reference to {broken_ref}" ) except Exception as e: rel_path = rels_file.relative_to(self.unpacked_dir) errors.append(f" Error parsing {rel_path}: {e}") unreferenced_files = set(all_files) - all_referenced_files if unreferenced_files: for unref_file in sorted(unreferenced_files): unref_rel_path = unref_file.relative_to(self.unpacked_dir) errors.append(f" Unreferenced file: {unref_rel_path}") if errors: print(f"FAILED - Found {len(errors)} relationship validation errors:") for error in errors: print(error) print( "CRITICAL: These errors will cause the document to appear corrupt. " + "Broken references MUST be fixed, " + "and unreferenced files MUST be referenced or removed." ) return False else: if self.verbose: print( "PASSED - All references are valid and all files are properly referenced" ) return True def validate_all_relationship_ids(self): import lxml.etree errors = [] for xml_file in self.xml_files: if xml_file.suffix == ".rels": continue rels_dir = xml_file.parent / "_rels" rels_file = rels_dir / f"{xml_file.name}.rels" if not rels_file.exists(): continue try: rels_root = lxml.etree.parse(str(rels_file)).getroot() rid_to_type = {} for rel in rels_root.findall( f".//{{{self.PACKAGE_RELATIONSHIPS_NAMESPACE}}}Relationship" ): rid = rel.get("Id") rel_type = rel.get("Type", "") if rid: if rid in rid_to_type: rels_rel_path = rels_file.relative_to(self.unpacked_dir) errors.append( f" {rels_rel_path}: Line {rel.sourceline}: " f"Duplicate relationship ID '{rid}' (IDs must be unique)" ) type_name = ( rel_type.split("/")[-1] if "/" in rel_type else rel_type ) rid_to_type[rid] = type_name xml_root = lxml.etree.parse(str(xml_file)).getroot() r_ns = self.OFFICE_RELATIONSHIPS_NAMESPACE rid_attrs_to_check = ["id", "embed", "link"] for elem in xml_root.iter(): for attr_name in rid_attrs_to_check: rid_attr = elem.get(f"{{{r_ns}}}{attr_name}") if not rid_attr: continue xml_rel_path = xml_file.relative_to(self.unpacked_dir) elem_name = ( elem.tag.split("}")[-1] if "}" in elem.tag else elem.tag ) if rid_attr not in rid_to_type: errors.append( f" {xml_rel_path}: Line {elem.sourceline}: " f"<{elem_name}> r:{attr_name} references non-existent relationship '{rid_attr}' " f"(valid IDs: {', '.join(sorted(rid_to_type.keys())[:5])}{'...' if len(rid_to_type) > 5 else ''})" ) elif attr_name == "id" and self.ELEMENT_RELATIONSHIP_TYPES: expected_type = self._get_expected_relationship_type( elem_name ) if expected_type: actual_type = rid_to_type[rid_attr] if expected_type not in actual_type.lower(): errors.append( f" {xml_rel_path}: Line {elem.sourceline}: " f"<{elem_name}> references '{rid_attr}' which points to '{actual_type}' " f"but should point to a '{expected_type}' relationship" ) except Exception as e: xml_rel_path = xml_file.relative_to(self.unpacked_dir) errors.append(f" Error processing {xml_rel_path}: {e}") if errors: print(f"FAILED - Found {len(errors)} relationship ID reference errors:") for error in errors: print(error) print("\nThese ID mismatches will cause the document to appear corrupt!") return False else: if self.verbose: print("PASSED - All relationship ID references are valid") return True def _get_expected_relationship_type(self, element_name): elem_lower = element_name.lower() if elem_lower in self.ELEMENT_RELATIONSHIP_TYPES: return self.ELEMENT_RELATIONSHIP_TYPES[elem_lower] if elem_lower.endswith("id") and len(elem_lower) > 2: prefix = elem_lower[:-2] if prefix.endswith("master"): return prefix.lower() elif prefix.endswith("layout"): return prefix.lower() else: if prefix == "sld": return "slide" return prefix.lower() if elem_lower.endswith("reference") and len(elem_lower) > 9: prefix = elem_lower[:-9] return prefix.lower() return None def validate_content_types(self): errors = [] content_types_file = self.unpacked_dir / "[Content_Types].xml" if not content_types_file.exists(): print("FAILED - [Content_Types].xml file not found") return False try: root = lxml.etree.parse(str(content_types_file)).getroot() declared_parts = set() declared_extensions = set() for override in root.findall( f".//{{{self.CONTENT_TYPES_NAMESPACE}}}Override" ): part_name = override.get("PartName") if part_name is not None: declared_parts.add(part_name.lstrip("/")) for default in root.findall( f".//{{{self.CONTENT_TYPES_NAMESPACE}}}Default" ): extension = default.get("Extension") if extension is not None: declared_extensions.add(extension.lower()) declarable_roots = { "sld", "sldLayout", "sldMaster", "presentation", "document", "workbook", "worksheet", "theme", } media_extensions = { "png": "image/png", "jpg": "image/jpeg", "jpeg": "image/jpeg", "gif": "image/gif", "bmp": "image/bmp", "tiff": "image/tiff", "wmf": "image/x-wmf", "emf": "image/x-emf", } all_files = list(self.unpacked_dir.rglob("*")) all_files = [f for f in all_files if f.is_file()] for xml_file in self.xml_files: path_str = str(xml_file.relative_to(self.unpacked_dir)).replace( "\\", "/" ) if any( skip in path_str for skip in [".rels", "[Content_Types]", "docProps/", "_rels/"] ): continue try: root_tag = lxml.etree.parse(str(xml_file)).getroot().tag root_name = root_tag.split("}")[-1] if "}" in root_tag else root_tag if root_name in declarable_roots and path_str not in declared_parts: errors.append( f" {path_str}: File with <{root_name}> root not declared in [Content_Types].xml" ) except Exception: continue for file_path in all_files: if file_path.suffix.lower() in {".xml", ".rels"}: continue if file_path.name == "[Content_Types].xml": continue if "_rels" in file_path.parts or "docProps" in file_path.parts: continue extension = file_path.suffix.lstrip(".").lower() if extension and extension not in declared_extensions: if extension in media_extensions: relative_path = file_path.relative_to(self.unpacked_dir) errors.append( f' {relative_path}: File with extension \'{extension}\' not declared in [Content_Types].xml - should add: ' ) except Exception as e: errors.append(f" Error parsing [Content_Types].xml: {e}") if errors: print(f"FAILED - Found {len(errors)} content type declaration errors:") for error in errors: print(error) return False else: if self.verbose: print( "PASSED - All content files are properly declared in [Content_Types].xml" ) return True def validate_file_against_xsd(self, xml_file, verbose=False): xml_file = Path(xml_file).resolve() unpacked_dir = self.unpacked_dir.resolve() is_valid, current_errors = self._validate_single_file_xsd( xml_file, unpacked_dir ) if is_valid is None: return None, set() elif is_valid: return True, set() original_errors = self._get_original_file_errors(xml_file) assert current_errors is not None new_errors = current_errors - original_errors new_errors = { e for e in new_errors if not any(pattern in e for pattern in self.IGNORED_VALIDATION_ERRORS) } if new_errors: if verbose: relative_path = xml_file.relative_to(unpacked_dir) print(f"FAILED - {relative_path}: {len(new_errors)} new error(s)") for error in list(new_errors)[:3]: truncated = error[:250] + "..." if len(error) > 250 else error print(f" - {truncated}") return False, new_errors else: if verbose: print( f"PASSED - No new errors (original had {len(current_errors)} errors)" ) return True, set() def validate_against_xsd(self): new_errors = [] original_error_count = 0 valid_count = 0 skipped_count = 0 for xml_file in self.xml_files: relative_path = str(xml_file.relative_to(self.unpacked_dir)) is_valid, new_file_errors = self.validate_file_against_xsd( xml_file, verbose=False ) if is_valid is None: skipped_count += 1 continue elif is_valid and not new_file_errors: valid_count += 1 continue elif is_valid: original_error_count += 1 valid_count += 1 continue new_errors.append(f" {relative_path}: {len(new_file_errors)} new error(s)") for error in list(new_file_errors)[:3]: new_errors.append( f" - {error[:250]}..." if len(error) > 250 else f" - {error}" ) if self.verbose: print(f"Validated {len(self.xml_files)} files:") print(f" - Valid: {valid_count}") print(f" - Skipped (no schema): {skipped_count}") if original_error_count: print(f" - With original errors (ignored): {original_error_count}") print( f" - With NEW errors: {len(new_errors) > 0 and len([e for e in new_errors if not e.startswith(' ')]) or 0}" ) if new_errors: print("\nFAILED - Found NEW validation errors:") for error in new_errors: print(error) return False else: if self.verbose: print("\nPASSED - No new XSD validation errors introduced") return True def _get_schema_path(self, xml_file): if xml_file.name in self.SCHEMA_MAPPINGS: return self.schemas_dir / self.SCHEMA_MAPPINGS[xml_file.name] if xml_file.suffix == ".rels": return self.schemas_dir / self.SCHEMA_MAPPINGS[".rels"] if "charts/" in str(xml_file) and xml_file.name.startswith("chart"): return self.schemas_dir / self.SCHEMA_MAPPINGS["chart"] if "theme/" in str(xml_file) and xml_file.name.startswith("theme"): return self.schemas_dir / self.SCHEMA_MAPPINGS["theme"] if xml_file.parent.name in self.MAIN_CONTENT_FOLDERS: return self.schemas_dir / self.SCHEMA_MAPPINGS[xml_file.parent.name] return None def _clean_ignorable_namespaces(self, xml_doc): xml_string = lxml.etree.tostring(xml_doc, encoding="unicode") xml_copy = lxml.etree.fromstring(xml_string) for elem in xml_copy.iter(): attrs_to_remove = [] for attr in elem.attrib: if "{" in attr: ns = attr.split("}")[0][1:] if ns not in self.OOXML_NAMESPACES: attrs_to_remove.append(attr) for attr in attrs_to_remove: del elem.attrib[attr] self._remove_ignorable_elements(xml_copy) return lxml.etree.ElementTree(xml_copy) def _remove_ignorable_elements(self, root): elements_to_remove = [] for elem in list(root): if not hasattr(elem, "tag") or callable(elem.tag): continue tag_str = str(elem.tag) if tag_str.startswith("{"): ns = tag_str.split("}")[0][1:] if ns not in self.OOXML_NAMESPACES: elements_to_remove.append(elem) continue self._remove_ignorable_elements(elem) for elem in elements_to_remove: root.remove(elem) def _preprocess_for_mc_ignorable(self, xml_doc): root = xml_doc.getroot() if f"{{{self.MC_NAMESPACE}}}Ignorable" in root.attrib: del root.attrib[f"{{{self.MC_NAMESPACE}}}Ignorable"] return xml_doc def _validate_single_file_xsd(self, xml_file, base_path): schema_path = self._get_schema_path(xml_file) if not schema_path: return None, None try: with open(schema_path, "rb") as xsd_file: parser = lxml.etree.XMLParser() xsd_doc = lxml.etree.parse( xsd_file, parser=parser, base_url=str(schema_path) ) schema = lxml.etree.XMLSchema(xsd_doc) with open(xml_file, "r") as f: xml_doc = lxml.etree.parse(f) xml_doc, _ = self._remove_template_tags_from_text_nodes(xml_doc) xml_doc = self._preprocess_for_mc_ignorable(xml_doc) relative_path = xml_file.relative_to(base_path) if ( relative_path.parts and relative_path.parts[0] in self.MAIN_CONTENT_FOLDERS ): xml_doc = self._clean_ignorable_namespaces(xml_doc) if schema.validate(xml_doc): return True, set() else: errors = set() for error in schema.error_log: errors.add(error.message) return False, errors except Exception as e: return False, {str(e)} def _get_original_file_errors(self, xml_file): if self.original_file is None: return set() import tempfile import zipfile xml_file = Path(xml_file).resolve() unpacked_dir = self.unpacked_dir.resolve() relative_path = xml_file.relative_to(unpacked_dir) with tempfile.TemporaryDirectory() as temp_dir: temp_path = Path(temp_dir) with zipfile.ZipFile(self.original_file, "r") as zip_ref: zip_ref.extractall(temp_path) original_xml_file = temp_path / relative_path if not original_xml_file.exists(): return set() is_valid, errors = self._validate_single_file_xsd( original_xml_file, temp_path ) return errors if errors else set() def _remove_template_tags_from_text_nodes(self, xml_doc): warnings = [] template_pattern = re.compile(r"\{\{[^}]*\}\}") xml_string = lxml.etree.tostring(xml_doc, encoding="unicode") xml_copy = lxml.etree.fromstring(xml_string) def process_text_content(text, content_type): if not text: return text matches = list(template_pattern.finditer(text)) if matches: for match in matches: warnings.append( f"Found template tag in {content_type}: {match.group()}" ) return template_pattern.sub("", text) return text for elem in xml_copy.iter(): if not hasattr(elem, "tag") or callable(elem.tag): continue tag_str = str(elem.tag) if tag_str.endswith("}t") or tag_str == "t": continue elem.text = process_text_content(elem.text, "text content") elem.tail = process_text_content(elem.tail, "tail content") return lxml.etree.ElementTree(xml_copy), warnings if __name__ == "__main__": raise RuntimeError("This module should not be run directly.") ================================================ FILE: skills/pptx/scripts/office/validators/docx.py ================================================ """ Validator for Word document XML files against XSD schemas. """ import random import re import tempfile import zipfile import defusedxml.minidom import lxml.etree from .base import BaseSchemaValidator class DOCXSchemaValidator(BaseSchemaValidator): WORD_2006_NAMESPACE = "http://schemas.openxmlformats.org/wordprocessingml/2006/main" W14_NAMESPACE = "http://schemas.microsoft.com/office/word/2010/wordml" W16CID_NAMESPACE = "http://schemas.microsoft.com/office/word/2016/wordml/cid" ELEMENT_RELATIONSHIP_TYPES = {} def validate(self): if not self.validate_xml(): return False all_valid = True if not self.validate_namespaces(): all_valid = False if not self.validate_unique_ids(): all_valid = False if not self.validate_file_references(): all_valid = False if not self.validate_content_types(): all_valid = False if not self.validate_against_xsd(): all_valid = False if not self.validate_whitespace_preservation(): all_valid = False if not self.validate_deletions(): all_valid = False if not self.validate_insertions(): all_valid = False if not self.validate_all_relationship_ids(): all_valid = False if not self.validate_id_constraints(): all_valid = False if not self.validate_comment_markers(): all_valid = False self.compare_paragraph_counts() return all_valid def validate_whitespace_preservation(self): errors = [] for xml_file in self.xml_files: if xml_file.name != "document.xml": continue try: root = lxml.etree.parse(str(xml_file)).getroot() for elem in root.iter(f"{{{self.WORD_2006_NAMESPACE}}}t"): if elem.text: text = elem.text if re.search(r"^[ \t\n\r]", text) or re.search( r"[ \t\n\r]$", text ): xml_space_attr = f"{{{self.XML_NAMESPACE}}}space" if ( xml_space_attr not in elem.attrib or elem.attrib[xml_space_attr] != "preserve" ): text_preview = ( repr(text)[:50] + "..." if len(repr(text)) > 50 else repr(text) ) errors.append( f" {xml_file.relative_to(self.unpacked_dir)}: " f"Line {elem.sourceline}: w:t element with whitespace missing xml:space='preserve': {text_preview}" ) except (lxml.etree.XMLSyntaxError, Exception) as e: errors.append( f" {xml_file.relative_to(self.unpacked_dir)}: Error: {e}" ) if errors: print(f"FAILED - Found {len(errors)} whitespace preservation violations:") for error in errors: print(error) return False else: if self.verbose: print("PASSED - All whitespace is properly preserved") return True def validate_deletions(self): errors = [] for xml_file in self.xml_files: if xml_file.name != "document.xml": continue try: root = lxml.etree.parse(str(xml_file)).getroot() namespaces = {"w": self.WORD_2006_NAMESPACE} for t_elem in root.xpath(".//w:del//w:t", namespaces=namespaces): if t_elem.text: text_preview = ( repr(t_elem.text)[:50] + "..." if len(repr(t_elem.text)) > 50 else repr(t_elem.text) ) errors.append( f" {xml_file.relative_to(self.unpacked_dir)}: " f"Line {t_elem.sourceline}: found within : {text_preview}" ) for instr_elem in root.xpath( ".//w:del//w:instrText", namespaces=namespaces ): text_preview = ( repr(instr_elem.text or "")[:50] + "..." if len(repr(instr_elem.text or "")) > 50 else repr(instr_elem.text or "") ) errors.append( f" {xml_file.relative_to(self.unpacked_dir)}: " f"Line {instr_elem.sourceline}: found within (use ): {text_preview}" ) except (lxml.etree.XMLSyntaxError, Exception) as e: errors.append( f" {xml_file.relative_to(self.unpacked_dir)}: Error: {e}" ) if errors: print(f"FAILED - Found {len(errors)} deletion validation violations:") for error in errors: print(error) return False else: if self.verbose: print("PASSED - No w:t elements found within w:del elements") return True def count_paragraphs_in_unpacked(self): count = 0 for xml_file in self.xml_files: if xml_file.name != "document.xml": continue try: root = lxml.etree.parse(str(xml_file)).getroot() paragraphs = root.findall(f".//{{{self.WORD_2006_NAMESPACE}}}p") count = len(paragraphs) except Exception as e: print(f"Error counting paragraphs in unpacked document: {e}") return count def count_paragraphs_in_original(self): original = self.original_file if original is None: return 0 count = 0 try: with tempfile.TemporaryDirectory() as temp_dir: with zipfile.ZipFile(original, "r") as zip_ref: zip_ref.extractall(temp_dir) doc_xml_path = temp_dir + "/word/document.xml" root = lxml.etree.parse(doc_xml_path).getroot() paragraphs = root.findall(f".//{{{self.WORD_2006_NAMESPACE}}}p") count = len(paragraphs) except Exception as e: print(f"Error counting paragraphs in original document: {e}") return count def validate_insertions(self): errors = [] for xml_file in self.xml_files: if xml_file.name != "document.xml": continue try: root = lxml.etree.parse(str(xml_file)).getroot() namespaces = {"w": self.WORD_2006_NAMESPACE} invalid_elements = root.xpath( ".//w:ins//w:delText[not(ancestor::w:del)]", namespaces=namespaces ) for elem in invalid_elements: text_preview = ( repr(elem.text or "")[:50] + "..." if len(repr(elem.text or "")) > 50 else repr(elem.text or "") ) errors.append( f" {xml_file.relative_to(self.unpacked_dir)}: " f"Line {elem.sourceline}: within : {text_preview}" ) except (lxml.etree.XMLSyntaxError, Exception) as e: errors.append( f" {xml_file.relative_to(self.unpacked_dir)}: Error: {e}" ) if errors: print(f"FAILED - Found {len(errors)} insertion validation violations:") for error in errors: print(error) return False else: if self.verbose: print("PASSED - No w:delText elements within w:ins elements") return True def compare_paragraph_counts(self): original_count = self.count_paragraphs_in_original() new_count = self.count_paragraphs_in_unpacked() diff = new_count - original_count diff_str = f"+{diff}" if diff > 0 else str(diff) print(f"\nParagraphs: {original_count} → {new_count} ({diff_str})") def _parse_id_value(self, val: str, base: int = 16) -> int: return int(val, base) def validate_id_constraints(self): errors = [] para_id_attr = f"{{{self.W14_NAMESPACE}}}paraId" durable_id_attr = f"{{{self.W16CID_NAMESPACE}}}durableId" for xml_file in self.xml_files: try: for elem in lxml.etree.parse(str(xml_file)).iter(): if val := elem.get(para_id_attr): if self._parse_id_value(val, base=16) >= 0x80000000: errors.append( f" {xml_file.name}:{elem.sourceline}: paraId={val} >= 0x80000000" ) if val := elem.get(durable_id_attr): if xml_file.name == "numbering.xml": try: if self._parse_id_value(val, base=10) >= 0x7FFFFFFF: errors.append( f" {xml_file.name}:{elem.sourceline}: " f"durableId={val} >= 0x7FFFFFFF" ) except ValueError: errors.append( f" {xml_file.name}:{elem.sourceline}: " f"durableId={val} must be decimal in numbering.xml" ) else: if self._parse_id_value(val, base=16) >= 0x7FFFFFFF: errors.append( f" {xml_file.name}:{elem.sourceline}: " f"durableId={val} >= 0x7FFFFFFF" ) except Exception: pass if errors: print(f"FAILED - {len(errors)} ID constraint violations:") for e in errors: print(e) elif self.verbose: print("PASSED - All paraId/durableId values within constraints") return not errors def validate_comment_markers(self): errors = [] document_xml = None comments_xml = None for xml_file in self.xml_files: if xml_file.name == "document.xml" and "word" in str(xml_file): document_xml = xml_file elif xml_file.name == "comments.xml": comments_xml = xml_file if not document_xml: if self.verbose: print("PASSED - No document.xml found (skipping comment validation)") return True try: doc_root = lxml.etree.parse(str(document_xml)).getroot() namespaces = {"w": self.WORD_2006_NAMESPACE} range_starts = { elem.get(f"{{{self.WORD_2006_NAMESPACE}}}id") for elem in doc_root.xpath( ".//w:commentRangeStart", namespaces=namespaces ) } range_ends = { elem.get(f"{{{self.WORD_2006_NAMESPACE}}}id") for elem in doc_root.xpath( ".//w:commentRangeEnd", namespaces=namespaces ) } references = { elem.get(f"{{{self.WORD_2006_NAMESPACE}}}id") for elem in doc_root.xpath( ".//w:commentReference", namespaces=namespaces ) } orphaned_ends = range_ends - range_starts for comment_id in sorted( orphaned_ends, key=lambda x: int(x) if x and x.isdigit() else 0 ): errors.append( f' document.xml: commentRangeEnd id="{comment_id}" has no matching commentRangeStart' ) orphaned_starts = range_starts - range_ends for comment_id in sorted( orphaned_starts, key=lambda x: int(x) if x and x.isdigit() else 0 ): errors.append( f' document.xml: commentRangeStart id="{comment_id}" has no matching commentRangeEnd' ) comment_ids = set() if comments_xml and comments_xml.exists(): comments_root = lxml.etree.parse(str(comments_xml)).getroot() comment_ids = { elem.get(f"{{{self.WORD_2006_NAMESPACE}}}id") for elem in comments_root.xpath( ".//w:comment", namespaces=namespaces ) } marker_ids = range_starts | range_ends | references invalid_refs = marker_ids - comment_ids for comment_id in sorted( invalid_refs, key=lambda x: int(x) if x and x.isdigit() else 0 ): if comment_id: errors.append( f' document.xml: marker id="{comment_id}" references non-existent comment' ) except (lxml.etree.XMLSyntaxError, Exception) as e: errors.append(f" Error parsing XML: {e}") if errors: print(f"FAILED - {len(errors)} comment marker violations:") for error in errors: print(error) return False else: if self.verbose: print("PASSED - All comment markers properly paired") return True def repair(self) -> int: repairs = super().repair() repairs += self.repair_durableId() return repairs def repair_durableId(self) -> int: repairs = 0 for xml_file in self.xml_files: try: content = xml_file.read_text(encoding="utf-8") dom = defusedxml.minidom.parseString(content) modified = False for elem in dom.getElementsByTagName("*"): if not elem.hasAttribute("w16cid:durableId"): continue durable_id = elem.getAttribute("w16cid:durableId") needs_repair = False if xml_file.name == "numbering.xml": try: needs_repair = ( self._parse_id_value(durable_id, base=10) >= 0x7FFFFFFF ) except ValueError: needs_repair = True else: try: needs_repair = ( self._parse_id_value(durable_id, base=16) >= 0x7FFFFFFF ) except ValueError: needs_repair = True if needs_repair: value = random.randint(1, 0x7FFFFFFE) if xml_file.name == "numbering.xml": new_id = str(value) else: new_id = f"{value:08X}" elem.setAttribute("w16cid:durableId", new_id) print( f" Repaired: {xml_file.name}: durableId {durable_id} → {new_id}" ) repairs += 1 modified = True if modified: xml_file.write_bytes(dom.toxml(encoding="UTF-8")) except Exception: pass return repairs if __name__ == "__main__": raise RuntimeError("This module should not be run directly.") ================================================ FILE: skills/pptx/scripts/office/validators/pptx.py ================================================ """ Validator for PowerPoint presentation XML files against XSD schemas. """ import re from .base import BaseSchemaValidator class PPTXSchemaValidator(BaseSchemaValidator): PRESENTATIONML_NAMESPACE = ( "http://schemas.openxmlformats.org/presentationml/2006/main" ) ELEMENT_RELATIONSHIP_TYPES = { "sldid": "slide", "sldmasterid": "slidemaster", "notesmasterid": "notesmaster", "sldlayoutid": "slidelayout", "themeid": "theme", "tablestyleid": "tablestyles", } def validate(self): if not self.validate_xml(): return False all_valid = True if not self.validate_namespaces(): all_valid = False if not self.validate_unique_ids(): all_valid = False if not self.validate_uuid_ids(): all_valid = False if not self.validate_file_references(): all_valid = False if not self.validate_slide_layout_ids(): all_valid = False if not self.validate_content_types(): all_valid = False if not self.validate_against_xsd(): all_valid = False if not self.validate_notes_slide_references(): all_valid = False if not self.validate_all_relationship_ids(): all_valid = False if not self.validate_no_duplicate_slide_layouts(): all_valid = False return all_valid def validate_uuid_ids(self): import lxml.etree errors = [] uuid_pattern = re.compile( r"^[\{\(]?[0-9A-Fa-f]{8}-?[0-9A-Fa-f]{4}-?[0-9A-Fa-f]{4}-?[0-9A-Fa-f]{4}-?[0-9A-Fa-f]{12}[\}\)]?$" ) for xml_file in self.xml_files: try: root = lxml.etree.parse(str(xml_file)).getroot() for elem in root.iter(): for attr, value in elem.attrib.items(): attr_name = attr.split("}")[-1].lower() if attr_name == "id" or attr_name.endswith("id"): if self._looks_like_uuid(value): if not uuid_pattern.match(value): errors.append( f" {xml_file.relative_to(self.unpacked_dir)}: " f"Line {elem.sourceline}: ID '{value}' appears to be a UUID but contains invalid hex characters" ) except (lxml.etree.XMLSyntaxError, Exception) as e: errors.append( f" {xml_file.relative_to(self.unpacked_dir)}: Error: {e}" ) if errors: print(f"FAILED - Found {len(errors)} UUID ID validation errors:") for error in errors: print(error) return False else: if self.verbose: print("PASSED - All UUID-like IDs contain valid hex values") return True def _looks_like_uuid(self, value): clean_value = value.strip("{}()").replace("-", "") return len(clean_value) == 32 and all(c.isalnum() for c in clean_value) def validate_slide_layout_ids(self): import lxml.etree errors = [] slide_masters = list(self.unpacked_dir.glob("ppt/slideMasters/*.xml")) if not slide_masters: if self.verbose: print("PASSED - No slide masters found") return True for slide_master in slide_masters: try: root = lxml.etree.parse(str(slide_master)).getroot() rels_file = slide_master.parent / "_rels" / f"{slide_master.name}.rels" if not rels_file.exists(): errors.append( f" {slide_master.relative_to(self.unpacked_dir)}: " f"Missing relationships file: {rels_file.relative_to(self.unpacked_dir)}" ) continue rels_root = lxml.etree.parse(str(rels_file)).getroot() valid_layout_rids = set() for rel in rels_root.findall( f".//{{{self.PACKAGE_RELATIONSHIPS_NAMESPACE}}}Relationship" ): rel_type = rel.get("Type", "") if "slideLayout" in rel_type: valid_layout_rids.add(rel.get("Id")) for sld_layout_id in root.findall( f".//{{{self.PRESENTATIONML_NAMESPACE}}}sldLayoutId" ): r_id = sld_layout_id.get( f"{{{self.OFFICE_RELATIONSHIPS_NAMESPACE}}}id" ) layout_id = sld_layout_id.get("id") if r_id and r_id not in valid_layout_rids: errors.append( f" {slide_master.relative_to(self.unpacked_dir)}: " f"Line {sld_layout_id.sourceline}: sldLayoutId with id='{layout_id}' " f"references r:id='{r_id}' which is not found in slide layout relationships" ) except (lxml.etree.XMLSyntaxError, Exception) as e: errors.append( f" {slide_master.relative_to(self.unpacked_dir)}: Error: {e}" ) if errors: print(f"FAILED - Found {len(errors)} slide layout ID validation errors:") for error in errors: print(error) print( "Remove invalid references or add missing slide layouts to the relationships file." ) return False else: if self.verbose: print("PASSED - All slide layout IDs reference valid slide layouts") return True def validate_no_duplicate_slide_layouts(self): import lxml.etree errors = [] slide_rels_files = list(self.unpacked_dir.glob("ppt/slides/_rels/*.xml.rels")) for rels_file in slide_rels_files: try: root = lxml.etree.parse(str(rels_file)).getroot() layout_rels = [ rel for rel in root.findall( f".//{{{self.PACKAGE_RELATIONSHIPS_NAMESPACE}}}Relationship" ) if "slideLayout" in rel.get("Type", "") ] if len(layout_rels) > 1: errors.append( f" {rels_file.relative_to(self.unpacked_dir)}: has {len(layout_rels)} slideLayout references" ) except Exception as e: errors.append( f" {rels_file.relative_to(self.unpacked_dir)}: Error: {e}" ) if errors: print("FAILED - Found slides with duplicate slideLayout references:") for error in errors: print(error) return False else: if self.verbose: print("PASSED - All slides have exactly one slideLayout reference") return True def validate_notes_slide_references(self): import lxml.etree errors = [] notes_slide_references = {} slide_rels_files = list(self.unpacked_dir.glob("ppt/slides/_rels/*.xml.rels")) if not slide_rels_files: if self.verbose: print("PASSED - No slide relationship files found") return True for rels_file in slide_rels_files: try: root = lxml.etree.parse(str(rels_file)).getroot() for rel in root.findall( f".//{{{self.PACKAGE_RELATIONSHIPS_NAMESPACE}}}Relationship" ): rel_type = rel.get("Type", "") if "notesSlide" in rel_type: target = rel.get("Target", "") if target: normalized_target = target.replace("../", "") slide_name = rels_file.stem.replace( ".xml", "" ) if normalized_target not in notes_slide_references: notes_slide_references[normalized_target] = [] notes_slide_references[normalized_target].append( (slide_name, rels_file) ) except (lxml.etree.XMLSyntaxError, Exception) as e: errors.append( f" {rels_file.relative_to(self.unpacked_dir)}: Error: {e}" ) for target, references in notes_slide_references.items(): if len(references) > 1: slide_names = [ref[0] for ref in references] errors.append( f" Notes slide '{target}' is referenced by multiple slides: {', '.join(slide_names)}" ) for slide_name, rels_file in references: errors.append(f" - {rels_file.relative_to(self.unpacked_dir)}") if errors: print( f"FAILED - Found {len([e for e in errors if not e.startswith(' ')])} notes slide reference validation errors:" ) for error in errors: print(error) print("Each slide may optionally have its own slide file.") return False else: if self.verbose: print("PASSED - All notes slide references are unique") return True if __name__ == "__main__": raise RuntimeError("This module should not be run directly.") ================================================ FILE: skills/pptx/scripts/office/validators/redlining.py ================================================ """ Validator for tracked changes in Word documents. """ import subprocess import tempfile import zipfile from pathlib import Path class RedliningValidator: def __init__(self, unpacked_dir, original_docx, verbose=False, author="Claude"): self.unpacked_dir = Path(unpacked_dir) self.original_docx = Path(original_docx) self.verbose = verbose self.author = author self.namespaces = { "w": "http://schemas.openxmlformats.org/wordprocessingml/2006/main" } def repair(self) -> int: return 0 def validate(self): modified_file = self.unpacked_dir / "word" / "document.xml" if not modified_file.exists(): print(f"FAILED - Modified document.xml not found at {modified_file}") return False try: import xml.etree.ElementTree as ET tree = ET.parse(modified_file) root = tree.getroot() del_elements = root.findall(".//w:del", self.namespaces) ins_elements = root.findall(".//w:ins", self.namespaces) author_del_elements = [ elem for elem in del_elements if elem.get(f"{{{self.namespaces['w']}}}author") == self.author ] author_ins_elements = [ elem for elem in ins_elements if elem.get(f"{{{self.namespaces['w']}}}author") == self.author ] if not author_del_elements and not author_ins_elements: if self.verbose: print(f"PASSED - No tracked changes by {self.author} found.") return True except Exception: pass with tempfile.TemporaryDirectory() as temp_dir: temp_path = Path(temp_dir) try: with zipfile.ZipFile(self.original_docx, "r") as zip_ref: zip_ref.extractall(temp_path) except Exception as e: print(f"FAILED - Error unpacking original docx: {e}") return False original_file = temp_path / "word" / "document.xml" if not original_file.exists(): print( f"FAILED - Original document.xml not found in {self.original_docx}" ) return False try: import xml.etree.ElementTree as ET modified_tree = ET.parse(modified_file) modified_root = modified_tree.getroot() original_tree = ET.parse(original_file) original_root = original_tree.getroot() except ET.ParseError as e: print(f"FAILED - Error parsing XML files: {e}") return False self._remove_author_tracked_changes(original_root) self._remove_author_tracked_changes(modified_root) modified_text = self._extract_text_content(modified_root) original_text = self._extract_text_content(original_root) if modified_text != original_text: error_message = self._generate_detailed_diff( original_text, modified_text ) print(error_message) return False if self.verbose: print(f"PASSED - All changes by {self.author} are properly tracked") return True def _generate_detailed_diff(self, original_text, modified_text): error_parts = [ f"FAILED - Document text doesn't match after removing {self.author}'s tracked changes", "", "Likely causes:", " 1. Modified text inside another author's or tags", " 2. Made edits without proper tracked changes", " 3. Didn't nest inside when deleting another's insertion", "", "For pre-redlined documents, use correct patterns:", " - To reject another's INSERTION: Nest inside their ", " - To restore another's DELETION: Add new AFTER their ", "", ] git_diff = self._get_git_word_diff(original_text, modified_text) if git_diff: error_parts.extend(["Differences:", "============", git_diff]) else: error_parts.append("Unable to generate word diff (git not available)") return "\n".join(error_parts) def _get_git_word_diff(self, original_text, modified_text): try: with tempfile.TemporaryDirectory() as temp_dir: temp_path = Path(temp_dir) original_file = temp_path / "original.txt" modified_file = temp_path / "modified.txt" original_file.write_text(original_text, encoding="utf-8") modified_file.write_text(modified_text, encoding="utf-8") result = subprocess.run( [ "git", "diff", "--word-diff=plain", "--word-diff-regex=.", "-U0", "--no-index", str(original_file), str(modified_file), ], capture_output=True, text=True, ) if result.stdout.strip(): lines = result.stdout.split("\n") content_lines = [] in_content = False for line in lines: if line.startswith("@@"): in_content = True continue if in_content and line.strip(): content_lines.append(line) if content_lines: return "\n".join(content_lines) result = subprocess.run( [ "git", "diff", "--word-diff=plain", "-U0", "--no-index", str(original_file), str(modified_file), ], capture_output=True, text=True, ) if result.stdout.strip(): lines = result.stdout.split("\n") content_lines = [] in_content = False for line in lines: if line.startswith("@@"): in_content = True continue if in_content and line.strip(): content_lines.append(line) return "\n".join(content_lines) except (subprocess.CalledProcessError, FileNotFoundError, Exception): pass return None def _remove_author_tracked_changes(self, root): ins_tag = f"{{{self.namespaces['w']}}}ins" del_tag = f"{{{self.namespaces['w']}}}del" author_attr = f"{{{self.namespaces['w']}}}author" for parent in root.iter(): to_remove = [] for child in parent: if child.tag == ins_tag and child.get(author_attr) == self.author: to_remove.append(child) for elem in to_remove: parent.remove(elem) deltext_tag = f"{{{self.namespaces['w']}}}delText" t_tag = f"{{{self.namespaces['w']}}}t" for parent in root.iter(): to_process = [] for child in parent: if child.tag == del_tag and child.get(author_attr) == self.author: to_process.append((child, list(parent).index(child))) for del_elem, del_index in reversed(to_process): for elem in del_elem.iter(): if elem.tag == deltext_tag: elem.tag = t_tag for child in reversed(list(del_elem)): parent.insert(del_index, child) parent.remove(del_elem) def _extract_text_content(self, root): p_tag = f"{{{self.namespaces['w']}}}p" t_tag = f"{{{self.namespaces['w']}}}t" paragraphs = [] for p_elem in root.findall(f".//{p_tag}"): text_parts = [] for t_elem in p_elem.findall(f".//{t_tag}"): if t_elem.text: text_parts.append(t_elem.text) paragraph_text = "".join(text_parts) if paragraph_text: paragraphs.append(paragraph_text) return "\n".join(paragraphs) if __name__ == "__main__": raise RuntimeError("This module should not be run directly.") ================================================ FILE: skills/pptx/scripts/thumbnail.py ================================================ """Create thumbnail grids from PowerPoint presentation slides. Creates a grid layout of slide thumbnails for quick visual analysis. Labels each thumbnail with its XML filename (e.g., slide1.xml). Hidden slides are shown with a placeholder pattern. Usage: python thumbnail.py input.pptx [output_prefix] [--cols N] Examples: python thumbnail.py presentation.pptx # Creates: thumbnails.jpg python thumbnail.py template.pptx grid --cols 4 # Creates: grid.jpg (or grid-1.jpg, grid-2.jpg for large decks) """ import argparse import subprocess import sys import tempfile import zipfile from pathlib import Path import defusedxml.minidom from office.soffice import get_soffice_env from PIL import Image, ImageDraw, ImageFont THUMBNAIL_WIDTH = 300 CONVERSION_DPI = 100 MAX_COLS = 6 DEFAULT_COLS = 3 JPEG_QUALITY = 95 GRID_PADDING = 20 BORDER_WIDTH = 2 FONT_SIZE_RATIO = 0.10 LABEL_PADDING_RATIO = 0.4 def main(): parser = argparse.ArgumentParser( description="Create thumbnail grids from PowerPoint slides." ) parser.add_argument("input", help="Input PowerPoint file (.pptx)") parser.add_argument( "output_prefix", nargs="?", default="thumbnails", help="Output prefix for image files (default: thumbnails)", ) parser.add_argument( "--cols", type=int, default=DEFAULT_COLS, help=f"Number of columns (default: {DEFAULT_COLS}, max: {MAX_COLS})", ) args = parser.parse_args() cols = min(args.cols, MAX_COLS) if args.cols > MAX_COLS: print(f"Warning: Columns limited to {MAX_COLS}") input_path = Path(args.input) if not input_path.exists() or input_path.suffix.lower() != ".pptx": print(f"Error: Invalid PowerPoint file: {args.input}", file=sys.stderr) sys.exit(1) output_path = Path(f"{args.output_prefix}.jpg") try: slide_info = get_slide_info(input_path) with tempfile.TemporaryDirectory() as temp_dir: temp_path = Path(temp_dir) visible_images = convert_to_images(input_path, temp_path) if not visible_images and not any(s["hidden"] for s in slide_info): print("Error: No slides found", file=sys.stderr) sys.exit(1) slides = build_slide_list(slide_info, visible_images, temp_path) grid_files = create_grids(slides, cols, THUMBNAIL_WIDTH, output_path) print(f"Created {len(grid_files)} grid(s):") for grid_file in grid_files: print(f" {grid_file}") except Exception as e: print(f"Error: {e}", file=sys.stderr) sys.exit(1) def get_slide_info(pptx_path: Path) -> list[dict]: with zipfile.ZipFile(pptx_path, "r") as zf: rels_content = zf.read("ppt/_rels/presentation.xml.rels").decode("utf-8") rels_dom = defusedxml.minidom.parseString(rels_content) rid_to_slide = {} for rel in rels_dom.getElementsByTagName("Relationship"): rid = rel.getAttribute("Id") target = rel.getAttribute("Target") rel_type = rel.getAttribute("Type") if "slide" in rel_type and target.startswith("slides/"): rid_to_slide[rid] = target.replace("slides/", "") pres_content = zf.read("ppt/presentation.xml").decode("utf-8") pres_dom = defusedxml.minidom.parseString(pres_content) slides = [] for sld_id in pres_dom.getElementsByTagName("p:sldId"): rid = sld_id.getAttribute("r:id") if rid in rid_to_slide: hidden = sld_id.getAttribute("show") == "0" slides.append({"name": rid_to_slide[rid], "hidden": hidden}) return slides def build_slide_list( slide_info: list[dict], visible_images: list[Path], temp_dir: Path, ) -> list[tuple[Path, str]]: if visible_images: with Image.open(visible_images[0]) as img: placeholder_size = img.size else: placeholder_size = (1920, 1080) slides = [] visible_idx = 0 for info in slide_info: if info["hidden"]: placeholder_path = temp_dir / f"hidden-{info['name']}.jpg" placeholder_img = create_hidden_placeholder(placeholder_size) placeholder_img.save(placeholder_path, "JPEG") slides.append((placeholder_path, f"{info['name']} (hidden)")) else: if visible_idx < len(visible_images): slides.append((visible_images[visible_idx], info["name"])) visible_idx += 1 return slides def create_hidden_placeholder(size: tuple[int, int]) -> Image.Image: img = Image.new("RGB", size, color="#F0F0F0") draw = ImageDraw.Draw(img) line_width = max(5, min(size) // 100) draw.line([(0, 0), size], fill="#CCCCCC", width=line_width) draw.line([(size[0], 0), (0, size[1])], fill="#CCCCCC", width=line_width) return img def convert_to_images(pptx_path: Path, temp_dir: Path) -> list[Path]: pdf_path = temp_dir / f"{pptx_path.stem}.pdf" result = subprocess.run( [ "soffice", "--headless", "--convert-to", "pdf", "--outdir", str(temp_dir), str(pptx_path), ], capture_output=True, text=True, env=get_soffice_env(), ) if result.returncode != 0 or not pdf_path.exists(): raise RuntimeError("PDF conversion failed") result = subprocess.run( [ "pdftoppm", "-jpeg", "-r", str(CONVERSION_DPI), str(pdf_path), str(temp_dir / "slide"), ], capture_output=True, text=True, ) if result.returncode != 0: raise RuntimeError("Image conversion failed") return sorted(temp_dir.glob("slide-*.jpg")) def create_grids( slides: list[tuple[Path, str]], cols: int, width: int, output_path: Path, ) -> list[str]: max_per_grid = cols * (cols + 1) grid_files = [] for chunk_idx, start_idx in enumerate(range(0, len(slides), max_per_grid)): end_idx = min(start_idx + max_per_grid, len(slides)) chunk_slides = slides[start_idx:end_idx] grid = create_grid(chunk_slides, cols, width) if len(slides) <= max_per_grid: grid_filename = output_path else: stem = output_path.stem suffix = output_path.suffix grid_filename = output_path.parent / f"{stem}-{chunk_idx + 1}{suffix}" grid_filename.parent.mkdir(parents=True, exist_ok=True) grid.save(str(grid_filename), quality=JPEG_QUALITY) grid_files.append(str(grid_filename)) return grid_files def create_grid( slides: list[tuple[Path, str]], cols: int, width: int, ) -> Image.Image: font_size = int(width * FONT_SIZE_RATIO) label_padding = int(font_size * LABEL_PADDING_RATIO) with Image.open(slides[0][0]) as img: aspect = img.height / img.width height = int(width * aspect) rows = (len(slides) + cols - 1) // cols grid_w = cols * width + (cols + 1) * GRID_PADDING grid_h = rows * (height + font_size + label_padding * 2) + (rows + 1) * GRID_PADDING grid = Image.new("RGB", (grid_w, grid_h), "white") draw = ImageDraw.Draw(grid) try: font = ImageFont.load_default(size=font_size) except Exception: font = ImageFont.load_default() for i, (img_path, slide_name) in enumerate(slides): row, col = i // cols, i % cols x = col * width + (col + 1) * GRID_PADDING y_base = ( row * (height + font_size + label_padding * 2) + (row + 1) * GRID_PADDING ) label = slide_name bbox = draw.textbbox((0, 0), label, font=font) text_w = bbox[2] - bbox[0] draw.text( (x + (width - text_w) // 2, y_base + label_padding), label, fill="black", font=font, ) y_thumbnail = y_base + label_padding + font_size + label_padding with Image.open(img_path) as img: img.thumbnail((width, height), Image.Resampling.LANCZOS) w, h = img.size tx = x + (width - w) // 2 ty = y_thumbnail + (height - h) // 2 grid.paste(img, (tx, ty)) if BORDER_WIDTH > 0: draw.rectangle( [ (tx - BORDER_WIDTH, ty - BORDER_WIDTH), (tx + w + BORDER_WIDTH - 1, ty + h + BORDER_WIDTH - 1), ], outline="gray", width=BORDER_WIDTH, ) return grid if __name__ == "__main__": main() ================================================ FILE: skills/skill-creator/LICENSE.txt ================================================ Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ================================================ FILE: skills/skill-creator/SKILL.md ================================================ --- name: skill-creator description: Create new skills, modify and improve existing skills, and measure skill performance. Use when users want to create a skill from scratch, edit, or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy. --- # Skill Creator A skill for creating new skills and iteratively improving them. At a high level, the process of creating a skill goes like this: - Decide what you want the skill to do and roughly how it should do it - Write a draft of the skill - Create a few test prompts and run claude-with-access-to-the-skill on them - Help the user evaluate the results both qualitatively and quantitatively - While the runs happen in the background, draft some quantitative evals if there aren't any (if there are some, you can either use as is or modify if you feel something needs to change about them). Then explain them to the user (or if they already existed, explain the ones that already exist) - Use the `eval-viewer/generate_review.py` script to show the user the results for them to look at, and also let them look at the quantitative metrics - Rewrite the skill based on feedback from the user's evaluation of the results (and also if there are any glaring flaws that become apparent from the quantitative benchmarks) - Repeat until you're satisfied - Expand the test set and try again at larger scale Your job when using this skill is to figure out where the user is in this process and then jump in and help them progress through these stages. So for instance, maybe they're like "I want to make a skill for X". You can help narrow down what they mean, write a draft, write the test cases, figure out how they want to evaluate, run all the prompts, and repeat. On the other hand, maybe they already have a draft of the skill. In this case you can go straight to the eval/iterate part of the loop. Of course, you should always be flexible and if the user is like "I don't need to run a bunch of evaluations, just vibe with me", you can do that instead. Then after the skill is done (but again, the order is flexible), you can also run the skill description improver, which we have a whole separate script for, to optimize the triggering of the skill. Cool? Cool. ## Communicating with the user The skill creator is liable to be used by people across a wide range of familiarity with coding jargon. If you haven't heard (and how could you, it's only very recently that it started), there's a trend now where the power of Claude is inspiring plumbers to open up their terminals, parents and grandparents to google "how to install npm". On the other hand, the bulk of users are probably fairly computer-literate. So please pay attention to context cues to understand how to phrase your communication! In the default case, just to give you some idea: - "evaluation" and "benchmark" are borderline, but OK - for "JSON" and "assertion" you want to see serious cues from the user that they know what those things are before using them without explaining them It's OK to briefly explain terms if you're in doubt, and feel free to clarify terms with a short definition if you're unsure if the user will get it. --- ## Creating a skill ### Capture Intent Start by understanding the user's intent. The current conversation might already contain a workflow the user wants to capture (e.g., they say "turn this into a skill"). If so, extract answers from the conversation history first — the tools used, the sequence of steps, corrections the user made, input/output formats observed. The user may need to fill the gaps, and should confirm before proceeding to the next step. 1. What should this skill enable Claude to do? 2. When should this skill trigger? (what user phrases/contexts) 3. What's the expected output format? 4. Should we set up test cases to verify the skill works? Skills with objectively verifiable outputs (file transforms, data extraction, code generation, fixed workflow steps) benefit from test cases. Skills with subjective outputs (writing style, art) often don't need them. Suggest the appropriate default based on the skill type, but let the user decide. ### Interview and Research Proactively ask questions about edge cases, input/output formats, example files, success criteria, and dependencies. Wait to write test prompts until you've got this part ironed out. Check available MCPs - if useful for research (searching docs, finding similar skills, looking up best practices), research in parallel via subagents if available, otherwise inline. Come prepared with context to reduce burden on the user. ### Write the SKILL.md Based on the user interview, fill in these components: - **name**: Skill identifier - **description**: When to trigger, what it does. This is the primary triggering mechanism - include both what the skill does AND specific contexts for when to use it. All "when to use" info goes here, not in the body. Note: currently Claude has a tendency to "undertrigger" skills -- to not use them when they'd be useful. To combat this, please make the skill descriptions a little bit "pushy". So for instance, instead of "How to build a simple fast dashboard to display internal Anthropic data.", you might write "How to build a simple fast dashboard to display internal Anthropic data. Make sure to use this skill whenever the user mentions dashboards, data visualization, internal metrics, or wants to display any kind of company data, even if they don't explicitly ask for a 'dashboard.'" - **compatibility**: Required tools, dependencies (optional, rarely needed) - **the rest of the skill :)** ### Skill Writing Guide #### Anatomy of a Skill ``` skill-name/ ├── SKILL.md (required) │ ├── YAML frontmatter (name, description required) │ └── Markdown instructions └── Bundled Resources (optional) ├── scripts/ - Executable code for deterministic/repetitive tasks ├── references/ - Docs loaded into context as needed └── assets/ - Files used in output (templates, icons, fonts) ``` #### Progressive Disclosure Skills use a three-level loading system: 1. **Metadata** (name + description) - Always in context (~100 words) 2. **SKILL.md body** - In context whenever skill triggers (<500 lines ideal) 3. **Bundled resources** - As needed (unlimited, scripts can execute without loading) These word counts are approximate and you can feel free to go longer if needed. **Key patterns:** - Keep SKILL.md under 500 lines; if you're approaching this limit, add an additional layer of hierarchy along with clear pointers about where the model using the skill should go next to follow up. - Reference files clearly from SKILL.md with guidance on when to read them - For large reference files (>300 lines), include a table of contents **Domain organization**: When a skill supports multiple domains/frameworks, organize by variant: ``` cloud-deploy/ ├── SKILL.md (workflow + selection) └── references/ ├── aws.md ├── gcp.md └── azure.md ``` Claude reads only the relevant reference file. #### Principle of Lack of Surprise This goes without saying, but skills must not contain malware, exploit code, or any content that could compromise system security. A skill's contents should not surprise the user in their intent if described. Don't go along with requests to create misleading skills or skills designed to facilitate unauthorized access, data exfiltration, or other malicious activities. Things like a "roleplay as an XYZ" are OK though. #### Writing Patterns Prefer using the imperative form in instructions. **Defining output formats** - You can do it like this: ```markdown ## Report structure ALWAYS use this exact template: # [Title] ## Executive summary ## Key findings ## Recommendations ``` **Examples pattern** - It's useful to include examples. You can format them like this (but if "Input" and "Output" are in the examples you might want to deviate a little): ```markdown ## Commit message format **Example 1:** Input: Added user authentication with JWT tokens Output: feat(auth): implement JWT-based authentication ``` ### Writing Style Try to explain to the model why things are important in lieu of heavy-handed musty MUSTs. Use theory of mind and try to make the skill general and not super-narrow to specific examples. Start by writing a draft and then look at it with fresh eyes and improve it. ### Test Cases After writing the skill draft, come up with 2-3 realistic test prompts — the kind of thing a real user would actually say. Share them with the user: [you don't have to use this exact language] "Here are a few test cases I'd like to try. Do these look right, or do you want to add more?" Then run them. Save test cases to `evals/evals.json`. Don't write assertions yet — just the prompts. You'll draft assertions in the next step while the runs are in progress. ```json { "skill_name": "example-skill", "evals": [ { "id": 1, "prompt": "User's task prompt", "expected_output": "Description of expected result", "files": [] } ] } ``` See `references/schemas.md` for the full schema (including the `assertions` field, which you'll add later). ## Running and evaluating test cases This section is one continuous sequence — don't stop partway through. Do NOT use `/skill-test` or any other testing skill. Put results in `-workspace/` as a sibling to the skill directory. Within the workspace, organize results by iteration (`iteration-1/`, `iteration-2/`, etc.) and within that, each test case gets a directory (`eval-0/`, `eval-1/`, etc.). Don't create all of this upfront — just create directories as you go. ### Step 1: Spawn all runs (with-skill AND baseline) in the same turn For each test case, spawn two subagents in the same turn — one with the skill, one without. This is important: don't spawn the with-skill runs first and then come back for baselines later. Launch everything at once so it all finishes around the same time. **With-skill run:** ``` Execute this task: - Skill path: - Task: - Input files: - Save outputs to: /iteration-/eval-/with_skill/outputs/ - Outputs to save: ``` **Baseline run** (same prompt, but the baseline depends on context): - **Creating a new skill**: no skill at all. Same prompt, no skill path, save to `without_skill/outputs/`. - **Improving an existing skill**: the old version. Before editing, snapshot the skill (`cp -r /skill-snapshot/`), then point the baseline subagent at the snapshot. Save to `old_skill/outputs/`. Write an `eval_metadata.json` for each test case (assertions can be empty for now). Give each eval a descriptive name based on what it's testing — not just "eval-0". Use this name for the directory too. If this iteration uses new or modified eval prompts, create these files for each new eval directory — don't assume they carry over from previous iterations. ```json { "eval_id": 0, "eval_name": "descriptive-name-here", "prompt": "The user's task prompt", "assertions": [] } ``` ### Step 2: While runs are in progress, draft assertions Don't just wait for the runs to finish — you can use this time productively. Draft quantitative assertions for each test case and explain them to the user. If assertions already exist in `evals/evals.json`, review them and explain what they check. Good assertions are objectively verifiable and have descriptive names — they should read clearly in the benchmark viewer so someone glancing at the results immediately understands what each one checks. Subjective skills (writing style, design quality) are better evaluated qualitatively — don't force assertions onto things that need human judgment. Update the `eval_metadata.json` files and `evals/evals.json` with the assertions once drafted. Also explain to the user what they'll see in the viewer — both the qualitative outputs and the quantitative benchmark. ### Step 3: As runs complete, capture timing data When each subagent task completes, you receive a notification containing `total_tokens` and `duration_ms`. Save this data immediately to `timing.json` in the run directory: ```json { "total_tokens": 84852, "duration_ms": 23332, "total_duration_seconds": 23.3 } ``` This is the only opportunity to capture this data — it comes through the task notification and isn't persisted elsewhere. Process each notification as it arrives rather than trying to batch them. ### Step 4: Grade, aggregate, and launch the viewer Once all runs are done: 1. **Grade each run** — spawn a grader subagent (or grade inline) that reads `agents/grader.md` and evaluates each assertion against the outputs. Save results to `grading.json` in each run directory. The grading.json expectations array must use the fields `text`, `passed`, and `evidence` (not `name`/`met`/`details` or other variants) — the viewer depends on these exact field names. For assertions that can be checked programmatically, write and run a script rather than eyeballing it — scripts are faster, more reliable, and can be reused across iterations. 2. **Aggregate into benchmark** — run the aggregation script from the skill-creator directory: ```bash python -m scripts.aggregate_benchmark /iteration-N --skill-name ``` This produces `benchmark.json` and `benchmark.md` with pass_rate, time, and tokens for each configuration, with mean ± stddev and the delta. If generating benchmark.json manually, see `references/schemas.md` for the exact schema the viewer expects. Put each with_skill version before its baseline counterpart. 3. **Do an analyst pass** — read the benchmark data and surface patterns the aggregate stats might hide. See `agents/analyzer.md` (the "Analyzing Benchmark Results" section) for what to look for — things like assertions that always pass regardless of skill (non-discriminating), high-variance evals (possibly flaky), and time/token tradeoffs. 4. **Launch the viewer** with both qualitative outputs and quantitative data: ```bash nohup python /eval-viewer/generate_review.py \ /iteration-N \ --skill-name "my-skill" \ --benchmark /iteration-N/benchmark.json \ > /dev/null 2>&1 & VIEWER_PID=$! ``` For iteration 2+, also pass `--previous-workspace /iteration-`. **Cowork / headless environments:** If `webbrowser.open()` is not available or the environment has no display, use `--static ` to write a standalone HTML file instead of starting a server. Feedback will be downloaded as a `feedback.json` file when the user clicks "Submit All Reviews". After download, copy `feedback.json` into the workspace directory for the next iteration to pick up. Note: please use generate_review.py to create the viewer; there's no need to write custom HTML. 5. **Tell the user** something like: "I've opened the results in your browser. There are two tabs — 'Outputs' lets you click through each test case and leave feedback, 'Benchmark' shows the quantitative comparison. When you're done, come back here and let me know." ### What the user sees in the viewer The "Outputs" tab shows one test case at a time: - **Prompt**: the task that was given - **Output**: the files the skill produced, rendered inline where possible - **Previous Output** (iteration 2+): collapsed section showing last iteration's output - **Formal Grades** (if grading was run): collapsed section showing assertion pass/fail - **Feedback**: a textbox that auto-saves as they type - **Previous Feedback** (iteration 2+): their comments from last time, shown below the textbox The "Benchmark" tab shows the stats summary: pass rates, timing, and token usage for each configuration, with per-eval breakdowns and analyst observations. Navigation is via prev/next buttons or arrow keys. When done, they click "Submit All Reviews" which saves all feedback to `feedback.json`. ### Step 5: Read the feedback When the user tells you they're done, read `feedback.json`: ```json { "reviews": [ {"run_id": "eval-0-with_skill", "feedback": "the chart is missing axis labels", "timestamp": "..."}, {"run_id": "eval-1-with_skill", "feedback": "", "timestamp": "..."}, {"run_id": "eval-2-with_skill", "feedback": "perfect, love this", "timestamp": "..."} ], "status": "complete" } ``` Empty feedback means the user thought it was fine. Focus your improvements on the test cases where the user had specific complaints. Kill the viewer server when you're done with it: ```bash kill $VIEWER_PID 2>/dev/null ``` --- ## Improving the skill This is the heart of the loop. You've run the test cases, the user has reviewed the results, and now you need to make the skill better based on their feedback. ### How to think about improvements 1. **Generalize from the feedback.** The big picture thing that's happening here is that we're trying to create skills that can be used a million times (maybe literally, maybe even more who knows) across many different prompts. Here you and the user are iterating on only a few examples over and over again because it helps move faster. The user knows these examples in and out and it's quick for them to assess new outputs. But if the skill you and the user are codeveloping works only for those examples, it's useless. Rather than put in fiddly overfitty changes, or oppressively constrictive MUSTs, if there's some stubborn issue, you might try branching out and using different metaphors, or recommending different patterns of working. It's relatively cheap to try and maybe you'll land on something great. 2. **Keep the prompt lean.** Remove things that aren't pulling their weight. Make sure to read the transcripts, not just the final outputs — if it looks like the skill is making the model waste a bunch of time doing things that are unproductive, you can try getting rid of the parts of the skill that are making it do that and seeing what happens. 3. **Explain the why.** Try hard to explain the **why** behind everything you're asking the model to do. Today's LLMs are *smart*. They have good theory of mind and when given a good harness can go beyond rote instructions and really make things happen. Even if the feedback from the user is terse or frustrated, try to actually understand the task and why the user is writing what they wrote, and what they actually wrote, and then transmit this understanding into the instructions. If you find yourself writing ALWAYS or NEVER in all caps, or using super rigid structures, that's a yellow flag — if possible, reframe and explain the reasoning so that the model understands why the thing you're asking for is important. That's a more humane, powerful, and effective approach. 4. **Look for repeated work across test cases.** Read the transcripts from the test runs and notice if the subagents all independently wrote similar helper scripts or took the same multi-step approach to something. If all 3 test cases resulted in the subagent writing a `create_docx.py` or a `build_chart.py`, that's a strong signal the skill should bundle that script. Write it once, put it in `scripts/`, and tell the skill to use it. This saves every future invocation from reinventing the wheel. This task is pretty important (we are trying to create billions a year in economic value here!) and your thinking time is not the blocker; take your time and really mull things over. I'd suggest writing a draft revision and then looking at it anew and making improvements. Really do your best to get into the head of the user and understand what they want and need. ### The iteration loop After improving the skill: 1. Apply your improvements to the skill 2. Rerun all test cases into a new `iteration-/` directory, including baseline runs. If you're creating a new skill, the baseline is always `without_skill` (no skill) — that stays the same across iterations. If you're improving an existing skill, use your judgment on what makes sense as the baseline: the original version the user came in with, or the previous iteration. 3. Launch the reviewer with `--previous-workspace` pointing at the previous iteration 4. Wait for the user to review and tell you they're done 5. Read the new feedback, improve again, repeat Keep going until: - The user says they're happy - The feedback is all empty (everything looks good) - You're not making meaningful progress --- ## Advanced: Blind comparison For situations where you want a more rigorous comparison between two versions of a skill (e.g., the user asks "is the new version actually better?"), there's a blind comparison system. Read `agents/comparator.md` and `agents/analyzer.md` for the details. The basic idea is: give two outputs to an independent agent without telling it which is which, and let it judge quality. Then analyze why the winner won. This is optional, requires subagents, and most users won't need it. The human review loop is usually sufficient. --- ## Description Optimization The description field in SKILL.md frontmatter is the primary mechanism that determines whether Claude invokes a skill. After creating or improving a skill, offer to optimize the description for better triggering accuracy. ### Step 1: Generate trigger eval queries Create 20 eval queries — a mix of should-trigger and should-not-trigger. Save as JSON: ```json [ {"query": "the user prompt", "should_trigger": true}, {"query": "another prompt", "should_trigger": false} ] ``` The queries must be realistic and something a Claude Code or Claude.ai user would actually type. Not abstract requests, but requests that are concrete and specific and have a good amount of detail. For instance, file paths, personal context about the user's job or situation, column names and values, company names, URLs. A little bit of backstory. Some might be in lowercase or contain abbreviations or typos or casual speech. Use a mix of different lengths, and focus on edge cases rather than making them clear-cut (the user will get a chance to sign off on them). Bad: `"Format this data"`, `"Extract text from PDF"`, `"Create a chart"` Good: `"ok so my boss just sent me this xlsx file (its in my downloads, called something like 'Q4 sales final FINAL v2.xlsx') and she wants me to add a column that shows the profit margin as a percentage. The revenue is in column C and costs are in column D i think"` For the **should-trigger** queries (8-10), think about coverage. You want different phrasings of the same intent — some formal, some casual. Include cases where the user doesn't explicitly name the skill or file type but clearly needs it. Throw in some uncommon use cases and cases where this skill competes with another but should win. For the **should-not-trigger** queries (8-10), the most valuable ones are the near-misses — queries that share keywords or concepts with the skill but actually need something different. Think adjacent domains, ambiguous phrasing where a naive keyword match would trigger but shouldn't, and cases where the query touches on something the skill does but in a context where another tool is more appropriate. The key thing to avoid: don't make should-not-trigger queries obviously irrelevant. "Write a fibonacci function" as a negative test for a PDF skill is too easy — it doesn't test anything. The negative cases should be genuinely tricky. ### Step 2: Review with user Present the eval set to the user for review using the HTML template: 1. Read the template from `assets/eval_review.html` 2. Replace the placeholders: - `__EVAL_DATA_PLACEHOLDER__` → the JSON array of eval items (no quotes around it — it's a JS variable assignment) - `__SKILL_NAME_PLACEHOLDER__` → the skill's name - `__SKILL_DESCRIPTION_PLACEHOLDER__` → the skill's current description 3. Write to a temp file (e.g., `/tmp/eval_review_.html`) and open it: `open /tmp/eval_review_.html` 4. The user can edit queries, toggle should-trigger, add/remove entries, then click "Export Eval Set" 5. The file downloads to `~/Downloads/eval_set.json` — check the Downloads folder for the most recent version in case there are multiple (e.g., `eval_set (1).json`) This step matters — bad eval queries lead to bad descriptions. ### Step 3: Run the optimization loop Tell the user: "This will take some time — I'll run the optimization loop in the background and check on it periodically." Save the eval set to the workspace, then run in the background: ```bash python -m scripts.run_loop \ --eval-set \ --skill-path \ --model \ --max-iterations 5 \ --verbose ``` Use the model ID from your system prompt (the one powering the current session) so the triggering test matches what the user actually experiences. While it runs, periodically tail the output to give the user updates on which iteration it's on and what the scores look like. This handles the full optimization loop automatically. It splits the eval set into 60% train and 40% held-out test, evaluates the current description (running each query 3 times to get a reliable trigger rate), then calls Claude to propose improvements based on what failed. It re-evaluates each new description on both train and test, iterating up to 5 times. When it's done, it opens an HTML report in the browser showing the results per iteration and returns JSON with `best_description` — selected by test score rather than train score to avoid overfitting. ### How skill triggering works Understanding the triggering mechanism helps design better eval queries. Skills appear in Claude's `available_skills` list with their name + description, and Claude decides whether to consult a skill based on that description. The important thing to know is that Claude only consults skills for tasks it can't easily handle on its own — simple, one-step queries like "read this PDF" may not trigger a skill even if the description matches perfectly, because Claude can handle them directly with basic tools. Complex, multi-step, or specialized queries reliably trigger skills when the description matches. This means your eval queries should be substantive enough that Claude would actually benefit from consulting a skill. Simple queries like "read file X" are poor test cases — they won't trigger skills regardless of description quality. ### Step 4: Apply the result Take `best_description` from the JSON output and update the skill's SKILL.md frontmatter. Show the user before/after and report the scores. --- ### Package and Present (only if `present_files` tool is available) Check whether you have access to the `present_files` tool. If you don't, skip this step. If you do, package the skill and present the .skill file to the user: ```bash python -m scripts.package_skill ``` After packaging, direct the user to the resulting `.skill` file path so they can install it. --- ## Claude.ai-specific instructions In Claude.ai, the core workflow is the same (draft → test → review → improve → repeat), but because Claude.ai doesn't have subagents, some mechanics change. Here's what to adapt: **Running test cases**: No subagents means no parallel execution. For each test case, read the skill's SKILL.md, then follow its instructions to accomplish the test prompt yourself. Do them one at a time. This is less rigorous than independent subagents (you wrote the skill and you're also running it, so you have full context), but it's a useful sanity check — and the human review step compensates. Skip the baseline runs — just use the skill to complete the task as requested. **Reviewing results**: If you can't open a browser (e.g., Claude.ai's VM has no display, or you're on a remote server), skip the browser reviewer entirely. Instead, present results directly in the conversation. For each test case, show the prompt and the output. If the output is a file the user needs to see (like a .docx or .xlsx), save it to the filesystem and tell them where it is so they can download and inspect it. Ask for feedback inline: "How does this look? Anything you'd change?" **Benchmarking**: Skip the quantitative benchmarking — it relies on baseline comparisons which aren't meaningful without subagents. Focus on qualitative feedback from the user. **The iteration loop**: Same as before — improve the skill, rerun the test cases, ask for feedback — just without the browser reviewer in the middle. You can still organize results into iteration directories on the filesystem if you have one. **Description optimization**: This section requires the `claude` CLI tool (specifically `claude -p`) which is only available in Claude Code. Skip it if you're on Claude.ai. **Blind comparison**: Requires subagents. Skip it. **Packaging**: The `package_skill.py` script works anywhere with Python and a filesystem. On Claude.ai, you can run it and the user can download the resulting `.skill` file. **Updating an existing skill**: The user might be asking you to update an existing skill, not create a new one. In this case: - **Preserve the original name.** Note the skill's directory name and `name` frontmatter field -- use them unchanged. E.g., if the installed skill is `research-helper`, output `research-helper.skill` (not `research-helper-v2`). - **Copy to a writeable location before editing.** The installed skill path may be read-only. Copy to `/tmp/skill-name/`, edit there, and package from the copy. - **If packaging manually, stage in `/tmp/` first**, then copy to the output directory -- direct writes may fail due to permissions. --- ## Cowork-Specific Instructions If you're in Cowork, the main things to know are: - You have subagents, so the main workflow (spawn test cases in parallel, run baselines, grade, etc.) all works. (However, if you run into severe problems with timeouts, it's OK to run the test prompts in series rather than parallel.) - You don't have a browser or display, so when generating the eval viewer, use `--static ` to write a standalone HTML file instead of starting a server. Then proffer a link that the user can click to open the HTML in their browser. - For whatever reason, the Cowork setup seems to disincline Claude from generating the eval viewer after running the tests, so just to reiterate: whether you're in Cowork or in Claude Code, after running tests, you should always generate the eval viewer for the human to look at examples before revising the skill yourself and trying to make corrections, using `generate_review.py` (not writing your own boutique html code). Sorry in advance but I'm gonna go all caps here: GENERATE THE EVAL VIEWER *BEFORE* evaluating inputs yourself. You want to get them in front of the human ASAP! - Feedback works differently: since there's no running server, the viewer's "Submit All Reviews" button will download `feedback.json` as a file. You can then read it from there (you may have to request access first). - Packaging works — `package_skill.py` just needs Python and a filesystem. - Description optimization (`run_loop.py` / `run_eval.py`) should work in Cowork just fine since it uses `claude -p` via subprocess, not a browser, but please save it until you've fully finished making the skill and the user agrees it's in good shape. - **Updating an existing skill**: The user might be asking you to update an existing skill, not create a new one. Follow the update guidance in the claude.ai section above. --- ## Reference files The agents/ directory contains instructions for specialized subagents. Read them when you need to spawn the relevant subagent. - `agents/grader.md` — How to evaluate assertions against outputs - `agents/comparator.md` — How to do blind A/B comparison between two outputs - `agents/analyzer.md` — How to analyze why one version beat another The references/ directory has additional documentation: - `references/schemas.md` — JSON structures for evals.json, grading.json, etc. --- Repeating one more time the core loop here for emphasis: - Figure out what the skill is about - Draft or edit the skill - Run claude-with-access-to-the-skill on test prompts - With the user, evaluate the outputs: - Create benchmark.json and run `eval-viewer/generate_review.py` to help the user review them - Run quantitative evals - Repeat until you and the user are satisfied - Package the final skill and return it to the user. Please add steps to your TodoList, if you have such a thing, to make sure you don't forget. If you're in Cowork, please specifically put "Create evals JSON and run `eval-viewer/generate_review.py` so human can review test cases" in your TodoList to make sure it happens. Good luck! ================================================ FILE: skills/skill-creator/agents/analyzer.md ================================================ # Post-hoc Analyzer Agent Analyze blind comparison results to understand WHY the winner won and generate improvement suggestions. ## Role After the blind comparator determines a winner, the Post-hoc Analyzer "unblids" the results by examining the skills and transcripts. The goal is to extract actionable insights: what made the winner better, and how can the loser be improved? ## Inputs You receive these parameters in your prompt: - **winner**: "A" or "B" (from blind comparison) - **winner_skill_path**: Path to the skill that produced the winning output - **winner_transcript_path**: Path to the execution transcript for the winner - **loser_skill_path**: Path to the skill that produced the losing output - **loser_transcript_path**: Path to the execution transcript for the loser - **comparison_result_path**: Path to the blind comparator's output JSON - **output_path**: Where to save the analysis results ## Process ### Step 1: Read Comparison Result 1. Read the blind comparator's output at comparison_result_path 2. Note the winning side (A or B), the reasoning, and any scores 3. Understand what the comparator valued in the winning output ### Step 2: Read Both Skills 1. Read the winner skill's SKILL.md and key referenced files 2. Read the loser skill's SKILL.md and key referenced files 3. Identify structural differences: - Instructions clarity and specificity - Script/tool usage patterns - Example coverage - Edge case handling ### Step 3: Read Both Transcripts 1. Read the winner's transcript 2. Read the loser's transcript 3. Compare execution patterns: - How closely did each follow their skill's instructions? - What tools were used differently? - Where did the loser diverge from optimal behavior? - Did either encounter errors or make recovery attempts? ### Step 4: Analyze Instruction Following For each transcript, evaluate: - Did the agent follow the skill's explicit instructions? - Did the agent use the skill's provided tools/scripts? - Were there missed opportunities to leverage skill content? - Did the agent add unnecessary steps not in the skill? Score instruction following 1-10 and note specific issues. ### Step 5: Identify Winner Strengths Determine what made the winner better: - Clearer instructions that led to better behavior? - Better scripts/tools that produced better output? - More comprehensive examples that guided edge cases? - Better error handling guidance? Be specific. Quote from skills/transcripts where relevant. ### Step 6: Identify Loser Weaknesses Determine what held the loser back: - Ambiguous instructions that led to suboptimal choices? - Missing tools/scripts that forced workarounds? - Gaps in edge case coverage? - Poor error handling that caused failures? ### Step 7: Generate Improvement Suggestions Based on the analysis, produce actionable suggestions for improving the loser skill: - Specific instruction changes to make - Tools/scripts to add or modify - Examples to include - Edge cases to address Prioritize by impact. Focus on changes that would have changed the outcome. ### Step 8: Write Analysis Results Save structured analysis to `{output_path}`. ## Output Format Write a JSON file with this structure: ```json { "comparison_summary": { "winner": "A", "winner_skill": "path/to/winner/skill", "loser_skill": "path/to/loser/skill", "comparator_reasoning": "Brief summary of why comparator chose winner" }, "winner_strengths": [ "Clear step-by-step instructions for handling multi-page documents", "Included validation script that caught formatting errors", "Explicit guidance on fallback behavior when OCR fails" ], "loser_weaknesses": [ "Vague instruction 'process the document appropriately' led to inconsistent behavior", "No script for validation, agent had to improvise and made errors", "No guidance on OCR failure, agent gave up instead of trying alternatives" ], "instruction_following": { "winner": { "score": 9, "issues": [ "Minor: skipped optional logging step" ] }, "loser": { "score": 6, "issues": [ "Did not use the skill's formatting template", "Invented own approach instead of following step 3", "Missed the 'always validate output' instruction" ] } }, "improvement_suggestions": [ { "priority": "high", "category": "instructions", "suggestion": "Replace 'process the document appropriately' with explicit steps: 1) Extract text, 2) Identify sections, 3) Format per template", "expected_impact": "Would eliminate ambiguity that caused inconsistent behavior" }, { "priority": "high", "category": "tools", "suggestion": "Add validate_output.py script similar to winner skill's validation approach", "expected_impact": "Would catch formatting errors before final output" }, { "priority": "medium", "category": "error_handling", "suggestion": "Add fallback instructions: 'If OCR fails, try: 1) different resolution, 2) image preprocessing, 3) manual extraction'", "expected_impact": "Would prevent early failure on difficult documents" } ], "transcript_insights": { "winner_execution_pattern": "Read skill -> Followed 5-step process -> Used validation script -> Fixed 2 issues -> Produced output", "loser_execution_pattern": "Read skill -> Unclear on approach -> Tried 3 different methods -> No validation -> Output had errors" } } ``` ## Guidelines - **Be specific**: Quote from skills and transcripts, don't just say "instructions were unclear" - **Be actionable**: Suggestions should be concrete changes, not vague advice - **Focus on skill improvements**: The goal is to improve the losing skill, not critique the agent - **Prioritize by impact**: Which changes would most likely have changed the outcome? - **Consider causation**: Did the skill weakness actually cause the worse output, or is it incidental? - **Stay objective**: Analyze what happened, don't editorialize - **Think about generalization**: Would this improvement help on other evals too? ## Categories for Suggestions Use these categories to organize improvement suggestions: | Category | Description | |----------|-------------| | `instructions` | Changes to the skill's prose instructions | | `tools` | Scripts, templates, or utilities to add/modify | | `examples` | Example inputs/outputs to include | | `error_handling` | Guidance for handling failures | | `structure` | Reorganization of skill content | | `references` | External docs or resources to add | ## Priority Levels - **high**: Would likely change the outcome of this comparison - **medium**: Would improve quality but may not change win/loss - **low**: Nice to have, marginal improvement --- # Analyzing Benchmark Results When analyzing benchmark results, the analyzer's purpose is to **surface patterns and anomalies** across multiple runs, not suggest skill improvements. ## Role Review all benchmark run results and generate freeform notes that help the user understand skill performance. Focus on patterns that wouldn't be visible from aggregate metrics alone. ## Inputs You receive these parameters in your prompt: - **benchmark_data_path**: Path to the in-progress benchmark.json with all run results - **skill_path**: Path to the skill being benchmarked - **output_path**: Where to save the notes (as JSON array of strings) ## Process ### Step 1: Read Benchmark Data 1. Read the benchmark.json containing all run results 2. Note the configurations tested (with_skill, without_skill) 3. Understand the run_summary aggregates already calculated ### Step 2: Analyze Per-Assertion Patterns For each expectation across all runs: - Does it **always pass** in both configurations? (may not differentiate skill value) - Does it **always fail** in both configurations? (may be broken or beyond capability) - Does it **always pass with skill but fail without**? (skill clearly adds value here) - Does it **always fail with skill but pass without**? (skill may be hurting) - Is it **highly variable**? (flaky expectation or non-deterministic behavior) ### Step 3: Analyze Cross-Eval Patterns Look for patterns across evals: - Are certain eval types consistently harder/easier? - Do some evals show high variance while others are stable? - Are there surprising results that contradict expectations? ### Step 4: Analyze Metrics Patterns Look at time_seconds, tokens, tool_calls: - Does the skill significantly increase execution time? - Is there high variance in resource usage? - Are there outlier runs that skew the aggregates? ### Step 5: Generate Notes Write freeform observations as a list of strings. Each note should: - State a specific observation - Be grounded in the data (not speculation) - Help the user understand something the aggregate metrics don't show Examples: - "Assertion 'Output is a PDF file' passes 100% in both configurations - may not differentiate skill value" - "Eval 3 shows high variance (50% ± 40%) - run 2 had an unusual failure that may be flaky" - "Without-skill runs consistently fail on table extraction expectations (0% pass rate)" - "Skill adds 13s average execution time but improves pass rate by 50%" - "Token usage is 80% higher with skill, primarily due to script output parsing" - "All 3 without-skill runs for eval 1 produced empty output" ### Step 6: Write Notes Save notes to `{output_path}` as a JSON array of strings: ```json [ "Assertion 'Output is a PDF file' passes 100% in both configurations - may not differentiate skill value", "Eval 3 shows high variance (50% ± 40%) - run 2 had an unusual failure", "Without-skill runs consistently fail on table extraction expectations", "Skill adds 13s average execution time but improves pass rate by 50%" ] ``` ## Guidelines **DO:** - Report what you observe in the data - Be specific about which evals, expectations, or runs you're referring to - Note patterns that aggregate metrics would hide - Provide context that helps interpret the numbers **DO NOT:** - Suggest improvements to the skill (that's for the improvement step, not benchmarking) - Make subjective quality judgments ("the output was good/bad") - Speculate about causes without evidence - Repeat information already in the run_summary aggregates ================================================ FILE: skills/skill-creator/agents/comparator.md ================================================ # Blind Comparator Agent Compare two outputs WITHOUT knowing which skill produced them. ## Role The Blind Comparator judges which output better accomplishes the eval task. You receive two outputs labeled A and B, but you do NOT know which skill produced which. This prevents bias toward a particular skill or approach. Your judgment is based purely on output quality and task completion. ## Inputs You receive these parameters in your prompt: - **output_a_path**: Path to the first output file or directory - **output_b_path**: Path to the second output file or directory - **eval_prompt**: The original task/prompt that was executed - **expectations**: List of expectations to check (optional - may be empty) ## Process ### Step 1: Read Both Outputs 1. Examine output A (file or directory) 2. Examine output B (file or directory) 3. Note the type, structure, and content of each 4. If outputs are directories, examine all relevant files inside ### Step 2: Understand the Task 1. Read the eval_prompt carefully 2. Identify what the task requires: - What should be produced? - What qualities matter (accuracy, completeness, format)? - What would distinguish a good output from a poor one? ### Step 3: Generate Evaluation Rubric Based on the task, generate a rubric with two dimensions: **Content Rubric** (what the output contains): | Criterion | 1 (Poor) | 3 (Acceptable) | 5 (Excellent) | |-----------|----------|----------------|---------------| | Correctness | Major errors | Minor errors | Fully correct | | Completeness | Missing key elements | Mostly complete | All elements present | | Accuracy | Significant inaccuracies | Minor inaccuracies | Accurate throughout | **Structure Rubric** (how the output is organized): | Criterion | 1 (Poor) | 3 (Acceptable) | 5 (Excellent) | |-----------|----------|----------------|---------------| | Organization | Disorganized | Reasonably organized | Clear, logical structure | | Formatting | Inconsistent/broken | Mostly consistent | Professional, polished | | Usability | Difficult to use | Usable with effort | Easy to use | Adapt criteria to the specific task. For example: - PDF form → "Field alignment", "Text readability", "Data placement" - Document → "Section structure", "Heading hierarchy", "Paragraph flow" - Data output → "Schema correctness", "Data types", "Completeness" ### Step 4: Evaluate Each Output Against the Rubric For each output (A and B): 1. **Score each criterion** on the rubric (1-5 scale) 2. **Calculate dimension totals**: Content score, Structure score 3. **Calculate overall score**: Average of dimension scores, scaled to 1-10 ### Step 5: Check Assertions (if provided) If expectations are provided: 1. Check each expectation against output A 2. Check each expectation against output B 3. Count pass rates for each output 4. Use expectation scores as secondary evidence (not the primary decision factor) ### Step 6: Determine the Winner Compare A and B based on (in priority order): 1. **Primary**: Overall rubric score (content + structure) 2. **Secondary**: Assertion pass rates (if applicable) 3. **Tiebreaker**: If truly equal, declare a TIE Be decisive - ties should be rare. One output is usually better, even if marginally. ### Step 7: Write Comparison Results Save results to a JSON file at the path specified (or `comparison.json` if not specified). ## Output Format Write a JSON file with this structure: ```json { "winner": "A", "reasoning": "Output A provides a complete solution with proper formatting and all required fields. Output B is missing the date field and has formatting inconsistencies.", "rubric": { "A": { "content": { "correctness": 5, "completeness": 5, "accuracy": 4 }, "structure": { "organization": 4, "formatting": 5, "usability": 4 }, "content_score": 4.7, "structure_score": 4.3, "overall_score": 9.0 }, "B": { "content": { "correctness": 3, "completeness": 2, "accuracy": 3 }, "structure": { "organization": 3, "formatting": 2, "usability": 3 }, "content_score": 2.7, "structure_score": 2.7, "overall_score": 5.4 } }, "output_quality": { "A": { "score": 9, "strengths": ["Complete solution", "Well-formatted", "All fields present"], "weaknesses": ["Minor style inconsistency in header"] }, "B": { "score": 5, "strengths": ["Readable output", "Correct basic structure"], "weaknesses": ["Missing date field", "Formatting inconsistencies", "Partial data extraction"] } }, "expectation_results": { "A": { "passed": 4, "total": 5, "pass_rate": 0.80, "details": [ {"text": "Output includes name", "passed": true}, {"text": "Output includes date", "passed": true}, {"text": "Format is PDF", "passed": true}, {"text": "Contains signature", "passed": false}, {"text": "Readable text", "passed": true} ] }, "B": { "passed": 3, "total": 5, "pass_rate": 0.60, "details": [ {"text": "Output includes name", "passed": true}, {"text": "Output includes date", "passed": false}, {"text": "Format is PDF", "passed": true}, {"text": "Contains signature", "passed": false}, {"text": "Readable text", "passed": true} ] } } } ``` If no expectations were provided, omit the `expectation_results` field entirely. ## Field Descriptions - **winner**: "A", "B", or "TIE" - **reasoning**: Clear explanation of why the winner was chosen (or why it's a tie) - **rubric**: Structured rubric evaluation for each output - **content**: Scores for content criteria (correctness, completeness, accuracy) - **structure**: Scores for structure criteria (organization, formatting, usability) - **content_score**: Average of content criteria (1-5) - **structure_score**: Average of structure criteria (1-5) - **overall_score**: Combined score scaled to 1-10 - **output_quality**: Summary quality assessment - **score**: 1-10 rating (should match rubric overall_score) - **strengths**: List of positive aspects - **weaknesses**: List of issues or shortcomings - **expectation_results**: (Only if expectations provided) - **passed**: Number of expectations that passed - **total**: Total number of expectations - **pass_rate**: Fraction passed (0.0 to 1.0) - **details**: Individual expectation results ## Guidelines - **Stay blind**: DO NOT try to infer which skill produced which output. Judge purely on output quality. - **Be specific**: Cite specific examples when explaining strengths and weaknesses. - **Be decisive**: Choose a winner unless outputs are genuinely equivalent. - **Output quality first**: Assertion scores are secondary to overall task completion. - **Be objective**: Don't favor outputs based on style preferences; focus on correctness and completeness. - **Explain your reasoning**: The reasoning field should make it clear why you chose the winner. - **Handle edge cases**: If both outputs fail, pick the one that fails less badly. If both are excellent, pick the one that's marginally better. ================================================ FILE: skills/skill-creator/agents/grader.md ================================================ # Grader Agent Evaluate expectations against an execution transcript and outputs. ## Role The Grader reviews a transcript and output files, then determines whether each expectation passes or fails. Provide clear evidence for each judgment. You have two jobs: grade the outputs, and critique the evals themselves. A passing grade on a weak assertion is worse than useless — it creates false confidence. When you notice an assertion that's trivially satisfied, or an important outcome that no assertion checks, say so. ## Inputs You receive these parameters in your prompt: - **expectations**: List of expectations to evaluate (strings) - **transcript_path**: Path to the execution transcript (markdown file) - **outputs_dir**: Directory containing output files from execution ## Process ### Step 1: Read the Transcript 1. Read the transcript file completely 2. Note the eval prompt, execution steps, and final result 3. Identify any issues or errors documented ### Step 2: Examine Output Files 1. List files in outputs_dir 2. Read/examine each file relevant to the expectations. If outputs aren't plain text, use the inspection tools provided in your prompt — don't rely solely on what the transcript says the executor produced. 3. Note contents, structure, and quality ### Step 3: Evaluate Each Assertion For each expectation: 1. **Search for evidence** in the transcript and outputs 2. **Determine verdict**: - **PASS**: Clear evidence the expectation is true AND the evidence reflects genuine task completion, not just surface-level compliance - **FAIL**: No evidence, or evidence contradicts the expectation, or the evidence is superficial (e.g., correct filename but empty/wrong content) 3. **Cite the evidence**: Quote the specific text or describe what you found ### Step 4: Extract and Verify Claims Beyond the predefined expectations, extract implicit claims from the outputs and verify them: 1. **Extract claims** from the transcript and outputs: - Factual statements ("The form has 12 fields") - Process claims ("Used pypdf to fill the form") - Quality claims ("All fields were filled correctly") 2. **Verify each claim**: - **Factual claims**: Can be checked against the outputs or external sources - **Process claims**: Can be verified from the transcript - **Quality claims**: Evaluate whether the claim is justified 3. **Flag unverifiable claims**: Note claims that cannot be verified with available information This catches issues that predefined expectations might miss. ### Step 5: Read User Notes If `{outputs_dir}/user_notes.md` exists: 1. Read it and note any uncertainties or issues flagged by the executor 2. Include relevant concerns in the grading output 3. These may reveal problems even when expectations pass ### Step 6: Critique the Evals After grading, consider whether the evals themselves could be improved. Only surface suggestions when there's a clear gap. Good suggestions test meaningful outcomes — assertions that are hard to satisfy without actually doing the work correctly. Think about what makes an assertion *discriminating*: it passes when the skill genuinely succeeds and fails when it doesn't. Suggestions worth raising: - An assertion that passed but would also pass for a clearly wrong output (e.g., checking filename existence but not file content) - An important outcome you observed — good or bad — that no assertion covers at all - An assertion that can't actually be verified from the available outputs Keep the bar high. The goal is to flag things the eval author would say "good catch" about, not to nitpick every assertion. ### Step 7: Write Grading Results Save results to `{outputs_dir}/../grading.json` (sibling to outputs_dir). ## Grading Criteria **PASS when**: - The transcript or outputs clearly demonstrate the expectation is true - Specific evidence can be cited - The evidence reflects genuine substance, not just surface compliance (e.g., a file exists AND contains correct content, not just the right filename) **FAIL when**: - No evidence found for the expectation - Evidence contradicts the expectation - The expectation cannot be verified from available information - The evidence is superficial — the assertion is technically satisfied but the underlying task outcome is wrong or incomplete - The output appears to meet the assertion by coincidence rather than by actually doing the work **When uncertain**: The burden of proof to pass is on the expectation. ### Step 8: Read Executor Metrics and Timing 1. If `{outputs_dir}/metrics.json` exists, read it and include in grading output 2. If `{outputs_dir}/../timing.json` exists, read it and include timing data ## Output Format Write a JSON file with this structure: ```json { "expectations": [ { "text": "The output includes the name 'John Smith'", "passed": true, "evidence": "Found in transcript Step 3: 'Extracted names: John Smith, Sarah Johnson'" }, { "text": "The spreadsheet has a SUM formula in cell B10", "passed": false, "evidence": "No spreadsheet was created. The output was a text file." }, { "text": "The assistant used the skill's OCR script", "passed": true, "evidence": "Transcript Step 2 shows: 'Tool: Bash - python ocr_script.py image.png'" } ], "summary": { "passed": 2, "failed": 1, "total": 3, "pass_rate": 0.67 }, "execution_metrics": { "tool_calls": { "Read": 5, "Write": 2, "Bash": 8 }, "total_tool_calls": 15, "total_steps": 6, "errors_encountered": 0, "output_chars": 12450, "transcript_chars": 3200 }, "timing": { "executor_duration_seconds": 165.0, "grader_duration_seconds": 26.0, "total_duration_seconds": 191.0 }, "claims": [ { "claim": "The form has 12 fillable fields", "type": "factual", "verified": true, "evidence": "Counted 12 fields in field_info.json" }, { "claim": "All required fields were populated", "type": "quality", "verified": false, "evidence": "Reference section was left blank despite data being available" } ], "user_notes_summary": { "uncertainties": ["Used 2023 data, may be stale"], "needs_review": [], "workarounds": ["Fell back to text overlay for non-fillable fields"] }, "eval_feedback": { "suggestions": [ { "assertion": "The output includes the name 'John Smith'", "reason": "A hallucinated document that mentions the name would also pass — consider checking it appears as the primary contact with matching phone and email from the input" }, { "reason": "No assertion checks whether the extracted phone numbers match the input — I observed incorrect numbers in the output that went uncaught" } ], "overall": "Assertions check presence but not correctness. Consider adding content verification." } } ``` ## Field Descriptions - **expectations**: Array of graded expectations - **text**: The original expectation text - **passed**: Boolean - true if expectation passes - **evidence**: Specific quote or description supporting the verdict - **summary**: Aggregate statistics - **passed**: Count of passed expectations - **failed**: Count of failed expectations - **total**: Total expectations evaluated - **pass_rate**: Fraction passed (0.0 to 1.0) - **execution_metrics**: Copied from executor's metrics.json (if available) - **output_chars**: Total character count of output files (proxy for tokens) - **transcript_chars**: Character count of transcript - **timing**: Wall clock timing from timing.json (if available) - **executor_duration_seconds**: Time spent in executor subagent - **total_duration_seconds**: Total elapsed time for the run - **claims**: Extracted and verified claims from the output - **claim**: The statement being verified - **type**: "factual", "process", or "quality" - **verified**: Boolean - whether the claim holds - **evidence**: Supporting or contradicting evidence - **user_notes_summary**: Issues flagged by the executor - **uncertainties**: Things the executor wasn't sure about - **needs_review**: Items requiring human attention - **workarounds**: Places where the skill didn't work as expected - **eval_feedback**: Improvement suggestions for the evals (only when warranted) - **suggestions**: List of concrete suggestions, each with a `reason` and optionally an `assertion` it relates to - **overall**: Brief assessment — can be "No suggestions, evals look solid" if nothing to flag ## Guidelines - **Be objective**: Base verdicts on evidence, not assumptions - **Be specific**: Quote the exact text that supports your verdict - **Be thorough**: Check both transcript and output files - **Be consistent**: Apply the same standard to each expectation - **Explain failures**: Make it clear why evidence was insufficient - **No partial credit**: Each expectation is pass or fail, not partial ================================================ FILE: skills/skill-creator/assets/eval_review.html ================================================ Eval Set Review - __SKILL_NAME_PLACEHOLDER__

Eval Set Review: __SKILL_NAME_PLACEHOLDER__

Current description: __SKILL_DESCRIPTION_PLACEHOLDER__

Query Should Trigger Actions

================================================ FILE: skills/skill-creator/eval-viewer/generate_review.py ================================================ #!/usr/bin/env python3 """Generate and serve a review page for eval results. Reads the workspace directory, discovers runs (directories with outputs/), embeds all output data into a self-contained HTML page, and serves it via a tiny HTTP server. Feedback auto-saves to feedback.json in the workspace. Usage: python generate_review.py [--port PORT] [--skill-name NAME] python generate_review.py --previous-feedback /path/to/old/feedback.json No dependencies beyond the Python stdlib are required. """ import argparse import base64 import json import mimetypes import os import re import signal import subprocess import sys import time import webbrowser from functools import partial from http.server import HTTPServer, BaseHTTPRequestHandler from pathlib import Path # Files to exclude from output listings METADATA_FILES = {"transcript.md", "user_notes.md", "metrics.json"} # Extensions we render as inline text TEXT_EXTENSIONS = { ".txt", ".md", ".json", ".csv", ".py", ".js", ".ts", ".tsx", ".jsx", ".yaml", ".yml", ".xml", ".html", ".css", ".sh", ".rb", ".go", ".rs", ".java", ".c", ".cpp", ".h", ".hpp", ".sql", ".r", ".toml", } # Extensions we render as inline images IMAGE_EXTENSIONS = {".png", ".jpg", ".jpeg", ".gif", ".svg", ".webp"} # MIME type overrides for common types MIME_OVERRIDES = { ".svg": "image/svg+xml", ".xlsx": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", ".docx": "application/vnd.openxmlformats-officedocument.wordprocessingml.document", ".pptx": "application/vnd.openxmlformats-officedocument.presentationml.presentation", } def get_mime_type(path: Path) -> str: ext = path.suffix.lower() if ext in MIME_OVERRIDES: return MIME_OVERRIDES[ext] mime, _ = mimetypes.guess_type(str(path)) return mime or "application/octet-stream" def find_runs(workspace: Path) -> list[dict]: """Recursively find directories that contain an outputs/ subdirectory.""" runs: list[dict] = [] _find_runs_recursive(workspace, workspace, runs) runs.sort(key=lambda r: (r.get("eval_id", float("inf")), r["id"])) return runs def _find_runs_recursive(root: Path, current: Path, runs: list[dict]) -> None: if not current.is_dir(): return outputs_dir = current / "outputs" if outputs_dir.is_dir(): run = build_run(root, current) if run: runs.append(run) return skip = {"node_modules", ".git", "__pycache__", "skill", "inputs"} for child in sorted(current.iterdir()): if child.is_dir() and child.name not in skip: _find_runs_recursive(root, child, runs) def build_run(root: Path, run_dir: Path) -> dict | None: """Build a run dict with prompt, outputs, and grading data.""" prompt = "" eval_id = None # Try eval_metadata.json for candidate in [run_dir / "eval_metadata.json", run_dir.parent / "eval_metadata.json"]: if candidate.exists(): try: metadata = json.loads(candidate.read_text()) prompt = metadata.get("prompt", "") eval_id = metadata.get("eval_id") except (json.JSONDecodeError, OSError): pass if prompt: break # Fall back to transcript.md if not prompt: for candidate in [run_dir / "transcript.md", run_dir / "outputs" / "transcript.md"]: if candidate.exists(): try: text = candidate.read_text() match = re.search(r"## Eval Prompt\n\n([\s\S]*?)(?=\n##|$)", text) if match: prompt = match.group(1).strip() except OSError: pass if prompt: break if not prompt: prompt = "(No prompt found)" run_id = str(run_dir.relative_to(root)).replace("/", "-").replace("\\", "-") # Collect output files outputs_dir = run_dir / "outputs" output_files: list[dict] = [] if outputs_dir.is_dir(): for f in sorted(outputs_dir.iterdir()): if f.is_file() and f.name not in METADATA_FILES: output_files.append(embed_file(f)) # Load grading if present grading = None for candidate in [run_dir / "grading.json", run_dir.parent / "grading.json"]: if candidate.exists(): try: grading = json.loads(candidate.read_text()) except (json.JSONDecodeError, OSError): pass if grading: break return { "id": run_id, "prompt": prompt, "eval_id": eval_id, "outputs": output_files, "grading": grading, } def embed_file(path: Path) -> dict: """Read a file and return an embedded representation.""" ext = path.suffix.lower() mime = get_mime_type(path) if ext in TEXT_EXTENSIONS: try: content = path.read_text(errors="replace") except OSError: content = "(Error reading file)" return { "name": path.name, "type": "text", "content": content, } elif ext in IMAGE_EXTENSIONS: try: raw = path.read_bytes() b64 = base64.b64encode(raw).decode("ascii") except OSError: return {"name": path.name, "type": "error", "content": "(Error reading file)"} return { "name": path.name, "type": "image", "mime": mime, "data_uri": f"data:{mime};base64,{b64}", } elif ext == ".pdf": try: raw = path.read_bytes() b64 = base64.b64encode(raw).decode("ascii") except OSError: return {"name": path.name, "type": "error", "content": "(Error reading file)"} return { "name": path.name, "type": "pdf", "data_uri": f"data:{mime};base64,{b64}", } elif ext == ".xlsx": try: raw = path.read_bytes() b64 = base64.b64encode(raw).decode("ascii") except OSError: return {"name": path.name, "type": "error", "content": "(Error reading file)"} return { "name": path.name, "type": "xlsx", "data_b64": b64, } else: # Binary / unknown — base64 download link try: raw = path.read_bytes() b64 = base64.b64encode(raw).decode("ascii") except OSError: return {"name": path.name, "type": "error", "content": "(Error reading file)"} return { "name": path.name, "type": "binary", "mime": mime, "data_uri": f"data:{mime};base64,{b64}", } def load_previous_iteration(workspace: Path) -> dict[str, dict]: """Load previous iteration's feedback and outputs. Returns a map of run_id -> {"feedback": str, "outputs": list[dict]}. """ result: dict[str, dict] = {} # Load feedback feedback_map: dict[str, str] = {} feedback_path = workspace / "feedback.json" if feedback_path.exists(): try: data = json.loads(feedback_path.read_text()) feedback_map = { r["run_id"]: r["feedback"] for r in data.get("reviews", []) if r.get("feedback", "").strip() } except (json.JSONDecodeError, OSError, KeyError): pass # Load runs (to get outputs) prev_runs = find_runs(workspace) for run in prev_runs: result[run["id"]] = { "feedback": feedback_map.get(run["id"], ""), "outputs": run.get("outputs", []), } # Also add feedback for run_ids that had feedback but no matching run for run_id, fb in feedback_map.items(): if run_id not in result: result[run_id] = {"feedback": fb, "outputs": []} return result def generate_html( runs: list[dict], skill_name: str, previous: dict[str, dict] | None = None, benchmark: dict | None = None, ) -> str: """Generate the complete standalone HTML page with embedded data.""" template_path = Path(__file__).parent / "viewer.html" template = template_path.read_text() # Build previous_feedback and previous_outputs maps for the template previous_feedback: dict[str, str] = {} previous_outputs: dict[str, list[dict]] = {} if previous: for run_id, data in previous.items(): if data.get("feedback"): previous_feedback[run_id] = data["feedback"] if data.get("outputs"): previous_outputs[run_id] = data["outputs"] embedded = { "skill_name": skill_name, "runs": runs, "previous_feedback": previous_feedback, "previous_outputs": previous_outputs, } if benchmark: embedded["benchmark"] = benchmark data_json = json.dumps(embedded) return template.replace("/*__EMBEDDED_DATA__*/", f"const EMBEDDED_DATA = {data_json};") # --------------------------------------------------------------------------- # HTTP server (stdlib only, zero dependencies) # --------------------------------------------------------------------------- def _kill_port(port: int) -> None: """Kill any process listening on the given port.""" try: result = subprocess.run( ["lsof", "-ti", f":{port}"], capture_output=True, text=True, timeout=5, ) for pid_str in result.stdout.strip().split("\n"): if pid_str.strip(): try: os.kill(int(pid_str.strip()), signal.SIGTERM) except (ProcessLookupError, ValueError): pass if result.stdout.strip(): time.sleep(0.5) except subprocess.TimeoutExpired: pass except FileNotFoundError: print("Note: lsof not found, cannot check if port is in use", file=sys.stderr) class ReviewHandler(BaseHTTPRequestHandler): """Serves the review HTML and handles feedback saves. Regenerates the HTML on each page load so that refreshing the browser picks up new eval outputs without restarting the server. """ def __init__( self, workspace: Path, skill_name: str, feedback_path: Path, previous: dict[str, dict], benchmark_path: Path | None, *args, **kwargs, ): self.workspace = workspace self.skill_name = skill_name self.feedback_path = feedback_path self.previous = previous self.benchmark_path = benchmark_path super().__init__(*args, **kwargs) def do_GET(self) -> None: if self.path == "/" or self.path == "/index.html": # Regenerate HTML on each request (re-scans workspace for new outputs) runs = find_runs(self.workspace) benchmark = None if self.benchmark_path and self.benchmark_path.exists(): try: benchmark = json.loads(self.benchmark_path.read_text()) except (json.JSONDecodeError, OSError): pass html = generate_html(runs, self.skill_name, self.previous, benchmark) content = html.encode("utf-8") self.send_response(200) self.send_header("Content-Type", "text/html; charset=utf-8") self.send_header("Content-Length", str(len(content))) self.end_headers() self.wfile.write(content) elif self.path == "/api/feedback": data = b"{}" if self.feedback_path.exists(): data = self.feedback_path.read_bytes() self.send_response(200) self.send_header("Content-Type", "application/json") self.send_header("Content-Length", str(len(data))) self.end_headers() self.wfile.write(data) else: self.send_error(404) def do_POST(self) -> None: if self.path == "/api/feedback": length = int(self.headers.get("Content-Length", 0)) body = self.rfile.read(length) try: data = json.loads(body) if not isinstance(data, dict) or "reviews" not in data: raise ValueError("Expected JSON object with 'reviews' key") self.feedback_path.write_text(json.dumps(data, indent=2) + "\n") resp = b'{"ok":true}' self.send_response(200) except (json.JSONDecodeError, OSError, ValueError) as e: resp = json.dumps({"error": str(e)}).encode() self.send_response(500) self.send_header("Content-Type", "application/json") self.send_header("Content-Length", str(len(resp))) self.end_headers() self.wfile.write(resp) else: self.send_error(404) def log_message(self, format: str, *args: object) -> None: # Suppress request logging to keep terminal clean pass def main() -> None: parser = argparse.ArgumentParser(description="Generate and serve eval review") parser.add_argument("workspace", type=Path, help="Path to workspace directory") parser.add_argument("--port", "-p", type=int, default=3117, help="Server port (default: 3117)") parser.add_argument("--skill-name", "-n", type=str, default=None, help="Skill name for header") parser.add_argument( "--previous-workspace", type=Path, default=None, help="Path to previous iteration's workspace (shows old outputs and feedback as context)", ) parser.add_argument( "--benchmark", type=Path, default=None, help="Path to benchmark.json to show in the Benchmark tab", ) parser.add_argument( "--static", "-s", type=Path, default=None, help="Write standalone HTML to this path instead of starting a server", ) args = parser.parse_args() workspace = args.workspace.resolve() if not workspace.is_dir(): print(f"Error: {workspace} is not a directory", file=sys.stderr) sys.exit(1) runs = find_runs(workspace) if not runs: print(f"No runs found in {workspace}", file=sys.stderr) sys.exit(1) skill_name = args.skill_name or workspace.name.replace("-workspace", "") feedback_path = workspace / "feedback.json" previous: dict[str, dict] = {} if args.previous_workspace: previous = load_previous_iteration(args.previous_workspace.resolve()) benchmark_path = args.benchmark.resolve() if args.benchmark else None benchmark = None if benchmark_path and benchmark_path.exists(): try: benchmark = json.loads(benchmark_path.read_text()) except (json.JSONDecodeError, OSError): pass if args.static: html = generate_html(runs, skill_name, previous, benchmark) args.static.parent.mkdir(parents=True, exist_ok=True) args.static.write_text(html) print(f"\n Static viewer written to: {args.static}\n") sys.exit(0) # Kill any existing process on the target port port = args.port _kill_port(port) handler = partial(ReviewHandler, workspace, skill_name, feedback_path, previous, benchmark_path) try: server = HTTPServer(("127.0.0.1", port), handler) except OSError: # Port still in use after kill attempt — find a free one server = HTTPServer(("127.0.0.1", 0), handler) port = server.server_address[1] url = f"http://localhost:{port}" print(f"\n Eval Viewer") print(f" ─────────────────────────────────") print(f" URL: {url}") print(f" Workspace: {workspace}") print(f" Feedback: {feedback_path}") if previous: print(f" Previous: {args.previous_workspace} ({len(previous)} runs)") if benchmark_path: print(f" Benchmark: {benchmark_path}") print(f"\n Press Ctrl+C to stop.\n") webbrowser.open(url) try: server.serve_forever() except KeyboardInterrupt: print("\nStopped.") server.server_close() if __name__ == "__main__": main() ================================================ FILE: skills/skill-creator/eval-viewer/viewer.html ================================================ Eval Review

Eval Review:

Review each output and leave feedback below. Navigate with arrow keys or buttons. When done, copy feedback and paste into Claude Code.
Prompt
Output
No output files found
Your Feedback
No benchmark data available. Run a benchmark to see quantitative results here.

Review Complete

Your feedback has been saved. Go back to your Claude Code session and tell Claude you're done reviewing.

================================================ FILE: skills/skill-creator/references/schemas.md ================================================ # JSON Schemas This document defines the JSON schemas used by skill-creator. --- ## evals.json Defines the evals for a skill. Located at `evals/evals.json` within the skill directory. ```json { "skill_name": "example-skill", "evals": [ { "id": 1, "prompt": "User's example prompt", "expected_output": "Description of expected result", "files": ["evals/files/sample1.pdf"], "expectations": [ "The output includes X", "The skill used script Y" ] } ] } ``` **Fields:** - `skill_name`: Name matching the skill's frontmatter - `evals[].id`: Unique integer identifier - `evals[].prompt`: The task to execute - `evals[].expected_output`: Human-readable description of success - `evals[].files`: Optional list of input file paths (relative to skill root) - `evals[].expectations`: List of verifiable statements --- ## history.json Tracks version progression in Improve mode. Located at workspace root. ```json { "started_at": "2026-01-15T10:30:00Z", "skill_name": "pdf", "current_best": "v2", "iterations": [ { "version": "v0", "parent": null, "expectation_pass_rate": 0.65, "grading_result": "baseline", "is_current_best": false }, { "version": "v1", "parent": "v0", "expectation_pass_rate": 0.75, "grading_result": "won", "is_current_best": false }, { "version": "v2", "parent": "v1", "expectation_pass_rate": 0.85, "grading_result": "won", "is_current_best": true } ] } ``` **Fields:** - `started_at`: ISO timestamp of when improvement started - `skill_name`: Name of the skill being improved - `current_best`: Version identifier of the best performer - `iterations[].version`: Version identifier (v0, v1, ...) - `iterations[].parent`: Parent version this was derived from - `iterations[].expectation_pass_rate`: Pass rate from grading - `iterations[].grading_result`: "baseline", "won", "lost", or "tie" - `iterations[].is_current_best`: Whether this is the current best version --- ## grading.json Output from the grader agent. Located at `/grading.json`. ```json { "expectations": [ { "text": "The output includes the name 'John Smith'", "passed": true, "evidence": "Found in transcript Step 3: 'Extracted names: John Smith, Sarah Johnson'" }, { "text": "The spreadsheet has a SUM formula in cell B10", "passed": false, "evidence": "No spreadsheet was created. The output was a text file." } ], "summary": { "passed": 2, "failed": 1, "total": 3, "pass_rate": 0.67 }, "execution_metrics": { "tool_calls": { "Read": 5, "Write": 2, "Bash": 8 }, "total_tool_calls": 15, "total_steps": 6, "errors_encountered": 0, "output_chars": 12450, "transcript_chars": 3200 }, "timing": { "executor_duration_seconds": 165.0, "grader_duration_seconds": 26.0, "total_duration_seconds": 191.0 }, "claims": [ { "claim": "The form has 12 fillable fields", "type": "factual", "verified": true, "evidence": "Counted 12 fields in field_info.json" } ], "user_notes_summary": { "uncertainties": ["Used 2023 data, may be stale"], "needs_review": [], "workarounds": ["Fell back to text overlay for non-fillable fields"] }, "eval_feedback": { "suggestions": [ { "assertion": "The output includes the name 'John Smith'", "reason": "A hallucinated document that mentions the name would also pass" } ], "overall": "Assertions check presence but not correctness." } } ``` **Fields:** - `expectations[]`: Graded expectations with evidence - `summary`: Aggregate pass/fail counts - `execution_metrics`: Tool usage and output size (from executor's metrics.json) - `timing`: Wall clock timing (from timing.json) - `claims`: Extracted and verified claims from the output - `user_notes_summary`: Issues flagged by the executor - `eval_feedback`: (optional) Improvement suggestions for the evals, only present when the grader identifies issues worth raising --- ## metrics.json Output from the executor agent. Located at `/outputs/metrics.json`. ```json { "tool_calls": { "Read": 5, "Write": 2, "Bash": 8, "Edit": 1, "Glob": 2, "Grep": 0 }, "total_tool_calls": 18, "total_steps": 6, "files_created": ["filled_form.pdf", "field_values.json"], "errors_encountered": 0, "output_chars": 12450, "transcript_chars": 3200 } ``` **Fields:** - `tool_calls`: Count per tool type - `total_tool_calls`: Sum of all tool calls - `total_steps`: Number of major execution steps - `files_created`: List of output files created - `errors_encountered`: Number of errors during execution - `output_chars`: Total character count of output files - `transcript_chars`: Character count of transcript --- ## timing.json Wall clock timing for a run. Located at `/timing.json`. **How to capture:** When a subagent task completes, the task notification includes `total_tokens` and `duration_ms`. Save these immediately — they are not persisted anywhere else and cannot be recovered after the fact. ```json { "total_tokens": 84852, "duration_ms": 23332, "total_duration_seconds": 23.3, "executor_start": "2026-01-15T10:30:00Z", "executor_end": "2026-01-15T10:32:45Z", "executor_duration_seconds": 165.0, "grader_start": "2026-01-15T10:32:46Z", "grader_end": "2026-01-15T10:33:12Z", "grader_duration_seconds": 26.0 } ``` --- ## benchmark.json Output from Benchmark mode. Located at `benchmarks//benchmark.json`. ```json { "metadata": { "skill_name": "pdf", "skill_path": "/path/to/pdf", "executor_model": "claude-sonnet-4-20250514", "analyzer_model": "most-capable-model", "timestamp": "2026-01-15T10:30:00Z", "evals_run": [1, 2, 3], "runs_per_configuration": 3 }, "runs": [ { "eval_id": 1, "eval_name": "Ocean", "configuration": "with_skill", "run_number": 1, "result": { "pass_rate": 0.85, "passed": 6, "failed": 1, "total": 7, "time_seconds": 42.5, "tokens": 3800, "tool_calls": 18, "errors": 0 }, "expectations": [ {"text": "...", "passed": true, "evidence": "..."} ], "notes": [ "Used 2023 data, may be stale", "Fell back to text overlay for non-fillable fields" ] } ], "run_summary": { "with_skill": { "pass_rate": {"mean": 0.85, "stddev": 0.05, "min": 0.80, "max": 0.90}, "time_seconds": {"mean": 45.0, "stddev": 12.0, "min": 32.0, "max": 58.0}, "tokens": {"mean": 3800, "stddev": 400, "min": 3200, "max": 4100} }, "without_skill": { "pass_rate": {"mean": 0.35, "stddev": 0.08, "min": 0.28, "max": 0.45}, "time_seconds": {"mean": 32.0, "stddev": 8.0, "min": 24.0, "max": 42.0}, "tokens": {"mean": 2100, "stddev": 300, "min": 1800, "max": 2500} }, "delta": { "pass_rate": "+0.50", "time_seconds": "+13.0", "tokens": "+1700" } }, "notes": [ "Assertion 'Output is a PDF file' passes 100% in both configurations - may not differentiate skill value", "Eval 3 shows high variance (50% ± 40%) - may be flaky or model-dependent", "Without-skill runs consistently fail on table extraction expectations", "Skill adds 13s average execution time but improves pass rate by 50%" ] } ``` **Fields:** - `metadata`: Information about the benchmark run - `skill_name`: Name of the skill - `timestamp`: When the benchmark was run - `evals_run`: List of eval names or IDs - `runs_per_configuration`: Number of runs per config (e.g. 3) - `runs[]`: Individual run results - `eval_id`: Numeric eval identifier - `eval_name`: Human-readable eval name (used as section header in the viewer) - `configuration`: Must be `"with_skill"` or `"without_skill"` (the viewer uses this exact string for grouping and color coding) - `run_number`: Integer run number (1, 2, 3...) - `result`: Nested object with `pass_rate`, `passed`, `total`, `time_seconds`, `tokens`, `errors` - `run_summary`: Statistical aggregates per configuration - `with_skill` / `without_skill`: Each contains `pass_rate`, `time_seconds`, `tokens` objects with `mean` and `stddev` fields - `delta`: Difference strings like `"+0.50"`, `"+13.0"`, `"+1700"` - `notes`: Freeform observations from the analyzer **Important:** The viewer reads these field names exactly. Using `config` instead of `configuration`, or putting `pass_rate` at the top level of a run instead of nested under `result`, will cause the viewer to show empty/zero values. Always reference this schema when generating benchmark.json manually. --- ## comparison.json Output from blind comparator. Located at `/comparison-N.json`. ```json { "winner": "A", "reasoning": "Output A provides a complete solution with proper formatting and all required fields. Output B is missing the date field and has formatting inconsistencies.", "rubric": { "A": { "content": { "correctness": 5, "completeness": 5, "accuracy": 4 }, "structure": { "organization": 4, "formatting": 5, "usability": 4 }, "content_score": 4.7, "structure_score": 4.3, "overall_score": 9.0 }, "B": { "content": { "correctness": 3, "completeness": 2, "accuracy": 3 }, "structure": { "organization": 3, "formatting": 2, "usability": 3 }, "content_score": 2.7, "structure_score": 2.7, "overall_score": 5.4 } }, "output_quality": { "A": { "score": 9, "strengths": ["Complete solution", "Well-formatted", "All fields present"], "weaknesses": ["Minor style inconsistency in header"] }, "B": { "score": 5, "strengths": ["Readable output", "Correct basic structure"], "weaknesses": ["Missing date field", "Formatting inconsistencies", "Partial data extraction"] } }, "expectation_results": { "A": { "passed": 4, "total": 5, "pass_rate": 0.80, "details": [ {"text": "Output includes name", "passed": true} ] }, "B": { "passed": 3, "total": 5, "pass_rate": 0.60, "details": [ {"text": "Output includes name", "passed": true} ] } } } ``` --- ## analysis.json Output from post-hoc analyzer. Located at `/analysis.json`. ```json { "comparison_summary": { "winner": "A", "winner_skill": "path/to/winner/skill", "loser_skill": "path/to/loser/skill", "comparator_reasoning": "Brief summary of why comparator chose winner" }, "winner_strengths": [ "Clear step-by-step instructions for handling multi-page documents", "Included validation script that caught formatting errors" ], "loser_weaknesses": [ "Vague instruction 'process the document appropriately' led to inconsistent behavior", "No script for validation, agent had to improvise" ], "instruction_following": { "winner": { "score": 9, "issues": ["Minor: skipped optional logging step"] }, "loser": { "score": 6, "issues": [ "Did not use the skill's formatting template", "Invented own approach instead of following step 3" ] } }, "improvement_suggestions": [ { "priority": "high", "category": "instructions", "suggestion": "Replace 'process the document appropriately' with explicit steps", "expected_impact": "Would eliminate ambiguity that caused inconsistent behavior" } ], "transcript_insights": { "winner_execution_pattern": "Read skill -> Followed 5-step process -> Used validation script", "loser_execution_pattern": "Read skill -> Unclear on approach -> Tried 3 different methods" } } ``` ================================================ FILE: skills/skill-creator/scripts/__init__.py ================================================ ================================================ FILE: skills/skill-creator/scripts/aggregate_benchmark.py ================================================ #!/usr/bin/env python3 """ Aggregate individual run results into benchmark summary statistics. Reads grading.json files from run directories and produces: - run_summary with mean, stddev, min, max for each metric - delta between with_skill and without_skill configurations Usage: python aggregate_benchmark.py Example: python aggregate_benchmark.py benchmarks/2026-01-15T10-30-00/ The script supports two directory layouts: Workspace layout (from skill-creator iterations): / └── eval-N/ ├── with_skill/ │ ├── run-1/grading.json │ └── run-2/grading.json └── without_skill/ ├── run-1/grading.json └── run-2/grading.json Legacy layout (with runs/ subdirectory): / └── runs/ └── eval-N/ ├── with_skill/ │ └── run-1/grading.json └── without_skill/ └── run-1/grading.json """ import argparse import json import math import sys from datetime import datetime, timezone from pathlib import Path def calculate_stats(values: list[float]) -> dict: """Calculate mean, stddev, min, max for a list of values.""" if not values: return {"mean": 0.0, "stddev": 0.0, "min": 0.0, "max": 0.0} n = len(values) mean = sum(values) / n if n > 1: variance = sum((x - mean) ** 2 for x in values) / (n - 1) stddev = math.sqrt(variance) else: stddev = 0.0 return { "mean": round(mean, 4), "stddev": round(stddev, 4), "min": round(min(values), 4), "max": round(max(values), 4) } def load_run_results(benchmark_dir: Path) -> dict: """ Load all run results from a benchmark directory. Returns dict keyed by config name (e.g. "with_skill"/"without_skill", or "new_skill"/"old_skill"), each containing a list of run results. """ # Support both layouts: eval dirs directly under benchmark_dir, or under runs/ runs_dir = benchmark_dir / "runs" if runs_dir.exists(): search_dir = runs_dir elif list(benchmark_dir.glob("eval-*")): search_dir = benchmark_dir else: print(f"No eval directories found in {benchmark_dir} or {benchmark_dir / 'runs'}") return {} results: dict[str, list] = {} for eval_idx, eval_dir in enumerate(sorted(search_dir.glob("eval-*"))): metadata_path = eval_dir / "eval_metadata.json" if metadata_path.exists(): try: with open(metadata_path) as mf: eval_id = json.load(mf).get("eval_id", eval_idx) except (json.JSONDecodeError, OSError): eval_id = eval_idx else: try: eval_id = int(eval_dir.name.split("-")[1]) except ValueError: eval_id = eval_idx # Discover config directories dynamically rather than hardcoding names for config_dir in sorted(eval_dir.iterdir()): if not config_dir.is_dir(): continue # Skip non-config directories (inputs, outputs, etc.) if not list(config_dir.glob("run-*")): continue config = config_dir.name if config not in results: results[config] = [] for run_dir in sorted(config_dir.glob("run-*")): run_number = int(run_dir.name.split("-")[1]) grading_file = run_dir / "grading.json" if not grading_file.exists(): print(f"Warning: grading.json not found in {run_dir}") continue try: with open(grading_file) as f: grading = json.load(f) except json.JSONDecodeError as e: print(f"Warning: Invalid JSON in {grading_file}: {e}") continue # Extract metrics result = { "eval_id": eval_id, "run_number": run_number, "pass_rate": grading.get("summary", {}).get("pass_rate", 0.0), "passed": grading.get("summary", {}).get("passed", 0), "failed": grading.get("summary", {}).get("failed", 0), "total": grading.get("summary", {}).get("total", 0), } # Extract timing — check grading.json first, then sibling timing.json timing = grading.get("timing", {}) result["time_seconds"] = timing.get("total_duration_seconds", 0.0) timing_file = run_dir / "timing.json" if result["time_seconds"] == 0.0 and timing_file.exists(): try: with open(timing_file) as tf: timing_data = json.load(tf) result["time_seconds"] = timing_data.get("total_duration_seconds", 0.0) result["tokens"] = timing_data.get("total_tokens", 0) except json.JSONDecodeError: pass # Extract metrics if available metrics = grading.get("execution_metrics", {}) result["tool_calls"] = metrics.get("total_tool_calls", 0) if not result.get("tokens"): result["tokens"] = metrics.get("output_chars", 0) result["errors"] = metrics.get("errors_encountered", 0) # Extract expectations — viewer requires fields: text, passed, evidence raw_expectations = grading.get("expectations", []) for exp in raw_expectations: if "text" not in exp or "passed" not in exp: print(f"Warning: expectation in {grading_file} missing required fields (text, passed, evidence): {exp}") result["expectations"] = raw_expectations # Extract notes from user_notes_summary notes_summary = grading.get("user_notes_summary", {}) notes = [] notes.extend(notes_summary.get("uncertainties", [])) notes.extend(notes_summary.get("needs_review", [])) notes.extend(notes_summary.get("workarounds", [])) result["notes"] = notes results[config].append(result) return results def aggregate_results(results: dict) -> dict: """ Aggregate run results into summary statistics. Returns run_summary with stats for each configuration and delta. """ run_summary = {} configs = list(results.keys()) for config in configs: runs = results.get(config, []) if not runs: run_summary[config] = { "pass_rate": {"mean": 0.0, "stddev": 0.0, "min": 0.0, "max": 0.0}, "time_seconds": {"mean": 0.0, "stddev": 0.0, "min": 0.0, "max": 0.0}, "tokens": {"mean": 0, "stddev": 0, "min": 0, "max": 0} } continue pass_rates = [r["pass_rate"] for r in runs] times = [r["time_seconds"] for r in runs] tokens = [r.get("tokens", 0) for r in runs] run_summary[config] = { "pass_rate": calculate_stats(pass_rates), "time_seconds": calculate_stats(times), "tokens": calculate_stats(tokens) } # Calculate delta between the first two configs (if two exist) if len(configs) >= 2: primary = run_summary.get(configs[0], {}) baseline = run_summary.get(configs[1], {}) else: primary = run_summary.get(configs[0], {}) if configs else {} baseline = {} delta_pass_rate = primary.get("pass_rate", {}).get("mean", 0) - baseline.get("pass_rate", {}).get("mean", 0) delta_time = primary.get("time_seconds", {}).get("mean", 0) - baseline.get("time_seconds", {}).get("mean", 0) delta_tokens = primary.get("tokens", {}).get("mean", 0) - baseline.get("tokens", {}).get("mean", 0) run_summary["delta"] = { "pass_rate": f"{delta_pass_rate:+.2f}", "time_seconds": f"{delta_time:+.1f}", "tokens": f"{delta_tokens:+.0f}" } return run_summary def generate_benchmark(benchmark_dir: Path, skill_name: str = "", skill_path: str = "") -> dict: """ Generate complete benchmark.json from run results. """ results = load_run_results(benchmark_dir) run_summary = aggregate_results(results) # Build runs array for benchmark.json runs = [] for config in results: for result in results[config]: runs.append({ "eval_id": result["eval_id"], "configuration": config, "run_number": result["run_number"], "result": { "pass_rate": result["pass_rate"], "passed": result["passed"], "failed": result["failed"], "total": result["total"], "time_seconds": result["time_seconds"], "tokens": result.get("tokens", 0), "tool_calls": result.get("tool_calls", 0), "errors": result.get("errors", 0) }, "expectations": result["expectations"], "notes": result["notes"] }) # Determine eval IDs from results eval_ids = sorted(set( r["eval_id"] for config in results.values() for r in config )) benchmark = { "metadata": { "skill_name": skill_name or "", "skill_path": skill_path or "", "executor_model": "", "analyzer_model": "", "timestamp": datetime.now(timezone.utc).strftime("%Y-%m-%dT%H:%M:%SZ"), "evals_run": eval_ids, "runs_per_configuration": 3 }, "runs": runs, "run_summary": run_summary, "notes": [] # To be filled by analyzer } return benchmark def generate_markdown(benchmark: dict) -> str: """Generate human-readable benchmark.md from benchmark data.""" metadata = benchmark["metadata"] run_summary = benchmark["run_summary"] # Determine config names (excluding "delta") configs = [k for k in run_summary if k != "delta"] config_a = configs[0] if len(configs) >= 1 else "config_a" config_b = configs[1] if len(configs) >= 2 else "config_b" label_a = config_a.replace("_", " ").title() label_b = config_b.replace("_", " ").title() lines = [ f"# Skill Benchmark: {metadata['skill_name']}", "", f"**Model**: {metadata['executor_model']}", f"**Date**: {metadata['timestamp']}", f"**Evals**: {', '.join(map(str, metadata['evals_run']))} ({metadata['runs_per_configuration']} runs each per configuration)", "", "## Summary", "", f"| Metric | {label_a} | {label_b} | Delta |", "|--------|------------|---------------|-------|", ] a_summary = run_summary.get(config_a, {}) b_summary = run_summary.get(config_b, {}) delta = run_summary.get("delta", {}) # Format pass rate a_pr = a_summary.get("pass_rate", {}) b_pr = b_summary.get("pass_rate", {}) lines.append(f"| Pass Rate | {a_pr.get('mean', 0)*100:.0f}% ± {a_pr.get('stddev', 0)*100:.0f}% | {b_pr.get('mean', 0)*100:.0f}% ± {b_pr.get('stddev', 0)*100:.0f}% | {delta.get('pass_rate', '—')} |") # Format time a_time = a_summary.get("time_seconds", {}) b_time = b_summary.get("time_seconds", {}) lines.append(f"| Time | {a_time.get('mean', 0):.1f}s ± {a_time.get('stddev', 0):.1f}s | {b_time.get('mean', 0):.1f}s ± {b_time.get('stddev', 0):.1f}s | {delta.get('time_seconds', '—')}s |") # Format tokens a_tokens = a_summary.get("tokens", {}) b_tokens = b_summary.get("tokens", {}) lines.append(f"| Tokens | {a_tokens.get('mean', 0):.0f} ± {a_tokens.get('stddev', 0):.0f} | {b_tokens.get('mean', 0):.0f} ± {b_tokens.get('stddev', 0):.0f} | {delta.get('tokens', '—')} |") # Notes section if benchmark.get("notes"): lines.extend([ "", "## Notes", "" ]) for note in benchmark["notes"]: lines.append(f"- {note}") return "\n".join(lines) def main(): parser = argparse.ArgumentParser( description="Aggregate benchmark run results into summary statistics" ) parser.add_argument( "benchmark_dir", type=Path, help="Path to the benchmark directory" ) parser.add_argument( "--skill-name", default="", help="Name of the skill being benchmarked" ) parser.add_argument( "--skill-path", default="", help="Path to the skill being benchmarked" ) parser.add_argument( "--output", "-o", type=Path, help="Output path for benchmark.json (default: /benchmark.json)" ) args = parser.parse_args() if not args.benchmark_dir.exists(): print(f"Directory not found: {args.benchmark_dir}") sys.exit(1) # Generate benchmark benchmark = generate_benchmark(args.benchmark_dir, args.skill_name, args.skill_path) # Determine output paths output_json = args.output or (args.benchmark_dir / "benchmark.json") output_md = output_json.with_suffix(".md") # Write benchmark.json with open(output_json, "w") as f: json.dump(benchmark, f, indent=2) print(f"Generated: {output_json}") # Write benchmark.md markdown = generate_markdown(benchmark) with open(output_md, "w") as f: f.write(markdown) print(f"Generated: {output_md}") # Print summary run_summary = benchmark["run_summary"] configs = [k for k in run_summary if k != "delta"] delta = run_summary.get("delta", {}) print(f"\nSummary:") for config in configs: pr = run_summary[config]["pass_rate"]["mean"] label = config.replace("_", " ").title() print(f" {label}: {pr*100:.1f}% pass rate") print(f" Delta: {delta.get('pass_rate', '—')}") if __name__ == "__main__": main() ================================================ FILE: skills/skill-creator/scripts/generate_report.py ================================================ #!/usr/bin/env python3 """Generate an HTML report from run_loop.py output. Takes the JSON output from run_loop.py and generates a visual HTML report showing each description attempt with check/x for each test case. Distinguishes between train and test queries. """ import argparse import html import json import sys from pathlib import Path def generate_html(data: dict, auto_refresh: bool = False, skill_name: str = "") -> str: """Generate HTML report from loop output data. If auto_refresh is True, adds a meta refresh tag.""" history = data.get("history", []) holdout = data.get("holdout", 0) title_prefix = html.escape(skill_name + " \u2014 ") if skill_name else "" # Get all unique queries from train and test sets, with should_trigger info train_queries: list[dict] = [] test_queries: list[dict] = [] if history: for r in history[0].get("train_results", history[0].get("results", [])): train_queries.append({"query": r["query"], "should_trigger": r.get("should_trigger", True)}) if history[0].get("test_results"): for r in history[0].get("test_results", []): test_queries.append({"query": r["query"], "should_trigger": r.get("should_trigger", True)}) refresh_tag = ' \n' if auto_refresh else "" html_parts = [""" """ + refresh_tag + """ """ + title_prefix + """Skill Description Optimization

""" + title_prefix + """Skill Description Optimization

Optimizing your skill's description. This page updates automatically as Claude tests different versions of your skill's description. Each row is an iteration — a new description attempt. The columns show test queries: green checkmarks mean the skill triggered correctly (or correctly didn't trigger), red crosses mean it got it wrong. The "Train" score shows performance on queries used to improve the description; the "Test" score shows performance on held-out queries the optimizer hasn't seen. When it's done, Claude will apply the best-performing description to your skill.
"""] # Summary section best_test_score = data.get('best_test_score') best_train_score = data.get('best_train_score') html_parts.append(f"""

Original: {html.escape(data.get('original_description', 'N/A'))}

Best: {html.escape(data.get('best_description', 'N/A'))}

Best Score: {data.get('best_score', 'N/A')} {'(test)' if best_test_score else '(train)'}

Iterations: {data.get('iterations_run', 0)} | Train: {data.get('train_size', '?')} | Test: {data.get('test_size', '?')}

""") # Legend html_parts.append("""
Query columns: Should trigger Should NOT trigger Train Test
""") # Table header html_parts.append("""
""") # Add column headers for train queries for qinfo in train_queries: polarity = "positive-col" if qinfo["should_trigger"] else "negative-col" html_parts.append(f' \n') # Add column headers for test queries (different color) for qinfo in test_queries: polarity = "positive-col" if qinfo["should_trigger"] else "negative-col" html_parts.append(f' \n') html_parts.append(""" """) # Find best iteration for highlighting if test_queries: best_iter = max(history, key=lambda h: h.get("test_passed") or 0).get("iteration") else: best_iter = max(history, key=lambda h: h.get("train_passed", h.get("passed", 0))).get("iteration") # Add rows for each iteration for h in history: iteration = h.get("iteration", "?") train_passed = h.get("train_passed", h.get("passed", 0)) train_total = h.get("train_total", h.get("total", 0)) test_passed = h.get("test_passed") test_total = h.get("test_total") description = h.get("description", "") train_results = h.get("train_results", h.get("results", [])) test_results = h.get("test_results", []) # Create lookups for results by query train_by_query = {r["query"]: r for r in train_results} test_by_query = {r["query"]: r for r in test_results} if test_results else {} # Compute aggregate correct/total runs across all retries def aggregate_runs(results: list[dict]) -> tuple[int, int]: correct = 0 total = 0 for r in results: runs = r.get("runs", 0) triggers = r.get("triggers", 0) total += runs if r.get("should_trigger", True): correct += triggers else: correct += runs - triggers return correct, total train_correct, train_runs = aggregate_runs(train_results) test_correct, test_runs = aggregate_runs(test_results) # Determine score classes def score_class(correct: int, total: int) -> str: if total > 0: ratio = correct / total if ratio >= 0.8: return "score-good" elif ratio >= 0.5: return "score-ok" return "score-bad" train_class = score_class(train_correct, train_runs) test_class = score_class(test_correct, test_runs) row_class = "best-row" if iteration == best_iter else "" html_parts.append(f""" """) # Add result for each train query for qinfo in train_queries: r = train_by_query.get(qinfo["query"], {}) did_pass = r.get("pass", False) triggers = r.get("triggers", 0) runs = r.get("runs", 0) icon = "✓" if did_pass else "✗" css_class = "pass" if did_pass else "fail" html_parts.append(f' \n') # Add result for each test query (with different background) for qinfo in test_queries: r = test_by_query.get(qinfo["query"], {}) did_pass = r.get("pass", False) triggers = r.get("triggers", 0) runs = r.get("runs", 0) icon = "✓" if did_pass else "✗" css_class = "pass" if did_pass else "fail" html_parts.append(f' \n') html_parts.append(" \n") html_parts.append("""
Iter Train Test Description{html.escape(qinfo["query"])}{html.escape(qinfo["query"])}
{iteration} {train_correct}/{train_runs} {test_correct}/{test_runs} {html.escape(description)}{icon}{triggers}/{runs}{icon}{triggers}/{runs}
""") html_parts.append(""" """) return "".join(html_parts) def main(): parser = argparse.ArgumentParser(description="Generate HTML report from run_loop output") parser.add_argument("input", help="Path to JSON output from run_loop.py (or - for stdin)") parser.add_argument("-o", "--output", default=None, help="Output HTML file (default: stdout)") parser.add_argument("--skill-name", default="", help="Skill name to include in the report title") args = parser.parse_args() if args.input == "-": data = json.load(sys.stdin) else: data = json.loads(Path(args.input).read_text()) html_output = generate_html(data, skill_name=args.skill_name) if args.output: Path(args.output).write_text(html_output) print(f"Report written to {args.output}", file=sys.stderr) else: print(html_output) if __name__ == "__main__": main() ================================================ FILE: skills/skill-creator/scripts/improve_description.py ================================================ #!/usr/bin/env python3 """Improve a skill description based on eval results. Takes eval results (from run_eval.py) and generates an improved description by calling `claude -p` as a subprocess (same auth pattern as run_eval.py — uses the session's Claude Code auth, no separate ANTHROPIC_API_KEY needed). """ import argparse import json import os import re import subprocess import sys from pathlib import Path from scripts.utils import parse_skill_md def _call_claude(prompt: str, model: str | None, timeout: int = 300) -> str: """Run `claude -p` with the prompt on stdin and return the text response. Prompt goes over stdin (not argv) because it embeds the full SKILL.md body and can easily exceed comfortable argv length. """ cmd = ["claude", "-p", "--output-format", "text"] if model: cmd.extend(["--model", model]) # Remove CLAUDECODE env var to allow nesting claude -p inside a # Claude Code session. The guard is for interactive terminal conflicts; # programmatic subprocess usage is safe. Same pattern as run_eval.py. env = {k: v for k, v in os.environ.items() if k != "CLAUDECODE"} result = subprocess.run( cmd, input=prompt, capture_output=True, text=True, env=env, timeout=timeout, ) if result.returncode != 0: raise RuntimeError( f"claude -p exited {result.returncode}\nstderr: {result.stderr}" ) return result.stdout def improve_description( skill_name: str, skill_content: str, current_description: str, eval_results: dict, history: list[dict], model: str, test_results: dict | None = None, log_dir: Path | None = None, iteration: int | None = None, ) -> str: """Call Claude to improve the description based on eval results.""" failed_triggers = [ r for r in eval_results["results"] if r["should_trigger"] and not r["pass"] ] false_triggers = [ r for r in eval_results["results"] if not r["should_trigger"] and not r["pass"] ] # Build scores summary train_score = f"{eval_results['summary']['passed']}/{eval_results['summary']['total']}" if test_results: test_score = f"{test_results['summary']['passed']}/{test_results['summary']['total']}" scores_summary = f"Train: {train_score}, Test: {test_score}" else: scores_summary = f"Train: {train_score}" prompt = f"""You are optimizing a skill description for a Claude Code skill called "{skill_name}". A "skill" is sort of like a prompt, but with progressive disclosure -- there's a title and description that Claude sees when deciding whether to use the skill, and then if it does use the skill, it reads the .md file which has lots more details and potentially links to other resources in the skill folder like helper files and scripts and additional documentation or examples. The description appears in Claude's "available_skills" list. When a user sends a query, Claude decides whether to invoke the skill based solely on the title and on this description. Your goal is to write a description that triggers for relevant queries, and doesn't trigger for irrelevant ones. Here's the current description: "{current_description}" Current scores ({scores_summary}): """ if failed_triggers: prompt += "FAILED TO TRIGGER (should have triggered but didn't):\n" for r in failed_triggers: prompt += f' - "{r["query"]}" (triggered {r["triggers"]}/{r["runs"]} times)\n' prompt += "\n" if false_triggers: prompt += "FALSE TRIGGERS (triggered but shouldn't have):\n" for r in false_triggers: prompt += f' - "{r["query"]}" (triggered {r["triggers"]}/{r["runs"]} times)\n' prompt += "\n" if history: prompt += "PREVIOUS ATTEMPTS (do NOT repeat these — try something structurally different):\n\n" for h in history: train_s = f"{h.get('train_passed', h.get('passed', 0))}/{h.get('train_total', h.get('total', 0))}" test_s = f"{h.get('test_passed', '?')}/{h.get('test_total', '?')}" if h.get('test_passed') is not None else None score_str = f"train={train_s}" + (f", test={test_s}" if test_s else "") prompt += f'\n' prompt += f'Description: "{h["description"]}"\n' if "results" in h: prompt += "Train results:\n" for r in h["results"]: status = "PASS" if r["pass"] else "FAIL" prompt += f' [{status}] "{r["query"][:80]}" (triggered {r["triggers"]}/{r["runs"]})\n' if h.get("note"): prompt += f'Note: {h["note"]}\n' prompt += "\n\n" prompt += f""" Skill content (for context on what the skill does): {skill_content} Based on the failures, write a new and improved description that is more likely to trigger correctly. When I say "based on the failures", it's a bit of a tricky line to walk because we don't want to overfit to the specific cases you're seeing. So what I DON'T want you to do is produce an ever-expanding list of specific queries that this skill should or shouldn't trigger for. Instead, try to generalize from the failures to broader categories of user intent and situations where this skill would be useful or not useful. The reason for this is twofold: 1. Avoid overfitting 2. The list might get loooong and it's injected into ALL queries and there might be a lot of skills, so we don't want to blow too much space on any given description. Concretely, your description should not be more than about 100-200 words, even if that comes at the cost of accuracy. There is a hard limit of 1024 characters — descriptions over that will be truncated, so stay comfortably under it. Here are some tips that we've found to work well in writing these descriptions: - The skill should be phrased in the imperative -- "Use this skill for" rather than "this skill does" - The skill description should focus on the user's intent, what they are trying to achieve, vs. the implementation details of how the skill works. - The description competes with other skills for Claude's attention — make it distinctive and immediately recognizable. - If you're getting lots of failures after repeated attempts, change things up. Try different sentence structures or wordings. I'd encourage you to be creative and mix up the style in different iterations since you'll have multiple opportunities to try different approaches and we'll just grab the highest-scoring one at the end. Please respond with only the new description text in tags, nothing else.""" text = _call_claude(prompt, model) match = re.search(r"(.*?)", text, re.DOTALL) description = match.group(1).strip().strip('"') if match else text.strip().strip('"') transcript: dict = { "iteration": iteration, "prompt": prompt, "response": text, "parsed_description": description, "char_count": len(description), "over_limit": len(description) > 1024, } # Safety net: the prompt already states the 1024-char hard limit, but if # the model blew past it anyway, make one fresh single-turn call that # quotes the too-long version and asks for a shorter rewrite. (The old # SDK path did this as a true multi-turn; `claude -p` is one-shot, so we # inline the prior output into the new prompt instead.) if len(description) > 1024: shorten_prompt = ( f"{prompt}\n\n" f"---\n\n" f"A previous attempt produced this description, which at " f"{len(description)} characters is over the 1024-character hard limit:\n\n" f'"{description}"\n\n' f"Rewrite it to be under 1024 characters while keeping the most " f"important trigger words and intent coverage. Respond with only " f"the new description in tags." ) shorten_text = _call_claude(shorten_prompt, model) match = re.search(r"(.*?)", shorten_text, re.DOTALL) shortened = match.group(1).strip().strip('"') if match else shorten_text.strip().strip('"') transcript["rewrite_prompt"] = shorten_prompt transcript["rewrite_response"] = shorten_text transcript["rewrite_description"] = shortened transcript["rewrite_char_count"] = len(shortened) description = shortened transcript["final_description"] = description if log_dir: log_dir.mkdir(parents=True, exist_ok=True) log_file = log_dir / f"improve_iter_{iteration or 'unknown'}.json" log_file.write_text(json.dumps(transcript, indent=2)) return description def main(): parser = argparse.ArgumentParser(description="Improve a skill description based on eval results") parser.add_argument("--eval-results", required=True, help="Path to eval results JSON (from run_eval.py)") parser.add_argument("--skill-path", required=True, help="Path to skill directory") parser.add_argument("--history", default=None, help="Path to history JSON (previous attempts)") parser.add_argument("--model", required=True, help="Model for improvement") parser.add_argument("--verbose", action="store_true", help="Print thinking to stderr") args = parser.parse_args() skill_path = Path(args.skill_path) if not (skill_path / "SKILL.md").exists(): print(f"Error: No SKILL.md found at {skill_path}", file=sys.stderr) sys.exit(1) eval_results = json.loads(Path(args.eval_results).read_text()) history = [] if args.history: history = json.loads(Path(args.history).read_text()) name, _, content = parse_skill_md(skill_path) current_description = eval_results["description"] if args.verbose: print(f"Current: {current_description}", file=sys.stderr) print(f"Score: {eval_results['summary']['passed']}/{eval_results['summary']['total']}", file=sys.stderr) new_description = improve_description( skill_name=name, skill_content=content, current_description=current_description, eval_results=eval_results, history=history, model=args.model, ) if args.verbose: print(f"Improved: {new_description}", file=sys.stderr) # Output as JSON with both the new description and updated history output = { "description": new_description, "history": history + [{ "description": current_description, "passed": eval_results["summary"]["passed"], "failed": eval_results["summary"]["failed"], "total": eval_results["summary"]["total"], "results": eval_results["results"], }], } print(json.dumps(output, indent=2)) if __name__ == "__main__": main() ================================================ FILE: skills/skill-creator/scripts/package_skill.py ================================================ #!/usr/bin/env python3 """ Skill Packager - Creates a distributable .skill file of a skill folder Usage: python utils/package_skill.py [output-directory] Example: python utils/package_skill.py skills/public/my-skill python utils/package_skill.py skills/public/my-skill ./dist """ import fnmatch import sys import zipfile from pathlib import Path from scripts.quick_validate import validate_skill # Patterns to exclude when packaging skills. EXCLUDE_DIRS = {"__pycache__", "node_modules"} EXCLUDE_GLOBS = {"*.pyc"} EXCLUDE_FILES = {".DS_Store"} # Directories excluded only at the skill root (not when nested deeper). ROOT_EXCLUDE_DIRS = {"evals"} def should_exclude(rel_path: Path) -> bool: """Check if a path should be excluded from packaging.""" parts = rel_path.parts if any(part in EXCLUDE_DIRS for part in parts): return True # rel_path is relative to skill_path.parent, so parts[0] is the skill # folder name and parts[1] (if present) is the first subdir. if len(parts) > 1 and parts[1] in ROOT_EXCLUDE_DIRS: return True name = rel_path.name if name in EXCLUDE_FILES: return True return any(fnmatch.fnmatch(name, pat) for pat in EXCLUDE_GLOBS) def package_skill(skill_path, output_dir=None): """ Package a skill folder into a .skill file. Args: skill_path: Path to the skill folder output_dir: Optional output directory for the .skill file (defaults to current directory) Returns: Path to the created .skill file, or None if error """ skill_path = Path(skill_path).resolve() # Validate skill folder exists if not skill_path.exists(): print(f"❌ Error: Skill folder not found: {skill_path}") return None if not skill_path.is_dir(): print(f"❌ Error: Path is not a directory: {skill_path}") return None # Validate SKILL.md exists skill_md = skill_path / "SKILL.md" if not skill_md.exists(): print(f"❌ Error: SKILL.md not found in {skill_path}") return None # Run validation before packaging print("🔍 Validating skill...") valid, message = validate_skill(skill_path) if not valid: print(f"❌ Validation failed: {message}") print(" Please fix the validation errors before packaging.") return None print(f"✅ {message}\n") # Determine output location skill_name = skill_path.name if output_dir: output_path = Path(output_dir).resolve() output_path.mkdir(parents=True, exist_ok=True) else: output_path = Path.cwd() skill_filename = output_path / f"{skill_name}.skill" # Create the .skill file (zip format) try: with zipfile.ZipFile(skill_filename, 'w', zipfile.ZIP_DEFLATED) as zipf: # Walk through the skill directory, excluding build artifacts for file_path in skill_path.rglob('*'): if not file_path.is_file(): continue arcname = file_path.relative_to(skill_path.parent) if should_exclude(arcname): print(f" Skipped: {arcname}") continue zipf.write(file_path, arcname) print(f" Added: {arcname}") print(f"\n✅ Successfully packaged skill to: {skill_filename}") return skill_filename except Exception as e: print(f"❌ Error creating .skill file: {e}") return None def main(): if len(sys.argv) < 2: print("Usage: python utils/package_skill.py [output-directory]") print("\nExample:") print(" python utils/package_skill.py skills/public/my-skill") print(" python utils/package_skill.py skills/public/my-skill ./dist") sys.exit(1) skill_path = sys.argv[1] output_dir = sys.argv[2] if len(sys.argv) > 2 else None print(f"📦 Packaging skill: {skill_path}") if output_dir: print(f" Output directory: {output_dir}") print() result = package_skill(skill_path, output_dir) if result: sys.exit(0) else: sys.exit(1) if __name__ == "__main__": main() ================================================ FILE: skills/skill-creator/scripts/quick_validate.py ================================================ #!/usr/bin/env python3 """ Quick validation script for skills - minimal version """ import sys import os import re import yaml from pathlib import Path def validate_skill(skill_path): """Basic validation of a skill""" skill_path = Path(skill_path) # Check SKILL.md exists skill_md = skill_path / 'SKILL.md' if not skill_md.exists(): return False, "SKILL.md not found" # Read and validate frontmatter content = skill_md.read_text() if not content.startswith('---'): return False, "No YAML frontmatter found" # Extract frontmatter match = re.match(r'^---\n(.*?)\n---', content, re.DOTALL) if not match: return False, "Invalid frontmatter format" frontmatter_text = match.group(1) # Parse YAML frontmatter try: frontmatter = yaml.safe_load(frontmatter_text) if not isinstance(frontmatter, dict): return False, "Frontmatter must be a YAML dictionary" except yaml.YAMLError as e: return False, f"Invalid YAML in frontmatter: {e}" # Define allowed properties ALLOWED_PROPERTIES = {'name', 'description', 'license', 'allowed-tools', 'metadata', 'compatibility'} # Check for unexpected properties (excluding nested keys under metadata) unexpected_keys = set(frontmatter.keys()) - ALLOWED_PROPERTIES if unexpected_keys: return False, ( f"Unexpected key(s) in SKILL.md frontmatter: {', '.join(sorted(unexpected_keys))}. " f"Allowed properties are: {', '.join(sorted(ALLOWED_PROPERTIES))}" ) # Check required fields if 'name' not in frontmatter: return False, "Missing 'name' in frontmatter" if 'description' not in frontmatter: return False, "Missing 'description' in frontmatter" # Extract name for validation name = frontmatter.get('name', '') if not isinstance(name, str): return False, f"Name must be a string, got {type(name).__name__}" name = name.strip() if name: # Check naming convention (kebab-case: lowercase with hyphens) if not re.match(r'^[a-z0-9-]+$', name): return False, f"Name '{name}' should be kebab-case (lowercase letters, digits, and hyphens only)" if name.startswith('-') or name.endswith('-') or '--' in name: return False, f"Name '{name}' cannot start/end with hyphen or contain consecutive hyphens" # Check name length (max 64 characters per spec) if len(name) > 64: return False, f"Name is too long ({len(name)} characters). Maximum is 64 characters." # Extract and validate description description = frontmatter.get('description', '') if not isinstance(description, str): return False, f"Description must be a string, got {type(description).__name__}" description = description.strip() if description: # Check for angle brackets if '<' in description or '>' in description: return False, "Description cannot contain angle brackets (< or >)" # Check description length (max 1024 characters per spec) if len(description) > 1024: return False, f"Description is too long ({len(description)} characters). Maximum is 1024 characters." # Validate compatibility field if present (optional) compatibility = frontmatter.get('compatibility', '') if compatibility: if not isinstance(compatibility, str): return False, f"Compatibility must be a string, got {type(compatibility).__name__}" if len(compatibility) > 500: return False, f"Compatibility is too long ({len(compatibility)} characters). Maximum is 500 characters." return True, "Skill is valid!" if __name__ == "__main__": if len(sys.argv) != 2: print("Usage: python quick_validate.py ") sys.exit(1) valid, message = validate_skill(sys.argv[1]) print(message) sys.exit(0 if valid else 1) ================================================ FILE: skills/skill-creator/scripts/run_eval.py ================================================ #!/usr/bin/env python3 """Run trigger evaluation for a skill description. Tests whether a skill's description causes Claude to trigger (read the skill) for a set of queries. Outputs results as JSON. """ import argparse import json import os import select import subprocess import sys import time import uuid from concurrent.futures import ProcessPoolExecutor, as_completed from pathlib import Path from scripts.utils import parse_skill_md def find_project_root() -> Path: """Find the project root by walking up from cwd looking for .claude/. Mimics how Claude Code discovers its project root, so the command file we create ends up where claude -p will look for it. """ current = Path.cwd() for parent in [current, *current.parents]: if (parent / ".claude").is_dir(): return parent return current def run_single_query( query: str, skill_name: str, skill_description: str, timeout: int, project_root: str, model: str | None = None, ) -> bool: """Run a single query and return whether the skill was triggered. Creates a command file in .claude/commands/ so it appears in Claude's available_skills list, then runs `claude -p` with the raw query. Uses --include-partial-messages to detect triggering early from stream events (content_block_start) rather than waiting for the full assistant message, which only arrives after tool execution. """ unique_id = uuid.uuid4().hex[:8] clean_name = f"{skill_name}-skill-{unique_id}" project_commands_dir = Path(project_root) / ".claude" / "commands" command_file = project_commands_dir / f"{clean_name}.md" try: project_commands_dir.mkdir(parents=True, exist_ok=True) # Use YAML block scalar to avoid breaking on quotes in description indented_desc = "\n ".join(skill_description.split("\n")) command_content = ( f"---\n" f"description: |\n" f" {indented_desc}\n" f"---\n\n" f"# {skill_name}\n\n" f"This skill handles: {skill_description}\n" ) command_file.write_text(command_content) cmd = [ "claude", "-p", query, "--output-format", "stream-json", "--verbose", "--include-partial-messages", ] if model: cmd.extend(["--model", model]) # Remove CLAUDECODE env var to allow nesting claude -p inside a # Claude Code session. The guard is for interactive terminal conflicts; # programmatic subprocess usage is safe. env = {k: v for k, v in os.environ.items() if k != "CLAUDECODE"} process = subprocess.Popen( cmd, stdout=subprocess.PIPE, stderr=subprocess.DEVNULL, cwd=project_root, env=env, ) triggered = False start_time = time.time() buffer = "" # Track state for stream event detection pending_tool_name = None accumulated_json = "" try: while time.time() - start_time < timeout: if process.poll() is not None: remaining = process.stdout.read() if remaining: buffer += remaining.decode("utf-8", errors="replace") break ready, _, _ = select.select([process.stdout], [], [], 1.0) if not ready: continue chunk = os.read(process.stdout.fileno(), 8192) if not chunk: break buffer += chunk.decode("utf-8", errors="replace") while "\n" in buffer: line, buffer = buffer.split("\n", 1) line = line.strip() if not line: continue try: event = json.loads(line) except json.JSONDecodeError: continue # Early detection via stream events if event.get("type") == "stream_event": se = event.get("event", {}) se_type = se.get("type", "") if se_type == "content_block_start": cb = se.get("content_block", {}) if cb.get("type") == "tool_use": tool_name = cb.get("name", "") if tool_name in ("Skill", "Read"): pending_tool_name = tool_name accumulated_json = "" else: return False elif se_type == "content_block_delta" and pending_tool_name: delta = se.get("delta", {}) if delta.get("type") == "input_json_delta": accumulated_json += delta.get("partial_json", "") if clean_name in accumulated_json: return True elif se_type in ("content_block_stop", "message_stop"): if pending_tool_name: return clean_name in accumulated_json if se_type == "message_stop": return False # Fallback: full assistant message elif event.get("type") == "assistant": message = event.get("message", {}) for content_item in message.get("content", []): if content_item.get("type") != "tool_use": continue tool_name = content_item.get("name", "") tool_input = content_item.get("input", {}) if tool_name == "Skill" and clean_name in tool_input.get("skill", ""): triggered = True elif tool_name == "Read" and clean_name in tool_input.get("file_path", ""): triggered = True return triggered elif event.get("type") == "result": return triggered finally: # Clean up process on any exit path (return, exception, timeout) if process.poll() is None: process.kill() process.wait() return triggered finally: if command_file.exists(): command_file.unlink() def run_eval( eval_set: list[dict], skill_name: str, description: str, num_workers: int, timeout: int, project_root: Path, runs_per_query: int = 1, trigger_threshold: float = 0.5, model: str | None = None, ) -> dict: """Run the full eval set and return results.""" results = [] with ProcessPoolExecutor(max_workers=num_workers) as executor: future_to_info = {} for item in eval_set: for run_idx in range(runs_per_query): future = executor.submit( run_single_query, item["query"], skill_name, description, timeout, str(project_root), model, ) future_to_info[future] = (item, run_idx) query_triggers: dict[str, list[bool]] = {} query_items: dict[str, dict] = {} for future in as_completed(future_to_info): item, _ = future_to_info[future] query = item["query"] query_items[query] = item if query not in query_triggers: query_triggers[query] = [] try: query_triggers[query].append(future.result()) except Exception as e: print(f"Warning: query failed: {e}", file=sys.stderr) query_triggers[query].append(False) for query, triggers in query_triggers.items(): item = query_items[query] trigger_rate = sum(triggers) / len(triggers) should_trigger = item["should_trigger"] if should_trigger: did_pass = trigger_rate >= trigger_threshold else: did_pass = trigger_rate < trigger_threshold results.append({ "query": query, "should_trigger": should_trigger, "trigger_rate": trigger_rate, "triggers": sum(triggers), "runs": len(triggers), "pass": did_pass, }) passed = sum(1 for r in results if r["pass"]) total = len(results) return { "skill_name": skill_name, "description": description, "results": results, "summary": { "total": total, "passed": passed, "failed": total - passed, }, } def main(): parser = argparse.ArgumentParser(description="Run trigger evaluation for a skill description") parser.add_argument("--eval-set", required=True, help="Path to eval set JSON file") parser.add_argument("--skill-path", required=True, help="Path to skill directory") parser.add_argument("--description", default=None, help="Override description to test") parser.add_argument("--num-workers", type=int, default=10, help="Number of parallel workers") parser.add_argument("--timeout", type=int, default=30, help="Timeout per query in seconds") parser.add_argument("--runs-per-query", type=int, default=3, help="Number of runs per query") parser.add_argument("--trigger-threshold", type=float, default=0.5, help="Trigger rate threshold") parser.add_argument("--model", default=None, help="Model to use for claude -p (default: user's configured model)") parser.add_argument("--verbose", action="store_true", help="Print progress to stderr") args = parser.parse_args() eval_set = json.loads(Path(args.eval_set).read_text()) skill_path = Path(args.skill_path) if not (skill_path / "SKILL.md").exists(): print(f"Error: No SKILL.md found at {skill_path}", file=sys.stderr) sys.exit(1) name, original_description, content = parse_skill_md(skill_path) description = args.description or original_description project_root = find_project_root() if args.verbose: print(f"Evaluating: {description}", file=sys.stderr) output = run_eval( eval_set=eval_set, skill_name=name, description=description, num_workers=args.num_workers, timeout=args.timeout, project_root=project_root, runs_per_query=args.runs_per_query, trigger_threshold=args.trigger_threshold, model=args.model, ) if args.verbose: summary = output["summary"] print(f"Results: {summary['passed']}/{summary['total']} passed", file=sys.stderr) for r in output["results"]: status = "PASS" if r["pass"] else "FAIL" rate_str = f"{r['triggers']}/{r['runs']}" print(f" [{status}] rate={rate_str} expected={r['should_trigger']}: {r['query'][:70]}", file=sys.stderr) print(json.dumps(output, indent=2)) if __name__ == "__main__": main() ================================================ FILE: skills/skill-creator/scripts/run_loop.py ================================================ #!/usr/bin/env python3 """Run the eval + improve loop until all pass or max iterations reached. Combines run_eval.py and improve_description.py in a loop, tracking history and returning the best description found. Supports train/test split to prevent overfitting. """ import argparse import json import random import sys import tempfile import time import webbrowser from pathlib import Path from scripts.generate_report import generate_html from scripts.improve_description import improve_description from scripts.run_eval import find_project_root, run_eval from scripts.utils import parse_skill_md def split_eval_set(eval_set: list[dict], holdout: float, seed: int = 42) -> tuple[list[dict], list[dict]]: """Split eval set into train and test sets, stratified by should_trigger.""" random.seed(seed) # Separate by should_trigger trigger = [e for e in eval_set if e["should_trigger"]] no_trigger = [e for e in eval_set if not e["should_trigger"]] # Shuffle each group random.shuffle(trigger) random.shuffle(no_trigger) # Calculate split points n_trigger_test = max(1, int(len(trigger) * holdout)) n_no_trigger_test = max(1, int(len(no_trigger) * holdout)) # Split test_set = trigger[:n_trigger_test] + no_trigger[:n_no_trigger_test] train_set = trigger[n_trigger_test:] + no_trigger[n_no_trigger_test:] return train_set, test_set def run_loop( eval_set: list[dict], skill_path: Path, description_override: str | None, num_workers: int, timeout: int, max_iterations: int, runs_per_query: int, trigger_threshold: float, holdout: float, model: str, verbose: bool, live_report_path: Path | None = None, log_dir: Path | None = None, ) -> dict: """Run the eval + improvement loop.""" project_root = find_project_root() name, original_description, content = parse_skill_md(skill_path) current_description = description_override or original_description # Split into train/test if holdout > 0 if holdout > 0: train_set, test_set = split_eval_set(eval_set, holdout) if verbose: print(f"Split: {len(train_set)} train, {len(test_set)} test (holdout={holdout})", file=sys.stderr) else: train_set = eval_set test_set = [] history = [] exit_reason = "unknown" for iteration in range(1, max_iterations + 1): if verbose: print(f"\n{'='*60}", file=sys.stderr) print(f"Iteration {iteration}/{max_iterations}", file=sys.stderr) print(f"Description: {current_description}", file=sys.stderr) print(f"{'='*60}", file=sys.stderr) # Evaluate train + test together in one batch for parallelism all_queries = train_set + test_set t0 = time.time() all_results = run_eval( eval_set=all_queries, skill_name=name, description=current_description, num_workers=num_workers, timeout=timeout, project_root=project_root, runs_per_query=runs_per_query, trigger_threshold=trigger_threshold, model=model, ) eval_elapsed = time.time() - t0 # Split results back into train/test by matching queries train_queries_set = {q["query"] for q in train_set} train_result_list = [r for r in all_results["results"] if r["query"] in train_queries_set] test_result_list = [r for r in all_results["results"] if r["query"] not in train_queries_set] train_passed = sum(1 for r in train_result_list if r["pass"]) train_total = len(train_result_list) train_summary = {"passed": train_passed, "failed": train_total - train_passed, "total": train_total} train_results = {"results": train_result_list, "summary": train_summary} if test_set: test_passed = sum(1 for r in test_result_list if r["pass"]) test_total = len(test_result_list) test_summary = {"passed": test_passed, "failed": test_total - test_passed, "total": test_total} test_results = {"results": test_result_list, "summary": test_summary} else: test_results = None test_summary = None history.append({ "iteration": iteration, "description": current_description, "train_passed": train_summary["passed"], "train_failed": train_summary["failed"], "train_total": train_summary["total"], "train_results": train_results["results"], "test_passed": test_summary["passed"] if test_summary else None, "test_failed": test_summary["failed"] if test_summary else None, "test_total": test_summary["total"] if test_summary else None, "test_results": test_results["results"] if test_results else None, # For backward compat with report generator "passed": train_summary["passed"], "failed": train_summary["failed"], "total": train_summary["total"], "results": train_results["results"], }) # Write live report if path provided if live_report_path: partial_output = { "original_description": original_description, "best_description": current_description, "best_score": "in progress", "iterations_run": len(history), "holdout": holdout, "train_size": len(train_set), "test_size": len(test_set), "history": history, } live_report_path.write_text(generate_html(partial_output, auto_refresh=True, skill_name=name)) if verbose: def print_eval_stats(label, results, elapsed): pos = [r for r in results if r["should_trigger"]] neg = [r for r in results if not r["should_trigger"]] tp = sum(r["triggers"] for r in pos) pos_runs = sum(r["runs"] for r in pos) fn = pos_runs - tp fp = sum(r["triggers"] for r in neg) neg_runs = sum(r["runs"] for r in neg) tn = neg_runs - fp total = tp + tn + fp + fn precision = tp / (tp + fp) if (tp + fp) > 0 else 1.0 recall = tp / (tp + fn) if (tp + fn) > 0 else 1.0 accuracy = (tp + tn) / total if total > 0 else 0.0 print(f"{label}: {tp+tn}/{total} correct, precision={precision:.0%} recall={recall:.0%} accuracy={accuracy:.0%} ({elapsed:.1f}s)", file=sys.stderr) for r in results: status = "PASS" if r["pass"] else "FAIL" rate_str = f"{r['triggers']}/{r['runs']}" print(f" [{status}] rate={rate_str} expected={r['should_trigger']}: {r['query'][:60]}", file=sys.stderr) print_eval_stats("Train", train_results["results"], eval_elapsed) if test_summary: print_eval_stats("Test ", test_results["results"], 0) if train_summary["failed"] == 0: exit_reason = f"all_passed (iteration {iteration})" if verbose: print(f"\nAll train queries passed on iteration {iteration}!", file=sys.stderr) break if iteration == max_iterations: exit_reason = f"max_iterations ({max_iterations})" if verbose: print(f"\nMax iterations reached ({max_iterations}).", file=sys.stderr) break # Improve the description based on train results if verbose: print(f"\nImproving description...", file=sys.stderr) t0 = time.time() # Strip test scores from history so improvement model can't see them blinded_history = [ {k: v for k, v in h.items() if not k.startswith("test_")} for h in history ] new_description = improve_description( skill_name=name, skill_content=content, current_description=current_description, eval_results=train_results, history=blinded_history, model=model, log_dir=log_dir, iteration=iteration, ) improve_elapsed = time.time() - t0 if verbose: print(f"Proposed ({improve_elapsed:.1f}s): {new_description}", file=sys.stderr) current_description = new_description # Find the best iteration by TEST score (or train if no test set) if test_set: best = max(history, key=lambda h: h["test_passed"] or 0) best_score = f"{best['test_passed']}/{best['test_total']}" else: best = max(history, key=lambda h: h["train_passed"]) best_score = f"{best['train_passed']}/{best['train_total']}" if verbose: print(f"\nExit reason: {exit_reason}", file=sys.stderr) print(f"Best score: {best_score} (iteration {best['iteration']})", file=sys.stderr) return { "exit_reason": exit_reason, "original_description": original_description, "best_description": best["description"], "best_score": best_score, "best_train_score": f"{best['train_passed']}/{best['train_total']}", "best_test_score": f"{best['test_passed']}/{best['test_total']}" if test_set else None, "final_description": current_description, "iterations_run": len(history), "holdout": holdout, "train_size": len(train_set), "test_size": len(test_set), "history": history, } def main(): parser = argparse.ArgumentParser(description="Run eval + improve loop") parser.add_argument("--eval-set", required=True, help="Path to eval set JSON file") parser.add_argument("--skill-path", required=True, help="Path to skill directory") parser.add_argument("--description", default=None, help="Override starting description") parser.add_argument("--num-workers", type=int, default=10, help="Number of parallel workers") parser.add_argument("--timeout", type=int, default=30, help="Timeout per query in seconds") parser.add_argument("--max-iterations", type=int, default=5, help="Max improvement iterations") parser.add_argument("--runs-per-query", type=int, default=3, help="Number of runs per query") parser.add_argument("--trigger-threshold", type=float, default=0.5, help="Trigger rate threshold") parser.add_argument("--holdout", type=float, default=0.4, help="Fraction of eval set to hold out for testing (0 to disable)") parser.add_argument("--model", required=True, help="Model for improvement") parser.add_argument("--verbose", action="store_true", help="Print progress to stderr") parser.add_argument("--report", default="auto", help="Generate HTML report at this path (default: 'auto' for temp file, 'none' to disable)") parser.add_argument("--results-dir", default=None, help="Save all outputs (results.json, report.html, log.txt) to a timestamped subdirectory here") args = parser.parse_args() eval_set = json.loads(Path(args.eval_set).read_text()) skill_path = Path(args.skill_path) if not (skill_path / "SKILL.md").exists(): print(f"Error: No SKILL.md found at {skill_path}", file=sys.stderr) sys.exit(1) name, _, _ = parse_skill_md(skill_path) # Set up live report path if args.report != "none": if args.report == "auto": timestamp = time.strftime("%Y%m%d_%H%M%S") live_report_path = Path(tempfile.gettempdir()) / f"skill_description_report_{skill_path.name}_{timestamp}.html" else: live_report_path = Path(args.report) # Open the report immediately so the user can watch live_report_path.write_text("

Starting optimization loop...

") webbrowser.open(str(live_report_path)) else: live_report_path = None # Determine output directory (create before run_loop so logs can be written) if args.results_dir: timestamp = time.strftime("%Y-%m-%d_%H%M%S") results_dir = Path(args.results_dir) / timestamp results_dir.mkdir(parents=True, exist_ok=True) else: results_dir = None log_dir = results_dir / "logs" if results_dir else None output = run_loop( eval_set=eval_set, skill_path=skill_path, description_override=args.description, num_workers=args.num_workers, timeout=args.timeout, max_iterations=args.max_iterations, runs_per_query=args.runs_per_query, trigger_threshold=args.trigger_threshold, holdout=args.holdout, model=args.model, verbose=args.verbose, live_report_path=live_report_path, log_dir=log_dir, ) # Save JSON output json_output = json.dumps(output, indent=2) print(json_output) if results_dir: (results_dir / "results.json").write_text(json_output) # Write final HTML report (without auto-refresh) if live_report_path: live_report_path.write_text(generate_html(output, auto_refresh=False, skill_name=name)) print(f"\nReport: {live_report_path}", file=sys.stderr) if results_dir and live_report_path: (results_dir / "report.html").write_text(generate_html(output, auto_refresh=False, skill_name=name)) if results_dir: print(f"Results saved to: {results_dir}", file=sys.stderr) if __name__ == "__main__": main() ================================================ FILE: skills/skill-creator/scripts/utils.py ================================================ """Shared utilities for skill-creator scripts.""" from pathlib import Path def parse_skill_md(skill_path: Path) -> tuple[str, str, str]: """Parse a SKILL.md file, returning (name, description, full_content).""" content = (skill_path / "SKILL.md").read_text() lines = content.split("\n") if lines[0].strip() != "---": raise ValueError("SKILL.md missing frontmatter (no opening ---)") end_idx = None for i, line in enumerate(lines[1:], start=1): if line.strip() == "---": end_idx = i break if end_idx is None: raise ValueError("SKILL.md missing frontmatter (no closing ---)") name = "" description = "" frontmatter_lines = lines[1:end_idx] i = 0 while i < len(frontmatter_lines): line = frontmatter_lines[i] if line.startswith("name:"): name = line[len("name:"):].strip().strip('"').strip("'") elif line.startswith("description:"): value = line[len("description:"):].strip() # Handle YAML multiline indicators (>, |, >-, |-) if value in (">", "|", ">-", "|-"): continuation_lines: list[str] = [] i += 1 while i < len(frontmatter_lines) and (frontmatter_lines[i].startswith(" ") or frontmatter_lines[i].startswith("\t")): continuation_lines.append(frontmatter_lines[i].strip()) i += 1 description = " ".join(continuation_lines) continue else: description = value.strip('"').strip("'") i += 1 return name, description, content ================================================ FILE: skills/slack-gif-creator/LICENSE.txt ================================================ Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ================================================ FILE: skills/slack-gif-creator/SKILL.md ================================================ --- name: slack-gif-creator description: Knowledge and utilities for creating animated GIFs optimized for Slack. Provides constraints, validation tools, and animation concepts. Use when users request animated GIFs for Slack like "make me a GIF of X doing Y for Slack." license: Complete terms in LICENSE.txt --- # Slack GIF Creator A toolkit providing utilities and knowledge for creating animated GIFs optimized for Slack. ## Slack Requirements **Dimensions:** - Emoji GIFs: 128x128 (recommended) - Message GIFs: 480x480 **Parameters:** - FPS: 10-30 (lower is smaller file size) - Colors: 48-128 (fewer = smaller file size) - Duration: Keep under 3 seconds for emoji GIFs ## Core Workflow ```python from core.gif_builder import GIFBuilder from PIL import Image, ImageDraw # 1. Create builder builder = GIFBuilder(width=128, height=128, fps=10) # 2. Generate frames for i in range(12): frame = Image.new('RGB', (128, 128), (240, 248, 255)) draw = ImageDraw.Draw(frame) # Draw your animation using PIL primitives # (circles, polygons, lines, etc.) builder.add_frame(frame) # 3. Save with optimization builder.save('output.gif', num_colors=48, optimize_for_emoji=True) ``` ## Drawing Graphics ### Working with User-Uploaded Images If a user uploads an image, consider whether they want to: - **Use it directly** (e.g., "animate this", "split this into frames") - **Use it as inspiration** (e.g., "make something like this") Load and work with images using PIL: ```python from PIL import Image uploaded = Image.open('file.png') # Use directly, or just as reference for colors/style ``` ### Drawing from Scratch When drawing graphics from scratch, use PIL ImageDraw primitives: ```python from PIL import ImageDraw draw = ImageDraw.Draw(frame) # Circles/ovals draw.ellipse([x1, y1, x2, y2], fill=(r, g, b), outline=(r, g, b), width=3) # Stars, triangles, any polygon points = [(x1, y1), (x2, y2), (x3, y3), ...] draw.polygon(points, fill=(r, g, b), outline=(r, g, b), width=3) # Lines draw.line([(x1, y1), (x2, y2)], fill=(r, g, b), width=5) # Rectangles draw.rectangle([x1, y1, x2, y2], fill=(r, g, b), outline=(r, g, b), width=3) ``` **Don't use:** Emoji fonts (unreliable across platforms) or assume pre-packaged graphics exist in this skill. ### Making Graphics Look Good Graphics should look polished and creative, not basic. Here's how: **Use thicker lines** - Always set `width=2` or higher for outlines and lines. Thin lines (width=1) look choppy and amateurish. **Add visual depth**: - Use gradients for backgrounds (`create_gradient_background`) - Layer multiple shapes for complexity (e.g., a star with a smaller star inside) **Make shapes more interesting**: - Don't just draw a plain circle - add highlights, rings, or patterns - Stars can have glows (draw larger, semi-transparent versions behind) - Combine multiple shapes (stars + sparkles, circles + rings) **Pay attention to colors**: - Use vibrant, complementary colors - Add contrast (dark outlines on light shapes, light outlines on dark shapes) - Consider the overall composition **For complex shapes** (hearts, snowflakes, etc.): - Use combinations of polygons and ellipses - Calculate points carefully for symmetry - Add details (a heart can have a highlight curve, snowflakes have intricate branches) Be creative and detailed! A good Slack GIF should look polished, not like placeholder graphics. ## Available Utilities ### GIFBuilder (`core.gif_builder`) Assembles frames and optimizes for Slack: ```python builder = GIFBuilder(width=128, height=128, fps=10) builder.add_frame(frame) # Add PIL Image builder.add_frames(frames) # Add list of frames builder.save('out.gif', num_colors=48, optimize_for_emoji=True, remove_duplicates=True) ``` ### Validators (`core.validators`) Check if GIF meets Slack requirements: ```python from core.validators import validate_gif, is_slack_ready # Detailed validation passes, info = validate_gif('my.gif', is_emoji=True, verbose=True) # Quick check if is_slack_ready('my.gif'): print("Ready!") ``` ### Easing Functions (`core.easing`) Smooth motion instead of linear: ```python from core.easing import interpolate # Progress from 0.0 to 1.0 t = i / (num_frames - 1) # Apply easing y = interpolate(start=0, end=400, t=t, easing='ease_out') # Available: linear, ease_in, ease_out, ease_in_out, # bounce_out, elastic_out, back_out ``` ### Frame Helpers (`core.frame_composer`) Convenience functions for common needs: ```python from core.frame_composer import ( create_blank_frame, # Solid color background create_gradient_background, # Vertical gradient draw_circle, # Helper for circles draw_text, # Simple text rendering draw_star # 5-pointed star ) ``` ## Animation Concepts ### Shake/Vibrate Offset object position with oscillation: - Use `math.sin()` or `math.cos()` with frame index - Add small random variations for natural feel - Apply to x and/or y position ### Pulse/Heartbeat Scale object size rhythmically: - Use `math.sin(t * frequency * 2 * math.pi)` for smooth pulse - For heartbeat: two quick pulses then pause (adjust sine wave) - Scale between 0.8 and 1.2 of base size ### Bounce Object falls and bounces: - Use `interpolate()` with `easing='bounce_out'` for landing - Use `easing='ease_in'` for falling (accelerating) - Apply gravity by increasing y velocity each frame ### Spin/Rotate Rotate object around center: - PIL: `image.rotate(angle, resample=Image.BICUBIC)` - For wobble: use sine wave for angle instead of linear ### Fade In/Out Gradually appear or disappear: - Create RGBA image, adjust alpha channel - Or use `Image.blend(image1, image2, alpha)` - Fade in: alpha from 0 to 1 - Fade out: alpha from 1 to 0 ### Slide Move object from off-screen to position: - Start position: outside frame bounds - End position: target location - Use `interpolate()` with `easing='ease_out'` for smooth stop - For overshoot: use `easing='back_out'` ### Zoom Scale and position for zoom effect: - Zoom in: scale from 0.1 to 2.0, crop center - Zoom out: scale from 2.0 to 1.0 - Can add motion blur for drama (PIL filter) ### Explode/Particle Burst Create particles radiating outward: - Generate particles with random angles and velocities - Update each particle: `x += vx`, `y += vy` - Add gravity: `vy += gravity_constant` - Fade out particles over time (reduce alpha) ## Optimization Strategies Only when asked to make the file size smaller, implement a few of the following methods: 1. **Fewer frames** - Lower FPS (10 instead of 20) or shorter duration 2. **Fewer colors** - `num_colors=48` instead of 128 3. **Smaller dimensions** - 128x128 instead of 480x480 4. **Remove duplicates** - `remove_duplicates=True` in save() 5. **Emoji mode** - `optimize_for_emoji=True` auto-optimizes ```python # Maximum optimization for emoji builder.save( 'emoji.gif', num_colors=48, optimize_for_emoji=True, remove_duplicates=True ) ``` ## Philosophy This skill provides: - **Knowledge**: Slack's requirements and animation concepts - **Utilities**: GIFBuilder, validators, easing functions - **Flexibility**: Create the animation logic using PIL primitives It does NOT provide: - Rigid animation templates or pre-made functions - Emoji font rendering (unreliable across platforms) - A library of pre-packaged graphics built into the skill **Note on user uploads**: This skill doesn't include pre-built graphics, but if a user uploads an image, use PIL to load and work with it - interpret based on their request whether they want it used directly or just as inspiration. Be creative! Combine concepts (bouncing + rotating, pulsing + sliding, etc.) and use PIL's full capabilities. ## Dependencies ```bash pip install pillow imageio numpy ``` ================================================ FILE: skills/slack-gif-creator/core/easing.py ================================================ #!/usr/bin/env python3 """ Easing Functions - Timing functions for smooth animations. Provides various easing functions for natural motion and timing. All functions take a value t (0.0 to 1.0) and return eased value (0.0 to 1.0). """ import math def linear(t: float) -> float: """Linear interpolation (no easing).""" return t def ease_in_quad(t: float) -> float: """Quadratic ease-in (slow start, accelerating).""" return t * t def ease_out_quad(t: float) -> float: """Quadratic ease-out (fast start, decelerating).""" return t * (2 - t) def ease_in_out_quad(t: float) -> float: """Quadratic ease-in-out (slow start and end).""" if t < 0.5: return 2 * t * t return -1 + (4 - 2 * t) * t def ease_in_cubic(t: float) -> float: """Cubic ease-in (slow start).""" return t * t * t def ease_out_cubic(t: float) -> float: """Cubic ease-out (fast start).""" return (t - 1) * (t - 1) * (t - 1) + 1 def ease_in_out_cubic(t: float) -> float: """Cubic ease-in-out.""" if t < 0.5: return 4 * t * t * t return (t - 1) * (2 * t - 2) * (2 * t - 2) + 1 def ease_in_bounce(t: float) -> float: """Bounce ease-in (bouncy start).""" return 1 - ease_out_bounce(1 - t) def ease_out_bounce(t: float) -> float: """Bounce ease-out (bouncy end).""" if t < 1 / 2.75: return 7.5625 * t * t elif t < 2 / 2.75: t -= 1.5 / 2.75 return 7.5625 * t * t + 0.75 elif t < 2.5 / 2.75: t -= 2.25 / 2.75 return 7.5625 * t * t + 0.9375 else: t -= 2.625 / 2.75 return 7.5625 * t * t + 0.984375 def ease_in_out_bounce(t: float) -> float: """Bounce ease-in-out.""" if t < 0.5: return ease_in_bounce(t * 2) * 0.5 return ease_out_bounce(t * 2 - 1) * 0.5 + 0.5 def ease_in_elastic(t: float) -> float: """Elastic ease-in (spring effect).""" if t == 0 or t == 1: return t return -math.pow(2, 10 * (t - 1)) * math.sin((t - 1.1) * 5 * math.pi) def ease_out_elastic(t: float) -> float: """Elastic ease-out (spring effect).""" if t == 0 or t == 1: return t return math.pow(2, -10 * t) * math.sin((t - 0.1) * 5 * math.pi) + 1 def ease_in_out_elastic(t: float) -> float: """Elastic ease-in-out.""" if t == 0 or t == 1: return t t = t * 2 - 1 if t < 0: return -0.5 * math.pow(2, 10 * t) * math.sin((t - 0.1) * 5 * math.pi) return math.pow(2, -10 * t) * math.sin((t - 0.1) * 5 * math.pi) * 0.5 + 1 # Convenience mapping EASING_FUNCTIONS = { "linear": linear, "ease_in": ease_in_quad, "ease_out": ease_out_quad, "ease_in_out": ease_in_out_quad, "bounce_in": ease_in_bounce, "bounce_out": ease_out_bounce, "bounce": ease_in_out_bounce, "elastic_in": ease_in_elastic, "elastic_out": ease_out_elastic, "elastic": ease_in_out_elastic, } def get_easing(name: str = "linear"): """Get easing function by name.""" return EASING_FUNCTIONS.get(name, linear) def interpolate(start: float, end: float, t: float, easing: str = "linear") -> float: """ Interpolate between two values with easing. Args: start: Start value end: End value t: Progress from 0.0 to 1.0 easing: Name of easing function Returns: Interpolated value """ ease_func = get_easing(easing) eased_t = ease_func(t) return start + (end - start) * eased_t def ease_back_in(t: float) -> float: """Back ease-in (slight overshoot backward before forward motion).""" c1 = 1.70158 c3 = c1 + 1 return c3 * t * t * t - c1 * t * t def ease_back_out(t: float) -> float: """Back ease-out (overshoot forward then settle back).""" c1 = 1.70158 c3 = c1 + 1 return 1 + c3 * pow(t - 1, 3) + c1 * pow(t - 1, 2) def ease_back_in_out(t: float) -> float: """Back ease-in-out (overshoot at both ends).""" c1 = 1.70158 c2 = c1 * 1.525 if t < 0.5: return (pow(2 * t, 2) * ((c2 + 1) * 2 * t - c2)) / 2 return (pow(2 * t - 2, 2) * ((c2 + 1) * (t * 2 - 2) + c2) + 2) / 2 def apply_squash_stretch( base_scale: tuple[float, float], intensity: float, direction: str = "vertical" ) -> tuple[float, float]: """ Calculate squash and stretch scales for more dynamic animation. Args: base_scale: (width_scale, height_scale) base scales intensity: Squash/stretch intensity (0.0-1.0) direction: 'vertical', 'horizontal', or 'both' Returns: (width_scale, height_scale) with squash/stretch applied """ width_scale, height_scale = base_scale if direction == "vertical": # Compress vertically, expand horizontally (preserve volume) height_scale *= 1 - intensity * 0.5 width_scale *= 1 + intensity * 0.5 elif direction == "horizontal": # Compress horizontally, expand vertically width_scale *= 1 - intensity * 0.5 height_scale *= 1 + intensity * 0.5 elif direction == "both": # General squash (both dimensions) width_scale *= 1 - intensity * 0.3 height_scale *= 1 - intensity * 0.3 return (width_scale, height_scale) def calculate_arc_motion( start: tuple[float, float], end: tuple[float, float], height: float, t: float ) -> tuple[float, float]: """ Calculate position along a parabolic arc (natural motion path). Args: start: (x, y) starting position end: (x, y) ending position height: Arc height at midpoint (positive = upward) t: Progress (0.0-1.0) Returns: (x, y) position along arc """ x1, y1 = start x2, y2 = end # Linear interpolation for x x = x1 + (x2 - x1) * t # Parabolic interpolation for y # y = start + progress * (end - start) + arc_offset # Arc offset peaks at t=0.5 arc_offset = 4 * height * t * (1 - t) y = y1 + (y2 - y1) * t - arc_offset return (x, y) # Add new easing functions to the convenience mapping EASING_FUNCTIONS.update( { "back_in": ease_back_in, "back_out": ease_back_out, "back_in_out": ease_back_in_out, "anticipate": ease_back_in, # Alias "overshoot": ease_back_out, # Alias } ) ================================================ FILE: skills/slack-gif-creator/core/frame_composer.py ================================================ #!/usr/bin/env python3 """ Frame Composer - Utilities for composing visual elements into frames. Provides functions for drawing shapes, text, emojis, and compositing elements together to create animation frames. """ from typing import Optional import numpy as np from PIL import Image, ImageDraw, ImageFont def create_blank_frame( width: int, height: int, color: tuple[int, int, int] = (255, 255, 255) ) -> Image.Image: """ Create a blank frame with solid color background. Args: width: Frame width height: Frame height color: RGB color tuple (default: white) Returns: PIL Image """ return Image.new("RGB", (width, height), color) def draw_circle( frame: Image.Image, center: tuple[int, int], radius: int, fill_color: Optional[tuple[int, int, int]] = None, outline_color: Optional[tuple[int, int, int]] = None, outline_width: int = 1, ) -> Image.Image: """ Draw a circle on a frame. Args: frame: PIL Image to draw on center: (x, y) center position radius: Circle radius fill_color: RGB fill color (None for no fill) outline_color: RGB outline color (None for no outline) outline_width: Outline width in pixels Returns: Modified frame """ draw = ImageDraw.Draw(frame) x, y = center bbox = [x - radius, y - radius, x + radius, y + radius] draw.ellipse(bbox, fill=fill_color, outline=outline_color, width=outline_width) return frame def draw_text( frame: Image.Image, text: str, position: tuple[int, int], color: tuple[int, int, int] = (0, 0, 0), centered: bool = False, ) -> Image.Image: """ Draw text on a frame. Args: frame: PIL Image to draw on text: Text to draw position: (x, y) position (top-left unless centered=True) color: RGB text color centered: If True, center text at position Returns: Modified frame """ draw = ImageDraw.Draw(frame) # Uses Pillow's default font. # If the font should be changed for the emoji, add additional logic here. font = ImageFont.load_default() if centered: bbox = draw.textbbox((0, 0), text, font=font) text_width = bbox[2] - bbox[0] text_height = bbox[3] - bbox[1] x = position[0] - text_width // 2 y = position[1] - text_height // 2 position = (x, y) draw.text(position, text, fill=color, font=font) return frame def create_gradient_background( width: int, height: int, top_color: tuple[int, int, int], bottom_color: tuple[int, int, int], ) -> Image.Image: """ Create a vertical gradient background. Args: width: Frame width height: Frame height top_color: RGB color at top bottom_color: RGB color at bottom Returns: PIL Image with gradient """ frame = Image.new("RGB", (width, height)) draw = ImageDraw.Draw(frame) # Calculate color step for each row r1, g1, b1 = top_color r2, g2, b2 = bottom_color for y in range(height): # Interpolate color ratio = y / height r = int(r1 * (1 - ratio) + r2 * ratio) g = int(g1 * (1 - ratio) + g2 * ratio) b = int(b1 * (1 - ratio) + b2 * ratio) # Draw horizontal line draw.line([(0, y), (width, y)], fill=(r, g, b)) return frame def draw_star( frame: Image.Image, center: tuple[int, int], size: int, fill_color: tuple[int, int, int], outline_color: Optional[tuple[int, int, int]] = None, outline_width: int = 1, ) -> Image.Image: """ Draw a 5-pointed star. Args: frame: PIL Image to draw on center: (x, y) center position size: Star size (outer radius) fill_color: RGB fill color outline_color: RGB outline color (None for no outline) outline_width: Outline width Returns: Modified frame """ import math draw = ImageDraw.Draw(frame) x, y = center # Calculate star points points = [] for i in range(10): angle = (i * 36 - 90) * math.pi / 180 # 36 degrees per point, start at top radius = size if i % 2 == 0 else size * 0.4 # Alternate between outer and inner px = x + radius * math.cos(angle) py = y + radius * math.sin(angle) points.append((px, py)) # Draw star draw.polygon(points, fill=fill_color, outline=outline_color, width=outline_width) return frame ================================================ FILE: skills/slack-gif-creator/core/gif_builder.py ================================================ #!/usr/bin/env python3 """ GIF Builder - Core module for assembling frames into GIFs optimized for Slack. This module provides the main interface for creating GIFs from programmatically generated frames, with automatic optimization for Slack's requirements. """ from pathlib import Path from typing import Optional import imageio.v3 as imageio import numpy as np from PIL import Image class GIFBuilder: """Builder for creating optimized GIFs from frames.""" def __init__(self, width: int = 480, height: int = 480, fps: int = 15): """ Initialize GIF builder. Args: width: Frame width in pixels height: Frame height in pixels fps: Frames per second """ self.width = width self.height = height self.fps = fps self.frames: list[np.ndarray] = [] def add_frame(self, frame: np.ndarray | Image.Image): """ Add a frame to the GIF. Args: frame: Frame as numpy array or PIL Image (will be converted to RGB) """ if isinstance(frame, Image.Image): frame = np.array(frame.convert("RGB")) # Ensure frame is correct size if frame.shape[:2] != (self.height, self.width): pil_frame = Image.fromarray(frame) pil_frame = pil_frame.resize( (self.width, self.height), Image.Resampling.LANCZOS ) frame = np.array(pil_frame) self.frames.append(frame) def add_frames(self, frames: list[np.ndarray | Image.Image]): """Add multiple frames at once.""" for frame in frames: self.add_frame(frame) def optimize_colors( self, num_colors: int = 128, use_global_palette: bool = True ) -> list[np.ndarray]: """ Reduce colors in all frames using quantization. Args: num_colors: Target number of colors (8-256) use_global_palette: Use a single palette for all frames (better compression) Returns: List of color-optimized frames """ optimized = [] if use_global_palette and len(self.frames) > 1: # Create a global palette from all frames # Sample frames to build palette sample_size = min(5, len(self.frames)) sample_indices = [ int(i * len(self.frames) / sample_size) for i in range(sample_size) ] sample_frames = [self.frames[i] for i in sample_indices] # Combine sample frames into a single image for palette generation # Flatten each frame to get all pixels, then stack them all_pixels = np.vstack( [f.reshape(-1, 3) for f in sample_frames] ) # (total_pixels, 3) # Create a properly-shaped RGB image from the pixel data # We'll make a roughly square image from all the pixels total_pixels = len(all_pixels) width = min(512, int(np.sqrt(total_pixels))) # Reasonable width, max 512 height = (total_pixels + width - 1) // width # Ceiling division # Pad if necessary to fill the rectangle pixels_needed = width * height if pixels_needed > total_pixels: padding = np.zeros((pixels_needed - total_pixels, 3), dtype=np.uint8) all_pixels = np.vstack([all_pixels, padding]) # Reshape to proper RGB image format (H, W, 3) img_array = ( all_pixels[:pixels_needed].reshape(height, width, 3).astype(np.uint8) ) combined_img = Image.fromarray(img_array, mode="RGB") # Generate global palette global_palette = combined_img.quantize(colors=num_colors, method=2) # Apply global palette to all frames for frame in self.frames: pil_frame = Image.fromarray(frame) quantized = pil_frame.quantize(palette=global_palette, dither=1) optimized.append(np.array(quantized.convert("RGB"))) else: # Use per-frame quantization for frame in self.frames: pil_frame = Image.fromarray(frame) quantized = pil_frame.quantize(colors=num_colors, method=2, dither=1) optimized.append(np.array(quantized.convert("RGB"))) return optimized def deduplicate_frames(self, threshold: float = 0.9995) -> int: """ Remove duplicate or near-duplicate consecutive frames. Args: threshold: Similarity threshold (0.0-1.0). Higher = more strict (0.9995 = nearly identical). Use 0.9995+ to preserve subtle animations, 0.98 for aggressive removal. Returns: Number of frames removed """ if len(self.frames) < 2: return 0 deduplicated = [self.frames[0]] removed_count = 0 for i in range(1, len(self.frames)): # Compare with previous frame prev_frame = np.array(deduplicated[-1], dtype=np.float32) curr_frame = np.array(self.frames[i], dtype=np.float32) # Calculate similarity (normalized) diff = np.abs(prev_frame - curr_frame) similarity = 1.0 - (np.mean(diff) / 255.0) # Keep frame if sufficiently different # High threshold (0.9995+) means only remove nearly identical frames if similarity < threshold: deduplicated.append(self.frames[i]) else: removed_count += 1 self.frames = deduplicated return removed_count def save( self, output_path: str | Path, num_colors: int = 128, optimize_for_emoji: bool = False, remove_duplicates: bool = False, ) -> dict: """ Save frames as optimized GIF for Slack. Args: output_path: Where to save the GIF num_colors: Number of colors to use (fewer = smaller file) optimize_for_emoji: If True, optimize for emoji size (128x128, fewer colors) remove_duplicates: If True, remove duplicate consecutive frames (opt-in) Returns: Dictionary with file info (path, size, dimensions, frame_count) """ if not self.frames: raise ValueError("No frames to save. Add frames with add_frame() first.") output_path = Path(output_path) # Remove duplicate frames to reduce file size if remove_duplicates: removed = self.deduplicate_frames(threshold=0.9995) if removed > 0: print( f" Removed {removed} nearly identical frames (preserved subtle animations)" ) # Optimize for emoji if requested if optimize_for_emoji: if self.width > 128 or self.height > 128: print( f" Resizing from {self.width}x{self.height} to 128x128 for emoji" ) self.width = 128 self.height = 128 # Resize all frames resized_frames = [] for frame in self.frames: pil_frame = Image.fromarray(frame) pil_frame = pil_frame.resize((128, 128), Image.Resampling.LANCZOS) resized_frames.append(np.array(pil_frame)) self.frames = resized_frames num_colors = min(num_colors, 48) # More aggressive color limit for emoji # More aggressive FPS reduction for emoji if len(self.frames) > 12: print( f" Reducing frames from {len(self.frames)} to ~12 for emoji size" ) # Keep every nth frame to get close to 12 frames keep_every = max(1, len(self.frames) // 12) self.frames = [ self.frames[i] for i in range(0, len(self.frames), keep_every) ] # Optimize colors with global palette optimized_frames = self.optimize_colors(num_colors, use_global_palette=True) # Calculate frame duration in milliseconds frame_duration = 1000 / self.fps # Save GIF imageio.imwrite( output_path, optimized_frames, duration=frame_duration, loop=0, # Infinite loop ) # Get file info file_size_kb = output_path.stat().st_size / 1024 file_size_mb = file_size_kb / 1024 info = { "path": str(output_path), "size_kb": file_size_kb, "size_mb": file_size_mb, "dimensions": f"{self.width}x{self.height}", "frame_count": len(optimized_frames), "fps": self.fps, "duration_seconds": len(optimized_frames) / self.fps, "colors": num_colors, } # Print info print(f"\n✓ GIF created successfully!") print(f" Path: {output_path}") print(f" Size: {file_size_kb:.1f} KB ({file_size_mb:.2f} MB)") print(f" Dimensions: {self.width}x{self.height}") print(f" Frames: {len(optimized_frames)} @ {self.fps} fps") print(f" Duration: {info['duration_seconds']:.1f}s") print(f" Colors: {num_colors}") # Size info if optimize_for_emoji: print(f" Optimized for emoji (128x128, reduced colors)") if file_size_mb > 1.0: print(f"\n Note: Large file size ({file_size_kb:.1f} KB)") print(" Consider: fewer frames, smaller dimensions, or fewer colors") return info def clear(self): """Clear all frames (useful for creating multiple GIFs).""" self.frames = [] ================================================ FILE: skills/slack-gif-creator/core/validators.py ================================================ #!/usr/bin/env python3 """ Validators - Check if GIFs meet Slack's requirements. These validators help ensure your GIFs meet Slack's size and dimension constraints. """ from pathlib import Path def validate_gif( gif_path: str | Path, is_emoji: bool = True, verbose: bool = True ) -> tuple[bool, dict]: """ Validate GIF for Slack (dimensions, size, frame count). Args: gif_path: Path to GIF file is_emoji: True for emoji (128x128 recommended), False for message GIF verbose: Print validation details Returns: Tuple of (passes: bool, results: dict with all details) """ from PIL import Image gif_path = Path(gif_path) if not gif_path.exists(): return False, {"error": f"File not found: {gif_path}"} # Get file size size_bytes = gif_path.stat().st_size size_kb = size_bytes / 1024 size_mb = size_kb / 1024 # Get dimensions and frame info try: with Image.open(gif_path) as img: width, height = img.size # Count frames frame_count = 0 try: while True: img.seek(frame_count) frame_count += 1 except EOFError: pass # Get duration try: duration_ms = img.info.get("duration", 100) total_duration = (duration_ms * frame_count) / 1000 fps = frame_count / total_duration if total_duration > 0 else 0 except: total_duration = None fps = None except Exception as e: return False, {"error": f"Failed to read GIF: {e}"} # Validate dimensions if is_emoji: optimal = width == height == 128 acceptable = width == height and 64 <= width <= 128 dim_pass = acceptable else: aspect_ratio = ( max(width, height) / min(width, height) if min(width, height) > 0 else float("inf") ) dim_pass = aspect_ratio <= 2.0 and 320 <= min(width, height) <= 640 results = { "file": str(gif_path), "passes": dim_pass, "width": width, "height": height, "size_kb": size_kb, "size_mb": size_mb, "frame_count": frame_count, "duration_seconds": total_duration, "fps": fps, "is_emoji": is_emoji, "optimal": optimal if is_emoji else None, } # Print if verbose if verbose: print(f"\nValidating {gif_path.name}:") print( f" Dimensions: {width}x{height}" + ( f" ({'optimal' if optimal else 'acceptable'})" if is_emoji and acceptable else "" ) ) print( f" Size: {size_kb:.1f} KB" + (f" ({size_mb:.2f} MB)" if size_mb >= 1.0 else "") ) print( f" Frames: {frame_count}" + (f" @ {fps:.1f} fps ({total_duration:.1f}s)" if fps else "") ) if not dim_pass: print( f" Note: {'Emoji should be 128x128' if is_emoji else 'Unusual dimensions for Slack'}" ) if size_mb > 5.0: print(f" Note: Large file size - consider fewer frames/colors") return dim_pass, results def is_slack_ready( gif_path: str | Path, is_emoji: bool = True, verbose: bool = True ) -> bool: """ Quick check if GIF is ready for Slack. Args: gif_path: Path to GIF file is_emoji: True for emoji GIF, False for message GIF verbose: Print feedback Returns: True if dimensions are acceptable """ passes, _ = validate_gif(gif_path, is_emoji, verbose) return passes ================================================ FILE: skills/slack-gif-creator/requirements.txt ================================================ pillow>=10.0.0 imageio>=2.31.0 imageio-ffmpeg>=0.4.9 numpy>=1.24.0 ================================================ FILE: skills/theme-factory/LICENSE.txt ================================================ Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ================================================ FILE: skills/theme-factory/SKILL.md ================================================ --- name: theme-factory description: Toolkit for styling artifacts with a theme. These artifacts can be slides, docs, reportings, HTML landing pages, etc. There are 10 pre-set themes with colors/fonts that you can apply to any artifact that has been creating, or can generate a new theme on-the-fly. license: Complete terms in LICENSE.txt --- # Theme Factory Skill This skill provides a curated collection of professional font and color themes themes, each with carefully selected color palettes and font pairings. Once a theme is chosen, it can be applied to any artifact. ## Purpose To apply consistent, professional styling to presentation slide decks, use this skill. Each theme includes: - A cohesive color palette with hex codes - Complementary font pairings for headers and body text - A distinct visual identity suitable for different contexts and audiences ## Usage Instructions To apply styling to a slide deck or other artifact: 1. **Show the theme showcase**: Display the `theme-showcase.pdf` file to allow users to see all available themes visually. Do not make any modifications to it; simply show the file for viewing. 2. **Ask for their choice**: Ask which theme to apply to the deck 3. **Wait for selection**: Get explicit confirmation about the chosen theme 4. **Apply the theme**: Once a theme has been chosen, apply the selected theme's colors and fonts to the deck/artifact ## Themes Available The following 10 themes are available, each showcased in `theme-showcase.pdf`: 1. **Ocean Depths** - Professional and calming maritime theme 2. **Sunset Boulevard** - Warm and vibrant sunset colors 3. **Forest Canopy** - Natural and grounded earth tones 4. **Modern Minimalist** - Clean and contemporary grayscale 5. **Golden Hour** - Rich and warm autumnal palette 6. **Arctic Frost** - Cool and crisp winter-inspired theme 7. **Desert Rose** - Soft and sophisticated dusty tones 8. **Tech Innovation** - Bold and modern tech aesthetic 9. **Botanical Garden** - Fresh and organic garden colors 10. **Midnight Galaxy** - Dramatic and cosmic deep tones ## Theme Details Each theme is defined in the `themes/` directory with complete specifications including: - Cohesive color palette with hex codes - Complementary font pairings for headers and body text - Distinct visual identity suitable for different contexts and audiences ## Application Process After a preferred theme is selected: 1. Read the corresponding theme file from the `themes/` directory 2. Apply the specified colors and fonts consistently throughout the deck 3. Ensure proper contrast and readability 4. Maintain the theme's visual identity across all slides ## Create your Own Theme To handle cases where none of the existing themes work for an artifact, create a custom theme. Based on provided inputs, generate a new theme similar to the ones above. Give the theme a similar name describing what the font/color combinations represent. Use any basic description provided to choose appropriate colors/fonts. After generating the theme, show it for review and verification. Following that, apply the theme as described above. ================================================ FILE: skills/theme-factory/themes/arctic-frost.md ================================================ # Arctic Frost A cool and crisp winter-inspired theme that conveys clarity, precision, and professionalism. ## Color Palette - **Ice Blue**: `#d4e4f7` - Light backgrounds and highlights - **Steel Blue**: `#4a6fa5` - Primary accent color - **Silver**: `#c0c0c0` - Metallic accent elements - **Crisp White**: `#fafafa` - Clean backgrounds and text ## Typography - **Headers**: DejaVu Sans Bold - **Body Text**: DejaVu Sans ## Best Used For Healthcare presentations, technology solutions, winter sports, clean tech, pharmaceutical content. ================================================ FILE: skills/theme-factory/themes/botanical-garden.md ================================================ # Botanical Garden A fresh and organic theme featuring vibrant garden-inspired colors for lively presentations. ## Color Palette - **Fern Green**: `#4a7c59` - Rich natural green - **Marigold**: `#f9a620` - Bright floral accent - **Terracotta**: `#b7472a` - Earthy warm tone - **Cream**: `#f5f3ed` - Soft neutral backgrounds ## Typography - **Headers**: DejaVu Serif Bold - **Body Text**: DejaVu Sans ## Best Used For Garden centers, food presentations, farm-to-table content, botanical brands, natural products. ================================================ FILE: skills/theme-factory/themes/desert-rose.md ================================================ # Desert Rose A soft and sophisticated theme with dusty, muted tones perfect for elegant presentations. ## Color Palette - **Dusty Rose**: `#d4a5a5` - Soft primary color - **Clay**: `#b87d6d` - Earthy accent - **Sand**: `#e8d5c4` - Warm neutral backgrounds - **Deep Burgundy**: `#5d2e46` - Rich dark contrast ## Typography - **Headers**: FreeSans Bold - **Body Text**: FreeSans ## Best Used For Fashion presentations, beauty brands, wedding planning, interior design, boutique businesses. ================================================ FILE: skills/theme-factory/themes/forest-canopy.md ================================================ # Forest Canopy A natural and grounded theme featuring earth tones inspired by dense forest environments. ## Color Palette - **Forest Green**: `#2d4a2b` - Primary dark green - **Sage**: `#7d8471` - Muted green accent - **Olive**: `#a4ac86` - Light accent color - **Ivory**: `#faf9f6` - Backgrounds and text ## Typography - **Headers**: FreeSerif Bold - **Body Text**: FreeSans ## Best Used For Environmental presentations, sustainability reports, outdoor brands, wellness content, organic products. ================================================ FILE: skills/theme-factory/themes/golden-hour.md ================================================ # Golden Hour A rich and warm autumnal palette that creates an inviting and sophisticated atmosphere. ## Color Palette - **Mustard Yellow**: `#f4a900` - Bold primary accent - **Terracotta**: `#c1666b` - Warm secondary color - **Warm Beige**: `#d4b896` - Neutral backgrounds - **Chocolate Brown**: `#4a403a` - Dark text and anchors ## Typography - **Headers**: FreeSans Bold - **Body Text**: FreeSans ## Best Used For Restaurant presentations, hospitality brands, fall campaigns, cozy lifestyle content, artisan products. ================================================ FILE: skills/theme-factory/themes/midnight-galaxy.md ================================================ # Midnight Galaxy A dramatic and cosmic theme with deep purples and mystical tones for impactful presentations. ## Color Palette - **Deep Purple**: `#2b1e3e` - Rich dark base - **Cosmic Blue**: `#4a4e8f` - Mystical mid-tone - **Lavender**: `#a490c2` - Soft accent color - **Silver**: `#e6e6fa` - Light highlights and text ## Typography - **Headers**: FreeSans Bold - **Body Text**: FreeSans ## Best Used For Entertainment industry, gaming presentations, nightlife venues, luxury brands, creative agencies. ================================================ FILE: skills/theme-factory/themes/modern-minimalist.md ================================================ # Modern Minimalist A clean and contemporary theme with a sophisticated grayscale palette for maximum versatility. ## Color Palette - **Charcoal**: `#36454f` - Primary dark color - **Slate Gray**: `#708090` - Medium gray for accents - **Light Gray**: `#d3d3d3` - Backgrounds and dividers - **White**: `#ffffff` - Text and clean backgrounds ## Typography - **Headers**: DejaVu Sans Bold - **Body Text**: DejaVu Sans ## Best Used For Tech presentations, architecture portfolios, design showcases, modern business proposals, data visualization. ================================================ FILE: skills/theme-factory/themes/ocean-depths.md ================================================ # Ocean Depths A professional and calming maritime theme that evokes the serenity of deep ocean waters. ## Color Palette - **Deep Navy**: `#1a2332` - Primary background color - **Teal**: `#2d8b8b` - Accent color for highlights and emphasis - **Seafoam**: `#a8dadc` - Secondary accent for lighter elements - **Cream**: `#f1faee` - Text and light backgrounds ## Typography - **Headers**: DejaVu Sans Bold - **Body Text**: DejaVu Sans ## Best Used For Corporate presentations, financial reports, professional consulting decks, trust-building content. ================================================ FILE: skills/theme-factory/themes/sunset-boulevard.md ================================================ # Sunset Boulevard A warm and vibrant theme inspired by golden hour sunsets, perfect for energetic and creative presentations. ## Color Palette - **Burnt Orange**: `#e76f51` - Primary accent color - **Coral**: `#f4a261` - Secondary warm accent - **Warm Sand**: `#e9c46a` - Highlighting and backgrounds - **Deep Purple**: `#264653` - Dark contrast and text ## Typography - **Headers**: DejaVu Serif Bold - **Body Text**: DejaVu Sans ## Best Used For Creative pitches, marketing presentations, lifestyle brands, event promotions, inspirational content. ================================================ FILE: skills/theme-factory/themes/tech-innovation.md ================================================ # Tech Innovation A bold and modern theme with high-contrast colors perfect for cutting-edge technology presentations. ## Color Palette - **Electric Blue**: `#0066ff` - Vibrant primary accent - **Neon Cyan**: `#00ffff` - Bright highlight color - **Dark Gray**: `#1e1e1e` - Deep backgrounds - **White**: `#ffffff` - Clean text and contrast ## Typography - **Headers**: DejaVu Sans Bold - **Body Text**: DejaVu Sans ## Best Used For Tech startups, software launches, innovation showcases, AI/ML presentations, digital transformation content. ================================================ FILE: skills/web-artifacts-builder/LICENSE.txt ================================================ Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ================================================ FILE: skills/web-artifacts-builder/SKILL.md ================================================ --- name: web-artifacts-builder description: Suite of tools for creating elaborate, multi-component claude.ai HTML artifacts using modern frontend web technologies (React, Tailwind CSS, shadcn/ui). Use for complex artifacts requiring state management, routing, or shadcn/ui components - not for simple single-file HTML/JSX artifacts. license: Complete terms in LICENSE.txt --- # Web Artifacts Builder To build powerful frontend claude.ai artifacts, follow these steps: 1. Initialize the frontend repo using `scripts/init-artifact.sh` 2. Develop your artifact by editing the generated code 3. Bundle all code into a single HTML file using `scripts/bundle-artifact.sh` 4. Display artifact to user 5. (Optional) Test the artifact **Stack**: React 18 + TypeScript + Vite + Parcel (bundling) + Tailwind CSS + shadcn/ui ## Design & Style Guidelines VERY IMPORTANT: To avoid what is often referred to as "AI slop", avoid using excessive centered layouts, purple gradients, uniform rounded corners, and Inter font. ## Quick Start ### Step 1: Initialize Project Run the initialization script to create a new React project: ```bash bash scripts/init-artifact.sh cd ``` This creates a fully configured project with: - ✅ React + TypeScript (via Vite) - ✅ Tailwind CSS 3.4.1 with shadcn/ui theming system - ✅ Path aliases (`@/`) configured - ✅ 40+ shadcn/ui components pre-installed - ✅ All Radix UI dependencies included - ✅ Parcel configured for bundling (via .parcelrc) - ✅ Node 18+ compatibility (auto-detects and pins Vite version) ### Step 2: Develop Your Artifact To build the artifact, edit the generated files. See **Common Development Tasks** below for guidance. ### Step 3: Bundle to Single HTML File To bundle the React app into a single HTML artifact: ```bash bash scripts/bundle-artifact.sh ``` This creates `bundle.html` - a self-contained artifact with all JavaScript, CSS, and dependencies inlined. This file can be directly shared in Claude conversations as an artifact. **Requirements**: Your project must have an `index.html` in the root directory. **What the script does**: - Installs bundling dependencies (parcel, @parcel/config-default, parcel-resolver-tspaths, html-inline) - Creates `.parcelrc` config with path alias support - Builds with Parcel (no source maps) - Inlines all assets into single HTML using html-inline ### Step 4: Share Artifact with User Finally, share the bundled HTML file in conversation with the user so they can view it as an artifact. ### Step 5: Testing/Visualizing the Artifact (Optional) Note: This is a completely optional step. Only perform if necessary or requested. To test/visualize the artifact, use available tools (including other Skills or built-in tools like Playwright or Puppeteer). In general, avoid testing the artifact upfront as it adds latency between the request and when the finished artifact can be seen. Test later, after presenting the artifact, if requested or if issues arise. ## Reference - **shadcn/ui components**: https://ui.shadcn.com/docs/components ================================================ FILE: skills/web-artifacts-builder/scripts/bundle-artifact.sh ================================================ #!/bin/bash set -e echo "📦 Bundling React app to single HTML artifact..." # Check if we're in a project directory if [ ! -f "package.json" ]; then echo "❌ Error: No package.json found. Run this script from your project root." exit 1 fi # Check if index.html exists if [ ! -f "index.html" ]; then echo "❌ Error: No index.html found in project root." echo " This script requires an index.html entry point." exit 1 fi # Install bundling dependencies echo "📦 Installing bundling dependencies..." pnpm add -D parcel @parcel/config-default parcel-resolver-tspaths html-inline # Create Parcel config with tspaths resolver if [ ! -f ".parcelrc" ]; then echo "🔧 Creating Parcel configuration with path alias support..." cat > .parcelrc << 'EOF' { "extends": "@parcel/config-default", "resolvers": ["parcel-resolver-tspaths", "..."] } EOF fi # Clean previous build echo "🧹 Cleaning previous build..." rm -rf dist bundle.html # Build with Parcel echo "🔨 Building with Parcel..." pnpm exec parcel build index.html --dist-dir dist --no-source-maps # Inline everything into single HTML echo "🎯 Inlining all assets into single HTML file..." pnpm exec html-inline dist/index.html > bundle.html # Get file size FILE_SIZE=$(du -h bundle.html | cut -f1) echo "" echo "✅ Bundle complete!" echo "📄 Output: bundle.html ($FILE_SIZE)" echo "" echo "You can now use this single HTML file as an artifact in Claude conversations." echo "To test locally: open bundle.html in your browser" ================================================ FILE: skills/web-artifacts-builder/scripts/init-artifact.sh ================================================ #!/bin/bash # Exit on error set -e # Detect Node version NODE_VERSION=$(node -v | cut -d'v' -f2 | cut -d'.' -f1) echo "🔍 Detected Node.js version: $NODE_VERSION" if [ "$NODE_VERSION" -lt 18 ]; then echo "❌ Error: Node.js 18 or higher is required" echo " Current version: $(node -v)" exit 1 fi # Set Vite version based on Node version if [ "$NODE_VERSION" -ge 20 ]; then VITE_VERSION="latest" echo "✅ Using Vite latest (Node 20+)" else VITE_VERSION="5.4.11" echo "✅ Using Vite $VITE_VERSION (Node 18 compatible)" fi # Detect OS and set sed syntax if [[ "$OSTYPE" == "darwin"* ]]; then SED_INPLACE="sed -i ''" else SED_INPLACE="sed -i" fi # Check if pnpm is installed if ! command -v pnpm &> /dev/null; then echo "📦 pnpm not found. Installing pnpm..." npm install -g pnpm fi # Check if project name is provided if [ -z "$1" ]; then echo "❌ Usage: ./create-react-shadcn-complete.sh " exit 1 fi PROJECT_NAME="$1" SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" COMPONENTS_TARBALL="$SCRIPT_DIR/shadcn-components.tar.gz" # Check if components tarball exists if [ ! -f "$COMPONENTS_TARBALL" ]; then echo "❌ Error: shadcn-components.tar.gz not found in script directory" echo " Expected location: $COMPONENTS_TARBALL" exit 1 fi echo "🚀 Creating new React + Vite project: $PROJECT_NAME" # Create new Vite project (always use latest create-vite, pin vite version later) pnpm create vite "$PROJECT_NAME" --template react-ts # Navigate into project directory cd "$PROJECT_NAME" echo "🧹 Cleaning up Vite template..." $SED_INPLACE '/.*<\/title>/'"$PROJECT_NAME"'<\/title>/' index.html echo "📦 Installing base dependencies..." pnpm install # Pin Vite version for Node 18 if [ "$NODE_VERSION" -lt 20 ]; then echo "📌 Pinning Vite to $VITE_VERSION for Node 18 compatibility..." pnpm add -D vite@$VITE_VERSION fi echo "📦 Installing Tailwind CSS and dependencies..." pnpm install -D tailwindcss@3.4.1 postcss autoprefixer @types/node tailwindcss-animate pnpm install class-variance-authority clsx tailwind-merge lucide-react next-themes echo "⚙️ Creating Tailwind and PostCSS configuration..." cat > postcss.config.js << 'EOF' export default { plugins: { tailwindcss: {}, autoprefixer: {}, }, } EOF echo "📝 Configuring Tailwind with shadcn theme..." cat > tailwind.config.js << 'EOF' /** @type {import('tailwindcss').Config} */ module.exports = { darkMode: ["class"], content: [ "./index.html", "./src/**/*.{js,ts,jsx,tsx}", ], theme: { extend: { colors: { border: "hsl(var(--border))", input: "hsl(var(--input))", ring: "hsl(var(--ring))", background: "hsl(var(--background))", foreground: "hsl(var(--foreground))", primary: { DEFAULT: "hsl(var(--primary))", foreground: "hsl(var(--primary-foreground))", }, secondary: { DEFAULT: "hsl(var(--secondary))", foreground: "hsl(var(--secondary-foreground))", }, destructive: { DEFAULT: "hsl(var(--destructive))", foreground: "hsl(var(--destructive-foreground))", }, muted: { DEFAULT: "hsl(var(--muted))", foreground: "hsl(var(--muted-foreground))", }, accent: { DEFAULT: "hsl(var(--accent))", foreground: "hsl(var(--accent-foreground))", }, popover: { DEFAULT: "hsl(var(--popover))", foreground: "hsl(var(--popover-foreground))", }, card: { DEFAULT: "hsl(var(--card))", foreground: "hsl(var(--card-foreground))", }, }, borderRadius: { lg: "var(--radius)", md: "calc(var(--radius) - 2px)", sm: "calc(var(--radius) - 4px)", }, keyframes: { "accordion-down": { from: { height: "0" }, to: { height: "var(--radix-accordion-content-height)" }, }, "accordion-up": { from: { height: "var(--radix-accordion-content-height)" }, to: { height: "0" }, }, }, animation: { "accordion-down": "accordion-down 0.2s ease-out", "accordion-up": "accordion-up 0.2s ease-out", }, }, }, plugins: [require("tailwindcss-animate")], } EOF # Add Tailwind directives and CSS variables to index.css echo "🎨 Adding Tailwind directives and CSS variables..." cat > src/index.css << 'EOF' @tailwind base; @tailwind components; @tailwind utilities; @layer base { :root { --background: 0 0% 100%; --foreground: 0 0% 3.9%; --card: 0 0% 100%; --card-foreground: 0 0% 3.9%; --popover: 0 0% 100%; --popover-foreground: 0 0% 3.9%; --primary: 0 0% 9%; --primary-foreground: 0 0% 98%; --secondary: 0 0% 96.1%; --secondary-foreground: 0 0% 9%; --muted: 0 0% 96.1%; --muted-foreground: 0 0% 45.1%; --accent: 0 0% 96.1%; --accent-foreground: 0 0% 9%; --destructive: 0 84.2% 60.2%; --destructive-foreground: 0 0% 98%; --border: 0 0% 89.8%; --input: 0 0% 89.8%; --ring: 0 0% 3.9%; --radius: 0.5rem; } .dark { --background: 0 0% 3.9%; --foreground: 0 0% 98%; --card: 0 0% 3.9%; --card-foreground: 0 0% 98%; --popover: 0 0% 3.9%; --popover-foreground: 0 0% 98%; --primary: 0 0% 98%; --primary-foreground: 0 0% 9%; --secondary: 0 0% 14.9%; --secondary-foreground: 0 0% 98%; --muted: 0 0% 14.9%; --muted-foreground: 0 0% 63.9%; --accent: 0 0% 14.9%; --accent-foreground: 0 0% 98%; --destructive: 0 62.8% 30.6%; --destructive-foreground: 0 0% 98%; --border: 0 0% 14.9%; --input: 0 0% 14.9%; --ring: 0 0% 83.1%; } } @layer base { * { @apply border-border; } body { @apply bg-background text-foreground; } } EOF # Add path aliases to tsconfig.json echo "🔧 Adding path aliases to tsconfig.json..." node -e " const fs = require('fs'); const config = JSON.parse(fs.readFileSync('tsconfig.json', 'utf8')); config.compilerOptions = config.compilerOptions || {}; config.compilerOptions.baseUrl = '.'; config.compilerOptions.paths = { '@/*': ['./src/*'] }; fs.writeFileSync('tsconfig.json', JSON.stringify(config, null, 2)); " # Add path aliases to tsconfig.app.json echo "🔧 Adding path aliases to tsconfig.app.json..." node -e " const fs = require('fs'); const path = 'tsconfig.app.json'; const content = fs.readFileSync(path, 'utf8'); // Remove comments manually const lines = content.split('\n').filter(line => !line.trim().startsWith('//')); const jsonContent = lines.join('\n'); const config = JSON.parse(jsonContent.replace(/\/\*[\s\S]*?\*\//g, '').replace(/,(\s*[}\]])/g, '\$1')); config.compilerOptions = config.compilerOptions || {}; config.compilerOptions.baseUrl = '.'; config.compilerOptions.paths = { '@/*': ['./src/*'] }; fs.writeFileSync(path, JSON.stringify(config, null, 2)); " # Update vite.config.ts echo "⚙️ Updating Vite configuration..." cat > vite.config.ts << 'EOF' import path from "path"; import react from "@vitejs/plugin-react"; import { defineConfig } from "vite"; export default defineConfig({ plugins: [react()], resolve: { alias: { "@": path.resolve(__dirname, "./src"), }, }, }); EOF # Install all shadcn/ui dependencies echo "📦 Installing shadcn/ui dependencies..." pnpm install @radix-ui/react-accordion @radix-ui/react-aspect-ratio @radix-ui/react-avatar @radix-ui/react-checkbox @radix-ui/react-collapsible @radix-ui/react-context-menu @radix-ui/react-dialog @radix-ui/react-dropdown-menu @radix-ui/react-hover-card @radix-ui/react-label @radix-ui/react-menubar @radix-ui/react-navigation-menu @radix-ui/react-popover @radix-ui/react-progress @radix-ui/react-radio-group @radix-ui/react-scroll-area @radix-ui/react-select @radix-ui/react-separator @radix-ui/react-slider @radix-ui/react-slot @radix-ui/react-switch @radix-ui/react-tabs @radix-ui/react-toast @radix-ui/react-toggle @radix-ui/react-toggle-group @radix-ui/react-tooltip pnpm install sonner cmdk vaul embla-carousel-react react-day-picker react-resizable-panels date-fns react-hook-form @hookform/resolvers zod # Extract shadcn components from tarball echo "📦 Extracting shadcn/ui components..." tar -xzf "$COMPONENTS_TARBALL" -C src/ # Create components.json for reference echo "📝 Creating components.json config..." cat > components.json << 'EOF' { "$schema": "https://ui.shadcn.com/schema.json", "style": "default", "rsc": false, "tsx": true, "tailwind": { "config": "tailwind.config.js", "css": "src/index.css", "baseColor": "slate", "cssVariables": true, "prefix": "" }, "aliases": { "components": "@/components", "utils": "@/lib/utils", "ui": "@/components/ui", "lib": "@/lib", "hooks": "@/hooks" } } EOF echo "✅ Setup complete! You can now use Tailwind CSS and shadcn/ui in your project." echo "" echo "📦 Included components (40+ total):" echo " - accordion, alert, aspect-ratio, avatar, badge, breadcrumb" echo " - button, calendar, card, carousel, checkbox, collapsible" echo " - command, context-menu, dialog, drawer, dropdown-menu" echo " - form, hover-card, input, label, menubar, navigation-menu" echo " - popover, progress, radio-group, resizable, scroll-area" echo " - select, separator, sheet, skeleton, slider, sonner" echo " - switch, table, tabs, textarea, toast, toggle, toggle-group, tooltip" echo "" echo "To start developing:" echo " cd $PROJECT_NAME" echo " pnpm dev" echo "" echo "📚 Import components like:" echo " import { Button } from '@/components/ui/button'" echo " import { Card, CardHeader, CardTitle, CardContent } from '@/components/ui/card'" echo " import { Dialog, DialogContent, DialogTrigger } from '@/components/ui/dialog'" ================================================ FILE: skills/webapp-testing/LICENSE.txt ================================================ Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ================================================ FILE: skills/webapp-testing/SKILL.md ================================================ --- name: webapp-testing description: Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser logs. license: Complete terms in LICENSE.txt --- # Web Application Testing To test local web applications, write native Python Playwright scripts. **Helper Scripts Available**: - `scripts/with_server.py` - Manages server lifecycle (supports multiple servers) **Always run scripts with `--help` first** to see usage. DO NOT read the source until you try running the script first and find that a customized solution is abslutely necessary. These scripts can be very large and thus pollute your context window. They exist to be called directly as black-box scripts rather than ingested into your context window. ## Decision Tree: Choosing Your Approach ``` User task → Is it static HTML? ├─ Yes → Read HTML file directly to identify selectors │ ├─ Success → Write Playwright script using selectors │ └─ Fails/Incomplete → Treat as dynamic (below) │ └─ No (dynamic webapp) → Is the server already running? ├─ No → Run: python scripts/with_server.py --help │ Then use the helper + write simplified Playwright script │ └─ Yes → Reconnaissance-then-action: 1. Navigate and wait for networkidle 2. Take screenshot or inspect DOM 3. Identify selectors from rendered state 4. Execute actions with discovered selectors ``` ## Example: Using with_server.py To start a server, run `--help` first, then use the helper: **Single server:** ```bash python scripts/with_server.py --server "npm run dev" --port 5173 -- python your_automation.py ``` **Multiple servers (e.g., backend + frontend):** ```bash python scripts/with_server.py \ --server "cd backend && python server.py" --port 3000 \ --server "cd frontend && npm run dev" --port 5173 \ -- python your_automation.py ``` To create an automation script, include only Playwright logic (servers are managed automatically): ```python from playwright.sync_api import sync_playwright with sync_playwright() as p: browser = p.chromium.launch(headless=True) # Always launch chromium in headless mode page = browser.new_page() page.goto('http://localhost:5173') # Server already running and ready page.wait_for_load_state('networkidle') # CRITICAL: Wait for JS to execute # ... your automation logic browser.close() ``` ## Reconnaissance-Then-Action Pattern 1. **Inspect rendered DOM**: ```python page.screenshot(path='/tmp/inspect.png', full_page=True) content = page.content() page.locator('button').all() ``` 2. **Identify selectors** from inspection results 3. **Execute actions** using discovered selectors ## Common Pitfall ❌ **Don't** inspect the DOM before waiting for `networkidle` on dynamic apps ✅ **Do** wait for `page.wait_for_load_state('networkidle')` before inspection ## Best Practices - **Use bundled scripts as black boxes** - To accomplish a task, consider whether one of the scripts available in `scripts/` can help. These scripts handle common, complex workflows reliably without cluttering the context window. Use `--help` to see usage, then invoke directly. - Use `sync_playwright()` for synchronous scripts - Always close the browser when done - Use descriptive selectors: `text=`, `role=`, CSS selectors, or IDs - Add appropriate waits: `page.wait_for_selector()` or `page.wait_for_timeout()` ## Reference Files - **examples/** - Examples showing common patterns: - `element_discovery.py` - Discovering buttons, links, and inputs on a page - `static_html_automation.py` - Using file:// URLs for local HTML - `console_logging.py` - Capturing console logs during automation ================================================ FILE: skills/webapp-testing/examples/console_logging.py ================================================ from playwright.sync_api import sync_playwright # Example: Capturing console logs during browser automation url = 'http://localhost:5173' # Replace with your URL console_logs = [] with sync_playwright() as p: browser = p.chromium.launch(headless=True) page = browser.new_page(viewport={'width': 1920, 'height': 1080}) # Set up console log capture def handle_console_message(msg): console_logs.append(f"[{msg.type}] {msg.text}") print(f"Console: [{msg.type}] {msg.text}") page.on("console", handle_console_message) # Navigate to page page.goto(url) page.wait_for_load_state('networkidle') # Interact with the page (triggers console logs) page.click('text=Dashboard') page.wait_for_timeout(1000) browser.close() # Save console logs to file with open('/mnt/user-data/outputs/console.log', 'w') as f: f.write('\n'.join(console_logs)) print(f"\nCaptured {len(console_logs)} console messages") print(f"Logs saved to: /mnt/user-data/outputs/console.log") ================================================ FILE: skills/webapp-testing/examples/element_discovery.py ================================================ from playwright.sync_api import sync_playwright # Example: Discovering buttons and other elements on a page with sync_playwright() as p: browser = p.chromium.launch(headless=True) page = browser.new_page() # Navigate to page and wait for it to fully load page.goto('http://localhost:5173') page.wait_for_load_state('networkidle') # Discover all buttons on the page buttons = page.locator('button').all() print(f"Found {len(buttons)} buttons:") for i, button in enumerate(buttons): text = button.inner_text() if button.is_visible() else "[hidden]" print(f" [{i}] {text}") # Discover links links = page.locator('a[href]').all() print(f"\nFound {len(links)} links:") for link in links[:5]: # Show first 5 text = link.inner_text().strip() href = link.get_attribute('href') print(f" - {text} -> {href}") # Discover input fields inputs = page.locator('input, textarea, select').all() print(f"\nFound {len(inputs)} input fields:") for input_elem in inputs: name = input_elem.get_attribute('name') or input_elem.get_attribute('id') or "[unnamed]" input_type = input_elem.get_attribute('type') or 'text' print(f" - {name} ({input_type})") # Take screenshot for visual reference page.screenshot(path='/tmp/page_discovery.png', full_page=True) print("\nScreenshot saved to /tmp/page_discovery.png") browser.close() ================================================ FILE: skills/webapp-testing/examples/static_html_automation.py ================================================ from playwright.sync_api import sync_playwright import os # Example: Automating interaction with static HTML files using file:// URLs html_file_path = os.path.abspath('path/to/your/file.html') file_url = f'file://{html_file_path}' with sync_playwright() as p: browser = p.chromium.launch(headless=True) page = browser.new_page(viewport={'width': 1920, 'height': 1080}) # Navigate to local HTML file page.goto(file_url) # Take screenshot page.screenshot(path='/mnt/user-data/outputs/static_page.png', full_page=True) # Interact with elements page.click('text=Click Me') page.fill('#name', 'John Doe') page.fill('#email', 'john@example.com') # Submit form page.click('button[type="submit"]') page.wait_for_timeout(500) # Take final screenshot page.screenshot(path='/mnt/user-data/outputs/after_submit.png', full_page=True) browser.close() print("Static HTML automation completed!") ================================================ FILE: skills/webapp-testing/scripts/with_server.py ================================================ #!/usr/bin/env python3 """ Start one or more servers, wait for them to be ready, run a command, then clean up. Usage: # Single server python scripts/with_server.py --server "npm run dev" --port 5173 -- python automation.py python scripts/with_server.py --server "npm start" --port 3000 -- python test.py # Multiple servers python scripts/with_server.py \ --server "cd backend && python server.py" --port 3000 \ --server "cd frontend && npm run dev" --port 5173 \ -- python test.py """ import subprocess import socket import time import sys import argparse def is_server_ready(port, timeout=30): """Wait for server to be ready by polling the port.""" start_time = time.time() while time.time() - start_time < timeout: try: with socket.create_connection(('localhost', port), timeout=1): return True except (socket.error, ConnectionRefusedError): time.sleep(0.5) return False def main(): parser = argparse.ArgumentParser(description='Run command with one or more servers') parser.add_argument('--server', action='append', dest='servers', required=True, help='Server command (can be repeated)') parser.add_argument('--port', action='append', dest='ports', type=int, required=True, help='Port for each server (must match --server count)') parser.add_argument('--timeout', type=int, default=30, help='Timeout in seconds per server (default: 30)') parser.add_argument('command', nargs=argparse.REMAINDER, help='Command to run after server(s) ready') args = parser.parse_args() # Remove the '--' separator if present if args.command and args.command[0] == '--': args.command = args.command[1:] if not args.command: print("Error: No command specified to run") sys.exit(1) # Parse server configurations if len(args.servers) != len(args.ports): print("Error: Number of --server and --port arguments must match") sys.exit(1) servers = [] for cmd, port in zip(args.servers, args.ports): servers.append({'cmd': cmd, 'port': port}) server_processes = [] try: # Start all servers for i, server in enumerate(servers): print(f"Starting server {i+1}/{len(servers)}: {server['cmd']}") # Use shell=True to support commands with cd and && process = subprocess.Popen( server['cmd'], shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE ) server_processes.append(process) # Wait for this server to be ready print(f"Waiting for server on port {server['port']}...") if not is_server_ready(server['port'], timeout=args.timeout): raise RuntimeError(f"Server failed to start on port {server['port']} within {args.timeout}s") print(f"Server ready on port {server['port']}") print(f"\nAll {len(servers)} server(s) ready") # Run the command print(f"Running: {' '.join(args.command)}\n") result = subprocess.run(args.command) sys.exit(result.returncode) finally: # Clean up all servers print(f"\nStopping {len(server_processes)} server(s)...") for i, process in enumerate(server_processes): try: process.terminate() process.wait(timeout=5) except subprocess.TimeoutExpired: process.kill() process.wait() print(f"Server {i+1} stopped") print("All servers stopped") if __name__ == '__main__': main() ================================================ FILE: skills/xlsx/LICENSE.txt ================================================ © 2025 Anthropic, PBC. All rights reserved. LICENSE: Use of these materials (including all code, prompts, assets, files, and other components of this Skill) is governed by your agreement with Anthropic regarding use of Anthropic's services. If no separate agreement exists, use is governed by Anthropic's Consumer Terms of Service or Commercial Terms of Service, as applicable: https://www.anthropic.com/legal/consumer-terms https://www.anthropic.com/legal/commercial-terms Your applicable agreement is referred to as the "Agreement." "Services" are as defined in the Agreement. ADDITIONAL RESTRICTIONS: Notwithstanding anything in the Agreement to the contrary, users may not: - Extract these materials from the Services or retain copies of these materials outside the Services - Reproduce or copy these materials, except for temporary copies created automatically during authorized use of the Services - Create derivative works based on these materials - Distribute, sublicense, or transfer these materials to any third party - Make, offer to sell, sell, or import any inventions embodied in these materials - Reverse engineer, decompile, or disassemble these materials The receipt, viewing, or possession of these materials does not convey or imply any license or right beyond those expressly granted above. Anthropic retains all right, title, and interest in these materials, including all copyrights, patents, and other intellectual property rights. ================================================ FILE: skills/xlsx/SKILL.md ================================================ --- name: xlsx description: "Use this skill any time a spreadsheet file is the primary input or output. This means any task where the user wants to: open, read, edit, or fix an existing .xlsx, .xlsm, .csv, or .tsv file (e.g., adding columns, computing formulas, formatting, charting, cleaning messy data); create a new spreadsheet from scratch or from other data sources; or convert between tabular file formats. Trigger especially when the user references a spreadsheet file by name or path — even casually (like \"the xlsx in my downloads\") — and wants something done to it or produced from it. Also trigger for cleaning or restructuring messy tabular data files (malformed rows, misplaced headers, junk data) into proper spreadsheets. The deliverable must be a spreadsheet file. Do NOT trigger when the primary deliverable is a Word document, HTML report, standalone Python script, database pipeline, or Google Sheets API integration, even if tabular data is involved." license: Proprietary. LICENSE.txt has complete terms --- # Requirements for Outputs ## All Excel files ### Professional Font - Use a consistent, professional font (e.g., Arial, Times New Roman) for all deliverables unless otherwise instructed by the user ### Zero Formula Errors - Every Excel model MUST be delivered with ZERO formula errors (#REF!, #DIV/0!, #VALUE!, #N/A, #NAME?) ### Preserve Existing Templates (when updating templates) - Study and EXACTLY match existing format, style, and conventions when modifying files - Never impose standardized formatting on files with established patterns - Existing template conventions ALWAYS override these guidelines ## Financial models ### Color Coding Standards Unless otherwise stated by the user or existing template #### Industry-Standard Color Conventions - **Blue text (RGB: 0,0,255)**: Hardcoded inputs, and numbers users will change for scenarios - **Black text (RGB: 0,0,0)**: ALL formulas and calculations - **Green text (RGB: 0,128,0)**: Links pulling from other worksheets within same workbook - **Red text (RGB: 255,0,0)**: External links to other files - **Yellow background (RGB: 255,255,0)**: Key assumptions needing attention or cells that need to be updated ### Number Formatting Standards #### Required Format Rules - **Years**: Format as text strings (e.g., "2024" not "2,024") - **Currency**: Use $#,##0 format; ALWAYS specify units in headers ("Revenue ($mm)") - **Zeros**: Use number formatting to make all zeros "-", including percentages (e.g., "$#,##0;($#,##0);-") - **Percentages**: Default to 0.0% format (one decimal) - **Multiples**: Format as 0.0x for valuation multiples (EV/EBITDA, P/E) - **Negative numbers**: Use parentheses (123) not minus -123 ### Formula Construction Rules #### Assumptions Placement - Place ALL assumptions (growth rates, margins, multiples, etc.) in separate assumption cells - Use cell references instead of hardcoded values in formulas - Example: Use =B5*(1+$B$6) instead of =B5*1.05 #### Formula Error Prevention - Verify all cell references are correct - Check for off-by-one errors in ranges - Ensure consistent formulas across all projection periods - Test with edge cases (zero values, negative numbers) - Verify no unintended circular references #### Documentation Requirements for Hardcodes - Comment or in cells beside (if end of table). Format: "Source: [System/Document], [Date], [Specific Reference], [URL if applicable]" - Examples: - "Source: Company 10-K, FY2024, Page 45, Revenue Note, [SEC EDGAR URL]" - "Source: Company 10-Q, Q2 2025, Exhibit 99.1, [SEC EDGAR URL]" - "Source: Bloomberg Terminal, 8/15/2025, AAPL US Equity" - "Source: FactSet, 8/20/2025, Consensus Estimates Screen" # XLSX creation, editing, and analysis ## Overview A user may ask you to create, edit, or analyze the contents of an .xlsx file. You have different tools and workflows available for different tasks. ## Important Requirements **LibreOffice Required for Formula Recalculation**: You can assume LibreOffice is installed for recalculating formula values using the `scripts/recalc.py` script. The script automatically configures LibreOffice on first run, including in sandboxed environments where Unix sockets are restricted (handled by `scripts/office/soffice.py`) ## Reading and analyzing data ### Data analysis with pandas For data analysis, visualization, and basic operations, use **pandas** which provides powerful data manipulation capabilities: ```python import pandas as pd # Read Excel df = pd.read_excel('file.xlsx') # Default: first sheet all_sheets = pd.read_excel('file.xlsx', sheet_name=None) # All sheets as dict # Analyze df.head() # Preview data df.info() # Column info df.describe() # Statistics # Write Excel df.to_excel('output.xlsx', index=False) ``` ## Excel File Workflows ## CRITICAL: Use Formulas, Not Hardcoded Values **Always use Excel formulas instead of calculating values in Python and hardcoding them.** This ensures the spreadsheet remains dynamic and updateable. ### ❌ WRONG - Hardcoding Calculated Values ```python # Bad: Calculating in Python and hardcoding result total = df['Sales'].sum() sheet['B10'] = total # Hardcodes 5000 # Bad: Computing growth rate in Python growth = (df.iloc[-1]['Revenue'] - df.iloc[0]['Revenue']) / df.iloc[0]['Revenue'] sheet['C5'] = growth # Hardcodes 0.15 # Bad: Python calculation for average avg = sum(values) / len(values) sheet['D20'] = avg # Hardcodes 42.5 ``` ### ✅ CORRECT - Using Excel Formulas ```python # Good: Let Excel calculate the sum sheet['B10'] = '=SUM(B2:B9)' # Good: Growth rate as Excel formula sheet['C5'] = '=(C4-C2)/C2' # Good: Average using Excel function sheet['D20'] = '=AVERAGE(D2:D19)' ``` This applies to ALL calculations - totals, percentages, ratios, differences, etc. The spreadsheet should be able to recalculate when source data changes. ## Common Workflow 1. **Choose tool**: pandas for data, openpyxl for formulas/formatting 2. **Create/Load**: Create new workbook or load existing file 3. **Modify**: Add/edit data, formulas, and formatting 4. **Save**: Write to file 5. **Recalculate formulas (MANDATORY IF USING FORMULAS)**: Use the scripts/recalc.py script ```bash python scripts/recalc.py output.xlsx ``` 6. **Verify and fix any errors**: - The script returns JSON with error details - If `status` is `errors_found`, check `error_summary` for specific error types and locations - Fix the identified errors and recalculate again - Common errors to fix: - `#REF!`: Invalid cell references - `#DIV/0!`: Division by zero - `#VALUE!`: Wrong data type in formula - `#NAME?`: Unrecognized formula name ### Creating new Excel files ```python # Using openpyxl for formulas and formatting from openpyxl import Workbook from openpyxl.styles import Font, PatternFill, Alignment wb = Workbook() sheet = wb.active # Add data sheet['A1'] = 'Hello' sheet['B1'] = 'World' sheet.append(['Row', 'of', 'data']) # Add formula sheet['B2'] = '=SUM(A1:A10)' # Formatting sheet['A1'].font = Font(bold=True, color='FF0000') sheet['A1'].fill = PatternFill('solid', start_color='FFFF00') sheet['A1'].alignment = Alignment(horizontal='center') # Column width sheet.column_dimensions['A'].width = 20 wb.save('output.xlsx') ``` ### Editing existing Excel files ```python # Using openpyxl to preserve formulas and formatting from openpyxl import load_workbook # Load existing file wb = load_workbook('existing.xlsx') sheet = wb.active # or wb['SheetName'] for specific sheet # Working with multiple sheets for sheet_name in wb.sheetnames: sheet = wb[sheet_name] print(f"Sheet: {sheet_name}") # Modify cells sheet['A1'] = 'New Value' sheet.insert_rows(2) # Insert row at position 2 sheet.delete_cols(3) # Delete column 3 # Add new sheet new_sheet = wb.create_sheet('NewSheet') new_sheet['A1'] = 'Data' wb.save('modified.xlsx') ``` ## Recalculating formulas Excel files created or modified by openpyxl contain formulas as strings but not calculated values. Use the provided `scripts/recalc.py` script to recalculate formulas: ```bash python scripts/recalc.py <excel_file> [timeout_seconds] ``` Example: ```bash python scripts/recalc.py output.xlsx 30 ``` The script: - Automatically sets up LibreOffice macro on first run - Recalculates all formulas in all sheets - Scans ALL cells for Excel errors (#REF!, #DIV/0!, etc.) - Returns JSON with detailed error locations and counts - Works on both Linux and macOS ## Formula Verification Checklist Quick checks to ensure formulas work correctly: ### Essential Verification - [ ] **Test 2-3 sample references**: Verify they pull correct values before building full model - [ ] **Column mapping**: Confirm Excel columns match (e.g., column 64 = BL, not BK) - [ ] **Row offset**: Remember Excel rows are 1-indexed (DataFrame row 5 = Excel row 6) ### Common Pitfalls - [ ] **NaN handling**: Check for null values with `pd.notna()` - [ ] **Far-right columns**: FY data often in columns 50+ - [ ] **Multiple matches**: Search all occurrences, not just first - [ ] **Division by zero**: Check denominators before using `/` in formulas (#DIV/0!) - [ ] **Wrong references**: Verify all cell references point to intended cells (#REF!) - [ ] **Cross-sheet references**: Use correct format (Sheet1!A1) for linking sheets ### Formula Testing Strategy - [ ] **Start small**: Test formulas on 2-3 cells before applying broadly - [ ] **Verify dependencies**: Check all cells referenced in formulas exist - [ ] **Test edge cases**: Include zero, negative, and very large values ### Interpreting scripts/recalc.py Output The script returns JSON with error details: ```json { "status": "success", // or "errors_found" "total_errors": 0, // Total error count "total_formulas": 42, // Number of formulas in file "error_summary": { // Only present if errors found "#REF!": { "count": 2, "locations": ["Sheet1!B5", "Sheet1!C10"] } } } ``` ## Best Practices ### Library Selection - **pandas**: Best for data analysis, bulk operations, and simple data export - **openpyxl**: Best for complex formatting, formulas, and Excel-specific features ### Working with openpyxl - Cell indices are 1-based (row=1, column=1 refers to cell A1) - Use `data_only=True` to read calculated values: `load_workbook('file.xlsx', data_only=True)` - **Warning**: If opened with `data_only=True` and saved, formulas are replaced with values and permanently lost - For large files: Use `read_only=True` for reading or `write_only=True` for writing - Formulas are preserved but not evaluated - use scripts/recalc.py to update values ### Working with pandas - Specify data types to avoid inference issues: `pd.read_excel('file.xlsx', dtype={'id': str})` - For large files, read specific columns: `pd.read_excel('file.xlsx', usecols=['A', 'C', 'E'])` - Handle dates properly: `pd.read_excel('file.xlsx', parse_dates=['date_column'])` ## Code Style Guidelines **IMPORTANT**: When generating Python code for Excel operations: - Write minimal, concise Python code without unnecessary comments - Avoid verbose variable names and redundant operations - Avoid unnecessary print statements **For Excel files themselves**: - Add comments to cells with complex formulas or important assumptions - Document data sources for hardcoded values - Include notes for key calculations and model sections ================================================ FILE: skills/xlsx/scripts/office/helpers/__init__.py ================================================ ================================================ FILE: skills/xlsx/scripts/office/helpers/merge_runs.py ================================================ """Merge adjacent runs with identical formatting in DOCX. Merges adjacent <w:r> elements that have identical <w:rPr> properties. Works on runs in paragraphs and inside tracked changes (<w:ins>, <w:del>). Also: - Removes rsid attributes from runs (revision metadata that doesn't affect rendering) - Removes proofErr elements (spell/grammar markers that block merging) """ from pathlib import Path import defusedxml.minidom def merge_runs(input_dir: str) -> tuple[int, str]: doc_xml = Path(input_dir) / "word" / "document.xml" if not doc_xml.exists(): return 0, f"Error: {doc_xml} not found" try: dom = defusedxml.minidom.parseString(doc_xml.read_text(encoding="utf-8")) root = dom.documentElement _remove_elements(root, "proofErr") _strip_run_rsid_attrs(root) containers = {run.parentNode for run in _find_elements(root, "r")} merge_count = 0 for container in containers: merge_count += _merge_runs_in(container) doc_xml.write_bytes(dom.toxml(encoding="UTF-8")) return merge_count, f"Merged {merge_count} runs" except Exception as e: return 0, f"Error: {e}" def _find_elements(root, tag: str) -> list: results = [] def traverse(node): if node.nodeType == node.ELEMENT_NODE: name = node.localName or node.tagName if name == tag or name.endswith(f":{tag}"): results.append(node) for child in node.childNodes: traverse(child) traverse(root) return results def _get_child(parent, tag: str): for child in parent.childNodes: if child.nodeType == child.ELEMENT_NODE: name = child.localName or child.tagName if name == tag or name.endswith(f":{tag}"): return child return None def _get_children(parent, tag: str) -> list: results = [] for child in parent.childNodes: if child.nodeType == child.ELEMENT_NODE: name = child.localName or child.tagName if name == tag or name.endswith(f":{tag}"): results.append(child) return results def _is_adjacent(elem1, elem2) -> bool: node = elem1.nextSibling while node: if node == elem2: return True if node.nodeType == node.ELEMENT_NODE: return False if node.nodeType == node.TEXT_NODE and node.data.strip(): return False node = node.nextSibling return False def _remove_elements(root, tag: str): for elem in _find_elements(root, tag): if elem.parentNode: elem.parentNode.removeChild(elem) def _strip_run_rsid_attrs(root): for run in _find_elements(root, "r"): for attr in list(run.attributes.values()): if "rsid" in attr.name.lower(): run.removeAttribute(attr.name) def _merge_runs_in(container) -> int: merge_count = 0 run = _first_child_run(container) while run: while True: next_elem = _next_element_sibling(run) if next_elem and _is_run(next_elem) and _can_merge(run, next_elem): _merge_run_content(run, next_elem) container.removeChild(next_elem) merge_count += 1 else: break _consolidate_text(run) run = _next_sibling_run(run) return merge_count def _first_child_run(container): for child in container.childNodes: if child.nodeType == child.ELEMENT_NODE and _is_run(child): return child return None def _next_element_sibling(node): sibling = node.nextSibling while sibling: if sibling.nodeType == sibling.ELEMENT_NODE: return sibling sibling = sibling.nextSibling return None def _next_sibling_run(node): sibling = node.nextSibling while sibling: if sibling.nodeType == sibling.ELEMENT_NODE: if _is_run(sibling): return sibling sibling = sibling.nextSibling return None def _is_run(node) -> bool: name = node.localName or node.tagName return name == "r" or name.endswith(":r") def _can_merge(run1, run2) -> bool: rpr1 = _get_child(run1, "rPr") rpr2 = _get_child(run2, "rPr") if (rpr1 is None) != (rpr2 is None): return False if rpr1 is None: return True return rpr1.toxml() == rpr2.toxml() def _merge_run_content(target, source): for child in list(source.childNodes): if child.nodeType == child.ELEMENT_NODE: name = child.localName or child.tagName if name != "rPr" and not name.endswith(":rPr"): target.appendChild(child) def _consolidate_text(run): t_elements = _get_children(run, "t") for i in range(len(t_elements) - 1, 0, -1): curr, prev = t_elements[i], t_elements[i - 1] if _is_adjacent(prev, curr): prev_text = prev.firstChild.data if prev.firstChild else "" curr_text = curr.firstChild.data if curr.firstChild else "" merged = prev_text + curr_text if prev.firstChild: prev.firstChild.data = merged else: prev.appendChild(run.ownerDocument.createTextNode(merged)) if merged.startswith(" ") or merged.endswith(" "): prev.setAttribute("xml:space", "preserve") elif prev.hasAttribute("xml:space"): prev.removeAttribute("xml:space") run.removeChild(curr) ================================================ FILE: skills/xlsx/scripts/office/helpers/simplify_redlines.py ================================================ """Simplify tracked changes by merging adjacent w:ins or w:del elements. Merges adjacent <w:ins> elements from the same author into a single element. Same for <w:del> elements. This makes heavily-redlined documents easier to work with by reducing the number of tracked change wrappers. Rules: - Only merges w:ins with w:ins, w:del with w:del (same element type) - Only merges if same author (ignores timestamp differences) - Only merges if truly adjacent (only whitespace between them) """ import xml.etree.ElementTree as ET import zipfile from pathlib import Path import defusedxml.minidom WORD_NS = "http://schemas.openxmlformats.org/wordprocessingml/2006/main" def simplify_redlines(input_dir: str) -> tuple[int, str]: doc_xml = Path(input_dir) / "word" / "document.xml" if not doc_xml.exists(): return 0, f"Error: {doc_xml} not found" try: dom = defusedxml.minidom.parseString(doc_xml.read_text(encoding="utf-8")) root = dom.documentElement merge_count = 0 containers = _find_elements(root, "p") + _find_elements(root, "tc") for container in containers: merge_count += _merge_tracked_changes_in(container, "ins") merge_count += _merge_tracked_changes_in(container, "del") doc_xml.write_bytes(dom.toxml(encoding="UTF-8")) return merge_count, f"Simplified {merge_count} tracked changes" except Exception as e: return 0, f"Error: {e}" def _merge_tracked_changes_in(container, tag: str) -> int: merge_count = 0 tracked = [ child for child in container.childNodes if child.nodeType == child.ELEMENT_NODE and _is_element(child, tag) ] if len(tracked) < 2: return 0 i = 0 while i < len(tracked) - 1: curr = tracked[i] next_elem = tracked[i + 1] if _can_merge_tracked(curr, next_elem): _merge_tracked_content(curr, next_elem) container.removeChild(next_elem) tracked.pop(i + 1) merge_count += 1 else: i += 1 return merge_count def _is_element(node, tag: str) -> bool: name = node.localName or node.tagName return name == tag or name.endswith(f":{tag}") def _get_author(elem) -> str: author = elem.getAttribute("w:author") if not author: for attr in elem.attributes.values(): if attr.localName == "author" or attr.name.endswith(":author"): return attr.value return author def _can_merge_tracked(elem1, elem2) -> bool: if _get_author(elem1) != _get_author(elem2): return False node = elem1.nextSibling while node and node != elem2: if node.nodeType == node.ELEMENT_NODE: return False if node.nodeType == node.TEXT_NODE and node.data.strip(): return False node = node.nextSibling return True def _merge_tracked_content(target, source): while source.firstChild: child = source.firstChild source.removeChild(child) target.appendChild(child) def _find_elements(root, tag: str) -> list: results = [] def traverse(node): if node.nodeType == node.ELEMENT_NODE: name = node.localName or node.tagName if name == tag or name.endswith(f":{tag}"): results.append(node) for child in node.childNodes: traverse(child) traverse(root) return results def get_tracked_change_authors(doc_xml_path: Path) -> dict[str, int]: if not doc_xml_path.exists(): return {} try: tree = ET.parse(doc_xml_path) root = tree.getroot() except ET.ParseError: return {} namespaces = {"w": WORD_NS} author_attr = f"{{{WORD_NS}}}author" authors: dict[str, int] = {} for tag in ["ins", "del"]: for elem in root.findall(f".//w:{tag}", namespaces): author = elem.get(author_attr) if author: authors[author] = authors.get(author, 0) + 1 return authors def _get_authors_from_docx(docx_path: Path) -> dict[str, int]: try: with zipfile.ZipFile(docx_path, "r") as zf: if "word/document.xml" not in zf.namelist(): return {} with zf.open("word/document.xml") as f: tree = ET.parse(f) root = tree.getroot() namespaces = {"w": WORD_NS} author_attr = f"{{{WORD_NS}}}author" authors: dict[str, int] = {} for tag in ["ins", "del"]: for elem in root.findall(f".//w:{tag}", namespaces): author = elem.get(author_attr) if author: authors[author] = authors.get(author, 0) + 1 return authors except (zipfile.BadZipFile, ET.ParseError): return {} def infer_author(modified_dir: Path, original_docx: Path, default: str = "Claude") -> str: modified_xml = modified_dir / "word" / "document.xml" modified_authors = get_tracked_change_authors(modified_xml) if not modified_authors: return default original_authors = _get_authors_from_docx(original_docx) new_changes: dict[str, int] = {} for author, count in modified_authors.items(): original_count = original_authors.get(author, 0) diff = count - original_count if diff > 0: new_changes[author] = diff if not new_changes: return default if len(new_changes) == 1: return next(iter(new_changes)) raise ValueError( f"Multiple authors added new changes: {new_changes}. " "Cannot infer which author to validate." ) ================================================ FILE: skills/xlsx/scripts/office/pack.py ================================================ """Pack a directory into a DOCX, PPTX, or XLSX file. Validates with auto-repair, condenses XML formatting, and creates the Office file. Usage: python pack.py <input_directory> <output_file> [--original <file>] [--validate true|false] Examples: python pack.py unpacked/ output.docx --original input.docx python pack.py unpacked/ output.pptx --validate false """ import argparse import sys import shutil import tempfile import zipfile from pathlib import Path import defusedxml.minidom from validators import DOCXSchemaValidator, PPTXSchemaValidator, RedliningValidator def pack( input_directory: str, output_file: str, original_file: str | None = None, validate: bool = True, infer_author_func=None, ) -> tuple[None, str]: input_dir = Path(input_directory) output_path = Path(output_file) suffix = output_path.suffix.lower() if not input_dir.is_dir(): return None, f"Error: {input_dir} is not a directory" if suffix not in {".docx", ".pptx", ".xlsx"}: return None, f"Error: {output_file} must be a .docx, .pptx, or .xlsx file" if validate and original_file: original_path = Path(original_file) if original_path.exists(): success, output = _run_validation( input_dir, original_path, suffix, infer_author_func ) if output: print(output) if not success: return None, f"Error: Validation failed for {input_dir}" with tempfile.TemporaryDirectory() as temp_dir: temp_content_dir = Path(temp_dir) / "content" shutil.copytree(input_dir, temp_content_dir) for pattern in ["*.xml", "*.rels"]: for xml_file in temp_content_dir.rglob(pattern): _condense_xml(xml_file) output_path.parent.mkdir(parents=True, exist_ok=True) with zipfile.ZipFile(output_path, "w", zipfile.ZIP_DEFLATED) as zf: for f in temp_content_dir.rglob("*"): if f.is_file(): zf.write(f, f.relative_to(temp_content_dir)) return None, f"Successfully packed {input_dir} to {output_file}" def _run_validation( unpacked_dir: Path, original_file: Path, suffix: str, infer_author_func=None, ) -> tuple[bool, str | None]: output_lines = [] validators = [] if suffix == ".docx": author = "Claude" if infer_author_func: try: author = infer_author_func(unpacked_dir, original_file) except ValueError as e: print(f"Warning: {e} Using default author 'Claude'.", file=sys.stderr) validators = [ DOCXSchemaValidator(unpacked_dir, original_file), RedliningValidator(unpacked_dir, original_file, author=author), ] elif suffix == ".pptx": validators = [PPTXSchemaValidator(unpacked_dir, original_file)] if not validators: return True, None total_repairs = sum(v.repair() for v in validators) if total_repairs: output_lines.append(f"Auto-repaired {total_repairs} issue(s)") success = all(v.validate() for v in validators) if success: output_lines.append("All validations PASSED!") return success, "\n".join(output_lines) if output_lines else None def _condense_xml(xml_file: Path) -> None: try: with open(xml_file, encoding="utf-8") as f: dom = defusedxml.minidom.parse(f) for element in dom.getElementsByTagName("*"): if element.tagName.endswith(":t"): continue for child in list(element.childNodes): if ( child.nodeType == child.TEXT_NODE and child.nodeValue and child.nodeValue.strip() == "" ) or child.nodeType == child.COMMENT_NODE: element.removeChild(child) xml_file.write_bytes(dom.toxml(encoding="UTF-8")) except Exception as e: print(f"ERROR: Failed to parse {xml_file.name}: {e}", file=sys.stderr) raise if __name__ == "__main__": parser = argparse.ArgumentParser( description="Pack a directory into a DOCX, PPTX, or XLSX file" ) parser.add_argument("input_directory", help="Unpacked Office document directory") parser.add_argument("output_file", help="Output Office file (.docx/.pptx/.xlsx)") parser.add_argument( "--original", help="Original file for validation comparison", ) parser.add_argument( "--validate", type=lambda x: x.lower() == "true", default=True, metavar="true|false", help="Run validation with auto-repair (default: true)", ) args = parser.parse_args() _, message = pack( args.input_directory, args.output_file, original_file=args.original, validate=args.validate, ) print(message) if "Error" in message: sys.exit(1) ================================================ FILE: skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd ================================================ <?xml version="1.0" encoding="utf-8"?> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns="http://schemas.openxmlformats.org/drawingml/2006/chart" xmlns:cdr="http://schemas.openxmlformats.org/drawingml/2006/chartDrawing" xmlns:s="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes" targetNamespace="http://schemas.openxmlformats.org/drawingml/2006/chart" elementFormDefault="qualified" attributeFormDefault="unqualified" blockDefault="#all"> <xsd:import namespace="http://schemas.openxmlformats.org/officeDocument/2006/relationships" schemaLocation="shared-relationshipReference.xsd"/> <xsd:import namespace="http://schemas.openxmlformats.org/drawingml/2006/main" schemaLocation="dml-main.xsd"/> <xsd:import namespace="http://schemas.openxmlformats.org/drawingml/2006/chartDrawing" schemaLocation="dml-chartDrawing.xsd"/> <xsd:import namespace="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes" schemaLocation="shared-commonSimpleTypes.xsd"/> <xsd:complexType name="CT_Boolean"> <xsd:attribute name="val" type="xsd:boolean" use="optional" default="true"/> </xsd:complexType> <xsd:complexType name="CT_Double"> <xsd:attribute name="val" type="xsd:double" use="required"/> </xsd:complexType> <xsd:complexType name="CT_UnsignedInt"> <xsd:attribute name="val" type="xsd:unsignedInt" use="required"/> </xsd:complexType> <xsd:complexType name="CT_RelId"> <xsd:attribute ref="r:id" use="required"/> </xsd:complexType> <xsd:complexType name="CT_Extension"> <xsd:sequence> <xsd:any processContents="lax"/> </xsd:sequence> <xsd:attribute name="uri" type="xsd:token"/> </xsd:complexType> <xsd:complexType name="CT_ExtensionList"> <xsd:sequence> <xsd:element name="ext" type="CT_Extension" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_NumVal"> <xsd:sequence> <xsd:element name="v" type="s:ST_Xstring" minOccurs="1" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="idx" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="formatCode" type="s:ST_Xstring" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_NumData"> <xsd:sequence> <xsd:element name="formatCode" type="s:ST_Xstring" minOccurs="0" maxOccurs="1"/> <xsd:element name="ptCount" type="CT_UnsignedInt" minOccurs="0" maxOccurs="1"/> <xsd:element name="pt" type="CT_NumVal" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_NumRef"> <xsd:sequence> <xsd:element name="f" type="xsd:string" minOccurs="1" maxOccurs="1"/> <xsd:element name="numCache" type="CT_NumData" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_NumDataSource"> <xsd:sequence> <xsd:choice minOccurs="1" maxOccurs="1"> <xsd:element name="numRef" type="CT_NumRef" minOccurs="1" maxOccurs="1"/> <xsd:element name="numLit" type="CT_NumData" minOccurs="1" maxOccurs="1"/> </xsd:choice> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_StrVal"> <xsd:sequence> <xsd:element name="v" type="s:ST_Xstring" minOccurs="1" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="idx" type="xsd:unsignedInt" use="required"/> </xsd:complexType> <xsd:complexType name="CT_StrData"> <xsd:sequence> <xsd:element name="ptCount" type="CT_UnsignedInt" minOccurs="0" maxOccurs="1"/> <xsd:element name="pt" type="CT_StrVal" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_StrRef"> <xsd:sequence> <xsd:element name="f" type="xsd:string" minOccurs="1" maxOccurs="1"/> <xsd:element name="strCache" type="CT_StrData" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Tx"> <xsd:sequence> <xsd:choice minOccurs="1" maxOccurs="1"> <xsd:element name="strRef" type="CT_StrRef" minOccurs="1" maxOccurs="1"/> <xsd:element name="rich" type="a:CT_TextBody" minOccurs="1" maxOccurs="1"/> </xsd:choice> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_TextLanguageID"> <xsd:attribute name="val" type="s:ST_Lang" use="required"/> </xsd:complexType> <xsd:complexType name="CT_Lvl"> <xsd:sequence> <xsd:element name="pt" type="CT_StrVal" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_MultiLvlStrData"> <xsd:sequence> <xsd:element name="ptCount" type="CT_UnsignedInt" minOccurs="0" maxOccurs="1"/> <xsd:element name="lvl" type="CT_Lvl" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_MultiLvlStrRef"> <xsd:sequence> <xsd:element name="f" type="xsd:string" minOccurs="1" maxOccurs="1"/> <xsd:element name="multiLvlStrCache" type="CT_MultiLvlStrData" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_AxDataSource"> <xsd:sequence> <xsd:choice minOccurs="1" maxOccurs="1"> <xsd:element name="multiLvlStrRef" type="CT_MultiLvlStrRef" minOccurs="1" maxOccurs="1"/> <xsd:element name="numRef" type="CT_NumRef" minOccurs="1" maxOccurs="1"/> <xsd:element name="numLit" type="CT_NumData" minOccurs="1" maxOccurs="1"/> <xsd:element name="strRef" type="CT_StrRef" minOccurs="1" maxOccurs="1"/> <xsd:element name="strLit" type="CT_StrData" minOccurs="1" maxOccurs="1"/> </xsd:choice> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_SerTx"> <xsd:sequence> <xsd:choice minOccurs="1" maxOccurs="1"> <xsd:element name="strRef" type="CT_StrRef" minOccurs="1" maxOccurs="1"/> <xsd:element name="v" type="s:ST_Xstring" minOccurs="1" maxOccurs="1"/> </xsd:choice> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_LayoutTarget"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="inner"/> <xsd:enumeration value="outer"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_LayoutTarget"> <xsd:attribute name="val" type="ST_LayoutTarget" default="outer"/> </xsd:complexType> <xsd:simpleType name="ST_LayoutMode"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="edge"/> <xsd:enumeration value="factor"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_LayoutMode"> <xsd:attribute name="val" type="ST_LayoutMode" default="factor"/> </xsd:complexType> <xsd:complexType name="CT_ManualLayout"> <xsd:sequence> <xsd:element name="layoutTarget" type="CT_LayoutTarget" minOccurs="0" maxOccurs="1"/> <xsd:element name="xMode" type="CT_LayoutMode" minOccurs="0" maxOccurs="1"/> <xsd:element name="yMode" type="CT_LayoutMode" minOccurs="0" maxOccurs="1"/> <xsd:element name="wMode" type="CT_LayoutMode" minOccurs="0" maxOccurs="1"/> <xsd:element name="hMode" type="CT_LayoutMode" minOccurs="0" maxOccurs="1"/> <xsd:element name="x" type="CT_Double" minOccurs="0" maxOccurs="1"/> <xsd:element name="y" type="CT_Double" minOccurs="0" maxOccurs="1"/> <xsd:element name="w" type="CT_Double" minOccurs="0" maxOccurs="1"/> <xsd:element name="h" type="CT_Double" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Layout"> <xsd:sequence> <xsd:element name="manualLayout" type="CT_ManualLayout" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Title"> <xsd:sequence> <xsd:element name="tx" type="CT_Tx" minOccurs="0" maxOccurs="1"/> <xsd:element name="layout" type="CT_Layout" minOccurs="0" maxOccurs="1"/> <xsd:element name="overlay" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="txPr" type="a:CT_TextBody" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_RotX"> <xsd:restriction base="xsd:byte"> <xsd:minInclusive value="-90"/> <xsd:maxInclusive value="90"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_RotX"> <xsd:attribute name="val" type="ST_RotX" default="0"/> </xsd:complexType> <xsd:simpleType name="ST_HPercent"> <xsd:union memberTypes="ST_HPercentWithSymbol ST_HPercentUShort"/> </xsd:simpleType> <xsd:simpleType name="ST_HPercentWithSymbol"> <xsd:restriction base="xsd:string"> <xsd:pattern value="0*(([5-9])|([1-9][0-9])|([1-4][0-9][0-9])|500)%"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_HPercentUShort"> <xsd:restriction base="xsd:unsignedShort"> <xsd:minInclusive value="5"/> <xsd:maxInclusive value="500"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_HPercent"> <xsd:attribute name="val" type="ST_HPercent" default="100%"/> </xsd:complexType> <xsd:simpleType name="ST_RotY"> <xsd:restriction base="xsd:unsignedShort"> <xsd:minInclusive value="0"/> <xsd:maxInclusive value="360"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_RotY"> <xsd:attribute name="val" type="ST_RotY" default="0"/> </xsd:complexType> <xsd:simpleType name="ST_DepthPercent"> <xsd:union memberTypes="ST_DepthPercentWithSymbol ST_DepthPercentUShort"/> </xsd:simpleType> <xsd:simpleType name="ST_DepthPercentWithSymbol"> <xsd:restriction base="xsd:string"> <xsd:pattern value="0*(([2-9][0-9])|([1-9][0-9][0-9])|(1[0-9][0-9][0-9])|2000)%"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_DepthPercentUShort"> <xsd:restriction base="xsd:unsignedShort"> <xsd:minInclusive value="20"/> <xsd:maxInclusive value="2000"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_DepthPercent"> <xsd:attribute name="val" type="ST_DepthPercent" default="100%"/> </xsd:complexType> <xsd:simpleType name="ST_Perspective"> <xsd:restriction base="xsd:unsignedByte"> <xsd:minInclusive value="0"/> <xsd:maxInclusive value="240"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Perspective"> <xsd:attribute name="val" type="ST_Perspective" default="30"/> </xsd:complexType> <xsd:complexType name="CT_View3D"> <xsd:sequence> <xsd:element name="rotX" type="CT_RotX" minOccurs="0" maxOccurs="1"/> <xsd:element name="hPercent" type="CT_HPercent" minOccurs="0" maxOccurs="1"/> <xsd:element name="rotY" type="CT_RotY" minOccurs="0" maxOccurs="1"/> <xsd:element name="depthPercent" type="CT_DepthPercent" minOccurs="0" maxOccurs="1"/> <xsd:element name="rAngAx" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="perspective" type="CT_Perspective" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Surface"> <xsd:sequence> <xsd:element name="thickness" type="CT_Thickness" minOccurs="0" maxOccurs="1"/> <xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="pictureOptions" type="CT_PictureOptions" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_Thickness"> <xsd:union memberTypes="ST_ThicknessPercent xsd:unsignedInt"/> </xsd:simpleType> <xsd:simpleType name="ST_ThicknessPercent"> <xsd:restriction base="xsd:string"> <xsd:pattern value="([0-9]+)%"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Thickness"> <xsd:attribute name="val" type="ST_Thickness" use="required"/> </xsd:complexType> <xsd:complexType name="CT_DTable"> <xsd:sequence> <xsd:element name="showHorzBorder" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="showVertBorder" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="showOutline" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="showKeys" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="txPr" type="a:CT_TextBody" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_GapAmount"> <xsd:union memberTypes="ST_GapAmountPercent ST_GapAmountUShort"/> </xsd:simpleType> <xsd:simpleType name="ST_GapAmountPercent"> <xsd:restriction base="xsd:string"> <xsd:pattern value="0*(([0-9])|([1-9][0-9])|([1-4][0-9][0-9])|500)%"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_GapAmountUShort"> <xsd:restriction base="xsd:unsignedShort"> <xsd:minInclusive value="0"/> <xsd:maxInclusive value="500"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_GapAmount"> <xsd:attribute name="val" type="ST_GapAmount" default="150%"/> </xsd:complexType> <xsd:simpleType name="ST_Overlap"> <xsd:union memberTypes="ST_OverlapPercent ST_OverlapByte"/> </xsd:simpleType> <xsd:simpleType name="ST_OverlapPercent"> <xsd:restriction base="xsd:string"> <xsd:pattern value="(-?0*(([0-9])|([1-9][0-9])|100))%"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_OverlapByte"> <xsd:restriction base="xsd:byte"> <xsd:minInclusive value="-100"/> <xsd:maxInclusive value="100"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Overlap"> <xsd:attribute name="val" type="ST_Overlap" default="0%"/> </xsd:complexType> <xsd:simpleType name="ST_BubbleScale"> <xsd:union memberTypes="ST_BubbleScalePercent ST_BubbleScaleUInt"/> </xsd:simpleType> <xsd:simpleType name="ST_BubbleScalePercent"> <xsd:restriction base="xsd:string"> <xsd:pattern value="0*(([0-9])|([1-9][0-9])|([1-2][0-9][0-9])|300)%"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_BubbleScaleUInt"> <xsd:restriction base="xsd:unsignedInt"> <xsd:minInclusive value="0"/> <xsd:maxInclusive value="300"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_BubbleScale"> <xsd:attribute name="val" type="ST_BubbleScale" default="100%"/> </xsd:complexType> <xsd:simpleType name="ST_SizeRepresents"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="area"/> <xsd:enumeration value="w"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_SizeRepresents"> <xsd:attribute name="val" type="ST_SizeRepresents" default="area"/> </xsd:complexType> <xsd:simpleType name="ST_FirstSliceAng"> <xsd:restriction base="xsd:unsignedShort"> <xsd:minInclusive value="0"/> <xsd:maxInclusive value="360"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_FirstSliceAng"> <xsd:attribute name="val" type="ST_FirstSliceAng" default="0"/> </xsd:complexType> <xsd:simpleType name="ST_HoleSize"> <xsd:union memberTypes="ST_HoleSizePercent ST_HoleSizeUByte"/> </xsd:simpleType> <xsd:simpleType name="ST_HoleSizePercent"> <xsd:restriction base="xsd:string"> <xsd:pattern value="0*([1-9]|([1-8][0-9])|90)%"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_HoleSizeUByte"> <xsd:restriction base="xsd:unsignedByte"> <xsd:minInclusive value="1"/> <xsd:maxInclusive value="90"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_HoleSize"> <xsd:attribute name="val" type="ST_HoleSize" default="10%"/> </xsd:complexType> <xsd:simpleType name="ST_SplitType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="auto"/> <xsd:enumeration value="cust"/> <xsd:enumeration value="percent"/> <xsd:enumeration value="pos"/> <xsd:enumeration value="val"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_SplitType"> <xsd:attribute name="val" type="ST_SplitType" default="auto"/> </xsd:complexType> <xsd:complexType name="CT_CustSplit"> <xsd:sequence> <xsd:element name="secondPiePt" type="CT_UnsignedInt" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_SecondPieSize"> <xsd:union memberTypes="ST_SecondPieSizePercent ST_SecondPieSizeUShort"/> </xsd:simpleType> <xsd:simpleType name="ST_SecondPieSizePercent"> <xsd:restriction base="xsd:string"> <xsd:pattern value="0*(([5-9])|([1-9][0-9])|(1[0-9][0-9])|200)%"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_SecondPieSizeUShort"> <xsd:restriction base="xsd:unsignedShort"> <xsd:minInclusive value="5"/> <xsd:maxInclusive value="200"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_SecondPieSize"> <xsd:attribute name="val" type="ST_SecondPieSize" default="75%"/> </xsd:complexType> <xsd:complexType name="CT_NumFmt"> <xsd:attribute name="formatCode" type="s:ST_Xstring" use="required"/> <xsd:attribute name="sourceLinked" type="xsd:boolean"/> </xsd:complexType> <xsd:simpleType name="ST_LblAlgn"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="ctr"/> <xsd:enumeration value="l"/> <xsd:enumeration value="r"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_LblAlgn"> <xsd:attribute name="val" type="ST_LblAlgn" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_DLblPos"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="bestFit"/> <xsd:enumeration value="b"/> <xsd:enumeration value="ctr"/> <xsd:enumeration value="inBase"/> <xsd:enumeration value="inEnd"/> <xsd:enumeration value="l"/> <xsd:enumeration value="outEnd"/> <xsd:enumeration value="r"/> <xsd:enumeration value="t"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_DLblPos"> <xsd:attribute name="val" type="ST_DLblPos" use="required"/> </xsd:complexType> <xsd:group name="EG_DLblShared"> <xsd:sequence> <xsd:element name="numFmt" type="CT_NumFmt" minOccurs="0" maxOccurs="1"/> <xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="txPr" type="a:CT_TextBody" minOccurs="0" maxOccurs="1"/> <xsd:element name="dLblPos" type="CT_DLblPos" minOccurs="0" maxOccurs="1"/> <xsd:element name="showLegendKey" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="showVal" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="showCatName" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="showSerName" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="showPercent" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="showBubbleSize" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="separator" type="xsd:string" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:group> <xsd:group name="Group_DLbl"> <xsd:sequence> <xsd:element name="layout" type="CT_Layout" minOccurs="0" maxOccurs="1"/> <xsd:element name="tx" type="CT_Tx" minOccurs="0" maxOccurs="1"/> <xsd:group ref="EG_DLblShared" minOccurs="1" maxOccurs="1"/> </xsd:sequence> </xsd:group> <xsd:complexType name="CT_DLbl"> <xsd:sequence> <xsd:element name="idx" type="CT_UnsignedInt" minOccurs="1" maxOccurs="1"/> <xsd:choice> <xsd:element name="delete" type="CT_Boolean" minOccurs="1" maxOccurs="1"/> <xsd:group ref="Group_DLbl" minOccurs="1" maxOccurs="1"/> </xsd:choice> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:group name="Group_DLbls"> <xsd:sequence> <xsd:group ref="EG_DLblShared" minOccurs="1" maxOccurs="1"/> <xsd:element name="showLeaderLines" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="leaderLines" type="CT_ChartLines" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:group> <xsd:complexType name="CT_DLbls"> <xsd:sequence> <xsd:element name="dLbl" type="CT_DLbl" minOccurs="0" maxOccurs="unbounded"/> <xsd:choice> <xsd:element name="delete" type="CT_Boolean" minOccurs="1" maxOccurs="1"/> <xsd:group ref="Group_DLbls" minOccurs="1" maxOccurs="1"/> </xsd:choice> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_MarkerStyle"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="circle"/> <xsd:enumeration value="dash"/> <xsd:enumeration value="diamond"/> <xsd:enumeration value="dot"/> <xsd:enumeration value="none"/> <xsd:enumeration value="picture"/> <xsd:enumeration value="plus"/> <xsd:enumeration value="square"/> <xsd:enumeration value="star"/> <xsd:enumeration value="triangle"/> <xsd:enumeration value="x"/> <xsd:enumeration value="auto"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_MarkerStyle"> <xsd:attribute name="val" type="ST_MarkerStyle" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_MarkerSize"> <xsd:restriction base="xsd:unsignedByte"> <xsd:minInclusive value="2"/> <xsd:maxInclusive value="72"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_MarkerSize"> <xsd:attribute name="val" type="ST_MarkerSize" default="5"/> </xsd:complexType> <xsd:complexType name="CT_Marker"> <xsd:sequence> <xsd:element name="symbol" type="CT_MarkerStyle" minOccurs="0" maxOccurs="1"/> <xsd:element name="size" type="CT_MarkerSize" minOccurs="0" maxOccurs="1"/> <xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_DPt"> <xsd:sequence> <xsd:element name="idx" type="CT_UnsignedInt" minOccurs="1" maxOccurs="1"/> <xsd:element name="invertIfNegative" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="marker" type="CT_Marker" minOccurs="0" maxOccurs="1"/> <xsd:element name="bubble3D" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="explosion" type="CT_UnsignedInt" minOccurs="0" maxOccurs="1"/> <xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="pictureOptions" type="CT_PictureOptions" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_TrendlineType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="exp"/> <xsd:enumeration value="linear"/> <xsd:enumeration value="log"/> <xsd:enumeration value="movingAvg"/> <xsd:enumeration value="poly"/> <xsd:enumeration value="power"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_TrendlineType"> <xsd:attribute name="val" type="ST_TrendlineType" default="linear"/> </xsd:complexType> <xsd:simpleType name="ST_Order"> <xsd:restriction base="xsd:unsignedByte"> <xsd:minInclusive value="2"/> <xsd:maxInclusive value="6"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Order"> <xsd:attribute name="val" type="ST_Order" default="2"/> </xsd:complexType> <xsd:simpleType name="ST_Period"> <xsd:restriction base="xsd:unsignedInt"> <xsd:minInclusive value="2"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Period"> <xsd:attribute name="val" type="ST_Period" default="2"/> </xsd:complexType> <xsd:complexType name="CT_TrendlineLbl"> <xsd:sequence> <xsd:element name="layout" type="CT_Layout" minOccurs="0" maxOccurs="1"/> <xsd:element name="tx" type="CT_Tx" minOccurs="0" maxOccurs="1"/> <xsd:element name="numFmt" type="CT_NumFmt" minOccurs="0" maxOccurs="1"/> <xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="txPr" type="a:CT_TextBody" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Trendline"> <xsd:sequence> <xsd:element name="name" type="xsd:string" minOccurs="0" maxOccurs="1"/> <xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="trendlineType" type="CT_TrendlineType" minOccurs="1" maxOccurs="1"/> <xsd:element name="order" type="CT_Order" minOccurs="0" maxOccurs="1"/> <xsd:element name="period" type="CT_Period" minOccurs="0" maxOccurs="1"/> <xsd:element name="forward" type="CT_Double" minOccurs="0" maxOccurs="1"/> <xsd:element name="backward" type="CT_Double" minOccurs="0" maxOccurs="1"/> <xsd:element name="intercept" type="CT_Double" minOccurs="0" maxOccurs="1"/> <xsd:element name="dispRSqr" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="dispEq" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="trendlineLbl" type="CT_TrendlineLbl" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_ErrDir"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="x"/> <xsd:enumeration value="y"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_ErrDir"> <xsd:attribute name="val" type="ST_ErrDir" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_ErrBarType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="both"/> <xsd:enumeration value="minus"/> <xsd:enumeration value="plus"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_ErrBarType"> <xsd:attribute name="val" type="ST_ErrBarType" default="both"/> </xsd:complexType> <xsd:simpleType name="ST_ErrValType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="cust"/> <xsd:enumeration value="fixedVal"/> <xsd:enumeration value="percentage"/> <xsd:enumeration value="stdDev"/> <xsd:enumeration value="stdErr"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_ErrValType"> <xsd:attribute name="val" type="ST_ErrValType" default="fixedVal"/> </xsd:complexType> <xsd:complexType name="CT_ErrBars"> <xsd:sequence> <xsd:element name="errDir" type="CT_ErrDir" minOccurs="0" maxOccurs="1"/> <xsd:element name="errBarType" type="CT_ErrBarType" minOccurs="1" maxOccurs="1"/> <xsd:element name="errValType" type="CT_ErrValType" minOccurs="1" maxOccurs="1"/> <xsd:element name="noEndCap" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="plus" type="CT_NumDataSource" minOccurs="0" maxOccurs="1"/> <xsd:element name="minus" type="CT_NumDataSource" minOccurs="0" maxOccurs="1"/> <xsd:element name="val" type="CT_Double" minOccurs="0" maxOccurs="1"/> <xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_UpDownBar"> <xsd:sequence> <xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_UpDownBars"> <xsd:sequence> <xsd:element name="gapWidth" type="CT_GapAmount" minOccurs="0" maxOccurs="1"/> <xsd:element name="upBars" type="CT_UpDownBar" minOccurs="0" maxOccurs="1"/> <xsd:element name="downBars" type="CT_UpDownBar" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:group name="EG_SerShared"> <xsd:sequence> <xsd:element name="idx" type="CT_UnsignedInt" minOccurs="1" maxOccurs="1"/> <xsd:element name="order" type="CT_UnsignedInt" minOccurs="1" maxOccurs="1"/> <xsd:element name="tx" type="CT_SerTx" minOccurs="0" maxOccurs="1"/> <xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:group> <xsd:complexType name="CT_LineSer"> <xsd:sequence> <xsd:group ref="EG_SerShared" minOccurs="1" maxOccurs="1"/> <xsd:element name="marker" type="CT_Marker" minOccurs="0" maxOccurs="1"/> <xsd:element name="dPt" type="CT_DPt" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="dLbls" type="CT_DLbls" minOccurs="0" maxOccurs="1"/> <xsd:element name="trendline" type="CT_Trendline" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="errBars" type="CT_ErrBars" minOccurs="0" maxOccurs="1"/> <xsd:element name="cat" type="CT_AxDataSource" minOccurs="0" maxOccurs="1"/> <xsd:element name="val" type="CT_NumDataSource" minOccurs="0" maxOccurs="1"/> <xsd:element name="smooth" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_ScatterSer"> <xsd:sequence> <xsd:group ref="EG_SerShared" minOccurs="1" maxOccurs="1"/> <xsd:element name="marker" type="CT_Marker" minOccurs="0" maxOccurs="1"/> <xsd:element name="dPt" type="CT_DPt" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="dLbls" type="CT_DLbls" minOccurs="0" maxOccurs="1"/> <xsd:element name="trendline" type="CT_Trendline" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="errBars" type="CT_ErrBars" minOccurs="0" maxOccurs="2"/> <xsd:element name="xVal" type="CT_AxDataSource" minOccurs="0" maxOccurs="1"/> <xsd:element name="yVal" type="CT_NumDataSource" minOccurs="0" maxOccurs="1"/> <xsd:element name="smooth" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_RadarSer"> <xsd:sequence> <xsd:group ref="EG_SerShared" minOccurs="1" maxOccurs="1"/> <xsd:element name="marker" type="CT_Marker" minOccurs="0" maxOccurs="1"/> <xsd:element name="dPt" type="CT_DPt" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="dLbls" type="CT_DLbls" minOccurs="0" maxOccurs="1"/> <xsd:element name="cat" type="CT_AxDataSource" minOccurs="0" maxOccurs="1"/> <xsd:element name="val" type="CT_NumDataSource" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_BarSer"> <xsd:sequence> <xsd:group ref="EG_SerShared" minOccurs="1" maxOccurs="1"/> <xsd:element name="invertIfNegative" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="pictureOptions" type="CT_PictureOptions" minOccurs="0" maxOccurs="1"/> <xsd:element name="dPt" type="CT_DPt" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="dLbls" type="CT_DLbls" minOccurs="0" maxOccurs="1"/> <xsd:element name="trendline" type="CT_Trendline" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="errBars" type="CT_ErrBars" minOccurs="0" maxOccurs="1"/> <xsd:element name="cat" type="CT_AxDataSource" minOccurs="0" maxOccurs="1"/> <xsd:element name="val" type="CT_NumDataSource" minOccurs="0" maxOccurs="1"/> <xsd:element name="shape" type="CT_Shape" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_AreaSer"> <xsd:sequence> <xsd:group ref="EG_SerShared" minOccurs="1" maxOccurs="1"/> <xsd:element name="pictureOptions" type="CT_PictureOptions" minOccurs="0" maxOccurs="1"/> <xsd:element name="dPt" type="CT_DPt" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="dLbls" type="CT_DLbls" minOccurs="0" maxOccurs="1"/> <xsd:element name="trendline" type="CT_Trendline" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="errBars" type="CT_ErrBars" minOccurs="0" maxOccurs="2"/> <xsd:element name="cat" type="CT_AxDataSource" minOccurs="0" maxOccurs="1"/> <xsd:element name="val" type="CT_NumDataSource" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_PieSer"> <xsd:sequence> <xsd:group ref="EG_SerShared" minOccurs="1" maxOccurs="1"/> <xsd:element name="explosion" type="CT_UnsignedInt" minOccurs="0" maxOccurs="1"/> <xsd:element name="dPt" type="CT_DPt" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="dLbls" type="CT_DLbls" minOccurs="0" maxOccurs="1"/> <xsd:element name="cat" type="CT_AxDataSource" minOccurs="0" maxOccurs="1"/> <xsd:element name="val" type="CT_NumDataSource" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_BubbleSer"> <xsd:sequence> <xsd:group ref="EG_SerShared" minOccurs="1" maxOccurs="1"/> <xsd:element name="invertIfNegative" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="dPt" type="CT_DPt" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="dLbls" type="CT_DLbls" minOccurs="0" maxOccurs="1"/> <xsd:element name="trendline" type="CT_Trendline" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="errBars" type="CT_ErrBars" minOccurs="0" maxOccurs="2"/> <xsd:element name="xVal" type="CT_AxDataSource" minOccurs="0" maxOccurs="1"/> <xsd:element name="yVal" type="CT_NumDataSource" minOccurs="0" maxOccurs="1"/> <xsd:element name="bubbleSize" type="CT_NumDataSource" minOccurs="0" maxOccurs="1"/> <xsd:element name="bubble3D" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_SurfaceSer"> <xsd:sequence> <xsd:group ref="EG_SerShared" minOccurs="1" maxOccurs="1"/> <xsd:element name="cat" type="CT_AxDataSource" minOccurs="0" maxOccurs="1"/> <xsd:element name="val" type="CT_NumDataSource" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_Grouping"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="percentStacked"/> <xsd:enumeration value="standard"/> <xsd:enumeration value="stacked"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Grouping"> <xsd:attribute name="val" type="ST_Grouping" default="standard"/> </xsd:complexType> <xsd:complexType name="CT_ChartLines"> <xsd:sequence> <xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:group name="EG_LineChartShared"> <xsd:sequence> <xsd:element name="grouping" type="CT_Grouping" minOccurs="1" maxOccurs="1"/> <xsd:element name="varyColors" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="ser" type="CT_LineSer" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="dLbls" type="CT_DLbls" minOccurs="0" maxOccurs="1"/> <xsd:element name="dropLines" type="CT_ChartLines" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:group> <xsd:complexType name="CT_LineChart"> <xsd:sequence> <xsd:group ref="EG_LineChartShared" minOccurs="1" maxOccurs="1"/> <xsd:element name="hiLowLines" type="CT_ChartLines" minOccurs="0" maxOccurs="1"/> <xsd:element name="upDownBars" type="CT_UpDownBars" minOccurs="0" maxOccurs="1"/> <xsd:element name="marker" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="smooth" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="axId" type="CT_UnsignedInt" minOccurs="2" maxOccurs="2"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Line3DChart"> <xsd:sequence> <xsd:group ref="EG_LineChartShared" minOccurs="1" maxOccurs="1"/> <xsd:element name="gapDepth" type="CT_GapAmount" minOccurs="0" maxOccurs="1"/> <xsd:element name="axId" type="CT_UnsignedInt" minOccurs="3" maxOccurs="3"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_StockChart"> <xsd:sequence> <xsd:element name="ser" type="CT_LineSer" minOccurs="3" maxOccurs="4"/> <xsd:element name="dLbls" type="CT_DLbls" minOccurs="0" maxOccurs="1"/> <xsd:element name="dropLines" type="CT_ChartLines" minOccurs="0" maxOccurs="1"/> <xsd:element name="hiLowLines" type="CT_ChartLines" minOccurs="0" maxOccurs="1"/> <xsd:element name="upDownBars" type="CT_UpDownBars" minOccurs="0" maxOccurs="1"/> <xsd:element name="axId" type="CT_UnsignedInt" minOccurs="2" maxOccurs="2"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_ScatterStyle"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="none"/> <xsd:enumeration value="line"/> <xsd:enumeration value="lineMarker"/> <xsd:enumeration value="marker"/> <xsd:enumeration value="smooth"/> <xsd:enumeration value="smoothMarker"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_ScatterStyle"> <xsd:attribute name="val" type="ST_ScatterStyle" default="marker"/> </xsd:complexType> <xsd:complexType name="CT_ScatterChart"> <xsd:sequence> <xsd:element name="scatterStyle" type="CT_ScatterStyle" minOccurs="1" maxOccurs="1"/> <xsd:element name="varyColors" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="ser" type="CT_ScatterSer" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="dLbls" type="CT_DLbls" minOccurs="0" maxOccurs="1"/> <xsd:element name="axId" type="CT_UnsignedInt" minOccurs="2" maxOccurs="2"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_RadarStyle"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="standard"/> <xsd:enumeration value="marker"/> <xsd:enumeration value="filled"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_RadarStyle"> <xsd:attribute name="val" type="ST_RadarStyle" default="standard"/> </xsd:complexType> <xsd:complexType name="CT_RadarChart"> <xsd:sequence> <xsd:element name="radarStyle" type="CT_RadarStyle" minOccurs="1" maxOccurs="1"/> <xsd:element name="varyColors" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="ser" type="CT_RadarSer" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="dLbls" type="CT_DLbls" minOccurs="0" maxOccurs="1"/> <xsd:element name="axId" type="CT_UnsignedInt" minOccurs="2" maxOccurs="2"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_BarGrouping"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="percentStacked"/> <xsd:enumeration value="clustered"/> <xsd:enumeration value="standard"/> <xsd:enumeration value="stacked"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_BarGrouping"> <xsd:attribute name="val" type="ST_BarGrouping" default="clustered"/> </xsd:complexType> <xsd:simpleType name="ST_BarDir"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="bar"/> <xsd:enumeration value="col"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_BarDir"> <xsd:attribute name="val" type="ST_BarDir" default="col"/> </xsd:complexType> <xsd:simpleType name="ST_Shape"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="cone"/> <xsd:enumeration value="coneToMax"/> <xsd:enumeration value="box"/> <xsd:enumeration value="cylinder"/> <xsd:enumeration value="pyramid"/> <xsd:enumeration value="pyramidToMax"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Shape"> <xsd:attribute name="val" type="ST_Shape" default="box"/> </xsd:complexType> <xsd:group name="EG_BarChartShared"> <xsd:sequence> <xsd:element name="barDir" type="CT_BarDir" minOccurs="1" maxOccurs="1"/> <xsd:element name="grouping" type="CT_BarGrouping" minOccurs="0" maxOccurs="1"/> <xsd:element name="varyColors" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="ser" type="CT_BarSer" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="dLbls" type="CT_DLbls" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:group> <xsd:complexType name="CT_BarChart"> <xsd:sequence> <xsd:group ref="EG_BarChartShared" minOccurs="1" maxOccurs="1"/> <xsd:element name="gapWidth" type="CT_GapAmount" minOccurs="0" maxOccurs="1"/> <xsd:element name="overlap" type="CT_Overlap" minOccurs="0" maxOccurs="1"/> <xsd:element name="serLines" type="CT_ChartLines" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="axId" type="CT_UnsignedInt" minOccurs="2" maxOccurs="2"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Bar3DChart"> <xsd:sequence> <xsd:group ref="EG_BarChartShared" minOccurs="1" maxOccurs="1"/> <xsd:element name="gapWidth" type="CT_GapAmount" minOccurs="0" maxOccurs="1"/> <xsd:element name="gapDepth" type="CT_GapAmount" minOccurs="0" maxOccurs="1"/> <xsd:element name="shape" type="CT_Shape" minOccurs="0" maxOccurs="1"/> <xsd:element name="axId" type="CT_UnsignedInt" minOccurs="2" maxOccurs="3"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:group name="EG_AreaChartShared"> <xsd:sequence> <xsd:element name="grouping" type="CT_Grouping" minOccurs="0" maxOccurs="1"/> <xsd:element name="varyColors" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="ser" type="CT_AreaSer" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="dLbls" type="CT_DLbls" minOccurs="0" maxOccurs="1"/> <xsd:element name="dropLines" type="CT_ChartLines" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:group> <xsd:complexType name="CT_AreaChart"> <xsd:sequence> <xsd:group ref="EG_AreaChartShared" minOccurs="1" maxOccurs="1"/> <xsd:element name="axId" type="CT_UnsignedInt" minOccurs="2" maxOccurs="2"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Area3DChart"> <xsd:sequence> <xsd:group ref="EG_AreaChartShared" minOccurs="1" maxOccurs="1"/> <xsd:element name="gapDepth" type="CT_GapAmount" minOccurs="0" maxOccurs="1"/> <xsd:element name="axId" type="CT_UnsignedInt" minOccurs="2" maxOccurs="3"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:group name="EG_PieChartShared"> <xsd:sequence> <xsd:element name="varyColors" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="ser" type="CT_PieSer" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="dLbls" type="CT_DLbls" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:group> <xsd:complexType name="CT_PieChart"> <xsd:sequence> <xsd:group ref="EG_PieChartShared" minOccurs="1" maxOccurs="1"/> <xsd:element name="firstSliceAng" type="CT_FirstSliceAng" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Pie3DChart"> <xsd:sequence> <xsd:group ref="EG_PieChartShared" minOccurs="1" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_DoughnutChart"> <xsd:sequence> <xsd:group ref="EG_PieChartShared" minOccurs="1" maxOccurs="1"/> <xsd:element name="firstSliceAng" type="CT_FirstSliceAng" minOccurs="0" maxOccurs="1"/> <xsd:element name="holeSize" type="CT_HoleSize" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_OfPieType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="pie"/> <xsd:enumeration value="bar"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_OfPieType"> <xsd:attribute name="val" type="ST_OfPieType" default="pie"/> </xsd:complexType> <xsd:complexType name="CT_OfPieChart"> <xsd:sequence> <xsd:element name="ofPieType" type="CT_OfPieType" minOccurs="1" maxOccurs="1"/> <xsd:group ref="EG_PieChartShared" minOccurs="1" maxOccurs="1"/> <xsd:element name="gapWidth" type="CT_GapAmount" minOccurs="0" maxOccurs="1"/> <xsd:element name="splitType" type="CT_SplitType" minOccurs="0" maxOccurs="1"/> <xsd:element name="splitPos" type="CT_Double" minOccurs="0" maxOccurs="1"/> <xsd:element name="custSplit" type="CT_CustSplit" minOccurs="0" maxOccurs="1"/> <xsd:element name="secondPieSize" type="CT_SecondPieSize" minOccurs="0" maxOccurs="1"/> <xsd:element name="serLines" type="CT_ChartLines" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_BubbleChart"> <xsd:sequence> <xsd:element name="varyColors" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="ser" type="CT_BubbleSer" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="dLbls" type="CT_DLbls" minOccurs="0" maxOccurs="1"/> <xsd:element name="bubble3D" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="bubbleScale" type="CT_BubbleScale" minOccurs="0" maxOccurs="1"/> <xsd:element name="showNegBubbles" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="sizeRepresents" type="CT_SizeRepresents" minOccurs="0" maxOccurs="1"/> <xsd:element name="axId" type="CT_UnsignedInt" minOccurs="2" maxOccurs="2"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_BandFmt"> <xsd:sequence> <xsd:element name="idx" type="CT_UnsignedInt" minOccurs="1" maxOccurs="1"/> <xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_BandFmts"> <xsd:sequence> <xsd:element name="bandFmt" type="CT_BandFmt" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:group name="EG_SurfaceChartShared"> <xsd:sequence> <xsd:element name="wireframe" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="ser" type="CT_SurfaceSer" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="bandFmts" type="CT_BandFmts" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:group> <xsd:complexType name="CT_SurfaceChart"> <xsd:sequence> <xsd:group ref="EG_SurfaceChartShared" minOccurs="1" maxOccurs="1"/> <xsd:element name="axId" type="CT_UnsignedInt" minOccurs="2" maxOccurs="3"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Surface3DChart"> <xsd:sequence> <xsd:group ref="EG_SurfaceChartShared" minOccurs="1" maxOccurs="1"/> <xsd:element name="axId" type="CT_UnsignedInt" minOccurs="3" maxOccurs="3"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_AxPos"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="b"/> <xsd:enumeration value="l"/> <xsd:enumeration value="r"/> <xsd:enumeration value="t"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_AxPos"> <xsd:attribute name="val" type="ST_AxPos" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_Crosses"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="autoZero"/> <xsd:enumeration value="max"/> <xsd:enumeration value="min"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Crosses"> <xsd:attribute name="val" type="ST_Crosses" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_CrossBetween"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="between"/> <xsd:enumeration value="midCat"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_CrossBetween"> <xsd:attribute name="val" type="ST_CrossBetween" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_TickMark"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="cross"/> <xsd:enumeration value="in"/> <xsd:enumeration value="none"/> <xsd:enumeration value="out"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_TickMark"> <xsd:attribute name="val" type="ST_TickMark" default="cross"/> </xsd:complexType> <xsd:simpleType name="ST_TickLblPos"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="high"/> <xsd:enumeration value="low"/> <xsd:enumeration value="nextTo"/> <xsd:enumeration value="none"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_TickLblPos"> <xsd:attribute name="val" type="ST_TickLblPos" default="nextTo"/> </xsd:complexType> <xsd:simpleType name="ST_Skip"> <xsd:restriction base="xsd:unsignedInt"> <xsd:minInclusive value="1"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Skip"> <xsd:attribute name="val" type="ST_Skip" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_TimeUnit"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="days"/> <xsd:enumeration value="months"/> <xsd:enumeration value="years"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_TimeUnit"> <xsd:attribute name="val" type="ST_TimeUnit" default="days"/> </xsd:complexType> <xsd:simpleType name="ST_AxisUnit"> <xsd:restriction base="xsd:double"> <xsd:minExclusive value="0"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_AxisUnit"> <xsd:attribute name="val" type="ST_AxisUnit" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_BuiltInUnit"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="hundreds"/> <xsd:enumeration value="thousands"/> <xsd:enumeration value="tenThousands"/> <xsd:enumeration value="hundredThousands"/> <xsd:enumeration value="millions"/> <xsd:enumeration value="tenMillions"/> <xsd:enumeration value="hundredMillions"/> <xsd:enumeration value="billions"/> <xsd:enumeration value="trillions"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_BuiltInUnit"> <xsd:attribute name="val" type="ST_BuiltInUnit" default="thousands"/> </xsd:complexType> <xsd:simpleType name="ST_PictureFormat"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="stretch"/> <xsd:enumeration value="stack"/> <xsd:enumeration value="stackScale"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_PictureFormat"> <xsd:attribute name="val" type="ST_PictureFormat" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_PictureStackUnit"> <xsd:restriction base="xsd:double"> <xsd:minExclusive value="0"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_PictureStackUnit"> <xsd:attribute name="val" type="ST_PictureStackUnit" use="required"/> </xsd:complexType> <xsd:complexType name="CT_PictureOptions"> <xsd:sequence> <xsd:element name="applyToFront" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="applyToSides" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="applyToEnd" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="pictureFormat" type="CT_PictureFormat" minOccurs="0" maxOccurs="1"/> <xsd:element name="pictureStackUnit" type="CT_PictureStackUnit" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_DispUnitsLbl"> <xsd:sequence> <xsd:element name="layout" type="CT_Layout" minOccurs="0" maxOccurs="1"/> <xsd:element name="tx" type="CT_Tx" minOccurs="0" maxOccurs="1"/> <xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="txPr" type="a:CT_TextBody" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_DispUnits"> <xsd:sequence> <xsd:choice> <xsd:element name="custUnit" type="CT_Double" minOccurs="1" maxOccurs="1"/> <xsd:element name="builtInUnit" type="CT_BuiltInUnit" minOccurs="1" maxOccurs="1"/> </xsd:choice> <xsd:element name="dispUnitsLbl" type="CT_DispUnitsLbl" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_Orientation"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="maxMin"/> <xsd:enumeration value="minMax"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Orientation"> <xsd:attribute name="val" type="ST_Orientation" default="minMax"/> </xsd:complexType> <xsd:simpleType name="ST_LogBase"> <xsd:restriction base="xsd:double"> <xsd:minInclusive value="2"/> <xsd:maxInclusive value="1000"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_LogBase"> <xsd:attribute name="val" type="ST_LogBase" use="required"/> </xsd:complexType> <xsd:complexType name="CT_Scaling"> <xsd:sequence> <xsd:element name="logBase" type="CT_LogBase" minOccurs="0" maxOccurs="1"/> <xsd:element name="orientation" type="CT_Orientation" minOccurs="0" maxOccurs="1"/> <xsd:element name="max" type="CT_Double" minOccurs="0" maxOccurs="1"/> <xsd:element name="min" type="CT_Double" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_LblOffset"> <xsd:union memberTypes="ST_LblOffsetPercent ST_LblOffsetUShort"/> </xsd:simpleType> <xsd:simpleType name="ST_LblOffsetPercent"> <xsd:restriction base="xsd:string"> <xsd:pattern value="0*(([0-9])|([1-9][0-9])|([1-9][0-9][0-9])|1000)%"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_LblOffsetUShort"> <xsd:restriction base="xsd:unsignedShort"> <xsd:minInclusive value="0"/> <xsd:maxInclusive value="1000"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_LblOffset"> <xsd:attribute name="val" type="ST_LblOffset" default="100%"/> </xsd:complexType> <xsd:group name="EG_AxShared"> <xsd:sequence> <xsd:element name="axId" type="CT_UnsignedInt" minOccurs="1" maxOccurs="1"/> <xsd:element name="scaling" type="CT_Scaling" minOccurs="1" maxOccurs="1"/> <xsd:element name="delete" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="axPos" type="CT_AxPos" minOccurs="1" maxOccurs="1"/> <xsd:element name="majorGridlines" type="CT_ChartLines" minOccurs="0" maxOccurs="1"/> <xsd:element name="minorGridlines" type="CT_ChartLines" minOccurs="0" maxOccurs="1"/> <xsd:element name="title" type="CT_Title" minOccurs="0" maxOccurs="1"/> <xsd:element name="numFmt" type="CT_NumFmt" minOccurs="0" maxOccurs="1"/> <xsd:element name="majorTickMark" type="CT_TickMark" minOccurs="0" maxOccurs="1"/> <xsd:element name="minorTickMark" type="CT_TickMark" minOccurs="0" maxOccurs="1"/> <xsd:element name="tickLblPos" type="CT_TickLblPos" minOccurs="0" maxOccurs="1"/> <xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="txPr" type="a:CT_TextBody" minOccurs="0" maxOccurs="1"/> <xsd:element name="crossAx" type="CT_UnsignedInt" minOccurs="1" maxOccurs="1"/> <xsd:choice minOccurs="0" maxOccurs="1"> <xsd:element name="crosses" type="CT_Crosses" minOccurs="1" maxOccurs="1"/> <xsd:element name="crossesAt" type="CT_Double" minOccurs="1" maxOccurs="1"/> </xsd:choice> </xsd:sequence> </xsd:group> <xsd:complexType name="CT_CatAx"> <xsd:sequence> <xsd:group ref="EG_AxShared" minOccurs="1" maxOccurs="1"/> <xsd:element name="auto" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="lblAlgn" type="CT_LblAlgn" minOccurs="0" maxOccurs="1"/> <xsd:element name="lblOffset" type="CT_LblOffset" minOccurs="0" maxOccurs="1"/> <xsd:element name="tickLblSkip" type="CT_Skip" minOccurs="0" maxOccurs="1"/> <xsd:element name="tickMarkSkip" type="CT_Skip" minOccurs="0" maxOccurs="1"/> <xsd:element name="noMultiLvlLbl" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_DateAx"> <xsd:sequence> <xsd:group ref="EG_AxShared" minOccurs="1" maxOccurs="1"/> <xsd:element name="auto" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="lblOffset" type="CT_LblOffset" minOccurs="0" maxOccurs="1"/> <xsd:element name="baseTimeUnit" type="CT_TimeUnit" minOccurs="0" maxOccurs="1"/> <xsd:element name="majorUnit" type="CT_AxisUnit" minOccurs="0" maxOccurs="1"/> <xsd:element name="majorTimeUnit" type="CT_TimeUnit" minOccurs="0" maxOccurs="1"/> <xsd:element name="minorUnit" type="CT_AxisUnit" minOccurs="0" maxOccurs="1"/> <xsd:element name="minorTimeUnit" type="CT_TimeUnit" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_SerAx"> <xsd:sequence> <xsd:group ref="EG_AxShared" minOccurs="1" maxOccurs="1"/> <xsd:element name="tickLblSkip" type="CT_Skip" minOccurs="0" maxOccurs="1"/> <xsd:element name="tickMarkSkip" type="CT_Skip" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_ValAx"> <xsd:sequence> <xsd:group ref="EG_AxShared" minOccurs="1" maxOccurs="1"/> <xsd:element name="crossBetween" type="CT_CrossBetween" minOccurs="0" maxOccurs="1"/> <xsd:element name="majorUnit" type="CT_AxisUnit" minOccurs="0" maxOccurs="1"/> <xsd:element name="minorUnit" type="CT_AxisUnit" minOccurs="0" maxOccurs="1"/> <xsd:element name="dispUnits" type="CT_DispUnits" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_PlotArea"> <xsd:sequence> <xsd:element name="layout" type="CT_Layout" minOccurs="0" maxOccurs="1"/> <xsd:choice minOccurs="1" maxOccurs="unbounded"> <xsd:element name="areaChart" type="CT_AreaChart" minOccurs="1" maxOccurs="1"/> <xsd:element name="area3DChart" type="CT_Area3DChart" minOccurs="1" maxOccurs="1"/> <xsd:element name="lineChart" type="CT_LineChart" minOccurs="1" maxOccurs="1"/> <xsd:element name="line3DChart" type="CT_Line3DChart" minOccurs="1" maxOccurs="1"/> <xsd:element name="stockChart" type="CT_StockChart" minOccurs="1" maxOccurs="1"/> <xsd:element name="radarChart" type="CT_RadarChart" minOccurs="1" maxOccurs="1"/> <xsd:element name="scatterChart" type="CT_ScatterChart" minOccurs="1" maxOccurs="1"/> <xsd:element name="pieChart" type="CT_PieChart" minOccurs="1" maxOccurs="1"/> <xsd:element name="pie3DChart" type="CT_Pie3DChart" minOccurs="1" maxOccurs="1"/> <xsd:element name="doughnutChart" type="CT_DoughnutChart" minOccurs="1" maxOccurs="1"/> <xsd:element name="barChart" type="CT_BarChart" minOccurs="1" maxOccurs="1"/> <xsd:element name="bar3DChart" type="CT_Bar3DChart" minOccurs="1" maxOccurs="1"/> <xsd:element name="ofPieChart" type="CT_OfPieChart" minOccurs="1" maxOccurs="1"/> <xsd:element name="surfaceChart" type="CT_SurfaceChart" minOccurs="1" maxOccurs="1"/> <xsd:element name="surface3DChart" type="CT_Surface3DChart" minOccurs="1" maxOccurs="1"/> <xsd:element name="bubbleChart" type="CT_BubbleChart" minOccurs="1" maxOccurs="1"/> </xsd:choice> <xsd:choice minOccurs="0" maxOccurs="unbounded"> <xsd:element name="valAx" type="CT_ValAx" minOccurs="1" maxOccurs="1"/> <xsd:element name="catAx" type="CT_CatAx" minOccurs="1" maxOccurs="1"/> <xsd:element name="dateAx" type="CT_DateAx" minOccurs="1" maxOccurs="1"/> <xsd:element name="serAx" type="CT_SerAx" minOccurs="1" maxOccurs="1"/> </xsd:choice> <xsd:element name="dTable" type="CT_DTable" minOccurs="0" maxOccurs="1"/> <xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_PivotFmt"> <xsd:sequence> <xsd:element name="idx" type="CT_UnsignedInt" minOccurs="1" maxOccurs="1"/> <xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="txPr" type="a:CT_TextBody" minOccurs="0" maxOccurs="1"/> <xsd:element name="marker" type="CT_Marker" minOccurs="0" maxOccurs="1"/> <xsd:element name="dLbl" type="CT_DLbl" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_PivotFmts"> <xsd:sequence> <xsd:element name="pivotFmt" type="CT_PivotFmt" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_LegendPos"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="b"/> <xsd:enumeration value="tr"/> <xsd:enumeration value="l"/> <xsd:enumeration value="r"/> <xsd:enumeration value="t"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_LegendPos"> <xsd:attribute name="val" type="ST_LegendPos" default="r"/> </xsd:complexType> <xsd:group name="EG_LegendEntryData"> <xsd:sequence> <xsd:element name="txPr" type="a:CT_TextBody" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:group> <xsd:complexType name="CT_LegendEntry"> <xsd:sequence> <xsd:element name="idx" type="CT_UnsignedInt" minOccurs="1" maxOccurs="1"/> <xsd:choice> <xsd:element name="delete" type="CT_Boolean" minOccurs="1" maxOccurs="1"/> <xsd:group ref="EG_LegendEntryData" minOccurs="1" maxOccurs="1"/> </xsd:choice> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Legend"> <xsd:sequence> <xsd:element name="legendPos" type="CT_LegendPos" minOccurs="0" maxOccurs="1"/> <xsd:element name="legendEntry" type="CT_LegendEntry" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="layout" type="CT_Layout" minOccurs="0" maxOccurs="1"/> <xsd:element name="overlay" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="txPr" type="a:CT_TextBody" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_DispBlanksAs"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="span"/> <xsd:enumeration value="gap"/> <xsd:enumeration value="zero"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_DispBlanksAs"> <xsd:attribute name="val" type="ST_DispBlanksAs" default="zero"/> </xsd:complexType> <xsd:complexType name="CT_Chart"> <xsd:sequence> <xsd:element name="title" type="CT_Title" minOccurs="0" maxOccurs="1"/> <xsd:element name="autoTitleDeleted" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="pivotFmts" type="CT_PivotFmts" minOccurs="0" maxOccurs="1"/> <xsd:element name="view3D" type="CT_View3D" minOccurs="0" maxOccurs="1"/> <xsd:element name="floor" type="CT_Surface" minOccurs="0" maxOccurs="1"/> <xsd:element name="sideWall" type="CT_Surface" minOccurs="0" maxOccurs="1"/> <xsd:element name="backWall" type="CT_Surface" minOccurs="0" maxOccurs="1"/> <xsd:element name="plotArea" type="CT_PlotArea" minOccurs="1" maxOccurs="1"/> <xsd:element name="legend" type="CT_Legend" minOccurs="0" maxOccurs="1"/> <xsd:element name="plotVisOnly" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="dispBlanksAs" type="CT_DispBlanksAs" minOccurs="0" maxOccurs="1"/> <xsd:element name="showDLblsOverMax" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_Style"> <xsd:restriction base="xsd:unsignedByte"> <xsd:minInclusive value="1"/> <xsd:maxInclusive value="48"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Style"> <xsd:attribute name="val" type="ST_Style" use="required"/> </xsd:complexType> <xsd:complexType name="CT_PivotSource"> <xsd:sequence> <xsd:element name="name" type="s:ST_Xstring" minOccurs="1" maxOccurs="1"/> <xsd:element name="fmtId" type="CT_UnsignedInt" minOccurs="1" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Protection"> <xsd:sequence> <xsd:element name="chartObject" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="data" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="formatting" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="selection" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="userInterface" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_HeaderFooter"> <xsd:sequence> <xsd:element name="oddHeader" type="s:ST_Xstring" minOccurs="0" maxOccurs="1"/> <xsd:element name="oddFooter" type="s:ST_Xstring" minOccurs="0" maxOccurs="1"/> <xsd:element name="evenHeader" type="s:ST_Xstring" minOccurs="0" maxOccurs="1"/> <xsd:element name="evenFooter" type="s:ST_Xstring" minOccurs="0" maxOccurs="1"/> <xsd:element name="firstHeader" type="s:ST_Xstring" minOccurs="0" maxOccurs="1"/> <xsd:element name="firstFooter" type="s:ST_Xstring" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="alignWithMargins" type="xsd:boolean" default="true"/> <xsd:attribute name="differentOddEven" type="xsd:boolean" default="false"/> <xsd:attribute name="differentFirst" type="xsd:boolean" default="false"/> </xsd:complexType> <xsd:complexType name="CT_PageMargins"> <xsd:attribute name="l" type="xsd:double" use="required"/> <xsd:attribute name="r" type="xsd:double" use="required"/> <xsd:attribute name="t" type="xsd:double" use="required"/> <xsd:attribute name="b" type="xsd:double" use="required"/> <xsd:attribute name="header" type="xsd:double" use="required"/> <xsd:attribute name="footer" type="xsd:double" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_PageSetupOrientation"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="default"/> <xsd:enumeration value="portrait"/> <xsd:enumeration value="landscape"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_ExternalData"> <xsd:sequence> <xsd:element name="autoUpdate" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute ref="r:id" use="required"/> </xsd:complexType> <xsd:complexType name="CT_PageSetup"> <xsd:attribute name="paperSize" type="xsd:unsignedInt" use="optional" default="1"/> <xsd:attribute name="paperHeight" type="s:ST_PositiveUniversalMeasure" use="optional"/> <xsd:attribute name="paperWidth" type="s:ST_PositiveUniversalMeasure" use="optional"/> <xsd:attribute name="firstPageNumber" type="xsd:unsignedInt" use="optional" default="1"/> <xsd:attribute name="orientation" type="ST_PageSetupOrientation" use="optional" default="default"/> <xsd:attribute name="blackAndWhite" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="draft" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="useFirstPageNumber" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="horizontalDpi" type="xsd:int" use="optional" default="600"/> <xsd:attribute name="verticalDpi" type="xsd:int" use="optional" default="600"/> <xsd:attribute name="copies" type="xsd:unsignedInt" use="optional" default="1"/> </xsd:complexType> <xsd:complexType name="CT_PrintSettings"> <xsd:sequence> <xsd:element name="headerFooter" type="CT_HeaderFooter" minOccurs="0" maxOccurs="1"/> <xsd:element name="pageMargins" type="CT_PageMargins" minOccurs="0" maxOccurs="1"/> <xsd:element name="pageSetup" type="CT_PageSetup" minOccurs="0" maxOccurs="1"/> <xsd:element name="legacyDrawingHF" type="CT_RelId" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_ChartSpace"> <xsd:sequence> <xsd:element name="date1904" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="lang" type="CT_TextLanguageID" minOccurs="0" maxOccurs="1"/> <xsd:element name="roundedCorners" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="style" type="CT_Style" minOccurs="0" maxOccurs="1"/> <xsd:element name="clrMapOvr" type="a:CT_ColorMapping" minOccurs="0" maxOccurs="1"/> <xsd:element name="pivotSource" type="CT_PivotSource" minOccurs="0" maxOccurs="1"/> <xsd:element name="protection" type="CT_Protection" minOccurs="0" maxOccurs="1"/> <xsd:element name="chart" type="CT_Chart" minOccurs="1" maxOccurs="1"/> <xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="txPr" type="a:CT_TextBody" minOccurs="0" maxOccurs="1"/> <xsd:element name="externalData" type="CT_ExternalData" minOccurs="0" maxOccurs="1"/> <xsd:element name="printSettings" type="CT_PrintSettings" minOccurs="0" maxOccurs="1"/> <xsd:element name="userShapes" type="CT_RelId" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:element name="chartSpace" type="CT_ChartSpace"/> <xsd:element name="userShapes" type="cdr:CT_Drawing"/> <xsd:element name="chart" type="CT_RelId"/> </xsd:schema> ================================================ FILE: skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd ================================================ <?xml version="1.0" encoding="utf-8"?> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" xmlns="http://schemas.openxmlformats.org/drawingml/2006/chartDrawing" targetNamespace="http://schemas.openxmlformats.org/drawingml/2006/chartDrawing" elementFormDefault="qualified"> <xsd:import namespace="http://schemas.openxmlformats.org/drawingml/2006/main" schemaLocation="dml-main.xsd"/> <xsd:complexType name="CT_ShapeNonVisual"> <xsd:sequence> <xsd:element name="cNvPr" type="a:CT_NonVisualDrawingProps" minOccurs="1" maxOccurs="1"/> <xsd:element name="cNvSpPr" type="a:CT_NonVisualDrawingShapeProps" minOccurs="1" maxOccurs="1" /> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Shape"> <xsd:sequence> <xsd:element name="nvSpPr" type="CT_ShapeNonVisual" minOccurs="1" maxOccurs="1"/> <xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="style" type="a:CT_ShapeStyle" minOccurs="0" maxOccurs="1"/> <xsd:element name="txBody" type="a:CT_TextBody" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="macro" type="xsd:string" use="optional"/> <xsd:attribute name="textlink" type="xsd:string" use="optional"/> <xsd:attribute name="fLocksText" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="fPublished" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_ConnectorNonVisual"> <xsd:sequence> <xsd:element name="cNvPr" type="a:CT_NonVisualDrawingProps" minOccurs="1" maxOccurs="1"/> <xsd:element name="cNvCxnSpPr" type="a:CT_NonVisualConnectorProperties" minOccurs="1" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Connector"> <xsd:sequence> <xsd:element name="nvCxnSpPr" type="CT_ConnectorNonVisual" minOccurs="1" maxOccurs="1"/> <xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="style" type="a:CT_ShapeStyle" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="macro" type="xsd:string" use="optional"/> <xsd:attribute name="fPublished" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_PictureNonVisual"> <xsd:sequence> <xsd:element name="cNvPr" type="a:CT_NonVisualDrawingProps" minOccurs="1" maxOccurs="1"/> <xsd:element name="cNvPicPr" type="a:CT_NonVisualPictureProperties" minOccurs="1" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Picture"> <xsd:sequence> <xsd:element name="nvPicPr" type="CT_PictureNonVisual" minOccurs="1" maxOccurs="1"/> <xsd:element name="blipFill" type="a:CT_BlipFillProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="style" type="a:CT_ShapeStyle" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="macro" type="xsd:string" use="optional" default=""/> <xsd:attribute name="fPublished" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_GraphicFrameNonVisual"> <xsd:sequence> <xsd:element name="cNvPr" type="a:CT_NonVisualDrawingProps" minOccurs="1" maxOccurs="1"/> <xsd:element name="cNvGraphicFramePr" type="a:CT_NonVisualGraphicFrameProperties" minOccurs="1" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_GraphicFrame"> <xsd:sequence> <xsd:element name="nvGraphicFramePr" type="CT_GraphicFrameNonVisual" minOccurs="1" maxOccurs="1"/> <xsd:element name="xfrm" type="a:CT_Transform2D" minOccurs="1" maxOccurs="1"/> <xsd:element ref="a:graphic" minOccurs="1" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="macro" type="xsd:string" use="optional"/> <xsd:attribute name="fPublished" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_GroupShapeNonVisual"> <xsd:sequence> <xsd:element name="cNvPr" type="a:CT_NonVisualDrawingProps" minOccurs="1" maxOccurs="1"/> <xsd:element name="cNvGrpSpPr" type="a:CT_NonVisualGroupDrawingShapeProps" minOccurs="1" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_GroupShape"> <xsd:sequence> <xsd:element name="nvGrpSpPr" type="CT_GroupShapeNonVisual" minOccurs="1" maxOccurs="1"/> <xsd:element name="grpSpPr" type="a:CT_GroupShapeProperties" minOccurs="1" maxOccurs="1"/> <xsd:choice minOccurs="0" maxOccurs="unbounded"> <xsd:element name="sp" type="CT_Shape"/> <xsd:element name="grpSp" type="CT_GroupShape"/> <xsd:element name="graphicFrame" type="CT_GraphicFrame"/> <xsd:element name="cxnSp" type="CT_Connector"/> <xsd:element name="pic" type="CT_Picture"/> </xsd:choice> </xsd:sequence> </xsd:complexType> <xsd:group name="EG_ObjectChoices"> <xsd:sequence> <xsd:choice minOccurs="1" maxOccurs="1"> <xsd:element name="sp" type="CT_Shape"/> <xsd:element name="grpSp" type="CT_GroupShape"/> <xsd:element name="graphicFrame" type="CT_GraphicFrame"/> <xsd:element name="cxnSp" type="CT_Connector"/> <xsd:element name="pic" type="CT_Picture"/> </xsd:choice> </xsd:sequence> </xsd:group> <xsd:simpleType name="ST_MarkerCoordinate"> <xsd:restriction base="xsd:double"> <xsd:minInclusive value="0.0"/> <xsd:maxInclusive value="1.0"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Marker"> <xsd:sequence> <xsd:element name="x" type="ST_MarkerCoordinate" minOccurs="1" maxOccurs="1"/> <xsd:element name="y" type="ST_MarkerCoordinate" minOccurs="1" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_RelSizeAnchor"> <xsd:sequence> <xsd:element name="from" type="CT_Marker"/> <xsd:element name="to" type="CT_Marker"/> <xsd:group ref="EG_ObjectChoices"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_AbsSizeAnchor"> <xsd:sequence> <xsd:element name="from" type="CT_Marker"/> <xsd:element name="ext" type="a:CT_PositiveSize2D"/> <xsd:group ref="EG_ObjectChoices"/> </xsd:sequence> </xsd:complexType> <xsd:group name="EG_Anchor"> <xsd:choice> <xsd:element name="relSizeAnchor" type="CT_RelSizeAnchor"/> <xsd:element name="absSizeAnchor" type="CT_AbsSizeAnchor"/> </xsd:choice> </xsd:group> <xsd:complexType name="CT_Drawing"> <xsd:sequence> <xsd:group ref="EG_Anchor" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> </xsd:schema> ================================================ FILE: skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd ================================================ <?xml version="1.0" encoding="utf-8"?> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.openxmlformats.org/drawingml/2006/diagram" xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:s="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes" targetNamespace="http://schemas.openxmlformats.org/drawingml/2006/diagram" elementFormDefault="qualified" attributeFormDefault="unqualified"> <xsd:import namespace="http://schemas.openxmlformats.org/officeDocument/2006/relationships" schemaLocation="shared-relationshipReference.xsd"/> <xsd:import namespace="http://schemas.openxmlformats.org/drawingml/2006/main" schemaLocation="dml-main.xsd"/> <xsd:import namespace="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes" schemaLocation="shared-commonSimpleTypes.xsd"/> <xsd:complexType name="CT_CTName"> <xsd:attribute name="lang" type="xsd:string" use="optional" default=""/> <xsd:attribute name="val" type="xsd:string" use="required"/> </xsd:complexType> <xsd:complexType name="CT_CTDescription"> <xsd:attribute name="lang" type="xsd:string" use="optional" default=""/> <xsd:attribute name="val" type="xsd:string" use="required"/> </xsd:complexType> <xsd:complexType name="CT_CTCategory"> <xsd:attribute name="type" type="xsd:anyURI" use="required"/> <xsd:attribute name="pri" type="xsd:unsignedInt" use="required"/> </xsd:complexType> <xsd:complexType name="CT_CTCategories"> <xsd:sequence minOccurs="0" maxOccurs="unbounded"> <xsd:element name="cat" type="CT_CTCategory" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_ClrAppMethod"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="span"/> <xsd:enumeration value="cycle"/> <xsd:enumeration value="repeat"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_HueDir"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="cw"/> <xsd:enumeration value="ccw"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Colors"> <xsd:sequence> <xsd:group ref="a:EG_ColorChoice" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="meth" type="ST_ClrAppMethod" use="optional" default="span"/> <xsd:attribute name="hueDir" type="ST_HueDir" use="optional" default="cw"/> </xsd:complexType> <xsd:complexType name="CT_CTStyleLabel"> <xsd:sequence> <xsd:element name="fillClrLst" type="CT_Colors" minOccurs="0" maxOccurs="1"/> <xsd:element name="linClrLst" type="CT_Colors" minOccurs="0" maxOccurs="1"/> <xsd:element name="effectClrLst" type="CT_Colors" minOccurs="0" maxOccurs="1"/> <xsd:element name="txLinClrLst" type="CT_Colors" minOccurs="0" maxOccurs="1"/> <xsd:element name="txFillClrLst" type="CT_Colors" minOccurs="0" maxOccurs="1"/> <xsd:element name="txEffectClrLst" type="CT_Colors" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required"/> </xsd:complexType> <xsd:complexType name="CT_ColorTransform"> <xsd:sequence> <xsd:element name="title" type="CT_CTName" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="desc" type="CT_CTDescription" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="catLst" type="CT_CTCategories" minOccurs="0"/> <xsd:element name="styleLbl" type="CT_CTStyleLabel" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="uniqueId" type="xsd:string" use="optional" default=""/> <xsd:attribute name="minVer" type="xsd:string" use="optional"/> </xsd:complexType> <xsd:element name="colorsDef" type="CT_ColorTransform"/> <xsd:complexType name="CT_ColorTransformHeader"> <xsd:sequence> <xsd:element name="title" type="CT_CTName" minOccurs="1" maxOccurs="unbounded"/> <xsd:element name="desc" type="CT_CTDescription" minOccurs="1" maxOccurs="unbounded"/> <xsd:element name="catLst" type="CT_CTCategories" minOccurs="0"/> <xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="uniqueId" type="xsd:string" use="required"/> <xsd:attribute name="minVer" type="xsd:string" use="optional"/> <xsd:attribute name="resId" type="xsd:int" use="optional" default="0"/> </xsd:complexType> <xsd:element name="colorsDefHdr" type="CT_ColorTransformHeader"/> <xsd:complexType name="CT_ColorTransformHeaderLst"> <xsd:sequence> <xsd:element name="colorsDefHdr" type="CT_ColorTransformHeader" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:element name="colorsDefHdrLst" type="CT_ColorTransformHeaderLst"/> <xsd:simpleType name="ST_PtType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="node"/> <xsd:enumeration value="asst"/> <xsd:enumeration value="doc"/> <xsd:enumeration value="pres"/> <xsd:enumeration value="parTrans"/> <xsd:enumeration value="sibTrans"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Pt"> <xsd:sequence> <xsd:element name="prSet" type="CT_ElemPropSet" minOccurs="0" maxOccurs="1"/> <xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="t" type="a:CT_TextBody" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="modelId" type="ST_ModelId" use="required"/> <xsd:attribute name="type" type="ST_PtType" use="optional" default="node"/> <xsd:attribute name="cxnId" type="ST_ModelId" use="optional" default="0"/> </xsd:complexType> <xsd:complexType name="CT_PtList"> <xsd:sequence> <xsd:element name="pt" type="CT_Pt" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_CxnType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="parOf"/> <xsd:enumeration value="presOf"/> <xsd:enumeration value="presParOf"/> <xsd:enumeration value="unknownRelationship"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Cxn"> <xsd:sequence> <xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="modelId" type="ST_ModelId" use="required"/> <xsd:attribute name="type" type="ST_CxnType" use="optional" default="parOf"/> <xsd:attribute name="srcId" type="ST_ModelId" use="required"/> <xsd:attribute name="destId" type="ST_ModelId" use="required"/> <xsd:attribute name="srcOrd" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="destOrd" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="parTransId" type="ST_ModelId" use="optional" default="0"/> <xsd:attribute name="sibTransId" type="ST_ModelId" use="optional" default="0"/> <xsd:attribute name="presId" type="xsd:string" use="optional" default=""/> </xsd:complexType> <xsd:complexType name="CT_CxnList"> <xsd:sequence> <xsd:element name="cxn" type="CT_Cxn" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_DataModel"> <xsd:sequence> <xsd:element name="ptLst" type="CT_PtList"/> <xsd:element name="cxnLst" type="CT_CxnList" minOccurs="0" maxOccurs="1"/> <xsd:element name="bg" type="a:CT_BackgroundFormatting" minOccurs="0"/> <xsd:element name="whole" type="a:CT_WholeE2oFormatting" minOccurs="0"/> <xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:element name="dataModel" type="CT_DataModel"/> <xsd:attributeGroup name="AG_IteratorAttributes"> <xsd:attribute name="axis" type="ST_AxisTypes" use="optional" default="none"/> <xsd:attribute name="ptType" type="ST_ElementTypes" use="optional" default="all"/> <xsd:attribute name="hideLastTrans" type="ST_Booleans" use="optional" default="true"/> <xsd:attribute name="st" type="ST_Ints" use="optional" default="1"/> <xsd:attribute name="cnt" type="ST_UnsignedInts" use="optional" default="0"/> <xsd:attribute name="step" type="ST_Ints" use="optional" default="1"/> </xsd:attributeGroup> <xsd:attributeGroup name="AG_ConstraintAttributes"> <xsd:attribute name="type" type="ST_ConstraintType" use="required"/> <xsd:attribute name="for" type="ST_ConstraintRelationship" use="optional" default="self"/> <xsd:attribute name="forName" type="xsd:string" use="optional" default=""/> <xsd:attribute name="ptType" type="ST_ElementType" use="optional" default="all"/> </xsd:attributeGroup> <xsd:attributeGroup name="AG_ConstraintRefAttributes"> <xsd:attribute name="refType" type="ST_ConstraintType" use="optional" default="none"/> <xsd:attribute name="refFor" type="ST_ConstraintRelationship" use="optional" default="self"/> <xsd:attribute name="refForName" type="xsd:string" use="optional" default=""/> <xsd:attribute name="refPtType" type="ST_ElementType" use="optional" default="all"/> </xsd:attributeGroup> <xsd:complexType name="CT_Constraint"> <xsd:sequence> <xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attributeGroup ref="AG_ConstraintAttributes"/> <xsd:attributeGroup ref="AG_ConstraintRefAttributes"/> <xsd:attribute name="op" type="ST_BoolOperator" use="optional" default="none"/> <xsd:attribute name="val" type="xsd:double" use="optional" default="0"/> <xsd:attribute name="fact" type="xsd:double" use="optional" default="1"/> </xsd:complexType> <xsd:complexType name="CT_Constraints"> <xsd:sequence> <xsd:element name="constr" type="CT_Constraint" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_NumericRule"> <xsd:sequence> <xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attributeGroup ref="AG_ConstraintAttributes"/> <xsd:attribute name="val" type="xsd:double" use="optional" default="NaN"/> <xsd:attribute name="fact" type="xsd:double" use="optional" default="NaN"/> <xsd:attribute name="max" type="xsd:double" use="optional" default="NaN"/> </xsd:complexType> <xsd:complexType name="CT_Rules"> <xsd:sequence> <xsd:element name="rule" type="CT_NumericRule" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_PresentationOf"> <xsd:sequence> <xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attributeGroup ref="AG_IteratorAttributes"/> </xsd:complexType> <xsd:simpleType name="ST_LayoutShapeType" final="restriction"> <xsd:union memberTypes="a:ST_ShapeType ST_OutputShapeType"/> </xsd:simpleType> <xsd:simpleType name="ST_Index1"> <xsd:restriction base="xsd:unsignedInt"> <xsd:minInclusive value="1"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Adj"> <xsd:attribute name="idx" type="ST_Index1" use="required"/> <xsd:attribute name="val" type="xsd:double" use="required"/> </xsd:complexType> <xsd:complexType name="CT_AdjLst"> <xsd:sequence> <xsd:element name="adj" type="CT_Adj" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Shape"> <xsd:sequence> <xsd:element name="adjLst" type="CT_AdjLst" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="rot" type="xsd:double" use="optional" default="0"/> <xsd:attribute name="type" type="ST_LayoutShapeType" use="optional" default="none"/> <xsd:attribute ref="r:blip" use="optional"/> <xsd:attribute name="zOrderOff" type="xsd:int" use="optional" default="0"/> <xsd:attribute name="hideGeom" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="lkTxEntry" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="blipPhldr" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_Parameter"> <xsd:attribute name="type" type="ST_ParameterId" use="required"/> <xsd:attribute name="val" type="ST_ParameterVal" use="required"/> </xsd:complexType> <xsd:complexType name="CT_Algorithm"> <xsd:sequence> <xsd:element name="param" type="CT_Parameter" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="type" type="ST_AlgorithmType" use="required"/> <xsd:attribute name="rev" type="xsd:unsignedInt" use="optional" default="0"/> </xsd:complexType> <xsd:complexType name="CT_LayoutNode"> <xsd:choice minOccurs="0" maxOccurs="unbounded"> <xsd:element name="alg" type="CT_Algorithm" minOccurs="0" maxOccurs="1"/> <xsd:element name="shape" type="CT_Shape" minOccurs="0" maxOccurs="1"/> <xsd:element name="presOf" type="CT_PresentationOf" minOccurs="0" maxOccurs="1"/> <xsd:element name="constrLst" type="CT_Constraints" minOccurs="0" maxOccurs="1"/> <xsd:element name="ruleLst" type="CT_Rules" minOccurs="0" maxOccurs="1"/> <xsd:element name="varLst" type="CT_LayoutVariablePropertySet" minOccurs="0" maxOccurs="1"/> <xsd:element name="forEach" type="CT_ForEach"/> <xsd:element name="layoutNode" type="CT_LayoutNode"/> <xsd:element name="choose" type="CT_Choose"/> <xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:choice> <xsd:attribute name="name" type="xsd:string" use="optional" default=""/> <xsd:attribute name="styleLbl" type="xsd:string" use="optional" default=""/> <xsd:attribute name="chOrder" type="ST_ChildOrderType" use="optional" default="b"/> <xsd:attribute name="moveWith" type="xsd:string" use="optional" default=""/> </xsd:complexType> <xsd:complexType name="CT_ForEach"> <xsd:choice minOccurs="0" maxOccurs="unbounded"> <xsd:element name="alg" type="CT_Algorithm" minOccurs="0" maxOccurs="1"/> <xsd:element name="shape" type="CT_Shape" minOccurs="0" maxOccurs="1"/> <xsd:element name="presOf" type="CT_PresentationOf" minOccurs="0" maxOccurs="1"/> <xsd:element name="constrLst" type="CT_Constraints" minOccurs="0" maxOccurs="1"/> <xsd:element name="ruleLst" type="CT_Rules" minOccurs="0" maxOccurs="1"/> <xsd:element name="forEach" type="CT_ForEach"/> <xsd:element name="layoutNode" type="CT_LayoutNode"/> <xsd:element name="choose" type="CT_Choose"/> <xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:choice> <xsd:attribute name="name" type="xsd:string" use="optional" default=""/> <xsd:attribute name="ref" type="xsd:string" use="optional" default=""/> <xsd:attributeGroup ref="AG_IteratorAttributes"/> </xsd:complexType> <xsd:complexType name="CT_When"> <xsd:choice minOccurs="0" maxOccurs="unbounded"> <xsd:element name="alg" type="CT_Algorithm" minOccurs="0" maxOccurs="1"/> <xsd:element name="shape" type="CT_Shape" minOccurs="0" maxOccurs="1"/> <xsd:element name="presOf" type="CT_PresentationOf" minOccurs="0" maxOccurs="1"/> <xsd:element name="constrLst" type="CT_Constraints" minOccurs="0" maxOccurs="1"/> <xsd:element name="ruleLst" type="CT_Rules" minOccurs="0" maxOccurs="1"/> <xsd:element name="forEach" type="CT_ForEach"/> <xsd:element name="layoutNode" type="CT_LayoutNode"/> <xsd:element name="choose" type="CT_Choose"/> <xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:choice> <xsd:attribute name="name" type="xsd:string" use="optional" default=""/> <xsd:attributeGroup ref="AG_IteratorAttributes"/> <xsd:attribute name="func" type="ST_FunctionType" use="required"/> <xsd:attribute name="arg" type="ST_FunctionArgument" use="optional" default="none"/> <xsd:attribute name="op" type="ST_FunctionOperator" use="required"/> <xsd:attribute name="val" type="ST_FunctionValue" use="required"/> </xsd:complexType> <xsd:complexType name="CT_Otherwise"> <xsd:choice minOccurs="0" maxOccurs="unbounded"> <xsd:element name="alg" type="CT_Algorithm" minOccurs="0" maxOccurs="1"/> <xsd:element name="shape" type="CT_Shape" minOccurs="0" maxOccurs="1"/> <xsd:element name="presOf" type="CT_PresentationOf" minOccurs="0" maxOccurs="1"/> <xsd:element name="constrLst" type="CT_Constraints" minOccurs="0" maxOccurs="1"/> <xsd:element name="ruleLst" type="CT_Rules" minOccurs="0" maxOccurs="1"/> <xsd:element name="forEach" type="CT_ForEach"/> <xsd:element name="layoutNode" type="CT_LayoutNode"/> <xsd:element name="choose" type="CT_Choose"/> <xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:choice> <xsd:attribute name="name" type="xsd:string" use="optional" default=""/> </xsd:complexType> <xsd:complexType name="CT_Choose"> <xsd:sequence> <xsd:element name="if" type="CT_When" maxOccurs="unbounded"/> <xsd:element name="else" type="CT_Otherwise" minOccurs="0"/> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="optional" default=""/> </xsd:complexType> <xsd:complexType name="CT_SampleData"> <xsd:sequence> <xsd:element name="dataModel" type="CT_DataModel" minOccurs="0"/> </xsd:sequence> <xsd:attribute name="useDef" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_Category"> <xsd:attribute name="type" type="xsd:anyURI" use="required"/> <xsd:attribute name="pri" type="xsd:unsignedInt" use="required"/> </xsd:complexType> <xsd:complexType name="CT_Categories"> <xsd:sequence> <xsd:element name="cat" type="CT_Category" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Name"> <xsd:attribute name="lang" type="xsd:string" use="optional" default=""/> <xsd:attribute name="val" type="xsd:string" use="required"/> </xsd:complexType> <xsd:complexType name="CT_Description"> <xsd:attribute name="lang" type="xsd:string" use="optional" default=""/> <xsd:attribute name="val" type="xsd:string" use="required"/> </xsd:complexType> <xsd:complexType name="CT_DiagramDefinition"> <xsd:sequence> <xsd:element name="title" type="CT_Name" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="desc" type="CT_Description" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="catLst" type="CT_Categories" minOccurs="0"/> <xsd:element name="sampData" type="CT_SampleData" minOccurs="0"/> <xsd:element name="styleData" type="CT_SampleData" minOccurs="0"/> <xsd:element name="clrData" type="CT_SampleData" minOccurs="0"/> <xsd:element name="layoutNode" type="CT_LayoutNode"/> <xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="uniqueId" type="xsd:string" use="optional" default=""/> <xsd:attribute name="minVer" type="xsd:string" use="optional"/> <xsd:attribute name="defStyle" type="xsd:string" use="optional" default=""/> </xsd:complexType> <xsd:element name="layoutDef" type="CT_DiagramDefinition"/> <xsd:complexType name="CT_DiagramDefinitionHeader"> <xsd:sequence> <xsd:element name="title" type="CT_Name" minOccurs="1" maxOccurs="unbounded"/> <xsd:element name="desc" type="CT_Description" minOccurs="1" maxOccurs="unbounded"/> <xsd:element name="catLst" type="CT_Categories" minOccurs="0"/> <xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="uniqueId" type="xsd:string" use="required"/> <xsd:attribute name="minVer" type="xsd:string" use="optional"/> <xsd:attribute name="defStyle" type="xsd:string" use="optional" default=""/> <xsd:attribute name="resId" type="xsd:int" use="optional" default="0"/> </xsd:complexType> <xsd:element name="layoutDefHdr" type="CT_DiagramDefinitionHeader"/> <xsd:complexType name="CT_DiagramDefinitionHeaderLst"> <xsd:sequence> <xsd:element name="layoutDefHdr" type="CT_DiagramDefinitionHeader" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:element name="layoutDefHdrLst" type="CT_DiagramDefinitionHeaderLst"/> <xsd:complexType name="CT_RelIds"> <xsd:attribute ref="r:dm" use="required"/> <xsd:attribute ref="r:lo" use="required"/> <xsd:attribute ref="r:qs" use="required"/> <xsd:attribute ref="r:cs" use="required"/> </xsd:complexType> <xsd:element name="relIds" type="CT_RelIds"/> <xsd:simpleType name="ST_ParameterVal"> <xsd:union memberTypes="ST_DiagramHorizontalAlignment ST_VerticalAlignment ST_ChildDirection ST_ChildAlignment ST_SecondaryChildAlignment ST_LinearDirection ST_SecondaryLinearDirection ST_StartingElement ST_BendPoint ST_ConnectorRouting ST_ArrowheadStyle ST_ConnectorDimension ST_RotationPath ST_CenterShapeMapping ST_NodeHorizontalAlignment ST_NodeVerticalAlignment ST_FallbackDimension ST_TextDirection ST_PyramidAccentPosition ST_PyramidAccentTextMargin ST_TextBlockDirection ST_TextAnchorHorizontal ST_TextAnchorVertical ST_DiagramTextAlignment ST_AutoTextRotation ST_GrowDirection ST_FlowDirection ST_ContinueDirection ST_Breakpoint ST_Offset ST_HierarchyAlignment xsd:int xsd:double xsd:boolean xsd:string ST_ConnectorPoint" /> </xsd:simpleType> <xsd:simpleType name="ST_ModelId"> <xsd:union memberTypes="xsd:int s:ST_Guid"/> </xsd:simpleType> <xsd:simpleType name="ST_PrSetCustVal"> <xsd:union memberTypes="s:ST_Percentage xsd:int"/> </xsd:simpleType> <xsd:complexType name="CT_ElemPropSet"> <xsd:sequence> <xsd:element name="presLayoutVars" type="CT_LayoutVariablePropertySet" minOccurs="0" maxOccurs="1"/> <xsd:element name="style" type="a:CT_ShapeStyle" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="presAssocID" type="ST_ModelId" use="optional"/> <xsd:attribute name="presName" type="xsd:string" use="optional"/> <xsd:attribute name="presStyleLbl" type="xsd:string" use="optional"/> <xsd:attribute name="presStyleIdx" type="xsd:int" use="optional"/> <xsd:attribute name="presStyleCnt" type="xsd:int" use="optional"/> <xsd:attribute name="loTypeId" type="xsd:string" use="optional"/> <xsd:attribute name="loCatId" type="xsd:string" use="optional"/> <xsd:attribute name="qsTypeId" type="xsd:string" use="optional"/> <xsd:attribute name="qsCatId" type="xsd:string" use="optional"/> <xsd:attribute name="csTypeId" type="xsd:string" use="optional"/> <xsd:attribute name="csCatId" type="xsd:string" use="optional"/> <xsd:attribute name="coherent3DOff" type="xsd:boolean" use="optional"/> <xsd:attribute name="phldrT" type="xsd:string" use="optional"/> <xsd:attribute name="phldr" type="xsd:boolean" use="optional"/> <xsd:attribute name="custAng" type="xsd:int" use="optional"/> <xsd:attribute name="custFlipVert" type="xsd:boolean" use="optional"/> <xsd:attribute name="custFlipHor" type="xsd:boolean" use="optional"/> <xsd:attribute name="custSzX" type="xsd:int" use="optional"/> <xsd:attribute name="custSzY" type="xsd:int" use="optional"/> <xsd:attribute name="custScaleX" type="ST_PrSetCustVal" use="optional"/> <xsd:attribute name="custScaleY" type="ST_PrSetCustVal" use="optional"/> <xsd:attribute name="custT" type="xsd:boolean" use="optional"/> <xsd:attribute name="custLinFactX" type="ST_PrSetCustVal" use="optional"/> <xsd:attribute name="custLinFactY" type="ST_PrSetCustVal" use="optional"/> <xsd:attribute name="custLinFactNeighborX" type="ST_PrSetCustVal" use="optional"/> <xsd:attribute name="custLinFactNeighborY" type="ST_PrSetCustVal" use="optional"/> <xsd:attribute name="custRadScaleRad" type="ST_PrSetCustVal" use="optional"/> <xsd:attribute name="custRadScaleInc" type="ST_PrSetCustVal" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_Direction" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="norm"/> <xsd:enumeration value="rev"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_HierBranchStyle" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="l"/> <xsd:enumeration value="r"/> <xsd:enumeration value="hang"/> <xsd:enumeration value="std"/> <xsd:enumeration value="init"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_AnimOneStr" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="none"/> <xsd:enumeration value="one"/> <xsd:enumeration value="branch"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_AnimLvlStr" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="none"/> <xsd:enumeration value="lvl"/> <xsd:enumeration value="ctr"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_OrgChart"> <xsd:attribute name="val" type="xsd:boolean" default="false" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_NodeCount"> <xsd:restriction base="xsd:int"> <xsd:minInclusive value="-1"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_ChildMax"> <xsd:attribute name="val" type="ST_NodeCount" default="-1" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_ChildPref"> <xsd:attribute name="val" type="ST_NodeCount" default="-1" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_BulletEnabled"> <xsd:attribute name="val" type="xsd:boolean" default="false" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_Direction"> <xsd:attribute name="val" type="ST_Direction" default="norm" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_HierBranchStyle"> <xsd:attribute name="val" type="ST_HierBranchStyle" default="std" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_AnimOne"> <xsd:attribute name="val" type="ST_AnimOneStr" default="one" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_AnimLvl"> <xsd:attribute name="val" type="ST_AnimLvlStr" default="none" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_ResizeHandlesStr" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="exact"/> <xsd:enumeration value="rel"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_ResizeHandles"> <xsd:attribute name="val" type="ST_ResizeHandlesStr" default="rel" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_LayoutVariablePropertySet"> <xsd:sequence> <xsd:element name="orgChart" type="CT_OrgChart" minOccurs="0" maxOccurs="1"/> <xsd:element name="chMax" type="CT_ChildMax" minOccurs="0" maxOccurs="1"/> <xsd:element name="chPref" type="CT_ChildPref" minOccurs="0" maxOccurs="1"/> <xsd:element name="bulletEnabled" type="CT_BulletEnabled" minOccurs="0" maxOccurs="1"/> <xsd:element name="dir" type="CT_Direction" minOccurs="0" maxOccurs="1"/> <xsd:element name="hierBranch" type="CT_HierBranchStyle" minOccurs="0" maxOccurs="1"/> <xsd:element name="animOne" type="CT_AnimOne" minOccurs="0" maxOccurs="1"/> <xsd:element name="animLvl" type="CT_AnimLvl" minOccurs="0" maxOccurs="1"/> <xsd:element name="resizeHandles" type="CT_ResizeHandles" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_SDName"> <xsd:attribute name="lang" type="xsd:string" use="optional" default=""/> <xsd:attribute name="val" type="xsd:string" use="required"/> </xsd:complexType> <xsd:complexType name="CT_SDDescription"> <xsd:attribute name="lang" type="xsd:string" use="optional" default=""/> <xsd:attribute name="val" type="xsd:string" use="required"/> </xsd:complexType> <xsd:complexType name="CT_SDCategory"> <xsd:attribute name="type" type="xsd:anyURI" use="required"/> <xsd:attribute name="pri" type="xsd:unsignedInt" use="required"/> </xsd:complexType> <xsd:complexType name="CT_SDCategories"> <xsd:sequence minOccurs="0" maxOccurs="unbounded"> <xsd:element name="cat" type="CT_SDCategory" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_TextProps"> <xsd:sequence> <xsd:group ref="a:EG_Text3D" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_StyleLabel"> <xsd:sequence> <xsd:element name="scene3d" type="a:CT_Scene3D" minOccurs="0" maxOccurs="1"/> <xsd:element name="sp3d" type="a:CT_Shape3D" minOccurs="0" maxOccurs="1"/> <xsd:element name="txPr" type="CT_TextProps" minOccurs="0" maxOccurs="1"/> <xsd:element name="style" type="a:CT_ShapeStyle" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required"/> </xsd:complexType> <xsd:complexType name="CT_StyleDefinition"> <xsd:sequence> <xsd:element name="title" type="CT_SDName" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="desc" type="CT_SDDescription" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="catLst" type="CT_SDCategories" minOccurs="0"/> <xsd:element name="scene3d" type="a:CT_Scene3D" minOccurs="0" maxOccurs="1"/> <xsd:element name="styleLbl" type="CT_StyleLabel" minOccurs="1" maxOccurs="unbounded"/> <xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="uniqueId" type="xsd:string" use="optional" default=""/> <xsd:attribute name="minVer" type="xsd:string" use="optional"/> </xsd:complexType> <xsd:element name="styleDef" type="CT_StyleDefinition"/> <xsd:complexType name="CT_StyleDefinitionHeader"> <xsd:sequence> <xsd:element name="title" type="CT_SDName" minOccurs="1" maxOccurs="unbounded"/> <xsd:element name="desc" type="CT_SDDescription" minOccurs="1" maxOccurs="unbounded"/> <xsd:element name="catLst" type="CT_SDCategories" minOccurs="0"/> <xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="uniqueId" type="xsd:string" use="required"/> <xsd:attribute name="minVer" type="xsd:string" use="optional"/> <xsd:attribute name="resId" type="xsd:int" use="optional" default="0"/> </xsd:complexType> <xsd:element name="styleDefHdr" type="CT_StyleDefinitionHeader"/> <xsd:complexType name="CT_StyleDefinitionHeaderLst"> <xsd:sequence> <xsd:element name="styleDefHdr" type="CT_StyleDefinitionHeader" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:element name="styleDefHdrLst" type="CT_StyleDefinitionHeaderLst"/> <xsd:simpleType name="ST_AlgorithmType" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="composite"/> <xsd:enumeration value="conn"/> <xsd:enumeration value="cycle"/> <xsd:enumeration value="hierChild"/> <xsd:enumeration value="hierRoot"/> <xsd:enumeration value="pyra"/> <xsd:enumeration value="lin"/> <xsd:enumeration value="sp"/> <xsd:enumeration value="tx"/> <xsd:enumeration value="snake"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_AxisType" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="self"/> <xsd:enumeration value="ch"/> <xsd:enumeration value="des"/> <xsd:enumeration value="desOrSelf"/> <xsd:enumeration value="par"/> <xsd:enumeration value="ancst"/> <xsd:enumeration value="ancstOrSelf"/> <xsd:enumeration value="followSib"/> <xsd:enumeration value="precedSib"/> <xsd:enumeration value="follow"/> <xsd:enumeration value="preced"/> <xsd:enumeration value="root"/> <xsd:enumeration value="none"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_AxisTypes"> <xsd:list itemType="ST_AxisType"/> </xsd:simpleType> <xsd:simpleType name="ST_BoolOperator" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="none"/> <xsd:enumeration value="equ"/> <xsd:enumeration value="gte"/> <xsd:enumeration value="lte"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_ChildOrderType" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="b"/> <xsd:enumeration value="t"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_ConstraintType" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="none"/> <xsd:enumeration value="alignOff"/> <xsd:enumeration value="begMarg"/> <xsd:enumeration value="bendDist"/> <xsd:enumeration value="begPad"/> <xsd:enumeration value="b"/> <xsd:enumeration value="bMarg"/> <xsd:enumeration value="bOff"/> <xsd:enumeration value="ctrX"/> <xsd:enumeration value="ctrXOff"/> <xsd:enumeration value="ctrY"/> <xsd:enumeration value="ctrYOff"/> <xsd:enumeration value="connDist"/> <xsd:enumeration value="diam"/> <xsd:enumeration value="endMarg"/> <xsd:enumeration value="endPad"/> <xsd:enumeration value="h"/> <xsd:enumeration value="hArH"/> <xsd:enumeration value="hOff"/> <xsd:enumeration value="l"/> <xsd:enumeration value="lMarg"/> <xsd:enumeration value="lOff"/> <xsd:enumeration value="r"/> <xsd:enumeration value="rMarg"/> <xsd:enumeration value="rOff"/> <xsd:enumeration value="primFontSz"/> <xsd:enumeration value="pyraAcctRatio"/> <xsd:enumeration value="secFontSz"/> <xsd:enumeration value="sibSp"/> <xsd:enumeration value="secSibSp"/> <xsd:enumeration value="sp"/> <xsd:enumeration value="stemThick"/> <xsd:enumeration value="t"/> <xsd:enumeration value="tMarg"/> <xsd:enumeration value="tOff"/> <xsd:enumeration value="userA"/> <xsd:enumeration value="userB"/> <xsd:enumeration value="userC"/> <xsd:enumeration value="userD"/> <xsd:enumeration value="userE"/> <xsd:enumeration value="userF"/> <xsd:enumeration value="userG"/> <xsd:enumeration value="userH"/> <xsd:enumeration value="userI"/> <xsd:enumeration value="userJ"/> <xsd:enumeration value="userK"/> <xsd:enumeration value="userL"/> <xsd:enumeration value="userM"/> <xsd:enumeration value="userN"/> <xsd:enumeration value="userO"/> <xsd:enumeration value="userP"/> <xsd:enumeration value="userQ"/> <xsd:enumeration value="userR"/> <xsd:enumeration value="userS"/> <xsd:enumeration value="userT"/> <xsd:enumeration value="userU"/> <xsd:enumeration value="userV"/> <xsd:enumeration value="userW"/> <xsd:enumeration value="userX"/> <xsd:enumeration value="userY"/> <xsd:enumeration value="userZ"/> <xsd:enumeration value="w"/> <xsd:enumeration value="wArH"/> <xsd:enumeration value="wOff"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_ConstraintRelationship" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="self"/> <xsd:enumeration value="ch"/> <xsd:enumeration value="des"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_ElementType" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="all"/> <xsd:enumeration value="doc"/> <xsd:enumeration value="node"/> <xsd:enumeration value="norm"/> <xsd:enumeration value="nonNorm"/> <xsd:enumeration value="asst"/> <xsd:enumeration value="nonAsst"/> <xsd:enumeration value="parTrans"/> <xsd:enumeration value="pres"/> <xsd:enumeration value="sibTrans"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_ElementTypes"> <xsd:list itemType="ST_ElementType"/> </xsd:simpleType> <xsd:simpleType name="ST_ParameterId" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="horzAlign"/> <xsd:enumeration value="vertAlign"/> <xsd:enumeration value="chDir"/> <xsd:enumeration value="chAlign"/> <xsd:enumeration value="secChAlign"/> <xsd:enumeration value="linDir"/> <xsd:enumeration value="secLinDir"/> <xsd:enumeration value="stElem"/> <xsd:enumeration value="bendPt"/> <xsd:enumeration value="connRout"/> <xsd:enumeration value="begSty"/> <xsd:enumeration value="endSty"/> <xsd:enumeration value="dim"/> <xsd:enumeration value="rotPath"/> <xsd:enumeration value="ctrShpMap"/> <xsd:enumeration value="nodeHorzAlign"/> <xsd:enumeration value="nodeVertAlign"/> <xsd:enumeration value="fallback"/> <xsd:enumeration value="txDir"/> <xsd:enumeration value="pyraAcctPos"/> <xsd:enumeration value="pyraAcctTxMar"/> <xsd:enumeration value="txBlDir"/> <xsd:enumeration value="txAnchorHorz"/> <xsd:enumeration value="txAnchorVert"/> <xsd:enumeration value="txAnchorHorzCh"/> <xsd:enumeration value="txAnchorVertCh"/> <xsd:enumeration value="parTxLTRAlign"/> <xsd:enumeration value="parTxRTLAlign"/> <xsd:enumeration value="shpTxLTRAlignCh"/> <xsd:enumeration value="shpTxRTLAlignCh"/> <xsd:enumeration value="autoTxRot"/> <xsd:enumeration value="grDir"/> <xsd:enumeration value="flowDir"/> <xsd:enumeration value="contDir"/> <xsd:enumeration value="bkpt"/> <xsd:enumeration value="off"/> <xsd:enumeration value="hierAlign"/> <xsd:enumeration value="bkPtFixedVal"/> <xsd:enumeration value="stBulletLvl"/> <xsd:enumeration value="stAng"/> <xsd:enumeration value="spanAng"/> <xsd:enumeration value="ar"/> <xsd:enumeration value="lnSpPar"/> <xsd:enumeration value="lnSpAfParP"/> <xsd:enumeration value="lnSpCh"/> <xsd:enumeration value="lnSpAfChP"/> <xsd:enumeration value="rtShortDist"/> <xsd:enumeration value="alignTx"/> <xsd:enumeration value="pyraLvlNode"/> <xsd:enumeration value="pyraAcctBkgdNode"/> <xsd:enumeration value="pyraAcctTxNode"/> <xsd:enumeration value="srcNode"/> <xsd:enumeration value="dstNode"/> <xsd:enumeration value="begPts"/> <xsd:enumeration value="endPts"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_Ints"> <xsd:list itemType="xsd:int"/> </xsd:simpleType> <xsd:simpleType name="ST_UnsignedInts"> <xsd:list itemType="xsd:unsignedInt"/> </xsd:simpleType> <xsd:simpleType name="ST_Booleans"> <xsd:list itemType="xsd:boolean"/> </xsd:simpleType> <xsd:simpleType name="ST_FunctionType" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="cnt"/> <xsd:enumeration value="pos"/> <xsd:enumeration value="revPos"/> <xsd:enumeration value="posEven"/> <xsd:enumeration value="posOdd"/> <xsd:enumeration value="var"/> <xsd:enumeration value="depth"/> <xsd:enumeration value="maxDepth"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_FunctionOperator" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="equ"/> <xsd:enumeration value="neq"/> <xsd:enumeration value="gt"/> <xsd:enumeration value="lt"/> <xsd:enumeration value="gte"/> <xsd:enumeration value="lte"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_DiagramHorizontalAlignment" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="l"/> <xsd:enumeration value="ctr"/> <xsd:enumeration value="r"/> <xsd:enumeration value="none"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_VerticalAlignment" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="t"/> <xsd:enumeration value="mid"/> <xsd:enumeration value="b"/> <xsd:enumeration value="none"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_ChildDirection" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="horz"/> <xsd:enumeration value="vert"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_ChildAlignment" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="t"/> <xsd:enumeration value="b"/> <xsd:enumeration value="l"/> <xsd:enumeration value="r"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_SecondaryChildAlignment" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="none"/> <xsd:enumeration value="t"/> <xsd:enumeration value="b"/> <xsd:enumeration value="l"/> <xsd:enumeration value="r"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_LinearDirection" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="fromL"/> <xsd:enumeration value="fromR"/> <xsd:enumeration value="fromT"/> <xsd:enumeration value="fromB"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_SecondaryLinearDirection" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="none"/> <xsd:enumeration value="fromL"/> <xsd:enumeration value="fromR"/> <xsd:enumeration value="fromT"/> <xsd:enumeration value="fromB"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_StartingElement" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="node"/> <xsd:enumeration value="trans"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_RotationPath" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="none"/> <xsd:enumeration value="alongPath"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_CenterShapeMapping" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="none"/> <xsd:enumeration value="fNode"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_BendPoint" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="beg"/> <xsd:enumeration value="def"/> <xsd:enumeration value="end"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_ConnectorRouting" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="stra"/> <xsd:enumeration value="bend"/> <xsd:enumeration value="curve"/> <xsd:enumeration value="longCurve"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_ArrowheadStyle" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="auto"/> <xsd:enumeration value="arr"/> <xsd:enumeration value="noArr"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_ConnectorDimension" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="1D"/> <xsd:enumeration value="2D"/> <xsd:enumeration value="cust"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_ConnectorPoint" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="auto"/> <xsd:enumeration value="bCtr"/> <xsd:enumeration value="ctr"/> <xsd:enumeration value="midL"/> <xsd:enumeration value="midR"/> <xsd:enumeration value="tCtr"/> <xsd:enumeration value="bL"/> <xsd:enumeration value="bR"/> <xsd:enumeration value="tL"/> <xsd:enumeration value="tR"/> <xsd:enumeration value="radial"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_NodeHorizontalAlignment" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="l"/> <xsd:enumeration value="ctr"/> <xsd:enumeration value="r"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_NodeVerticalAlignment" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="t"/> <xsd:enumeration value="mid"/> <xsd:enumeration value="b"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_FallbackDimension" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="1D"/> <xsd:enumeration value="2D"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_TextDirection" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="fromT"/> <xsd:enumeration value="fromB"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_PyramidAccentPosition" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="bef"/> <xsd:enumeration value="aft"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_PyramidAccentTextMargin" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="step"/> <xsd:enumeration value="stack"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_TextBlockDirection" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="horz"/> <xsd:enumeration value="vert"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_TextAnchorHorizontal" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="none"/> <xsd:enumeration value="ctr"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_TextAnchorVertical" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="t"/> <xsd:enumeration value="mid"/> <xsd:enumeration value="b"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_DiagramTextAlignment" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="l"/> <xsd:enumeration value="ctr"/> <xsd:enumeration value="r"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_AutoTextRotation" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="none"/> <xsd:enumeration value="upr"/> <xsd:enumeration value="grav"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_GrowDirection" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="tL"/> <xsd:enumeration value="tR"/> <xsd:enumeration value="bL"/> <xsd:enumeration value="bR"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_FlowDirection" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="row"/> <xsd:enumeration value="col"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_ContinueDirection" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="revDir"/> <xsd:enumeration value="sameDir"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_Breakpoint" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="endCnv"/> <xsd:enumeration value="bal"/> <xsd:enumeration value="fixed"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_Offset" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="ctr"/> <xsd:enumeration value="off"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_HierarchyAlignment" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="tL"/> <xsd:enumeration value="tR"/> <xsd:enumeration value="tCtrCh"/> <xsd:enumeration value="tCtrDes"/> <xsd:enumeration value="bL"/> <xsd:enumeration value="bR"/> <xsd:enumeration value="bCtrCh"/> <xsd:enumeration value="bCtrDes"/> <xsd:enumeration value="lT"/> <xsd:enumeration value="lB"/> <xsd:enumeration value="lCtrCh"/> <xsd:enumeration value="lCtrDes"/> <xsd:enumeration value="rT"/> <xsd:enumeration value="rB"/> <xsd:enumeration value="rCtrCh"/> <xsd:enumeration value="rCtrDes"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_FunctionValue" final="restriction"> <xsd:union memberTypes="xsd:int xsd:boolean ST_Direction ST_HierBranchStyle ST_AnimOneStr ST_AnimLvlStr ST_ResizeHandlesStr" /> </xsd:simpleType> <xsd:simpleType name="ST_VariableType" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="none"/> <xsd:enumeration value="orgChart"/> <xsd:enumeration value="chMax"/> <xsd:enumeration value="chPref"/> <xsd:enumeration value="bulEnabled"/> <xsd:enumeration value="dir"/> <xsd:enumeration value="hierBranch"/> <xsd:enumeration value="animOne"/> <xsd:enumeration value="animLvl"/> <xsd:enumeration value="resizeHandles"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_FunctionArgument" final="restriction"> <xsd:union memberTypes="ST_VariableType"/> </xsd:simpleType> <xsd:simpleType name="ST_OutputShapeType" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="none"/> <xsd:enumeration value="conn"/> </xsd:restriction> </xsd:simpleType> </xsd:schema> ================================================ FILE: skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd ================================================ <?xml version="1.0" encoding="utf-8"?> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.openxmlformats.org/drawingml/2006/lockedCanvas" xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" elementFormDefault="qualified" targetNamespace="http://schemas.openxmlformats.org/drawingml/2006/lockedCanvas"> <xsd:import namespace="http://schemas.openxmlformats.org/drawingml/2006/main" schemaLocation="dml-main.xsd"/> <xsd:element name="lockedCanvas" type="a:CT_GvmlGroupShape"/> </xsd:schema> ================================================ FILE: skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd ================================================ <?xml version="1.0" encoding="utf-8"?> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:s="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" targetNamespace="http://schemas.openxmlformats.org/drawingml/2006/main" elementFormDefault="qualified"> <xsd:import namespace="http://schemas.openxmlformats.org/officeDocument/2006/relationships" schemaLocation="shared-relationshipReference.xsd"/> <xsd:import namespace="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes" schemaLocation="shared-commonSimpleTypes.xsd"/> <xsd:import namespace="http://schemas.openxmlformats.org/drawingml/2006/diagram" schemaLocation="dml-diagram.xsd"/> <xsd:import namespace="http://schemas.openxmlformats.org/drawingml/2006/chart" schemaLocation="dml-chart.xsd"/> <xsd:import namespace="http://schemas.openxmlformats.org/drawingml/2006/picture" schemaLocation="dml-picture.xsd"/> <xsd:import namespace="http://schemas.openxmlformats.org/drawingml/2006/lockedCanvas" schemaLocation="dml-lockedCanvas.xsd"/> <xsd:complexType name="CT_AudioFile"> <xsd:sequence> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute ref="r:link" use="required"/> <xsd:attribute name="contentType" type="xsd:string" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_VideoFile"> <xsd:sequence> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute ref="r:link" use="required"/> <xsd:attribute name="contentType" type="xsd:string" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_QuickTimeFile"> <xsd:sequence> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute ref="r:link" use="required"/> </xsd:complexType> <xsd:complexType name="CT_AudioCDTime"> <xsd:attribute name="track" type="xsd:unsignedByte" use="required"/> <xsd:attribute name="time" type="xsd:unsignedInt" use="optional" default="0"/> </xsd:complexType> <xsd:complexType name="CT_AudioCD"> <xsd:sequence> <xsd:element name="st" type="CT_AudioCDTime" minOccurs="1" maxOccurs="1"/> <xsd:element name="end" type="CT_AudioCDTime" minOccurs="1" maxOccurs="1"/> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:group name="EG_Media"> <xsd:choice> <xsd:element name="audioCd" type="CT_AudioCD"/> <xsd:element name="wavAudioFile" type="CT_EmbeddedWAVAudioFile"/> <xsd:element name="audioFile" type="CT_AudioFile"/> <xsd:element name="videoFile" type="CT_VideoFile"/> <xsd:element name="quickTimeFile" type="CT_QuickTimeFile"/> </xsd:choice> </xsd:group> <xsd:element name="videoFile" type="CT_VideoFile"/> <xsd:simpleType name="ST_StyleMatrixColumnIndex"> <xsd:restriction base="xsd:unsignedInt"/> </xsd:simpleType> <xsd:simpleType name="ST_FontCollectionIndex"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="major"/> <xsd:enumeration value="minor"/> <xsd:enumeration value="none"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_ColorSchemeIndex"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="dk1"/> <xsd:enumeration value="lt1"/> <xsd:enumeration value="dk2"/> <xsd:enumeration value="lt2"/> <xsd:enumeration value="accent1"/> <xsd:enumeration value="accent2"/> <xsd:enumeration value="accent3"/> <xsd:enumeration value="accent4"/> <xsd:enumeration value="accent5"/> <xsd:enumeration value="accent6"/> <xsd:enumeration value="hlink"/> <xsd:enumeration value="folHlink"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_ColorScheme"> <xsd:sequence> <xsd:element name="dk1" type="CT_Color" minOccurs="1" maxOccurs="1"/> <xsd:element name="lt1" type="CT_Color" minOccurs="1" maxOccurs="1"/> <xsd:element name="dk2" type="CT_Color" minOccurs="1" maxOccurs="1"/> <xsd:element name="lt2" type="CT_Color" minOccurs="1" maxOccurs="1"/> <xsd:element name="accent1" type="CT_Color" minOccurs="1" maxOccurs="1"/> <xsd:element name="accent2" type="CT_Color" minOccurs="1" maxOccurs="1"/> <xsd:element name="accent3" type="CT_Color" minOccurs="1" maxOccurs="1"/> <xsd:element name="accent4" type="CT_Color" minOccurs="1" maxOccurs="1"/> <xsd:element name="accent5" type="CT_Color" minOccurs="1" maxOccurs="1"/> <xsd:element name="accent6" type="CT_Color" minOccurs="1" maxOccurs="1"/> <xsd:element name="hlink" type="CT_Color" minOccurs="1" maxOccurs="1"/> <xsd:element name="folHlink" type="CT_Color" minOccurs="1" maxOccurs="1"/> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required"/> </xsd:complexType> <xsd:complexType name="CT_CustomColor"> <xsd:sequence> <xsd:group ref="EG_ColorChoice" minOccurs="1" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="optional" default=""/> </xsd:complexType> <xsd:complexType name="CT_SupplementalFont"> <xsd:attribute name="script" type="xsd:string" use="required"/> <xsd:attribute name="typeface" type="ST_TextTypeface" use="required"/> </xsd:complexType> <xsd:complexType name="CT_CustomColorList"> <xsd:sequence> <xsd:element name="custClr" type="CT_CustomColor" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_FontCollection"> <xsd:sequence> <xsd:element name="latin" type="CT_TextFont" minOccurs="1" maxOccurs="1"/> <xsd:element name="ea" type="CT_TextFont" minOccurs="1" maxOccurs="1"/> <xsd:element name="cs" type="CT_TextFont" minOccurs="1" maxOccurs="1"/> <xsd:element name="font" type="CT_SupplementalFont" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_EffectStyleItem"> <xsd:sequence> <xsd:group ref="EG_EffectProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="scene3d" type="CT_Scene3D" minOccurs="0" maxOccurs="1"/> <xsd:element name="sp3d" type="CT_Shape3D" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_FontScheme"> <xsd:sequence> <xsd:element name="majorFont" type="CT_FontCollection" minOccurs="1" maxOccurs="1"/> <xsd:element name="minorFont" type="CT_FontCollection" minOccurs="1" maxOccurs="1"/> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required"/> </xsd:complexType> <xsd:complexType name="CT_FillStyleList"> <xsd:sequence> <xsd:group ref="EG_FillProperties" minOccurs="3" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_LineStyleList"> <xsd:sequence> <xsd:element name="ln" type="CT_LineProperties" minOccurs="3" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_EffectStyleList"> <xsd:sequence> <xsd:element name="effectStyle" type="CT_EffectStyleItem" minOccurs="3" maxOccurs="unbounded" /> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_BackgroundFillStyleList"> <xsd:sequence> <xsd:group ref="EG_FillProperties" minOccurs="3" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_StyleMatrix"> <xsd:sequence> <xsd:element name="fillStyleLst" type="CT_FillStyleList" minOccurs="1" maxOccurs="1"/> <xsd:element name="lnStyleLst" type="CT_LineStyleList" minOccurs="1" maxOccurs="1"/> <xsd:element name="effectStyleLst" type="CT_EffectStyleList" minOccurs="1" maxOccurs="1"/> <xsd:element name="bgFillStyleLst" type="CT_BackgroundFillStyleList" minOccurs="1" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="optional" default=""/> </xsd:complexType> <xsd:complexType name="CT_BaseStyles"> <xsd:sequence> <xsd:element name="clrScheme" type="CT_ColorScheme" minOccurs="1" maxOccurs="1"/> <xsd:element name="fontScheme" type="CT_FontScheme" minOccurs="1" maxOccurs="1"/> <xsd:element name="fmtScheme" type="CT_StyleMatrix" minOccurs="1" maxOccurs="1"/> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_OfficeArtExtension"> <xsd:sequence> <xsd:any processContents="lax" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="uri" type="xsd:token" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_Coordinate"> <xsd:union memberTypes="ST_CoordinateUnqualified s:ST_UniversalMeasure"/> </xsd:simpleType> <xsd:simpleType name="ST_CoordinateUnqualified"> <xsd:restriction base="xsd:long"> <xsd:minInclusive value="-27273042329600"/> <xsd:maxInclusive value="27273042316900"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_Coordinate32"> <xsd:union memberTypes="ST_Coordinate32Unqualified s:ST_UniversalMeasure"/> </xsd:simpleType> <xsd:simpleType name="ST_Coordinate32Unqualified"> <xsd:restriction base="xsd:int"/> </xsd:simpleType> <xsd:simpleType name="ST_PositiveCoordinate"> <xsd:restriction base="xsd:long"> <xsd:minInclusive value="0"/> <xsd:maxInclusive value="27273042316900"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_PositiveCoordinate32"> <xsd:restriction base="ST_Coordinate32Unqualified"> <xsd:minInclusive value="0"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_Angle"> <xsd:restriction base="xsd:int"/> </xsd:simpleType> <xsd:complexType name="CT_Angle"> <xsd:attribute name="val" type="ST_Angle" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_FixedAngle"> <xsd:restriction base="ST_Angle"> <xsd:minExclusive value="-5400000"/> <xsd:maxExclusive value="5400000"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_PositiveFixedAngle"> <xsd:restriction base="ST_Angle"> <xsd:minInclusive value="0"/> <xsd:maxExclusive value="21600000"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_PositiveFixedAngle"> <xsd:attribute name="val" type="ST_PositiveFixedAngle" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_Percentage"> <xsd:union memberTypes="ST_PercentageDecimal s:ST_Percentage"/> </xsd:simpleType> <xsd:simpleType name="ST_PercentageDecimal"> <xsd:restriction base="xsd:int"/> </xsd:simpleType> <xsd:complexType name="CT_Percentage"> <xsd:attribute name="val" type="ST_Percentage" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_PositivePercentage"> <xsd:union memberTypes="ST_PositivePercentageDecimal s:ST_PositivePercentage"/> </xsd:simpleType> <xsd:simpleType name="ST_PositivePercentageDecimal"> <xsd:restriction base="ST_PercentageDecimal"> <xsd:minInclusive value="0"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_PositivePercentage"> <xsd:attribute name="val" type="ST_PositivePercentage" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_FixedPercentage"> <xsd:union memberTypes="ST_FixedPercentageDecimal s:ST_FixedPercentage"/> </xsd:simpleType> <xsd:simpleType name="ST_FixedPercentageDecimal"> <xsd:restriction base="ST_PercentageDecimal"> <xsd:minInclusive value="-100000"/> <xsd:maxInclusive value="100000"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_FixedPercentage"> <xsd:attribute name="val" type="ST_FixedPercentage" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_PositiveFixedPercentage"> <xsd:union memberTypes="ST_PositiveFixedPercentageDecimal s:ST_PositiveFixedPercentage"/> </xsd:simpleType> <xsd:simpleType name="ST_PositiveFixedPercentageDecimal"> <xsd:restriction base="ST_PercentageDecimal"> <xsd:minInclusive value="0"/> <xsd:maxInclusive value="100000"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_PositiveFixedPercentage"> <xsd:attribute name="val" type="ST_PositiveFixedPercentage" use="required"/> </xsd:complexType> <xsd:complexType name="CT_Ratio"> <xsd:attribute name="n" type="xsd:long" use="required"/> <xsd:attribute name="d" type="xsd:long" use="required"/> </xsd:complexType> <xsd:complexType name="CT_Point2D"> <xsd:attribute name="x" type="ST_Coordinate" use="required"/> <xsd:attribute name="y" type="ST_Coordinate" use="required"/> </xsd:complexType> <xsd:complexType name="CT_PositiveSize2D"> <xsd:attribute name="cx" type="ST_PositiveCoordinate" use="required"/> <xsd:attribute name="cy" type="ST_PositiveCoordinate" use="required"/> </xsd:complexType> <xsd:complexType name="CT_ComplementTransform"/> <xsd:complexType name="CT_InverseTransform"/> <xsd:complexType name="CT_GrayscaleTransform"/> <xsd:complexType name="CT_GammaTransform"/> <xsd:complexType name="CT_InverseGammaTransform"/> <xsd:group name="EG_ColorTransform"> <xsd:choice> <xsd:element name="tint" type="CT_PositiveFixedPercentage" minOccurs="1" maxOccurs="1"/> <xsd:element name="shade" type="CT_PositiveFixedPercentage" minOccurs="1" maxOccurs="1"/> <xsd:element name="comp" type="CT_ComplementTransform" minOccurs="1" maxOccurs="1"/> <xsd:element name="inv" type="CT_InverseTransform" minOccurs="1" maxOccurs="1"/> <xsd:element name="gray" type="CT_GrayscaleTransform" minOccurs="1" maxOccurs="1"/> <xsd:element name="alpha" type="CT_PositiveFixedPercentage" minOccurs="1" maxOccurs="1"/> <xsd:element name="alphaOff" type="CT_FixedPercentage" minOccurs="1" maxOccurs="1"/> <xsd:element name="alphaMod" type="CT_PositivePercentage" minOccurs="1" maxOccurs="1"/> <xsd:element name="hue" type="CT_PositiveFixedAngle" minOccurs="1" maxOccurs="1"/> <xsd:element name="hueOff" type="CT_Angle" minOccurs="1" maxOccurs="1"/> <xsd:element name="hueMod" type="CT_PositivePercentage" minOccurs="1" maxOccurs="1"/> <xsd:element name="sat" type="CT_Percentage" minOccurs="1" maxOccurs="1"/> <xsd:element name="satOff" type="CT_Percentage" minOccurs="1" maxOccurs="1"/> <xsd:element name="satMod" type="CT_Percentage" minOccurs="1" maxOccurs="1"/> <xsd:element name="lum" type="CT_Percentage" minOccurs="1" maxOccurs="1"/> <xsd:element name="lumOff" type="CT_Percentage" minOccurs="1" maxOccurs="1"/> <xsd:element name="lumMod" type="CT_Percentage" minOccurs="1" maxOccurs="1"/> <xsd:element name="red" type="CT_Percentage" minOccurs="1" maxOccurs="1"/> <xsd:element name="redOff" type="CT_Percentage" minOccurs="1" maxOccurs="1"/> <xsd:element name="redMod" type="CT_Percentage" minOccurs="1" maxOccurs="1"/> <xsd:element name="green" type="CT_Percentage" minOccurs="1" maxOccurs="1"/> <xsd:element name="greenOff" type="CT_Percentage" minOccurs="1" maxOccurs="1"/> <xsd:element name="greenMod" type="CT_Percentage" minOccurs="1" maxOccurs="1"/> <xsd:element name="blue" type="CT_Percentage" minOccurs="1" maxOccurs="1"/> <xsd:element name="blueOff" type="CT_Percentage" minOccurs="1" maxOccurs="1"/> <xsd:element name="blueMod" type="CT_Percentage" minOccurs="1" maxOccurs="1"/> <xsd:element name="gamma" type="CT_GammaTransform" minOccurs="1" maxOccurs="1"/> <xsd:element name="invGamma" type="CT_InverseGammaTransform" minOccurs="1" maxOccurs="1"/> </xsd:choice> </xsd:group> <xsd:complexType name="CT_ScRgbColor"> <xsd:sequence> <xsd:group ref="EG_ColorTransform" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="r" type="ST_Percentage" use="required"/> <xsd:attribute name="g" type="ST_Percentage" use="required"/> <xsd:attribute name="b" type="ST_Percentage" use="required"/> </xsd:complexType> <xsd:complexType name="CT_SRgbColor"> <xsd:sequence> <xsd:group ref="EG_ColorTransform" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="val" type="s:ST_HexColorRGB" use="required"/> </xsd:complexType> <xsd:complexType name="CT_HslColor"> <xsd:sequence> <xsd:group ref="EG_ColorTransform" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="hue" type="ST_PositiveFixedAngle" use="required"/> <xsd:attribute name="sat" type="ST_Percentage" use="required"/> <xsd:attribute name="lum" type="ST_Percentage" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_SystemColorVal"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="scrollBar"/> <xsd:enumeration value="background"/> <xsd:enumeration value="activeCaption"/> <xsd:enumeration value="inactiveCaption"/> <xsd:enumeration value="menu"/> <xsd:enumeration value="window"/> <xsd:enumeration value="windowFrame"/> <xsd:enumeration value="menuText"/> <xsd:enumeration value="windowText"/> <xsd:enumeration value="captionText"/> <xsd:enumeration value="activeBorder"/> <xsd:enumeration value="inactiveBorder"/> <xsd:enumeration value="appWorkspace"/> <xsd:enumeration value="highlight"/> <xsd:enumeration value="highlightText"/> <xsd:enumeration value="btnFace"/> <xsd:enumeration value="btnShadow"/> <xsd:enumeration value="grayText"/> <xsd:enumeration value="btnText"/> <xsd:enumeration value="inactiveCaptionText"/> <xsd:enumeration value="btnHighlight"/> <xsd:enumeration value="3dDkShadow"/> <xsd:enumeration value="3dLight"/> <xsd:enumeration value="infoText"/> <xsd:enumeration value="infoBk"/> <xsd:enumeration value="hotLight"/> <xsd:enumeration value="gradientActiveCaption"/> <xsd:enumeration value="gradientInactiveCaption"/> <xsd:enumeration value="menuHighlight"/> <xsd:enumeration value="menuBar"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_SystemColor"> <xsd:sequence> <xsd:group ref="EG_ColorTransform" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="val" type="ST_SystemColorVal" use="required"/> <xsd:attribute name="lastClr" type="s:ST_HexColorRGB" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_SchemeColorVal"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="bg1"/> <xsd:enumeration value="tx1"/> <xsd:enumeration value="bg2"/> <xsd:enumeration value="tx2"/> <xsd:enumeration value="accent1"/> <xsd:enumeration value="accent2"/> <xsd:enumeration value="accent3"/> <xsd:enumeration value="accent4"/> <xsd:enumeration value="accent5"/> <xsd:enumeration value="accent6"/> <xsd:enumeration value="hlink"/> <xsd:enumeration value="folHlink"/> <xsd:enumeration value="phClr"/> <xsd:enumeration value="dk1"/> <xsd:enumeration value="lt1"/> <xsd:enumeration value="dk2"/> <xsd:enumeration value="lt2"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_SchemeColor"> <xsd:sequence> <xsd:group ref="EG_ColorTransform" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="val" type="ST_SchemeColorVal" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_PresetColorVal"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="aliceBlue"/> <xsd:enumeration value="antiqueWhite"/> <xsd:enumeration value="aqua"/> <xsd:enumeration value="aquamarine"/> <xsd:enumeration value="azure"/> <xsd:enumeration value="beige"/> <xsd:enumeration value="bisque"/> <xsd:enumeration value="black"/> <xsd:enumeration value="blanchedAlmond"/> <xsd:enumeration value="blue"/> <xsd:enumeration value="blueViolet"/> <xsd:enumeration value="brown"/> <xsd:enumeration value="burlyWood"/> <xsd:enumeration value="cadetBlue"/> <xsd:enumeration value="chartreuse"/> <xsd:enumeration value="chocolate"/> <xsd:enumeration value="coral"/> <xsd:enumeration value="cornflowerBlue"/> <xsd:enumeration value="cornsilk"/> <xsd:enumeration value="crimson"/> <xsd:enumeration value="cyan"/> <xsd:enumeration value="darkBlue"/> <xsd:enumeration value="darkCyan"/> <xsd:enumeration value="darkGoldenrod"/> <xsd:enumeration value="darkGray"/> <xsd:enumeration value="darkGrey"/> <xsd:enumeration value="darkGreen"/> <xsd:enumeration value="darkKhaki"/> <xsd:enumeration value="darkMagenta"/> <xsd:enumeration value="darkOliveGreen"/> <xsd:enumeration value="darkOrange"/> <xsd:enumeration value="darkOrchid"/> <xsd:enumeration value="darkRed"/> <xsd:enumeration value="darkSalmon"/> <xsd:enumeration value="darkSeaGreen"/> <xsd:enumeration value="darkSlateBlue"/> <xsd:enumeration value="darkSlateGray"/> <xsd:enumeration value="darkSlateGrey"/> <xsd:enumeration value="darkTurquoise"/> <xsd:enumeration value="darkViolet"/> <xsd:enumeration value="dkBlue"/> <xsd:enumeration value="dkCyan"/> <xsd:enumeration value="dkGoldenrod"/> <xsd:enumeration value="dkGray"/> <xsd:enumeration value="dkGrey"/> <xsd:enumeration value="dkGreen"/> <xsd:enumeration value="dkKhaki"/> <xsd:enumeration value="dkMagenta"/> <xsd:enumeration value="dkOliveGreen"/> <xsd:enumeration value="dkOrange"/> <xsd:enumeration value="dkOrchid"/> <xsd:enumeration value="dkRed"/> <xsd:enumeration value="dkSalmon"/> <xsd:enumeration value="dkSeaGreen"/> <xsd:enumeration value="dkSlateBlue"/> <xsd:enumeration value="dkSlateGray"/> <xsd:enumeration value="dkSlateGrey"/> <xsd:enumeration value="dkTurquoise"/> <xsd:enumeration value="dkViolet"/> <xsd:enumeration value="deepPink"/> <xsd:enumeration value="deepSkyBlue"/> <xsd:enumeration value="dimGray"/> <xsd:enumeration value="dimGrey"/> <xsd:enumeration value="dodgerBlue"/> <xsd:enumeration value="firebrick"/> <xsd:enumeration value="floralWhite"/> <xsd:enumeration value="forestGreen"/> <xsd:enumeration value="fuchsia"/> <xsd:enumeration value="gainsboro"/> <xsd:enumeration value="ghostWhite"/> <xsd:enumeration value="gold"/> <xsd:enumeration value="goldenrod"/> <xsd:enumeration value="gray"/> <xsd:enumeration value="grey"/> <xsd:enumeration value="green"/> <xsd:enumeration value="greenYellow"/> <xsd:enumeration value="honeydew"/> <xsd:enumeration value="hotPink"/> <xsd:enumeration value="indianRed"/> <xsd:enumeration value="indigo"/> <xsd:enumeration value="ivory"/> <xsd:enumeration value="khaki"/> <xsd:enumeration value="lavender"/> <xsd:enumeration value="lavenderBlush"/> <xsd:enumeration value="lawnGreen"/> <xsd:enumeration value="lemonChiffon"/> <xsd:enumeration value="lightBlue"/> <xsd:enumeration value="lightCoral"/> <xsd:enumeration value="lightCyan"/> <xsd:enumeration value="lightGoldenrodYellow"/> <xsd:enumeration value="lightGray"/> <xsd:enumeration value="lightGrey"/> <xsd:enumeration value="lightGreen"/> <xsd:enumeration value="lightPink"/> <xsd:enumeration value="lightSalmon"/> <xsd:enumeration value="lightSeaGreen"/> <xsd:enumeration value="lightSkyBlue"/> <xsd:enumeration value="lightSlateGray"/> <xsd:enumeration value="lightSlateGrey"/> <xsd:enumeration value="lightSteelBlue"/> <xsd:enumeration value="lightYellow"/> <xsd:enumeration value="ltBlue"/> <xsd:enumeration value="ltCoral"/> <xsd:enumeration value="ltCyan"/> <xsd:enumeration value="ltGoldenrodYellow"/> <xsd:enumeration value="ltGray"/> <xsd:enumeration value="ltGrey"/> <xsd:enumeration value="ltGreen"/> <xsd:enumeration value="ltPink"/> <xsd:enumeration value="ltSalmon"/> <xsd:enumeration value="ltSeaGreen"/> <xsd:enumeration value="ltSkyBlue"/> <xsd:enumeration value="ltSlateGray"/> <xsd:enumeration value="ltSlateGrey"/> <xsd:enumeration value="ltSteelBlue"/> <xsd:enumeration value="ltYellow"/> <xsd:enumeration value="lime"/> <xsd:enumeration value="limeGreen"/> <xsd:enumeration value="linen"/> <xsd:enumeration value="magenta"/> <xsd:enumeration value="maroon"/> <xsd:enumeration value="medAquamarine"/> <xsd:enumeration value="medBlue"/> <xsd:enumeration value="medOrchid"/> <xsd:enumeration value="medPurple"/> <xsd:enumeration value="medSeaGreen"/> <xsd:enumeration value="medSlateBlue"/> <xsd:enumeration value="medSpringGreen"/> <xsd:enumeration value="medTurquoise"/> <xsd:enumeration value="medVioletRed"/> <xsd:enumeration value="mediumAquamarine"/> <xsd:enumeration value="mediumBlue"/> <xsd:enumeration value="mediumOrchid"/> <xsd:enumeration value="mediumPurple"/> <xsd:enumeration value="mediumSeaGreen"/> <xsd:enumeration value="mediumSlateBlue"/> <xsd:enumeration value="mediumSpringGreen"/> <xsd:enumeration value="mediumTurquoise"/> <xsd:enumeration value="mediumVioletRed"/> <xsd:enumeration value="midnightBlue"/> <xsd:enumeration value="mintCream"/> <xsd:enumeration value="mistyRose"/> <xsd:enumeration value="moccasin"/> <xsd:enumeration value="navajoWhite"/> <xsd:enumeration value="navy"/> <xsd:enumeration value="oldLace"/> <xsd:enumeration value="olive"/> <xsd:enumeration value="oliveDrab"/> <xsd:enumeration value="orange"/> <xsd:enumeration value="orangeRed"/> <xsd:enumeration value="orchid"/> <xsd:enumeration value="paleGoldenrod"/> <xsd:enumeration value="paleGreen"/> <xsd:enumeration value="paleTurquoise"/> <xsd:enumeration value="paleVioletRed"/> <xsd:enumeration value="papayaWhip"/> <xsd:enumeration value="peachPuff"/> <xsd:enumeration value="peru"/> <xsd:enumeration value="pink"/> <xsd:enumeration value="plum"/> <xsd:enumeration value="powderBlue"/> <xsd:enumeration value="purple"/> <xsd:enumeration value="red"/> <xsd:enumeration value="rosyBrown"/> <xsd:enumeration value="royalBlue"/> <xsd:enumeration value="saddleBrown"/> <xsd:enumeration value="salmon"/> <xsd:enumeration value="sandyBrown"/> <xsd:enumeration value="seaGreen"/> <xsd:enumeration value="seaShell"/> <xsd:enumeration value="sienna"/> <xsd:enumeration value="silver"/> <xsd:enumeration value="skyBlue"/> <xsd:enumeration value="slateBlue"/> <xsd:enumeration value="slateGray"/> <xsd:enumeration value="slateGrey"/> <xsd:enumeration value="snow"/> <xsd:enumeration value="springGreen"/> <xsd:enumeration value="steelBlue"/> <xsd:enumeration value="tan"/> <xsd:enumeration value="teal"/> <xsd:enumeration value="thistle"/> <xsd:enumeration value="tomato"/> <xsd:enumeration value="turquoise"/> <xsd:enumeration value="violet"/> <xsd:enumeration value="wheat"/> <xsd:enumeration value="white"/> <xsd:enumeration value="whiteSmoke"/> <xsd:enumeration value="yellow"/> <xsd:enumeration value="yellowGreen"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_PresetColor"> <xsd:sequence> <xsd:group ref="EG_ColorTransform" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="val" type="ST_PresetColorVal" use="required"/> </xsd:complexType> <xsd:group name="EG_OfficeArtExtensionList"> <xsd:sequence> <xsd:element name="ext" type="CT_OfficeArtExtension" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:group> <xsd:complexType name="CT_OfficeArtExtensionList"> <xsd:sequence> <xsd:group ref="EG_OfficeArtExtensionList" minOccurs="1" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Scale2D"> <xsd:sequence> <xsd:element name="sx" type="CT_Ratio" minOccurs="1" maxOccurs="1"/> <xsd:element name="sy" type="CT_Ratio" minOccurs="1" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Transform2D"> <xsd:sequence> <xsd:element name="off" type="CT_Point2D" minOccurs="0" maxOccurs="1"/> <xsd:element name="ext" type="CT_PositiveSize2D" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="rot" type="ST_Angle" use="optional" default="0"/> <xsd:attribute name="flipH" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="flipV" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_GroupTransform2D"> <xsd:sequence> <xsd:element name="off" type="CT_Point2D" minOccurs="0" maxOccurs="1"/> <xsd:element name="ext" type="CT_PositiveSize2D" minOccurs="0" maxOccurs="1"/> <xsd:element name="chOff" type="CT_Point2D" minOccurs="0" maxOccurs="1"/> <xsd:element name="chExt" type="CT_PositiveSize2D" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="rot" type="ST_Angle" use="optional" default="0"/> <xsd:attribute name="flipH" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="flipV" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_Point3D"> <xsd:attribute name="x" type="ST_Coordinate" use="required"/> <xsd:attribute name="y" type="ST_Coordinate" use="required"/> <xsd:attribute name="z" type="ST_Coordinate" use="required"/> </xsd:complexType> <xsd:complexType name="CT_Vector3D"> <xsd:attribute name="dx" type="ST_Coordinate" use="required"/> <xsd:attribute name="dy" type="ST_Coordinate" use="required"/> <xsd:attribute name="dz" type="ST_Coordinate" use="required"/> </xsd:complexType> <xsd:complexType name="CT_SphereCoords"> <xsd:attribute name="lat" type="ST_PositiveFixedAngle" use="required"/> <xsd:attribute name="lon" type="ST_PositiveFixedAngle" use="required"/> <xsd:attribute name="rev" type="ST_PositiveFixedAngle" use="required"/> </xsd:complexType> <xsd:complexType name="CT_RelativeRect"> <xsd:attribute name="l" type="ST_Percentage" use="optional" default="0%"/> <xsd:attribute name="t" type="ST_Percentage" use="optional" default="0%"/> <xsd:attribute name="r" type="ST_Percentage" use="optional" default="0%"/> <xsd:attribute name="b" type="ST_Percentage" use="optional" default="0%"/> </xsd:complexType> <xsd:simpleType name="ST_RectAlignment"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="tl"/> <xsd:enumeration value="t"/> <xsd:enumeration value="tr"/> <xsd:enumeration value="l"/> <xsd:enumeration value="ctr"/> <xsd:enumeration value="r"/> <xsd:enumeration value="bl"/> <xsd:enumeration value="b"/> <xsd:enumeration value="br"/> </xsd:restriction> </xsd:simpleType> <xsd:group name="EG_ColorChoice"> <xsd:choice> <xsd:element name="scrgbClr" type="CT_ScRgbColor" minOccurs="1" maxOccurs="1"/> <xsd:element name="srgbClr" type="CT_SRgbColor" minOccurs="1" maxOccurs="1"/> <xsd:element name="hslClr" type="CT_HslColor" minOccurs="1" maxOccurs="1"/> <xsd:element name="sysClr" type="CT_SystemColor" minOccurs="1" maxOccurs="1"/> <xsd:element name="schemeClr" type="CT_SchemeColor" minOccurs="1" maxOccurs="1"/> <xsd:element name="prstClr" type="CT_PresetColor" minOccurs="1" maxOccurs="1"/> </xsd:choice> </xsd:group> <xsd:complexType name="CT_Color"> <xsd:sequence> <xsd:group ref="EG_ColorChoice"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_ColorMRU"> <xsd:sequence> <xsd:group ref="EG_ColorChoice" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_BlackWhiteMode"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="clr"/> <xsd:enumeration value="auto"/> <xsd:enumeration value="gray"/> <xsd:enumeration value="ltGray"/> <xsd:enumeration value="invGray"/> <xsd:enumeration value="grayWhite"/> <xsd:enumeration value="blackGray"/> <xsd:enumeration value="blackWhite"/> <xsd:enumeration value="black"/> <xsd:enumeration value="white"/> <xsd:enumeration value="hidden"/> </xsd:restriction> </xsd:simpleType> <xsd:attributeGroup name="AG_Blob"> <xsd:attribute ref="r:embed" use="optional" default=""/> <xsd:attribute ref="r:link" use="optional" default=""/> </xsd:attributeGroup> <xsd:complexType name="CT_EmbeddedWAVAudioFile"> <xsd:attribute ref="r:embed" use="required"/> <xsd:attribute name="name" type="xsd:string" use="optional" default=""/> </xsd:complexType> <xsd:complexType name="CT_Hyperlink"> <xsd:sequence> <xsd:element name="snd" type="CT_EmbeddedWAVAudioFile" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute ref="r:id" use="optional"/> <xsd:attribute name="invalidUrl" type="xsd:string" use="optional" default=""/> <xsd:attribute name="action" type="xsd:string" use="optional" default=""/> <xsd:attribute name="tgtFrame" type="xsd:string" use="optional" default=""/> <xsd:attribute name="tooltip" type="xsd:string" use="optional" default=""/> <xsd:attribute name="history" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="highlightClick" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="endSnd" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:simpleType name="ST_DrawingElementId"> <xsd:restriction base="xsd:unsignedInt"/> </xsd:simpleType> <xsd:attributeGroup name="AG_Locking"> <xsd:attribute name="noGrp" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="noSelect" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="noRot" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="noChangeAspect" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="noMove" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="noResize" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="noEditPoints" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="noAdjustHandles" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="noChangeArrowheads" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="noChangeShapeType" type="xsd:boolean" use="optional" default="false"/> </xsd:attributeGroup> <xsd:complexType name="CT_ConnectorLocking"> <xsd:sequence> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attributeGroup ref="AG_Locking"/> </xsd:complexType> <xsd:complexType name="CT_ShapeLocking"> <xsd:sequence> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attributeGroup ref="AG_Locking"/> <xsd:attribute name="noTextEdit" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_PictureLocking"> <xsd:sequence> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attributeGroup ref="AG_Locking"/> <xsd:attribute name="noCrop" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_GroupLocking"> <xsd:sequence> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="noGrp" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="noUngrp" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="noSelect" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="noRot" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="noChangeAspect" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="noMove" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="noResize" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_GraphicalObjectFrameLocking"> <xsd:sequence> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="noGrp" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="noDrilldown" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="noSelect" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="noChangeAspect" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="noMove" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="noResize" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_ContentPartLocking"> <xsd:sequence> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attributeGroup ref="AG_Locking"/> </xsd:complexType> <xsd:complexType name="CT_NonVisualDrawingProps"> <xsd:sequence> <xsd:element name="hlinkClick" type="CT_Hyperlink" minOccurs="0" maxOccurs="1"/> <xsd:element name="hlinkHover" type="CT_Hyperlink" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="id" type="ST_DrawingElementId" use="required"/> <xsd:attribute name="name" type="xsd:string" use="required"/> <xsd:attribute name="descr" type="xsd:string" use="optional" default=""/> <xsd:attribute name="hidden" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="title" type="xsd:string" use="optional" default=""/> </xsd:complexType> <xsd:complexType name="CT_NonVisualDrawingShapeProps"> <xsd:sequence> <xsd:element name="spLocks" type="CT_ShapeLocking" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="txBox" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_NonVisualConnectorProperties"> <xsd:sequence> <xsd:element name="cxnSpLocks" type="CT_ConnectorLocking" minOccurs="0" maxOccurs="1"/> <xsd:element name="stCxn" type="CT_Connection" minOccurs="0" maxOccurs="1"/> <xsd:element name="endCxn" type="CT_Connection" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_NonVisualPictureProperties"> <xsd:sequence> <xsd:element name="picLocks" type="CT_PictureLocking" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="preferRelativeResize" type="xsd:boolean" use="optional" default="true"/> </xsd:complexType> <xsd:complexType name="CT_NonVisualGroupDrawingShapeProps"> <xsd:sequence> <xsd:element name="grpSpLocks" type="CT_GroupLocking" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_NonVisualGraphicFrameProperties"> <xsd:sequence> <xsd:element name="graphicFrameLocks" type="CT_GraphicalObjectFrameLocking" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_NonVisualContentPartProperties"> <xsd:sequence> <xsd:element name="cpLocks" type="CT_ContentPartLocking" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="isComment" type="xsd:boolean" use="optional" default="true"/> </xsd:complexType> <xsd:complexType name="CT_GraphicalObjectData"> <xsd:sequence> <xsd:any minOccurs="0" maxOccurs="unbounded" processContents="strict"/> </xsd:sequence> <xsd:attribute name="uri" type="xsd:token" use="required"/> </xsd:complexType> <xsd:complexType name="CT_GraphicalObject"> <xsd:sequence> <xsd:element name="graphicData" type="CT_GraphicalObjectData"/> </xsd:sequence> </xsd:complexType> <xsd:element name="graphic" type="CT_GraphicalObject"/> <xsd:simpleType name="ST_ChartBuildStep"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="category"/> <xsd:enumeration value="ptInCategory"/> <xsd:enumeration value="series"/> <xsd:enumeration value="ptInSeries"/> <xsd:enumeration value="allPts"/> <xsd:enumeration value="gridLegend"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_DgmBuildStep"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="sp"/> <xsd:enumeration value="bg"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_AnimationDgmElement"> <xsd:attribute name="id" type="s:ST_Guid" use="optional" default="{00000000-0000-0000-0000-000000000000}"/> <xsd:attribute name="bldStep" type="ST_DgmBuildStep" use="optional" default="sp"/> </xsd:complexType> <xsd:complexType name="CT_AnimationChartElement"> <xsd:attribute name="seriesIdx" type="xsd:int" use="optional" default="-1"/> <xsd:attribute name="categoryIdx" type="xsd:int" use="optional" default="-1"/> <xsd:attribute name="bldStep" type="ST_ChartBuildStep" use="required"/> </xsd:complexType> <xsd:complexType name="CT_AnimationElementChoice"> <xsd:choice minOccurs="1" maxOccurs="1"> <xsd:element name="dgm" type="CT_AnimationDgmElement"/> <xsd:element name="chart" type="CT_AnimationChartElement"/> </xsd:choice> </xsd:complexType> <xsd:simpleType name="ST_AnimationBuildType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="allAtOnce"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_AnimationDgmOnlyBuildType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="one"/> <xsd:enumeration value="lvlOne"/> <xsd:enumeration value="lvlAtOnce"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_AnimationDgmBuildType"> <xsd:union memberTypes="ST_AnimationBuildType ST_AnimationDgmOnlyBuildType"/> </xsd:simpleType> <xsd:complexType name="CT_AnimationDgmBuildProperties"> <xsd:attribute name="bld" type="ST_AnimationDgmBuildType" use="optional" default="allAtOnce"/> <xsd:attribute name="rev" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:simpleType name="ST_AnimationChartOnlyBuildType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="series"/> <xsd:enumeration value="category"/> <xsd:enumeration value="seriesEl"/> <xsd:enumeration value="categoryEl"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_AnimationChartBuildType"> <xsd:union memberTypes="ST_AnimationBuildType ST_AnimationChartOnlyBuildType"/> </xsd:simpleType> <xsd:complexType name="CT_AnimationChartBuildProperties"> <xsd:attribute name="bld" type="ST_AnimationChartBuildType" use="optional" default="allAtOnce"/> <xsd:attribute name="animBg" type="xsd:boolean" use="optional" default="true"/> </xsd:complexType> <xsd:complexType name="CT_AnimationGraphicalObjectBuildProperties"> <xsd:choice> <xsd:element name="bldDgm" type="CT_AnimationDgmBuildProperties"/> <xsd:element name="bldChart" type="CT_AnimationChartBuildProperties"/> </xsd:choice> </xsd:complexType> <xsd:complexType name="CT_BackgroundFormatting"> <xsd:sequence> <xsd:group ref="EG_FillProperties" minOccurs="0" maxOccurs="1"/> <xsd:group ref="EG_EffectProperties" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_WholeE2oFormatting"> <xsd:sequence> <xsd:element name="ln" type="CT_LineProperties" minOccurs="0" maxOccurs="1"/> <xsd:group ref="EG_EffectProperties" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_GvmlUseShapeRectangle"/> <xsd:complexType name="CT_GvmlTextShape"> <xsd:sequence> <xsd:element name="txBody" type="CT_TextBody" minOccurs="1" maxOccurs="1"/> <xsd:choice> <xsd:element name="useSpRect" type="CT_GvmlUseShapeRectangle" minOccurs="1" maxOccurs="1"/> <xsd:element name="xfrm" type="CT_Transform2D" minOccurs="1" maxOccurs="1"/> </xsd:choice> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_GvmlShapeNonVisual"> <xsd:sequence> <xsd:element name="cNvPr" type="CT_NonVisualDrawingProps" minOccurs="1" maxOccurs="1"/> <xsd:element name="cNvSpPr" type="CT_NonVisualDrawingShapeProps" minOccurs="1" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_GvmlShape"> <xsd:sequence> <xsd:element name="nvSpPr" type="CT_GvmlShapeNonVisual" minOccurs="1" maxOccurs="1"/> <xsd:element name="spPr" type="CT_ShapeProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="txSp" type="CT_GvmlTextShape" minOccurs="0" maxOccurs="1"/> <xsd:element name="style" type="CT_ShapeStyle" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_GvmlConnectorNonVisual"> <xsd:sequence> <xsd:element name="cNvPr" type="CT_NonVisualDrawingProps" minOccurs="1" maxOccurs="1"/> <xsd:element name="cNvCxnSpPr" type="CT_NonVisualConnectorProperties" minOccurs="1" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_GvmlConnector"> <xsd:sequence> <xsd:element name="nvCxnSpPr" type="CT_GvmlConnectorNonVisual" minOccurs="1" maxOccurs="1"/> <xsd:element name="spPr" type="CT_ShapeProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="style" type="CT_ShapeStyle" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_GvmlPictureNonVisual"> <xsd:sequence> <xsd:element name="cNvPr" type="CT_NonVisualDrawingProps" minOccurs="1" maxOccurs="1"/> <xsd:element name="cNvPicPr" type="CT_NonVisualPictureProperties" minOccurs="1" maxOccurs="1" /> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_GvmlPicture"> <xsd:sequence> <xsd:element name="nvPicPr" type="CT_GvmlPictureNonVisual" minOccurs="1" maxOccurs="1"/> <xsd:element name="blipFill" type="CT_BlipFillProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="spPr" type="CT_ShapeProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="style" type="CT_ShapeStyle" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_GvmlGraphicFrameNonVisual"> <xsd:sequence> <xsd:element name="cNvPr" type="CT_NonVisualDrawingProps" minOccurs="1" maxOccurs="1"/> <xsd:element name="cNvGraphicFramePr" type="CT_NonVisualGraphicFrameProperties" minOccurs="1" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_GvmlGraphicalObjectFrame"> <xsd:sequence> <xsd:element name="nvGraphicFramePr" type="CT_GvmlGraphicFrameNonVisual" minOccurs="1" maxOccurs="1"/> <xsd:element ref="graphic" minOccurs="1" maxOccurs="1"/> <xsd:element name="xfrm" type="CT_Transform2D" minOccurs="1" maxOccurs="1"/> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_GvmlGroupShapeNonVisual"> <xsd:sequence> <xsd:element name="cNvPr" type="CT_NonVisualDrawingProps" minOccurs="1" maxOccurs="1"/> <xsd:element name="cNvGrpSpPr" type="CT_NonVisualGroupDrawingShapeProps" minOccurs="1" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_GvmlGroupShape"> <xsd:sequence> <xsd:element name="nvGrpSpPr" type="CT_GvmlGroupShapeNonVisual" minOccurs="1" maxOccurs="1"/> <xsd:element name="grpSpPr" type="CT_GroupShapeProperties" minOccurs="1" maxOccurs="1"/> <xsd:choice minOccurs="0" maxOccurs="unbounded"> <xsd:element name="txSp" type="CT_GvmlTextShape"/> <xsd:element name="sp" type="CT_GvmlShape"/> <xsd:element name="cxnSp" type="CT_GvmlConnector"/> <xsd:element name="pic" type="CT_GvmlPicture"/> <xsd:element name="graphicFrame" type="CT_GvmlGraphicalObjectFrame"/> <xsd:element name="grpSp" type="CT_GvmlGroupShape"/> </xsd:choice> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_PresetCameraType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="legacyObliqueTopLeft"/> <xsd:enumeration value="legacyObliqueTop"/> <xsd:enumeration value="legacyObliqueTopRight"/> <xsd:enumeration value="legacyObliqueLeft"/> <xsd:enumeration value="legacyObliqueFront"/> <xsd:enumeration value="legacyObliqueRight"/> <xsd:enumeration value="legacyObliqueBottomLeft"/> <xsd:enumeration value="legacyObliqueBottom"/> <xsd:enumeration value="legacyObliqueBottomRight"/> <xsd:enumeration value="legacyPerspectiveTopLeft"/> <xsd:enumeration value="legacyPerspectiveTop"/> <xsd:enumeration value="legacyPerspectiveTopRight"/> <xsd:enumeration value="legacyPerspectiveLeft"/> <xsd:enumeration value="legacyPerspectiveFront"/> <xsd:enumeration value="legacyPerspectiveRight"/> <xsd:enumeration value="legacyPerspectiveBottomLeft"/> <xsd:enumeration value="legacyPerspectiveBottom"/> <xsd:enumeration value="legacyPerspectiveBottomRight"/> <xsd:enumeration value="orthographicFront"/> <xsd:enumeration value="isometricTopUp"/> <xsd:enumeration value="isometricTopDown"/> <xsd:enumeration value="isometricBottomUp"/> <xsd:enumeration value="isometricBottomDown"/> <xsd:enumeration value="isometricLeftUp"/> <xsd:enumeration value="isometricLeftDown"/> <xsd:enumeration value="isometricRightUp"/> <xsd:enumeration value="isometricRightDown"/> <xsd:enumeration value="isometricOffAxis1Left"/> <xsd:enumeration value="isometricOffAxis1Right"/> <xsd:enumeration value="isometricOffAxis1Top"/> <xsd:enumeration value="isometricOffAxis2Left"/> <xsd:enumeration value="isometricOffAxis2Right"/> <xsd:enumeration value="isometricOffAxis2Top"/> <xsd:enumeration value="isometricOffAxis3Left"/> <xsd:enumeration value="isometricOffAxis3Right"/> <xsd:enumeration value="isometricOffAxis3Bottom"/> <xsd:enumeration value="isometricOffAxis4Left"/> <xsd:enumeration value="isometricOffAxis4Right"/> <xsd:enumeration value="isometricOffAxis4Bottom"/> <xsd:enumeration value="obliqueTopLeft"/> <xsd:enumeration value="obliqueTop"/> <xsd:enumeration value="obliqueTopRight"/> <xsd:enumeration value="obliqueLeft"/> <xsd:enumeration value="obliqueRight"/> <xsd:enumeration value="obliqueBottomLeft"/> <xsd:enumeration value="obliqueBottom"/> <xsd:enumeration value="obliqueBottomRight"/> <xsd:enumeration value="perspectiveFront"/> <xsd:enumeration value="perspectiveLeft"/> <xsd:enumeration value="perspectiveRight"/> <xsd:enumeration value="perspectiveAbove"/> <xsd:enumeration value="perspectiveBelow"/> <xsd:enumeration value="perspectiveAboveLeftFacing"/> <xsd:enumeration value="perspectiveAboveRightFacing"/> <xsd:enumeration value="perspectiveContrastingLeftFacing"/> <xsd:enumeration value="perspectiveContrastingRightFacing"/> <xsd:enumeration value="perspectiveHeroicLeftFacing"/> <xsd:enumeration value="perspectiveHeroicRightFacing"/> <xsd:enumeration value="perspectiveHeroicExtremeLeftFacing"/> <xsd:enumeration value="perspectiveHeroicExtremeRightFacing"/> <xsd:enumeration value="perspectiveRelaxed"/> <xsd:enumeration value="perspectiveRelaxedModerately"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_FOVAngle"> <xsd:restriction base="ST_Angle"> <xsd:minInclusive value="0"/> <xsd:maxInclusive value="10800000"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Camera"> <xsd:sequence> <xsd:element name="rot" type="CT_SphereCoords" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="prst" type="ST_PresetCameraType" use="required"/> <xsd:attribute name="fov" type="ST_FOVAngle" use="optional"/> <xsd:attribute name="zoom" type="ST_PositivePercentage" use="optional" default="100%"/> </xsd:complexType> <xsd:simpleType name="ST_LightRigDirection"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="tl"/> <xsd:enumeration value="t"/> <xsd:enumeration value="tr"/> <xsd:enumeration value="l"/> <xsd:enumeration value="r"/> <xsd:enumeration value="bl"/> <xsd:enumeration value="b"/> <xsd:enumeration value="br"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_LightRigType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="legacyFlat1"/> <xsd:enumeration value="legacyFlat2"/> <xsd:enumeration value="legacyFlat3"/> <xsd:enumeration value="legacyFlat4"/> <xsd:enumeration value="legacyNormal1"/> <xsd:enumeration value="legacyNormal2"/> <xsd:enumeration value="legacyNormal3"/> <xsd:enumeration value="legacyNormal4"/> <xsd:enumeration value="legacyHarsh1"/> <xsd:enumeration value="legacyHarsh2"/> <xsd:enumeration value="legacyHarsh3"/> <xsd:enumeration value="legacyHarsh4"/> <xsd:enumeration value="threePt"/> <xsd:enumeration value="balanced"/> <xsd:enumeration value="soft"/> <xsd:enumeration value="harsh"/> <xsd:enumeration value="flood"/> <xsd:enumeration value="contrasting"/> <xsd:enumeration value="morning"/> <xsd:enumeration value="sunrise"/> <xsd:enumeration value="sunset"/> <xsd:enumeration value="chilly"/> <xsd:enumeration value="freezing"/> <xsd:enumeration value="flat"/> <xsd:enumeration value="twoPt"/> <xsd:enumeration value="glow"/> <xsd:enumeration value="brightRoom"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_LightRig"> <xsd:sequence> <xsd:element name="rot" type="CT_SphereCoords" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="rig" type="ST_LightRigType" use="required"/> <xsd:attribute name="dir" type="ST_LightRigDirection" use="required"/> </xsd:complexType> <xsd:complexType name="CT_Scene3D"> <xsd:sequence> <xsd:element name="camera" type="CT_Camera" minOccurs="1" maxOccurs="1"/> <xsd:element name="lightRig" type="CT_LightRig" minOccurs="1" maxOccurs="1"/> <xsd:element name="backdrop" type="CT_Backdrop" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Backdrop"> <xsd:sequence> <xsd:element name="anchor" type="CT_Point3D" minOccurs="1" maxOccurs="1"/> <xsd:element name="norm" type="CT_Vector3D" minOccurs="1" maxOccurs="1"/> <xsd:element name="up" type="CT_Vector3D" minOccurs="1" maxOccurs="1"/> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_BevelPresetType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="relaxedInset"/> <xsd:enumeration value="circle"/> <xsd:enumeration value="slope"/> <xsd:enumeration value="cross"/> <xsd:enumeration value="angle"/> <xsd:enumeration value="softRound"/> <xsd:enumeration value="convex"/> <xsd:enumeration value="coolSlant"/> <xsd:enumeration value="divot"/> <xsd:enumeration value="riblet"/> <xsd:enumeration value="hardEdge"/> <xsd:enumeration value="artDeco"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Bevel"> <xsd:attribute name="w" type="ST_PositiveCoordinate" use="optional" default="76200"/> <xsd:attribute name="h" type="ST_PositiveCoordinate" use="optional" default="76200"/> <xsd:attribute name="prst" type="ST_BevelPresetType" use="optional" default="circle"/> </xsd:complexType> <xsd:simpleType name="ST_PresetMaterialType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="legacyMatte"/> <xsd:enumeration value="legacyPlastic"/> <xsd:enumeration value="legacyMetal"/> <xsd:enumeration value="legacyWireframe"/> <xsd:enumeration value="matte"/> <xsd:enumeration value="plastic"/> <xsd:enumeration value="metal"/> <xsd:enumeration value="warmMatte"/> <xsd:enumeration value="translucentPowder"/> <xsd:enumeration value="powder"/> <xsd:enumeration value="dkEdge"/> <xsd:enumeration value="softEdge"/> <xsd:enumeration value="clear"/> <xsd:enumeration value="flat"/> <xsd:enumeration value="softmetal"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Shape3D"> <xsd:sequence> <xsd:element name="bevelT" type="CT_Bevel" minOccurs="0" maxOccurs="1"/> <xsd:element name="bevelB" type="CT_Bevel" minOccurs="0" maxOccurs="1"/> <xsd:element name="extrusionClr" type="CT_Color" minOccurs="0" maxOccurs="1"/> <xsd:element name="contourClr" type="CT_Color" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="z" type="ST_Coordinate" use="optional" default="0"/> <xsd:attribute name="extrusionH" type="ST_PositiveCoordinate" use="optional" default="0"/> <xsd:attribute name="contourW" type="ST_PositiveCoordinate" use="optional" default="0"/> <xsd:attribute name="prstMaterial" type="ST_PresetMaterialType" use="optional" default="warmMatte"/> </xsd:complexType> <xsd:complexType name="CT_FlatText"> <xsd:attribute name="z" type="ST_Coordinate" use="optional" default="0"/> </xsd:complexType> <xsd:group name="EG_Text3D"> <xsd:choice> <xsd:element name="sp3d" type="CT_Shape3D" minOccurs="1" maxOccurs="1"/> <xsd:element name="flatTx" type="CT_FlatText" minOccurs="1" maxOccurs="1"/> </xsd:choice> </xsd:group> <xsd:complexType name="CT_AlphaBiLevelEffect"> <xsd:attribute name="thresh" type="ST_PositiveFixedPercentage" use="required"/> </xsd:complexType> <xsd:complexType name="CT_AlphaCeilingEffect"/> <xsd:complexType name="CT_AlphaFloorEffect"/> <xsd:complexType name="CT_AlphaInverseEffect"> <xsd:sequence> <xsd:group ref="EG_ColorChoice" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_AlphaModulateFixedEffect"> <xsd:attribute name="amt" type="ST_PositivePercentage" use="optional" default="100%"/> </xsd:complexType> <xsd:complexType name="CT_AlphaOutsetEffect"> <xsd:attribute name="rad" type="ST_Coordinate" use="optional" default="0"/> </xsd:complexType> <xsd:complexType name="CT_AlphaReplaceEffect"> <xsd:attribute name="a" type="ST_PositiveFixedPercentage" use="required"/> </xsd:complexType> <xsd:complexType name="CT_BiLevelEffect"> <xsd:attribute name="thresh" type="ST_PositiveFixedPercentage" use="required"/> </xsd:complexType> <xsd:complexType name="CT_BlurEffect"> <xsd:attribute name="rad" type="ST_PositiveCoordinate" use="optional" default="0"/> <xsd:attribute name="grow" type="xsd:boolean" use="optional" default="true"/> </xsd:complexType> <xsd:complexType name="CT_ColorChangeEffect"> <xsd:sequence> <xsd:element name="clrFrom" type="CT_Color" minOccurs="1" maxOccurs="1"/> <xsd:element name="clrTo" type="CT_Color" minOccurs="1" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="useA" type="xsd:boolean" use="optional" default="true"/> </xsd:complexType> <xsd:complexType name="CT_ColorReplaceEffect"> <xsd:sequence> <xsd:group ref="EG_ColorChoice" minOccurs="1" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_DuotoneEffect"> <xsd:sequence> <xsd:group ref="EG_ColorChoice" minOccurs="2" maxOccurs="2"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_GlowEffect"> <xsd:sequence> <xsd:group ref="EG_ColorChoice" minOccurs="1" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="rad" type="ST_PositiveCoordinate" use="optional" default="0"/> </xsd:complexType> <xsd:complexType name="CT_GrayscaleEffect"/> <xsd:complexType name="CT_HSLEffect"> <xsd:attribute name="hue" type="ST_PositiveFixedAngle" use="optional" default="0"/> <xsd:attribute name="sat" type="ST_FixedPercentage" use="optional" default="0%"/> <xsd:attribute name="lum" type="ST_FixedPercentage" use="optional" default="0%"/> </xsd:complexType> <xsd:complexType name="CT_InnerShadowEffect"> <xsd:sequence> <xsd:group ref="EG_ColorChoice" minOccurs="1" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="blurRad" type="ST_PositiveCoordinate" use="optional" default="0"/> <xsd:attribute name="dist" type="ST_PositiveCoordinate" use="optional" default="0"/> <xsd:attribute name="dir" type="ST_PositiveFixedAngle" use="optional" default="0"/> </xsd:complexType> <xsd:complexType name="CT_LuminanceEffect"> <xsd:attribute name="bright" type="ST_FixedPercentage" use="optional" default="0%"/> <xsd:attribute name="contrast" type="ST_FixedPercentage" use="optional" default="0%"/> </xsd:complexType> <xsd:complexType name="CT_OuterShadowEffect"> <xsd:sequence> <xsd:group ref="EG_ColorChoice" minOccurs="1" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="blurRad" type="ST_PositiveCoordinate" use="optional" default="0"/> <xsd:attribute name="dist" type="ST_PositiveCoordinate" use="optional" default="0"/> <xsd:attribute name="dir" type="ST_PositiveFixedAngle" use="optional" default="0"/> <xsd:attribute name="sx" type="ST_Percentage" use="optional" default="100%"/> <xsd:attribute name="sy" type="ST_Percentage" use="optional" default="100%"/> <xsd:attribute name="kx" type="ST_FixedAngle" use="optional" default="0"/> <xsd:attribute name="ky" type="ST_FixedAngle" use="optional" default="0"/> <xsd:attribute name="algn" type="ST_RectAlignment" use="optional" default="b"/> <xsd:attribute name="rotWithShape" type="xsd:boolean" use="optional" default="true"/> </xsd:complexType> <xsd:simpleType name="ST_PresetShadowVal"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="shdw1"/> <xsd:enumeration value="shdw2"/> <xsd:enumeration value="shdw3"/> <xsd:enumeration value="shdw4"/> <xsd:enumeration value="shdw5"/> <xsd:enumeration value="shdw6"/> <xsd:enumeration value="shdw7"/> <xsd:enumeration value="shdw8"/> <xsd:enumeration value="shdw9"/> <xsd:enumeration value="shdw10"/> <xsd:enumeration value="shdw11"/> <xsd:enumeration value="shdw12"/> <xsd:enumeration value="shdw13"/> <xsd:enumeration value="shdw14"/> <xsd:enumeration value="shdw15"/> <xsd:enumeration value="shdw16"/> <xsd:enumeration value="shdw17"/> <xsd:enumeration value="shdw18"/> <xsd:enumeration value="shdw19"/> <xsd:enumeration value="shdw20"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_PresetShadowEffect"> <xsd:sequence> <xsd:group ref="EG_ColorChoice" minOccurs="1" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="prst" type="ST_PresetShadowVal" use="required"/> <xsd:attribute name="dist" type="ST_PositiveCoordinate" use="optional" default="0"/> <xsd:attribute name="dir" type="ST_PositiveFixedAngle" use="optional" default="0"/> </xsd:complexType> <xsd:complexType name="CT_ReflectionEffect"> <xsd:attribute name="blurRad" type="ST_PositiveCoordinate" use="optional" default="0"/> <xsd:attribute name="stA" type="ST_PositiveFixedPercentage" use="optional" default="100%"/> <xsd:attribute name="stPos" type="ST_PositiveFixedPercentage" use="optional" default="0%"/> <xsd:attribute name="endA" type="ST_PositiveFixedPercentage" use="optional" default="0%"/> <xsd:attribute name="endPos" type="ST_PositiveFixedPercentage" use="optional" default="100%"/> <xsd:attribute name="dist" type="ST_PositiveCoordinate" use="optional" default="0"/> <xsd:attribute name="dir" type="ST_PositiveFixedAngle" use="optional" default="0"/> <xsd:attribute name="fadeDir" type="ST_PositiveFixedAngle" use="optional" default="5400000"/> <xsd:attribute name="sx" type="ST_Percentage" use="optional" default="100%"/> <xsd:attribute name="sy" type="ST_Percentage" use="optional" default="100%"/> <xsd:attribute name="kx" type="ST_FixedAngle" use="optional" default="0"/> <xsd:attribute name="ky" type="ST_FixedAngle" use="optional" default="0"/> <xsd:attribute name="algn" type="ST_RectAlignment" use="optional" default="b"/> <xsd:attribute name="rotWithShape" type="xsd:boolean" use="optional" default="true"/> </xsd:complexType> <xsd:complexType name="CT_RelativeOffsetEffect"> <xsd:attribute name="tx" type="ST_Percentage" use="optional" default="0%"/> <xsd:attribute name="ty" type="ST_Percentage" use="optional" default="0%"/> </xsd:complexType> <xsd:complexType name="CT_SoftEdgesEffect"> <xsd:attribute name="rad" type="ST_PositiveCoordinate" use="required"/> </xsd:complexType> <xsd:complexType name="CT_TintEffect"> <xsd:attribute name="hue" type="ST_PositiveFixedAngle" use="optional" default="0"/> <xsd:attribute name="amt" type="ST_FixedPercentage" use="optional" default="0%"/> </xsd:complexType> <xsd:complexType name="CT_TransformEffect"> <xsd:attribute name="sx" type="ST_Percentage" use="optional" default="100%"/> <xsd:attribute name="sy" type="ST_Percentage" use="optional" default="100%"/> <xsd:attribute name="kx" type="ST_FixedAngle" use="optional" default="0"/> <xsd:attribute name="ky" type="ST_FixedAngle" use="optional" default="0"/> <xsd:attribute name="tx" type="ST_Coordinate" use="optional" default="0"/> <xsd:attribute name="ty" type="ST_Coordinate" use="optional" default="0"/> </xsd:complexType> <xsd:complexType name="CT_NoFillProperties"/> <xsd:complexType name="CT_SolidColorFillProperties"> <xsd:sequence> <xsd:group ref="EG_ColorChoice" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_LinearShadeProperties"> <xsd:attribute name="ang" type="ST_PositiveFixedAngle" use="optional"/> <xsd:attribute name="scaled" type="xsd:boolean" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_PathShadeType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="shape"/> <xsd:enumeration value="circle"/> <xsd:enumeration value="rect"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_PathShadeProperties"> <xsd:sequence> <xsd:element name="fillToRect" type="CT_RelativeRect" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="path" type="ST_PathShadeType" use="optional"/> </xsd:complexType> <xsd:group name="EG_ShadeProperties"> <xsd:choice> <xsd:element name="lin" type="CT_LinearShadeProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="path" type="CT_PathShadeProperties" minOccurs="1" maxOccurs="1"/> </xsd:choice> </xsd:group> <xsd:simpleType name="ST_TileFlipMode"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="none"/> <xsd:enumeration value="x"/> <xsd:enumeration value="y"/> <xsd:enumeration value="xy"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_GradientStop"> <xsd:sequence> <xsd:group ref="EG_ColorChoice" minOccurs="1" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="pos" type="ST_PositiveFixedPercentage" use="required"/> </xsd:complexType> <xsd:complexType name="CT_GradientStopList"> <xsd:sequence> <xsd:element name="gs" type="CT_GradientStop" minOccurs="2" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_GradientFillProperties"> <xsd:sequence> <xsd:element name="gsLst" type="CT_GradientStopList" minOccurs="0" maxOccurs="1"/> <xsd:group ref="EG_ShadeProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="tileRect" type="CT_RelativeRect" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="flip" type="ST_TileFlipMode" use="optional" default="none"/> <xsd:attribute name="rotWithShape" type="xsd:boolean" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_TileInfoProperties"> <xsd:attribute name="tx" type="ST_Coordinate" use="optional"/> <xsd:attribute name="ty" type="ST_Coordinate" use="optional"/> <xsd:attribute name="sx" type="ST_Percentage" use="optional"/> <xsd:attribute name="sy" type="ST_Percentage" use="optional"/> <xsd:attribute name="flip" type="ST_TileFlipMode" use="optional" default="none"/> <xsd:attribute name="algn" type="ST_RectAlignment" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_StretchInfoProperties"> <xsd:sequence> <xsd:element name="fillRect" type="CT_RelativeRect" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:group name="EG_FillModeProperties"> <xsd:choice> <xsd:element name="tile" type="CT_TileInfoProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="stretch" type="CT_StretchInfoProperties" minOccurs="1" maxOccurs="1"/> </xsd:choice> </xsd:group> <xsd:simpleType name="ST_BlipCompression"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="email"/> <xsd:enumeration value="screen"/> <xsd:enumeration value="print"/> <xsd:enumeration value="hqprint"/> <xsd:enumeration value="none"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Blip"> <xsd:sequence> <xsd:choice minOccurs="0" maxOccurs="unbounded"> <xsd:element name="alphaBiLevel" type="CT_AlphaBiLevelEffect" minOccurs="1" maxOccurs="1"/> <xsd:element name="alphaCeiling" type="CT_AlphaCeilingEffect" minOccurs="1" maxOccurs="1"/> <xsd:element name="alphaFloor" type="CT_AlphaFloorEffect" minOccurs="1" maxOccurs="1"/> <xsd:element name="alphaInv" type="CT_AlphaInverseEffect" minOccurs="1" maxOccurs="1"/> <xsd:element name="alphaMod" type="CT_AlphaModulateEffect" minOccurs="1" maxOccurs="1"/> <xsd:element name="alphaModFix" type="CT_AlphaModulateFixedEffect" minOccurs="1" maxOccurs="1"/> <xsd:element name="alphaRepl" type="CT_AlphaReplaceEffect" minOccurs="1" maxOccurs="1"/> <xsd:element name="biLevel" type="CT_BiLevelEffect" minOccurs="1" maxOccurs="1"/> <xsd:element name="blur" type="CT_BlurEffect" minOccurs="1" maxOccurs="1"/> <xsd:element name="clrChange" type="CT_ColorChangeEffect" minOccurs="1" maxOccurs="1"/> <xsd:element name="clrRepl" type="CT_ColorReplaceEffect" minOccurs="1" maxOccurs="1"/> <xsd:element name="duotone" type="CT_DuotoneEffect" minOccurs="1" maxOccurs="1"/> <xsd:element name="fillOverlay" type="CT_FillOverlayEffect" minOccurs="1" maxOccurs="1"/> <xsd:element name="grayscl" type="CT_GrayscaleEffect" minOccurs="1" maxOccurs="1"/> <xsd:element name="hsl" type="CT_HSLEffect" minOccurs="1" maxOccurs="1"/> <xsd:element name="lum" type="CT_LuminanceEffect" minOccurs="1" maxOccurs="1"/> <xsd:element name="tint" type="CT_TintEffect" minOccurs="1" maxOccurs="1"/> </xsd:choice> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attributeGroup ref="AG_Blob"/> <xsd:attribute name="cstate" type="ST_BlipCompression" use="optional" default="none"/> </xsd:complexType> <xsd:complexType name="CT_BlipFillProperties"> <xsd:sequence> <xsd:element name="blip" type="CT_Blip" minOccurs="0" maxOccurs="1"/> <xsd:element name="srcRect" type="CT_RelativeRect" minOccurs="0" maxOccurs="1"/> <xsd:group ref="EG_FillModeProperties" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="dpi" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="rotWithShape" type="xsd:boolean" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_PresetPatternVal"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="pct5"/> <xsd:enumeration value="pct10"/> <xsd:enumeration value="pct20"/> <xsd:enumeration value="pct25"/> <xsd:enumeration value="pct30"/> <xsd:enumeration value="pct40"/> <xsd:enumeration value="pct50"/> <xsd:enumeration value="pct60"/> <xsd:enumeration value="pct70"/> <xsd:enumeration value="pct75"/> <xsd:enumeration value="pct80"/> <xsd:enumeration value="pct90"/> <xsd:enumeration value="horz"/> <xsd:enumeration value="vert"/> <xsd:enumeration value="ltHorz"/> <xsd:enumeration value="ltVert"/> <xsd:enumeration value="dkHorz"/> <xsd:enumeration value="dkVert"/> <xsd:enumeration value="narHorz"/> <xsd:enumeration value="narVert"/> <xsd:enumeration value="dashHorz"/> <xsd:enumeration value="dashVert"/> <xsd:enumeration value="cross"/> <xsd:enumeration value="dnDiag"/> <xsd:enumeration value="upDiag"/> <xsd:enumeration value="ltDnDiag"/> <xsd:enumeration value="ltUpDiag"/> <xsd:enumeration value="dkDnDiag"/> <xsd:enumeration value="dkUpDiag"/> <xsd:enumeration value="wdDnDiag"/> <xsd:enumeration value="wdUpDiag"/> <xsd:enumeration value="dashDnDiag"/> <xsd:enumeration value="dashUpDiag"/> <xsd:enumeration value="diagCross"/> <xsd:enumeration value="smCheck"/> <xsd:enumeration value="lgCheck"/> <xsd:enumeration value="smGrid"/> <xsd:enumeration value="lgGrid"/> <xsd:enumeration value="dotGrid"/> <xsd:enumeration value="smConfetti"/> <xsd:enumeration value="lgConfetti"/> <xsd:enumeration value="horzBrick"/> <xsd:enumeration value="diagBrick"/> <xsd:enumeration value="solidDmnd"/> <xsd:enumeration value="openDmnd"/> <xsd:enumeration value="dotDmnd"/> <xsd:enumeration value="plaid"/> <xsd:enumeration value="sphere"/> <xsd:enumeration value="weave"/> <xsd:enumeration value="divot"/> <xsd:enumeration value="shingle"/> <xsd:enumeration value="wave"/> <xsd:enumeration value="trellis"/> <xsd:enumeration value="zigZag"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_PatternFillProperties"> <xsd:sequence> <xsd:element name="fgClr" type="CT_Color" minOccurs="0" maxOccurs="1"/> <xsd:element name="bgClr" type="CT_Color" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="prst" type="ST_PresetPatternVal" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_GroupFillProperties"/> <xsd:group name="EG_FillProperties"> <xsd:choice> <xsd:element name="noFill" type="CT_NoFillProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="solidFill" type="CT_SolidColorFillProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="gradFill" type="CT_GradientFillProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="blipFill" type="CT_BlipFillProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="pattFill" type="CT_PatternFillProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="grpFill" type="CT_GroupFillProperties" minOccurs="1" maxOccurs="1"/> </xsd:choice> </xsd:group> <xsd:complexType name="CT_FillProperties"> <xsd:sequence> <xsd:group ref="EG_FillProperties" minOccurs="1" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_FillEffect"> <xsd:sequence> <xsd:group ref="EG_FillProperties" minOccurs="1" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_BlendMode"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="over"/> <xsd:enumeration value="mult"/> <xsd:enumeration value="screen"/> <xsd:enumeration value="darken"/> <xsd:enumeration value="lighten"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_FillOverlayEffect"> <xsd:sequence> <xsd:group ref="EG_FillProperties" minOccurs="1" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="blend" type="ST_BlendMode" use="required"/> </xsd:complexType> <xsd:complexType name="CT_EffectReference"> <xsd:attribute name="ref" type="xsd:token" use="required"/> </xsd:complexType> <xsd:group name="EG_Effect"> <xsd:choice> <xsd:element name="cont" type="CT_EffectContainer" minOccurs="1" maxOccurs="1"/> <xsd:element name="effect" type="CT_EffectReference" minOccurs="1" maxOccurs="1"/> <xsd:element name="alphaBiLevel" type="CT_AlphaBiLevelEffect" minOccurs="1" maxOccurs="1"/> <xsd:element name="alphaCeiling" type="CT_AlphaCeilingEffect" minOccurs="1" maxOccurs="1"/> <xsd:element name="alphaFloor" type="CT_AlphaFloorEffect" minOccurs="1" maxOccurs="1"/> <xsd:element name="alphaInv" type="CT_AlphaInverseEffect" minOccurs="1" maxOccurs="1"/> <xsd:element name="alphaMod" type="CT_AlphaModulateEffect" minOccurs="1" maxOccurs="1"/> <xsd:element name="alphaModFix" type="CT_AlphaModulateFixedEffect" minOccurs="1" maxOccurs="1"/> <xsd:element name="alphaOutset" type="CT_AlphaOutsetEffect" minOccurs="1" maxOccurs="1"/> <xsd:element name="alphaRepl" type="CT_AlphaReplaceEffect" minOccurs="1" maxOccurs="1"/> <xsd:element name="biLevel" type="CT_BiLevelEffect" minOccurs="1" maxOccurs="1"/> <xsd:element name="blend" type="CT_BlendEffect" minOccurs="1" maxOccurs="1"/> <xsd:element name="blur" type="CT_BlurEffect" minOccurs="1" maxOccurs="1"/> <xsd:element name="clrChange" type="CT_ColorChangeEffect" minOccurs="1" maxOccurs="1"/> <xsd:element name="clrRepl" type="CT_ColorReplaceEffect" minOccurs="1" maxOccurs="1"/> <xsd:element name="duotone" type="CT_DuotoneEffect" minOccurs="1" maxOccurs="1"/> <xsd:element name="fill" type="CT_FillEffect" minOccurs="1" maxOccurs="1"/> <xsd:element name="fillOverlay" type="CT_FillOverlayEffect" minOccurs="1" maxOccurs="1"/> <xsd:element name="glow" type="CT_GlowEffect" minOccurs="1" maxOccurs="1"/> <xsd:element name="grayscl" type="CT_GrayscaleEffect" minOccurs="1" maxOccurs="1"/> <xsd:element name="hsl" type="CT_HSLEffect" minOccurs="1" maxOccurs="1"/> <xsd:element name="innerShdw" type="CT_InnerShadowEffect" minOccurs="1" maxOccurs="1"/> <xsd:element name="lum" type="CT_LuminanceEffect" minOccurs="1" maxOccurs="1"/> <xsd:element name="outerShdw" type="CT_OuterShadowEffect" minOccurs="1" maxOccurs="1"/> <xsd:element name="prstShdw" type="CT_PresetShadowEffect" minOccurs="1" maxOccurs="1"/> <xsd:element name="reflection" type="CT_ReflectionEffect" minOccurs="1" maxOccurs="1"/> <xsd:element name="relOff" type="CT_RelativeOffsetEffect" minOccurs="1" maxOccurs="1"/> <xsd:element name="softEdge" type="CT_SoftEdgesEffect" minOccurs="1" maxOccurs="1"/> <xsd:element name="tint" type="CT_TintEffect" minOccurs="1" maxOccurs="1"/> <xsd:element name="xfrm" type="CT_TransformEffect" minOccurs="1" maxOccurs="1"/> </xsd:choice> </xsd:group> <xsd:simpleType name="ST_EffectContainerType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="sib"/> <xsd:enumeration value="tree"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_EffectContainer"> <xsd:group ref="EG_Effect" minOccurs="0" maxOccurs="unbounded"/> <xsd:attribute name="type" type="ST_EffectContainerType" use="optional" default="sib"/> <xsd:attribute name="name" type="xsd:token" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_AlphaModulateEffect"> <xsd:sequence> <xsd:element name="cont" type="CT_EffectContainer" minOccurs="1" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_BlendEffect"> <xsd:sequence> <xsd:element name="cont" type="CT_EffectContainer" minOccurs="1" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="blend" type="ST_BlendMode" use="required"/> </xsd:complexType> <xsd:complexType name="CT_EffectList"> <xsd:sequence> <xsd:element name="blur" type="CT_BlurEffect" minOccurs="0" maxOccurs="1"/> <xsd:element name="fillOverlay" type="CT_FillOverlayEffect" minOccurs="0" maxOccurs="1"/> <xsd:element name="glow" type="CT_GlowEffect" minOccurs="0" maxOccurs="1"/> <xsd:element name="innerShdw" type="CT_InnerShadowEffect" minOccurs="0" maxOccurs="1"/> <xsd:element name="outerShdw" type="CT_OuterShadowEffect" minOccurs="0" maxOccurs="1"/> <xsd:element name="prstShdw" type="CT_PresetShadowEffect" minOccurs="0" maxOccurs="1"/> <xsd:element name="reflection" type="CT_ReflectionEffect" minOccurs="0" maxOccurs="1"/> <xsd:element name="softEdge" type="CT_SoftEdgesEffect" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:group name="EG_EffectProperties"> <xsd:choice> <xsd:element name="effectLst" type="CT_EffectList" minOccurs="1" maxOccurs="1"/> <xsd:element name="effectDag" type="CT_EffectContainer" minOccurs="1" maxOccurs="1"/> </xsd:choice> </xsd:group> <xsd:complexType name="CT_EffectProperties"> <xsd:sequence> <xsd:group ref="EG_EffectProperties" minOccurs="1" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:element name="blip" type="CT_Blip"/> <xsd:simpleType name="ST_ShapeType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="line"/> <xsd:enumeration value="lineInv"/> <xsd:enumeration value="triangle"/> <xsd:enumeration value="rtTriangle"/> <xsd:enumeration value="rect"/> <xsd:enumeration value="diamond"/> <xsd:enumeration value="parallelogram"/> <xsd:enumeration value="trapezoid"/> <xsd:enumeration value="nonIsoscelesTrapezoid"/> <xsd:enumeration value="pentagon"/> <xsd:enumeration value="hexagon"/> <xsd:enumeration value="heptagon"/> <xsd:enumeration value="octagon"/> <xsd:enumeration value="decagon"/> <xsd:enumeration value="dodecagon"/> <xsd:enumeration value="star4"/> <xsd:enumeration value="star5"/> <xsd:enumeration value="star6"/> <xsd:enumeration value="star7"/> <xsd:enumeration value="star8"/> <xsd:enumeration value="star10"/> <xsd:enumeration value="star12"/> <xsd:enumeration value="star16"/> <xsd:enumeration value="star24"/> <xsd:enumeration value="star32"/> <xsd:enumeration value="roundRect"/> <xsd:enumeration value="round1Rect"/> <xsd:enumeration value="round2SameRect"/> <xsd:enumeration value="round2DiagRect"/> <xsd:enumeration value="snipRoundRect"/> <xsd:enumeration value="snip1Rect"/> <xsd:enumeration value="snip2SameRect"/> <xsd:enumeration value="snip2DiagRect"/> <xsd:enumeration value="plaque"/> <xsd:enumeration value="ellipse"/> <xsd:enumeration value="teardrop"/> <xsd:enumeration value="homePlate"/> <xsd:enumeration value="chevron"/> <xsd:enumeration value="pieWedge"/> <xsd:enumeration value="pie"/> <xsd:enumeration value="blockArc"/> <xsd:enumeration value="donut"/> <xsd:enumeration value="noSmoking"/> <xsd:enumeration value="rightArrow"/> <xsd:enumeration value="leftArrow"/> <xsd:enumeration value="upArrow"/> <xsd:enumeration value="downArrow"/> <xsd:enumeration value="stripedRightArrow"/> <xsd:enumeration value="notchedRightArrow"/> <xsd:enumeration value="bentUpArrow"/> <xsd:enumeration value="leftRightArrow"/> <xsd:enumeration value="upDownArrow"/> <xsd:enumeration value="leftUpArrow"/> <xsd:enumeration value="leftRightUpArrow"/> <xsd:enumeration value="quadArrow"/> <xsd:enumeration value="leftArrowCallout"/> <xsd:enumeration value="rightArrowCallout"/> <xsd:enumeration value="upArrowCallout"/> <xsd:enumeration value="downArrowCallout"/> <xsd:enumeration value="leftRightArrowCallout"/> <xsd:enumeration value="upDownArrowCallout"/> <xsd:enumeration value="quadArrowCallout"/> <xsd:enumeration value="bentArrow"/> <xsd:enumeration value="uturnArrow"/> <xsd:enumeration value="circularArrow"/> <xsd:enumeration value="leftCircularArrow"/> <xsd:enumeration value="leftRightCircularArrow"/> <xsd:enumeration value="curvedRightArrow"/> <xsd:enumeration value="curvedLeftArrow"/> <xsd:enumeration value="curvedUpArrow"/> <xsd:enumeration value="curvedDownArrow"/> <xsd:enumeration value="swooshArrow"/> <xsd:enumeration value="cube"/> <xsd:enumeration value="can"/> <xsd:enumeration value="lightningBolt"/> <xsd:enumeration value="heart"/> <xsd:enumeration value="sun"/> <xsd:enumeration value="moon"/> <xsd:enumeration value="smileyFace"/> <xsd:enumeration value="irregularSeal1"/> <xsd:enumeration value="irregularSeal2"/> <xsd:enumeration value="foldedCorner"/> <xsd:enumeration value="bevel"/> <xsd:enumeration value="frame"/> <xsd:enumeration value="halfFrame"/> <xsd:enumeration value="corner"/> <xsd:enumeration value="diagStripe"/> <xsd:enumeration value="chord"/> <xsd:enumeration value="arc"/> <xsd:enumeration value="leftBracket"/> <xsd:enumeration value="rightBracket"/> <xsd:enumeration value="leftBrace"/> <xsd:enumeration value="rightBrace"/> <xsd:enumeration value="bracketPair"/> <xsd:enumeration value="bracePair"/> <xsd:enumeration value="straightConnector1"/> <xsd:enumeration value="bentConnector2"/> <xsd:enumeration value="bentConnector3"/> <xsd:enumeration value="bentConnector4"/> <xsd:enumeration value="bentConnector5"/> <xsd:enumeration value="curvedConnector2"/> <xsd:enumeration value="curvedConnector3"/> <xsd:enumeration value="curvedConnector4"/> <xsd:enumeration value="curvedConnector5"/> <xsd:enumeration value="callout1"/> <xsd:enumeration value="callout2"/> <xsd:enumeration value="callout3"/> <xsd:enumeration value="accentCallout1"/> <xsd:enumeration value="accentCallout2"/> <xsd:enumeration value="accentCallout3"/> <xsd:enumeration value="borderCallout1"/> <xsd:enumeration value="borderCallout2"/> <xsd:enumeration value="borderCallout3"/> <xsd:enumeration value="accentBorderCallout1"/> <xsd:enumeration value="accentBorderCallout2"/> <xsd:enumeration value="accentBorderCallout3"/> <xsd:enumeration value="wedgeRectCallout"/> <xsd:enumeration value="wedgeRoundRectCallout"/> <xsd:enumeration value="wedgeEllipseCallout"/> <xsd:enumeration value="cloudCallout"/> <xsd:enumeration value="cloud"/> <xsd:enumeration value="ribbon"/> <xsd:enumeration value="ribbon2"/> <xsd:enumeration value="ellipseRibbon"/> <xsd:enumeration value="ellipseRibbon2"/> <xsd:enumeration value="leftRightRibbon"/> <xsd:enumeration value="verticalScroll"/> <xsd:enumeration value="horizontalScroll"/> <xsd:enumeration value="wave"/> <xsd:enumeration value="doubleWave"/> <xsd:enumeration value="plus"/> <xsd:enumeration value="flowChartProcess"/> <xsd:enumeration value="flowChartDecision"/> <xsd:enumeration value="flowChartInputOutput"/> <xsd:enumeration value="flowChartPredefinedProcess"/> <xsd:enumeration value="flowChartInternalStorage"/> <xsd:enumeration value="flowChartDocument"/> <xsd:enumeration value="flowChartMultidocument"/> <xsd:enumeration value="flowChartTerminator"/> <xsd:enumeration value="flowChartPreparation"/> <xsd:enumeration value="flowChartManualInput"/> <xsd:enumeration value="flowChartManualOperation"/> <xsd:enumeration value="flowChartConnector"/> <xsd:enumeration value="flowChartPunchedCard"/> <xsd:enumeration value="flowChartPunchedTape"/> <xsd:enumeration value="flowChartSummingJunction"/> <xsd:enumeration value="flowChartOr"/> <xsd:enumeration value="flowChartCollate"/> <xsd:enumeration value="flowChartSort"/> <xsd:enumeration value="flowChartExtract"/> <xsd:enumeration value="flowChartMerge"/> <xsd:enumeration value="flowChartOfflineStorage"/> <xsd:enumeration value="flowChartOnlineStorage"/> <xsd:enumeration value="flowChartMagneticTape"/> <xsd:enumeration value="flowChartMagneticDisk"/> <xsd:enumeration value="flowChartMagneticDrum"/> <xsd:enumeration value="flowChartDisplay"/> <xsd:enumeration value="flowChartDelay"/> <xsd:enumeration value="flowChartAlternateProcess"/> <xsd:enumeration value="flowChartOffpageConnector"/> <xsd:enumeration value="actionButtonBlank"/> <xsd:enumeration value="actionButtonHome"/> <xsd:enumeration value="actionButtonHelp"/> <xsd:enumeration value="actionButtonInformation"/> <xsd:enumeration value="actionButtonForwardNext"/> <xsd:enumeration value="actionButtonBackPrevious"/> <xsd:enumeration value="actionButtonEnd"/> <xsd:enumeration value="actionButtonBeginning"/> <xsd:enumeration value="actionButtonReturn"/> <xsd:enumeration value="actionButtonDocument"/> <xsd:enumeration value="actionButtonSound"/> <xsd:enumeration value="actionButtonMovie"/> <xsd:enumeration value="gear6"/> <xsd:enumeration value="gear9"/> <xsd:enumeration value="funnel"/> <xsd:enumeration value="mathPlus"/> <xsd:enumeration value="mathMinus"/> <xsd:enumeration value="mathMultiply"/> <xsd:enumeration value="mathDivide"/> <xsd:enumeration value="mathEqual"/> <xsd:enumeration value="mathNotEqual"/> <xsd:enumeration value="cornerTabs"/> <xsd:enumeration value="squareTabs"/> <xsd:enumeration value="plaqueTabs"/> <xsd:enumeration value="chartX"/> <xsd:enumeration value="chartStar"/> <xsd:enumeration value="chartPlus"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_TextShapeType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="textNoShape"/> <xsd:enumeration value="textPlain"/> <xsd:enumeration value="textStop"/> <xsd:enumeration value="textTriangle"/> <xsd:enumeration value="textTriangleInverted"/> <xsd:enumeration value="textChevron"/> <xsd:enumeration value="textChevronInverted"/> <xsd:enumeration value="textRingInside"/> <xsd:enumeration value="textRingOutside"/> <xsd:enumeration value="textArchUp"/> <xsd:enumeration value="textArchDown"/> <xsd:enumeration value="textCircle"/> <xsd:enumeration value="textButton"/> <xsd:enumeration value="textArchUpPour"/> <xsd:enumeration value="textArchDownPour"/> <xsd:enumeration value="textCirclePour"/> <xsd:enumeration value="textButtonPour"/> <xsd:enumeration value="textCurveUp"/> <xsd:enumeration value="textCurveDown"/> <xsd:enumeration value="textCanUp"/> <xsd:enumeration value="textCanDown"/> <xsd:enumeration value="textWave1"/> <xsd:enumeration value="textWave2"/> <xsd:enumeration value="textDoubleWave1"/> <xsd:enumeration value="textWave4"/> <xsd:enumeration value="textInflate"/> <xsd:enumeration value="textDeflate"/> <xsd:enumeration value="textInflateBottom"/> <xsd:enumeration value="textDeflateBottom"/> <xsd:enumeration value="textInflateTop"/> <xsd:enumeration value="textDeflateTop"/> <xsd:enumeration value="textDeflateInflate"/> <xsd:enumeration value="textDeflateInflateDeflate"/> <xsd:enumeration value="textFadeRight"/> <xsd:enumeration value="textFadeLeft"/> <xsd:enumeration value="textFadeUp"/> <xsd:enumeration value="textFadeDown"/> <xsd:enumeration value="textSlantUp"/> <xsd:enumeration value="textSlantDown"/> <xsd:enumeration value="textCascadeUp"/> <xsd:enumeration value="textCascadeDown"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_GeomGuideName"> <xsd:restriction base="xsd:token"/> </xsd:simpleType> <xsd:simpleType name="ST_GeomGuideFormula"> <xsd:restriction base="xsd:string"/> </xsd:simpleType> <xsd:complexType name="CT_GeomGuide"> <xsd:attribute name="name" type="ST_GeomGuideName" use="required"/> <xsd:attribute name="fmla" type="ST_GeomGuideFormula" use="required"/> </xsd:complexType> <xsd:complexType name="CT_GeomGuideList"> <xsd:sequence> <xsd:element name="gd" type="CT_GeomGuide" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_AdjCoordinate"> <xsd:union memberTypes="ST_Coordinate ST_GeomGuideName"/> </xsd:simpleType> <xsd:simpleType name="ST_AdjAngle"> <xsd:union memberTypes="ST_Angle ST_GeomGuideName"/> </xsd:simpleType> <xsd:complexType name="CT_AdjPoint2D"> <xsd:attribute name="x" type="ST_AdjCoordinate" use="required"/> <xsd:attribute name="y" type="ST_AdjCoordinate" use="required"/> </xsd:complexType> <xsd:complexType name="CT_GeomRect"> <xsd:attribute name="l" type="ST_AdjCoordinate" use="required"/> <xsd:attribute name="t" type="ST_AdjCoordinate" use="required"/> <xsd:attribute name="r" type="ST_AdjCoordinate" use="required"/> <xsd:attribute name="b" type="ST_AdjCoordinate" use="required"/> </xsd:complexType> <xsd:complexType name="CT_XYAdjustHandle"> <xsd:sequence> <xsd:element name="pos" type="CT_AdjPoint2D" minOccurs="1" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="gdRefX" type="ST_GeomGuideName" use="optional"/> <xsd:attribute name="minX" type="ST_AdjCoordinate" use="optional"/> <xsd:attribute name="maxX" type="ST_AdjCoordinate" use="optional"/> <xsd:attribute name="gdRefY" type="ST_GeomGuideName" use="optional"/> <xsd:attribute name="minY" type="ST_AdjCoordinate" use="optional"/> <xsd:attribute name="maxY" type="ST_AdjCoordinate" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_PolarAdjustHandle"> <xsd:sequence> <xsd:element name="pos" type="CT_AdjPoint2D" minOccurs="1" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="gdRefR" type="ST_GeomGuideName" use="optional"/> <xsd:attribute name="minR" type="ST_AdjCoordinate" use="optional"/> <xsd:attribute name="maxR" type="ST_AdjCoordinate" use="optional"/> <xsd:attribute name="gdRefAng" type="ST_GeomGuideName" use="optional"/> <xsd:attribute name="minAng" type="ST_AdjAngle" use="optional"/> <xsd:attribute name="maxAng" type="ST_AdjAngle" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_ConnectionSite"> <xsd:sequence> <xsd:element name="pos" type="CT_AdjPoint2D" minOccurs="1" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="ang" type="ST_AdjAngle" use="required"/> </xsd:complexType> <xsd:complexType name="CT_AdjustHandleList"> <xsd:choice minOccurs="0" maxOccurs="unbounded"> <xsd:element name="ahXY" type="CT_XYAdjustHandle" minOccurs="1" maxOccurs="1"/> <xsd:element name="ahPolar" type="CT_PolarAdjustHandle" minOccurs="1" maxOccurs="1"/> </xsd:choice> </xsd:complexType> <xsd:complexType name="CT_ConnectionSiteList"> <xsd:sequence> <xsd:element name="cxn" type="CT_ConnectionSite" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Connection"> <xsd:attribute name="id" type="ST_DrawingElementId" use="required"/> <xsd:attribute name="idx" type="xsd:unsignedInt" use="required"/> </xsd:complexType> <xsd:complexType name="CT_Path2DMoveTo"> <xsd:sequence> <xsd:element name="pt" type="CT_AdjPoint2D" minOccurs="1" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Path2DLineTo"> <xsd:sequence> <xsd:element name="pt" type="CT_AdjPoint2D" minOccurs="1" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Path2DArcTo"> <xsd:attribute name="wR" type="ST_AdjCoordinate" use="required"/> <xsd:attribute name="hR" type="ST_AdjCoordinate" use="required"/> <xsd:attribute name="stAng" type="ST_AdjAngle" use="required"/> <xsd:attribute name="swAng" type="ST_AdjAngle" use="required"/> </xsd:complexType> <xsd:complexType name="CT_Path2DQuadBezierTo"> <xsd:sequence> <xsd:element name="pt" type="CT_AdjPoint2D" minOccurs="2" maxOccurs="2"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Path2DCubicBezierTo"> <xsd:sequence> <xsd:element name="pt" type="CT_AdjPoint2D" minOccurs="3" maxOccurs="3"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Path2DClose"/> <xsd:simpleType name="ST_PathFillMode"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="none"/> <xsd:enumeration value="norm"/> <xsd:enumeration value="lighten"/> <xsd:enumeration value="lightenLess"/> <xsd:enumeration value="darken"/> <xsd:enumeration value="darkenLess"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Path2D"> <xsd:choice minOccurs="0" maxOccurs="unbounded"> <xsd:element name="close" type="CT_Path2DClose" minOccurs="1" maxOccurs="1"/> <xsd:element name="moveTo" type="CT_Path2DMoveTo" minOccurs="1" maxOccurs="1"/> <xsd:element name="lnTo" type="CT_Path2DLineTo" minOccurs="1" maxOccurs="1"/> <xsd:element name="arcTo" type="CT_Path2DArcTo" minOccurs="1" maxOccurs="1"/> <xsd:element name="quadBezTo" type="CT_Path2DQuadBezierTo" minOccurs="1" maxOccurs="1"/> <xsd:element name="cubicBezTo" type="CT_Path2DCubicBezierTo" minOccurs="1" maxOccurs="1"/> </xsd:choice> <xsd:attribute name="w" type="ST_PositiveCoordinate" use="optional" default="0"/> <xsd:attribute name="h" type="ST_PositiveCoordinate" use="optional" default="0"/> <xsd:attribute name="fill" type="ST_PathFillMode" use="optional" default="norm"/> <xsd:attribute name="stroke" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="extrusionOk" type="xsd:boolean" use="optional" default="true"/> </xsd:complexType> <xsd:complexType name="CT_Path2DList"> <xsd:sequence> <xsd:element name="path" type="CT_Path2D" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_PresetGeometry2D"> <xsd:sequence> <xsd:element name="avLst" type="CT_GeomGuideList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="prst" type="ST_ShapeType" use="required"/> </xsd:complexType> <xsd:complexType name="CT_PresetTextShape"> <xsd:sequence> <xsd:element name="avLst" type="CT_GeomGuideList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="prst" type="ST_TextShapeType" use="required"/> </xsd:complexType> <xsd:complexType name="CT_CustomGeometry2D"> <xsd:sequence> <xsd:element name="avLst" type="CT_GeomGuideList" minOccurs="0" maxOccurs="1"/> <xsd:element name="gdLst" type="CT_GeomGuideList" minOccurs="0" maxOccurs="1"/> <xsd:element name="ahLst" type="CT_AdjustHandleList" minOccurs="0" maxOccurs="1"/> <xsd:element name="cxnLst" type="CT_ConnectionSiteList" minOccurs="0" maxOccurs="1"/> <xsd:element name="rect" type="CT_GeomRect" minOccurs="0" maxOccurs="1"/> <xsd:element name="pathLst" type="CT_Path2DList" minOccurs="1" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:group name="EG_Geometry"> <xsd:choice> <xsd:element name="custGeom" type="CT_CustomGeometry2D" minOccurs="1" maxOccurs="1"/> <xsd:element name="prstGeom" type="CT_PresetGeometry2D" minOccurs="1" maxOccurs="1"/> </xsd:choice> </xsd:group> <xsd:group name="EG_TextGeometry"> <xsd:choice> <xsd:element name="custGeom" type="CT_CustomGeometry2D" minOccurs="1" maxOccurs="1"/> <xsd:element name="prstTxWarp" type="CT_PresetTextShape" minOccurs="1" maxOccurs="1"/> </xsd:choice> </xsd:group> <xsd:simpleType name="ST_LineEndType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="none"/> <xsd:enumeration value="triangle"/> <xsd:enumeration value="stealth"/> <xsd:enumeration value="diamond"/> <xsd:enumeration value="oval"/> <xsd:enumeration value="arrow"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_LineEndWidth"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="sm"/> <xsd:enumeration value="med"/> <xsd:enumeration value="lg"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_LineEndLength"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="sm"/> <xsd:enumeration value="med"/> <xsd:enumeration value="lg"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_LineEndProperties"> <xsd:attribute name="type" type="ST_LineEndType" use="optional" default="none"/> <xsd:attribute name="w" type="ST_LineEndWidth" use="optional"/> <xsd:attribute name="len" type="ST_LineEndLength" use="optional"/> </xsd:complexType> <xsd:group name="EG_LineFillProperties"> <xsd:choice> <xsd:element name="noFill" type="CT_NoFillProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="solidFill" type="CT_SolidColorFillProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="gradFill" type="CT_GradientFillProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="pattFill" type="CT_PatternFillProperties" minOccurs="1" maxOccurs="1"/> </xsd:choice> </xsd:group> <xsd:complexType name="CT_LineJoinBevel"/> <xsd:complexType name="CT_LineJoinRound"/> <xsd:complexType name="CT_LineJoinMiterProperties"> <xsd:attribute name="lim" type="ST_PositivePercentage" use="optional"/> </xsd:complexType> <xsd:group name="EG_LineJoinProperties"> <xsd:choice> <xsd:element name="round" type="CT_LineJoinRound" minOccurs="1" maxOccurs="1"/> <xsd:element name="bevel" type="CT_LineJoinBevel" minOccurs="1" maxOccurs="1"/> <xsd:element name="miter" type="CT_LineJoinMiterProperties" minOccurs="1" maxOccurs="1"/> </xsd:choice> </xsd:group> <xsd:simpleType name="ST_PresetLineDashVal"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="solid"/> <xsd:enumeration value="dot"/> <xsd:enumeration value="dash"/> <xsd:enumeration value="lgDash"/> <xsd:enumeration value="dashDot"/> <xsd:enumeration value="lgDashDot"/> <xsd:enumeration value="lgDashDotDot"/> <xsd:enumeration value="sysDash"/> <xsd:enumeration value="sysDot"/> <xsd:enumeration value="sysDashDot"/> <xsd:enumeration value="sysDashDotDot"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_PresetLineDashProperties"> <xsd:attribute name="val" type="ST_PresetLineDashVal" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_DashStop"> <xsd:attribute name="d" type="ST_PositivePercentage" use="required"/> <xsd:attribute name="sp" type="ST_PositivePercentage" use="required"/> </xsd:complexType> <xsd:complexType name="CT_DashStopList"> <xsd:sequence> <xsd:element name="ds" type="CT_DashStop" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:group name="EG_LineDashProperties"> <xsd:choice> <xsd:element name="prstDash" type="CT_PresetLineDashProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="custDash" type="CT_DashStopList" minOccurs="1" maxOccurs="1"/> </xsd:choice> </xsd:group> <xsd:simpleType name="ST_LineCap"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="rnd"/> <xsd:enumeration value="sq"/> <xsd:enumeration value="flat"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_LineWidth"> <xsd:restriction base="ST_Coordinate32Unqualified"> <xsd:minInclusive value="0"/> <xsd:maxInclusive value="20116800"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_PenAlignment"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="ctr"/> <xsd:enumeration value="in"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_CompoundLine"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="sng"/> <xsd:enumeration value="dbl"/> <xsd:enumeration value="thickThin"/> <xsd:enumeration value="thinThick"/> <xsd:enumeration value="tri"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_LineProperties"> <xsd:sequence> <xsd:group ref="EG_LineFillProperties" minOccurs="0" maxOccurs="1"/> <xsd:group ref="EG_LineDashProperties" minOccurs="0" maxOccurs="1"/> <xsd:group ref="EG_LineJoinProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="headEnd" type="CT_LineEndProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="tailEnd" type="CT_LineEndProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="w" type="ST_LineWidth" use="optional"/> <xsd:attribute name="cap" type="ST_LineCap" use="optional"/> <xsd:attribute name="cmpd" type="ST_CompoundLine" use="optional"/> <xsd:attribute name="algn" type="ST_PenAlignment" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_ShapeID"> <xsd:restriction base="xsd:token"/> </xsd:simpleType> <xsd:complexType name="CT_ShapeProperties"> <xsd:sequence> <xsd:element name="xfrm" type="CT_Transform2D" minOccurs="0" maxOccurs="1"/> <xsd:group ref="EG_Geometry" minOccurs="0" maxOccurs="1"/> <xsd:group ref="EG_FillProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="ln" type="CT_LineProperties" minOccurs="0" maxOccurs="1"/> <xsd:group ref="EG_EffectProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="scene3d" type="CT_Scene3D" minOccurs="0" maxOccurs="1"/> <xsd:element name="sp3d" type="CT_Shape3D" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="bwMode" type="ST_BlackWhiteMode" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_GroupShapeProperties"> <xsd:sequence> <xsd:element name="xfrm" type="CT_GroupTransform2D" minOccurs="0" maxOccurs="1"/> <xsd:group ref="EG_FillProperties" minOccurs="0" maxOccurs="1"/> <xsd:group ref="EG_EffectProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="scene3d" type="CT_Scene3D" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="bwMode" type="ST_BlackWhiteMode" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_StyleMatrixReference"> <xsd:sequence> <xsd:group ref="EG_ColorChoice" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="idx" type="ST_StyleMatrixColumnIndex" use="required"/> </xsd:complexType> <xsd:complexType name="CT_FontReference"> <xsd:sequence> <xsd:group ref="EG_ColorChoice" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="idx" type="ST_FontCollectionIndex" use="required"/> </xsd:complexType> <xsd:complexType name="CT_ShapeStyle"> <xsd:sequence> <xsd:element name="lnRef" type="CT_StyleMatrixReference" minOccurs="1" maxOccurs="1"/> <xsd:element name="fillRef" type="CT_StyleMatrixReference" minOccurs="1" maxOccurs="1"/> <xsd:element name="effectRef" type="CT_StyleMatrixReference" minOccurs="1" maxOccurs="1"/> <xsd:element name="fontRef" type="CT_FontReference" minOccurs="1" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_DefaultShapeDefinition"> <xsd:sequence> <xsd:element name="spPr" type="CT_ShapeProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="bodyPr" type="CT_TextBodyProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="lstStyle" type="CT_TextListStyle" minOccurs="1" maxOccurs="1"/> <xsd:element name="style" type="CT_ShapeStyle" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_ObjectStyleDefaults"> <xsd:sequence> <xsd:element name="spDef" type="CT_DefaultShapeDefinition" minOccurs="0" maxOccurs="1"/> <xsd:element name="lnDef" type="CT_DefaultShapeDefinition" minOccurs="0" maxOccurs="1"/> <xsd:element name="txDef" type="CT_DefaultShapeDefinition" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_EmptyElement"/> <xsd:complexType name="CT_ColorMapping"> <xsd:sequence> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="bg1" type="ST_ColorSchemeIndex" use="required"/> <xsd:attribute name="tx1" type="ST_ColorSchemeIndex" use="required"/> <xsd:attribute name="bg2" type="ST_ColorSchemeIndex" use="required"/> <xsd:attribute name="tx2" type="ST_ColorSchemeIndex" use="required"/> <xsd:attribute name="accent1" type="ST_ColorSchemeIndex" use="required"/> <xsd:attribute name="accent2" type="ST_ColorSchemeIndex" use="required"/> <xsd:attribute name="accent3" type="ST_ColorSchemeIndex" use="required"/> <xsd:attribute name="accent4" type="ST_ColorSchemeIndex" use="required"/> <xsd:attribute name="accent5" type="ST_ColorSchemeIndex" use="required"/> <xsd:attribute name="accent6" type="ST_ColorSchemeIndex" use="required"/> <xsd:attribute name="hlink" type="ST_ColorSchemeIndex" use="required"/> <xsd:attribute name="folHlink" type="ST_ColorSchemeIndex" use="required"/> </xsd:complexType> <xsd:complexType name="CT_ColorMappingOverride"> <xsd:sequence> <xsd:choice minOccurs="1" maxOccurs="1"> <xsd:element name="masterClrMapping" type="CT_EmptyElement"/> <xsd:element name="overrideClrMapping" type="CT_ColorMapping"/> </xsd:choice> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_ColorSchemeAndMapping"> <xsd:sequence> <xsd:element name="clrScheme" type="CT_ColorScheme" minOccurs="1" maxOccurs="1"/> <xsd:element name="clrMap" type="CT_ColorMapping" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_ColorSchemeList"> <xsd:sequence> <xsd:element name="extraClrScheme" type="CT_ColorSchemeAndMapping" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_OfficeStyleSheet"> <xsd:sequence> <xsd:element name="themeElements" type="CT_BaseStyles" minOccurs="1" maxOccurs="1"/> <xsd:element name="objectDefaults" type="CT_ObjectStyleDefaults" minOccurs="0" maxOccurs="1"/> <xsd:element name="extraClrSchemeLst" type="CT_ColorSchemeList" minOccurs="0" maxOccurs="1"/> <xsd:element name="custClrLst" type="CT_CustomColorList" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="optional" default=""/> </xsd:complexType> <xsd:complexType name="CT_BaseStylesOverride"> <xsd:sequence> <xsd:element name="clrScheme" type="CT_ColorScheme" minOccurs="0" maxOccurs="1"/> <xsd:element name="fontScheme" type="CT_FontScheme" minOccurs="0" maxOccurs="1"/> <xsd:element name="fmtScheme" type="CT_StyleMatrix" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_ClipboardStyleSheet"> <xsd:sequence> <xsd:element name="themeElements" type="CT_BaseStyles" minOccurs="1" maxOccurs="1"/> <xsd:element name="clrMap" type="CT_ColorMapping" minOccurs="1" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:element name="theme" type="CT_OfficeStyleSheet"/> <xsd:element name="themeOverride" type="CT_BaseStylesOverride"/> <xsd:element name="themeManager" type="CT_EmptyElement"/> <xsd:complexType name="CT_TableCellProperties"> <xsd:sequence> <xsd:element name="lnL" type="CT_LineProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="lnR" type="CT_LineProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="lnT" type="CT_LineProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="lnB" type="CT_LineProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="lnTlToBr" type="CT_LineProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="lnBlToTr" type="CT_LineProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="cell3D" type="CT_Cell3D" minOccurs="0" maxOccurs="1"/> <xsd:group ref="EG_FillProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="headers" type="CT_Headers" minOccurs="0"/> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="marL" type="ST_Coordinate32" use="optional" default="91440"/> <xsd:attribute name="marR" type="ST_Coordinate32" use="optional" default="91440"/> <xsd:attribute name="marT" type="ST_Coordinate32" use="optional" default="45720"/> <xsd:attribute name="marB" type="ST_Coordinate32" use="optional" default="45720"/> <xsd:attribute name="vert" type="ST_TextVerticalType" use="optional" default="horz"/> <xsd:attribute name="anchor" type="ST_TextAnchoringType" use="optional" default="t"/> <xsd:attribute name="anchorCtr" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="horzOverflow" type="ST_TextHorzOverflowType" use="optional" default="clip" /> </xsd:complexType> <xsd:complexType name="CT_Headers"> <xsd:sequence minOccurs="0" maxOccurs="unbounded"> <xsd:element name="header" type="xsd:string"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_TableCol"> <xsd:sequence> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="w" type="ST_Coordinate" use="required"/> </xsd:complexType> <xsd:complexType name="CT_TableGrid"> <xsd:sequence> <xsd:element name="gridCol" type="CT_TableCol" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_TableCell"> <xsd:sequence> <xsd:element name="txBody" type="CT_TextBody" minOccurs="0" maxOccurs="1"/> <xsd:element name="tcPr" type="CT_TableCellProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="rowSpan" type="xsd:int" use="optional" default="1"/> <xsd:attribute name="gridSpan" type="xsd:int" use="optional" default="1"/> <xsd:attribute name="hMerge" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="vMerge" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="id" type="xsd:string" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_TableRow"> <xsd:sequence> <xsd:element name="tc" type="CT_TableCell" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="h" type="ST_Coordinate" use="required"/> </xsd:complexType> <xsd:complexType name="CT_TableProperties"> <xsd:sequence> <xsd:group ref="EG_FillProperties" minOccurs="0" maxOccurs="1"/> <xsd:group ref="EG_EffectProperties" minOccurs="0" maxOccurs="1"/> <xsd:choice minOccurs="0" maxOccurs="1"> <xsd:element name="tableStyle" type="CT_TableStyle"/> <xsd:element name="tableStyleId" type="s:ST_Guid"/> </xsd:choice> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="rtl" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="firstRow" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="firstCol" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="lastRow" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="lastCol" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="bandRow" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="bandCol" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_Table"> <xsd:sequence> <xsd:element name="tblPr" type="CT_TableProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="tblGrid" type="CT_TableGrid" minOccurs="1" maxOccurs="1"/> <xsd:element name="tr" type="CT_TableRow" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:element name="tbl" type="CT_Table"/> <xsd:complexType name="CT_Cell3D"> <xsd:sequence> <xsd:element name="bevel" type="CT_Bevel" minOccurs="1" maxOccurs="1"/> <xsd:element name="lightRig" type="CT_LightRig" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="prstMaterial" type="ST_PresetMaterialType" use="optional" default="plastic" /> </xsd:complexType> <xsd:group name="EG_ThemeableFillStyle"> <xsd:choice> <xsd:element name="fill" type="CT_FillProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="fillRef" type="CT_StyleMatrixReference" minOccurs="1" maxOccurs="1"/> </xsd:choice> </xsd:group> <xsd:complexType name="CT_ThemeableLineStyle"> <xsd:choice> <xsd:element name="ln" type="CT_LineProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="lnRef" type="CT_StyleMatrixReference" minOccurs="1" maxOccurs="1"/> </xsd:choice> </xsd:complexType> <xsd:group name="EG_ThemeableEffectStyle"> <xsd:choice> <xsd:element name="effect" type="CT_EffectProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="effectRef" type="CT_StyleMatrixReference" minOccurs="1" maxOccurs="1"/> </xsd:choice> </xsd:group> <xsd:group name="EG_ThemeableFontStyles"> <xsd:choice> <xsd:element name="font" type="CT_FontCollection" minOccurs="1" maxOccurs="1"/> <xsd:element name="fontRef" type="CT_FontReference" minOccurs="1" maxOccurs="1"/> </xsd:choice> </xsd:group> <xsd:simpleType name="ST_OnOffStyleType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="on"/> <xsd:enumeration value="off"/> <xsd:enumeration value="def"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_TableStyleTextStyle"> <xsd:sequence> <xsd:group ref="EG_ThemeableFontStyles" minOccurs="0" maxOccurs="1"/> <xsd:group ref="EG_ColorChoice" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="b" type="ST_OnOffStyleType" use="optional" default="def"/> <xsd:attribute name="i" type="ST_OnOffStyleType" use="optional" default="def"/> </xsd:complexType> <xsd:complexType name="CT_TableCellBorderStyle"> <xsd:sequence> <xsd:element name="left" type="CT_ThemeableLineStyle" minOccurs="0" maxOccurs="1"/> <xsd:element name="right" type="CT_ThemeableLineStyle" minOccurs="0" maxOccurs="1"/> <xsd:element name="top" type="CT_ThemeableLineStyle" minOccurs="0" maxOccurs="1"/> <xsd:element name="bottom" type="CT_ThemeableLineStyle" minOccurs="0" maxOccurs="1"/> <xsd:element name="insideH" type="CT_ThemeableLineStyle" minOccurs="0" maxOccurs="1"/> <xsd:element name="insideV" type="CT_ThemeableLineStyle" minOccurs="0" maxOccurs="1"/> <xsd:element name="tl2br" type="CT_ThemeableLineStyle" minOccurs="0" maxOccurs="1"/> <xsd:element name="tr2bl" type="CT_ThemeableLineStyle" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_TableBackgroundStyle"> <xsd:sequence> <xsd:group ref="EG_ThemeableFillStyle" minOccurs="0" maxOccurs="1"/> <xsd:group ref="EG_ThemeableEffectStyle" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_TableStyleCellStyle"> <xsd:sequence> <xsd:element name="tcBdr" type="CT_TableCellBorderStyle" minOccurs="0" maxOccurs="1"/> <xsd:group ref="EG_ThemeableFillStyle" minOccurs="0" maxOccurs="1"/> <xsd:element name="cell3D" type="CT_Cell3D" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_TablePartStyle"> <xsd:sequence> <xsd:element name="tcTxStyle" type="CT_TableStyleTextStyle" minOccurs="0" maxOccurs="1"/> <xsd:element name="tcStyle" type="CT_TableStyleCellStyle" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_TableStyle"> <xsd:sequence> <xsd:element name="tblBg" type="CT_TableBackgroundStyle" minOccurs="0" maxOccurs="1"/> <xsd:element name="wholeTbl" type="CT_TablePartStyle" minOccurs="0" maxOccurs="1"/> <xsd:element name="band1H" type="CT_TablePartStyle" minOccurs="0" maxOccurs="1"/> <xsd:element name="band2H" type="CT_TablePartStyle" minOccurs="0" maxOccurs="1"/> <xsd:element name="band1V" type="CT_TablePartStyle" minOccurs="0" maxOccurs="1"/> <xsd:element name="band2V" type="CT_TablePartStyle" minOccurs="0" maxOccurs="1"/> <xsd:element name="lastCol" type="CT_TablePartStyle" minOccurs="0" maxOccurs="1"/> <xsd:element name="firstCol" type="CT_TablePartStyle" minOccurs="0" maxOccurs="1"/> <xsd:element name="lastRow" type="CT_TablePartStyle" minOccurs="0" maxOccurs="1"/> <xsd:element name="seCell" type="CT_TablePartStyle" minOccurs="0" maxOccurs="1"/> <xsd:element name="swCell" type="CT_TablePartStyle" minOccurs="0" maxOccurs="1"/> <xsd:element name="firstRow" type="CT_TablePartStyle" minOccurs="0" maxOccurs="1"/> <xsd:element name="neCell" type="CT_TablePartStyle" minOccurs="0" maxOccurs="1"/> <xsd:element name="nwCell" type="CT_TablePartStyle" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="styleId" type="s:ST_Guid" use="required"/> <xsd:attribute name="styleName" type="xsd:string" use="required"/> </xsd:complexType> <xsd:complexType name="CT_TableStyleList"> <xsd:sequence> <xsd:element name="tblStyle" type="CT_TableStyle" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="def" type="s:ST_Guid" use="required"/> </xsd:complexType> <xsd:element name="tblStyleLst" type="CT_TableStyleList"/> <xsd:complexType name="CT_TextParagraph"> <xsd:sequence> <xsd:element name="pPr" type="CT_TextParagraphProperties" minOccurs="0" maxOccurs="1"/> <xsd:group ref="EG_TextRun" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="endParaRPr" type="CT_TextCharacterProperties" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_TextAnchoringType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="t"/> <xsd:enumeration value="ctr"/> <xsd:enumeration value="b"/> <xsd:enumeration value="just"/> <xsd:enumeration value="dist"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_TextVertOverflowType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="overflow"/> <xsd:enumeration value="ellipsis"/> <xsd:enumeration value="clip"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_TextHorzOverflowType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="overflow"/> <xsd:enumeration value="clip"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_TextVerticalType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="horz"/> <xsd:enumeration value="vert"/> <xsd:enumeration value="vert270"/> <xsd:enumeration value="wordArtVert"/> <xsd:enumeration value="eaVert"/> <xsd:enumeration value="mongolianVert"/> <xsd:enumeration value="wordArtVertRtl"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_TextWrappingType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="none"/> <xsd:enumeration value="square"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_TextColumnCount"> <xsd:restriction base="xsd:int"> <xsd:minInclusive value="1"/> <xsd:maxInclusive value="16"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_TextListStyle"> <xsd:sequence> <xsd:element name="defPPr" type="CT_TextParagraphProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="lvl1pPr" type="CT_TextParagraphProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="lvl2pPr" type="CT_TextParagraphProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="lvl3pPr" type="CT_TextParagraphProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="lvl4pPr" type="CT_TextParagraphProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="lvl5pPr" type="CT_TextParagraphProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="lvl6pPr" type="CT_TextParagraphProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="lvl7pPr" type="CT_TextParagraphProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="lvl8pPr" type="CT_TextParagraphProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="lvl9pPr" type="CT_TextParagraphProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_TextFontScalePercentOrPercentString"> <xsd:union memberTypes="ST_TextFontScalePercent s:ST_Percentage"/> </xsd:simpleType> <xsd:simpleType name="ST_TextFontScalePercent"> <xsd:restriction base="ST_PercentageDecimal"> <xsd:minInclusive value="1000"/> <xsd:maxInclusive value="100000"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_TextNormalAutofit"> <xsd:attribute name="fontScale" type="ST_TextFontScalePercentOrPercentString" use="optional" default="100%"/> <xsd:attribute name="lnSpcReduction" type="ST_TextSpacingPercentOrPercentString" use="optional" default="0%"/> </xsd:complexType> <xsd:complexType name="CT_TextShapeAutofit"/> <xsd:complexType name="CT_TextNoAutofit"/> <xsd:group name="EG_TextAutofit"> <xsd:choice> <xsd:element name="noAutofit" type="CT_TextNoAutofit"/> <xsd:element name="normAutofit" type="CT_TextNormalAutofit"/> <xsd:element name="spAutoFit" type="CT_TextShapeAutofit"/> </xsd:choice> </xsd:group> <xsd:complexType name="CT_TextBodyProperties"> <xsd:sequence> <xsd:element name="prstTxWarp" type="CT_PresetTextShape" minOccurs="0" maxOccurs="1"/> <xsd:group ref="EG_TextAutofit" minOccurs="0" maxOccurs="1"/> <xsd:element name="scene3d" type="CT_Scene3D" minOccurs="0" maxOccurs="1"/> <xsd:group ref="EG_Text3D" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="rot" type="ST_Angle" use="optional"/> <xsd:attribute name="spcFirstLastPara" type="xsd:boolean" use="optional"/> <xsd:attribute name="vertOverflow" type="ST_TextVertOverflowType" use="optional"/> <xsd:attribute name="horzOverflow" type="ST_TextHorzOverflowType" use="optional"/> <xsd:attribute name="vert" type="ST_TextVerticalType" use="optional"/> <xsd:attribute name="wrap" type="ST_TextWrappingType" use="optional"/> <xsd:attribute name="lIns" type="ST_Coordinate32" use="optional"/> <xsd:attribute name="tIns" type="ST_Coordinate32" use="optional"/> <xsd:attribute name="rIns" type="ST_Coordinate32" use="optional"/> <xsd:attribute name="bIns" type="ST_Coordinate32" use="optional"/> <xsd:attribute name="numCol" type="ST_TextColumnCount" use="optional"/> <xsd:attribute name="spcCol" type="ST_PositiveCoordinate32" use="optional"/> <xsd:attribute name="rtlCol" type="xsd:boolean" use="optional"/> <xsd:attribute name="fromWordArt" type="xsd:boolean" use="optional"/> <xsd:attribute name="anchor" type="ST_TextAnchoringType" use="optional"/> <xsd:attribute name="anchorCtr" type="xsd:boolean" use="optional"/> <xsd:attribute name="forceAA" type="xsd:boolean" use="optional"/> <xsd:attribute name="upright" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="compatLnSpc" type="xsd:boolean" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_TextBody"> <xsd:sequence> <xsd:element name="bodyPr" type="CT_TextBodyProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="lstStyle" type="CT_TextListStyle" minOccurs="0" maxOccurs="1"/> <xsd:element name="p" type="CT_TextParagraph" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_TextBulletStartAtNum"> <xsd:restriction base="xsd:int"> <xsd:minInclusive value="1"/> <xsd:maxInclusive value="32767"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_TextAutonumberScheme"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="alphaLcParenBoth"/> <xsd:enumeration value="alphaUcParenBoth"/> <xsd:enumeration value="alphaLcParenR"/> <xsd:enumeration value="alphaUcParenR"/> <xsd:enumeration value="alphaLcPeriod"/> <xsd:enumeration value="alphaUcPeriod"/> <xsd:enumeration value="arabicParenBoth"/> <xsd:enumeration value="arabicParenR"/> <xsd:enumeration value="arabicPeriod"/> <xsd:enumeration value="arabicPlain"/> <xsd:enumeration value="romanLcParenBoth"/> <xsd:enumeration value="romanUcParenBoth"/> <xsd:enumeration value="romanLcParenR"/> <xsd:enumeration value="romanUcParenR"/> <xsd:enumeration value="romanLcPeriod"/> <xsd:enumeration value="romanUcPeriod"/> <xsd:enumeration value="circleNumDbPlain"/> <xsd:enumeration value="circleNumWdBlackPlain"/> <xsd:enumeration value="circleNumWdWhitePlain"/> <xsd:enumeration value="arabicDbPeriod"/> <xsd:enumeration value="arabicDbPlain"/> <xsd:enumeration value="ea1ChsPeriod"/> <xsd:enumeration value="ea1ChsPlain"/> <xsd:enumeration value="ea1ChtPeriod"/> <xsd:enumeration value="ea1ChtPlain"/> <xsd:enumeration value="ea1JpnChsDbPeriod"/> <xsd:enumeration value="ea1JpnKorPlain"/> <xsd:enumeration value="ea1JpnKorPeriod"/> <xsd:enumeration value="arabic1Minus"/> <xsd:enumeration value="arabic2Minus"/> <xsd:enumeration value="hebrew2Minus"/> <xsd:enumeration value="thaiAlphaPeriod"/> <xsd:enumeration value="thaiAlphaParenR"/> <xsd:enumeration value="thaiAlphaParenBoth"/> <xsd:enumeration value="thaiNumPeriod"/> <xsd:enumeration value="thaiNumParenR"/> <xsd:enumeration value="thaiNumParenBoth"/> <xsd:enumeration value="hindiAlphaPeriod"/> <xsd:enumeration value="hindiNumPeriod"/> <xsd:enumeration value="hindiNumParenR"/> <xsd:enumeration value="hindiAlpha1Period"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_TextBulletColorFollowText"/> <xsd:group name="EG_TextBulletColor"> <xsd:choice> <xsd:element name="buClrTx" type="CT_TextBulletColorFollowText" minOccurs="1" maxOccurs="1"/> <xsd:element name="buClr" type="CT_Color" minOccurs="1" maxOccurs="1"/> </xsd:choice> </xsd:group> <xsd:simpleType name="ST_TextBulletSize"> <xsd:union memberTypes="ST_TextBulletSizePercent ST_TextBulletSizeDecimal"/> </xsd:simpleType> <xsd:simpleType name="ST_TextBulletSizePercent"> <xsd:restriction base="xsd:string"> <xsd:pattern value="0*((2[5-9])|([3-9][0-9])|([1-3][0-9][0-9])|400)%"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_TextBulletSizeDecimal"> <xsd:restriction base="ST_PercentageDecimal"> <xsd:minInclusive value="25000"/> <xsd:maxInclusive value="400000"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_TextBulletSizeFollowText"/> <xsd:complexType name="CT_TextBulletSizePercent"> <xsd:attribute name="val" type="ST_TextBulletSizePercent" use="required"/> </xsd:complexType> <xsd:complexType name="CT_TextBulletSizePoint"> <xsd:attribute name="val" type="ST_TextFontSize" use="required"/> </xsd:complexType> <xsd:group name="EG_TextBulletSize"> <xsd:choice> <xsd:element name="buSzTx" type="CT_TextBulletSizeFollowText"/> <xsd:element name="buSzPct" type="CT_TextBulletSizePercent"/> <xsd:element name="buSzPts" type="CT_TextBulletSizePoint"/> </xsd:choice> </xsd:group> <xsd:complexType name="CT_TextBulletTypefaceFollowText"/> <xsd:group name="EG_TextBulletTypeface"> <xsd:choice> <xsd:element name="buFontTx" type="CT_TextBulletTypefaceFollowText"/> <xsd:element name="buFont" type="CT_TextFont"/> </xsd:choice> </xsd:group> <xsd:complexType name="CT_TextAutonumberBullet"> <xsd:attribute name="type" type="ST_TextAutonumberScheme" use="required"/> <xsd:attribute name="startAt" type="ST_TextBulletStartAtNum" use="optional" default="1"/> </xsd:complexType> <xsd:complexType name="CT_TextCharBullet"> <xsd:attribute name="char" type="xsd:string" use="required"/> </xsd:complexType> <xsd:complexType name="CT_TextBlipBullet"> <xsd:sequence> <xsd:element name="blip" type="CT_Blip" minOccurs="1" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_TextNoBullet"/> <xsd:group name="EG_TextBullet"> <xsd:choice> <xsd:element name="buNone" type="CT_TextNoBullet"/> <xsd:element name="buAutoNum" type="CT_TextAutonumberBullet"/> <xsd:element name="buChar" type="CT_TextCharBullet"/> <xsd:element name="buBlip" type="CT_TextBlipBullet"/> </xsd:choice> </xsd:group> <xsd:simpleType name="ST_TextPoint"> <xsd:union memberTypes="ST_TextPointUnqualified s:ST_UniversalMeasure"/> </xsd:simpleType> <xsd:simpleType name="ST_TextPointUnqualified"> <xsd:restriction base="xsd:int"> <xsd:minInclusive value="-400000"/> <xsd:maxInclusive value="400000"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_TextNonNegativePoint"> <xsd:restriction base="xsd:int"> <xsd:minInclusive value="0"/> <xsd:maxInclusive value="400000"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_TextFontSize"> <xsd:restriction base="xsd:int"> <xsd:minInclusive value="100"/> <xsd:maxInclusive value="400000"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_TextTypeface"> <xsd:restriction base="xsd:string"/> </xsd:simpleType> <xsd:simpleType name="ST_PitchFamily"> <xsd:restriction base="xsd:byte"> <xsd:enumeration value="00"/> <xsd:enumeration value="01"/> <xsd:enumeration value="02"/> <xsd:enumeration value="16"/> <xsd:enumeration value="17"/> <xsd:enumeration value="18"/> <xsd:enumeration value="32"/> <xsd:enumeration value="33"/> <xsd:enumeration value="34"/> <xsd:enumeration value="48"/> <xsd:enumeration value="49"/> <xsd:enumeration value="50"/> <xsd:enumeration value="64"/> <xsd:enumeration value="65"/> <xsd:enumeration value="66"/> <xsd:enumeration value="80"/> <xsd:enumeration value="81"/> <xsd:enumeration value="82"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_TextFont"> <xsd:attribute name="typeface" type="ST_TextTypeface" use="required"/> <xsd:attribute name="panose" type="s:ST_Panose" use="optional"/> <xsd:attribute name="pitchFamily" type="ST_PitchFamily" use="optional" default="0"/> <xsd:attribute name="charset" type="xsd:byte" use="optional" default="1"/> </xsd:complexType> <xsd:simpleType name="ST_TextUnderlineType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="none"/> <xsd:enumeration value="words"/> <xsd:enumeration value="sng"/> <xsd:enumeration value="dbl"/> <xsd:enumeration value="heavy"/> <xsd:enumeration value="dotted"/> <xsd:enumeration value="dottedHeavy"/> <xsd:enumeration value="dash"/> <xsd:enumeration value="dashHeavy"/> <xsd:enumeration value="dashLong"/> <xsd:enumeration value="dashLongHeavy"/> <xsd:enumeration value="dotDash"/> <xsd:enumeration value="dotDashHeavy"/> <xsd:enumeration value="dotDotDash"/> <xsd:enumeration value="dotDotDashHeavy"/> <xsd:enumeration value="wavy"/> <xsd:enumeration value="wavyHeavy"/> <xsd:enumeration value="wavyDbl"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_TextUnderlineLineFollowText"/> <xsd:complexType name="CT_TextUnderlineFillFollowText"/> <xsd:complexType name="CT_TextUnderlineFillGroupWrapper"> <xsd:group ref="EG_FillProperties" minOccurs="1" maxOccurs="1"/> </xsd:complexType> <xsd:group name="EG_TextUnderlineLine"> <xsd:choice> <xsd:element name="uLnTx" type="CT_TextUnderlineLineFollowText"/> <xsd:element name="uLn" type="CT_LineProperties" minOccurs="0" maxOccurs="1"/> </xsd:choice> </xsd:group> <xsd:group name="EG_TextUnderlineFill"> <xsd:choice> <xsd:element name="uFillTx" type="CT_TextUnderlineFillFollowText"/> <xsd:element name="uFill" type="CT_TextUnderlineFillGroupWrapper"/> </xsd:choice> </xsd:group> <xsd:simpleType name="ST_TextStrikeType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="noStrike"/> <xsd:enumeration value="sngStrike"/> <xsd:enumeration value="dblStrike"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_TextCapsType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="none"/> <xsd:enumeration value="small"/> <xsd:enumeration value="all"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_TextCharacterProperties"> <xsd:sequence> <xsd:element name="ln" type="CT_LineProperties" minOccurs="0" maxOccurs="1"/> <xsd:group ref="EG_FillProperties" minOccurs="0" maxOccurs="1"/> <xsd:group ref="EG_EffectProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="highlight" type="CT_Color" minOccurs="0" maxOccurs="1"/> <xsd:group ref="EG_TextUnderlineLine" minOccurs="0" maxOccurs="1"/> <xsd:group ref="EG_TextUnderlineFill" minOccurs="0" maxOccurs="1"/> <xsd:element name="latin" type="CT_TextFont" minOccurs="0" maxOccurs="1"/> <xsd:element name="ea" type="CT_TextFont" minOccurs="0" maxOccurs="1"/> <xsd:element name="cs" type="CT_TextFont" minOccurs="0" maxOccurs="1"/> <xsd:element name="sym" type="CT_TextFont" minOccurs="0" maxOccurs="1"/> <xsd:element name="hlinkClick" type="CT_Hyperlink" minOccurs="0" maxOccurs="1"/> <xsd:element name="hlinkMouseOver" type="CT_Hyperlink" minOccurs="0" maxOccurs="1"/> <xsd:element name="rtl" type="CT_Boolean" minOccurs="0"/> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="kumimoji" type="xsd:boolean" use="optional"/> <xsd:attribute name="lang" type="s:ST_Lang" use="optional"/> <xsd:attribute name="altLang" type="s:ST_Lang" use="optional"/> <xsd:attribute name="sz" type="ST_TextFontSize" use="optional"/> <xsd:attribute name="b" type="xsd:boolean" use="optional"/> <xsd:attribute name="i" type="xsd:boolean" use="optional"/> <xsd:attribute name="u" type="ST_TextUnderlineType" use="optional"/> <xsd:attribute name="strike" type="ST_TextStrikeType" use="optional"/> <xsd:attribute name="kern" type="ST_TextNonNegativePoint" use="optional"/> <xsd:attribute name="cap" type="ST_TextCapsType" use="optional" default="none"/> <xsd:attribute name="spc" type="ST_TextPoint" use="optional"/> <xsd:attribute name="normalizeH" type="xsd:boolean" use="optional"/> <xsd:attribute name="baseline" type="ST_Percentage" use="optional"/> <xsd:attribute name="noProof" type="xsd:boolean" use="optional"/> <xsd:attribute name="dirty" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="err" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="smtClean" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="smtId" type="xsd:unsignedInt" use="optional" default="0"/> <xsd:attribute name="bmk" type="xsd:string" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_Boolean"> <xsd:attribute name="val" type="s:ST_OnOff" default="0"/> </xsd:complexType> <xsd:simpleType name="ST_TextSpacingPoint"> <xsd:restriction base="xsd:int"> <xsd:minInclusive value="0"/> <xsd:maxInclusive value="158400"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_TextSpacingPercentOrPercentString"> <xsd:union memberTypes="ST_TextSpacingPercent s:ST_Percentage"/> </xsd:simpleType> <xsd:simpleType name="ST_TextSpacingPercent"> <xsd:restriction base="ST_PercentageDecimal"> <xsd:minInclusive value="0"/> <xsd:maxInclusive value="13200000"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_TextSpacingPercent"> <xsd:attribute name="val" type="ST_TextSpacingPercentOrPercentString" use="required"/> </xsd:complexType> <xsd:complexType name="CT_TextSpacingPoint"> <xsd:attribute name="val" type="ST_TextSpacingPoint" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_TextMargin"> <xsd:restriction base="ST_Coordinate32Unqualified"> <xsd:minInclusive value="0"/> <xsd:maxInclusive value="51206400"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_TextIndent"> <xsd:restriction base="ST_Coordinate32Unqualified"> <xsd:minInclusive value="-51206400"/> <xsd:maxInclusive value="51206400"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_TextTabAlignType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="l"/> <xsd:enumeration value="ctr"/> <xsd:enumeration value="r"/> <xsd:enumeration value="dec"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_TextTabStop"> <xsd:attribute name="pos" type="ST_Coordinate32" use="optional"/> <xsd:attribute name="algn" type="ST_TextTabAlignType" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_TextTabStopList"> <xsd:sequence> <xsd:element name="tab" type="CT_TextTabStop" minOccurs="0" maxOccurs="32"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_TextLineBreak"> <xsd:sequence> <xsd:element name="rPr" type="CT_TextCharacterProperties" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_TextSpacing"> <xsd:choice> <xsd:element name="spcPct" type="CT_TextSpacingPercent"/> <xsd:element name="spcPts" type="CT_TextSpacingPoint"/> </xsd:choice> </xsd:complexType> <xsd:simpleType name="ST_TextAlignType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="l"/> <xsd:enumeration value="ctr"/> <xsd:enumeration value="r"/> <xsd:enumeration value="just"/> <xsd:enumeration value="justLow"/> <xsd:enumeration value="dist"/> <xsd:enumeration value="thaiDist"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_TextFontAlignType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="auto"/> <xsd:enumeration value="t"/> <xsd:enumeration value="ctr"/> <xsd:enumeration value="base"/> <xsd:enumeration value="b"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_TextIndentLevelType"> <xsd:restriction base="xsd:int"> <xsd:minInclusive value="0"/> <xsd:maxInclusive value="8"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_TextParagraphProperties"> <xsd:sequence> <xsd:element name="lnSpc" type="CT_TextSpacing" minOccurs="0" maxOccurs="1"/> <xsd:element name="spcBef" type="CT_TextSpacing" minOccurs="0" maxOccurs="1"/> <xsd:element name="spcAft" type="CT_TextSpacing" minOccurs="0" maxOccurs="1"/> <xsd:group ref="EG_TextBulletColor" minOccurs="0" maxOccurs="1"/> <xsd:group ref="EG_TextBulletSize" minOccurs="0" maxOccurs="1"/> <xsd:group ref="EG_TextBulletTypeface" minOccurs="0" maxOccurs="1"/> <xsd:group ref="EG_TextBullet" minOccurs="0" maxOccurs="1"/> <xsd:element name="tabLst" type="CT_TextTabStopList" minOccurs="0" maxOccurs="1"/> <xsd:element name="defRPr" type="CT_TextCharacterProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="marL" type="ST_TextMargin" use="optional"/> <xsd:attribute name="marR" type="ST_TextMargin" use="optional"/> <xsd:attribute name="lvl" type="ST_TextIndentLevelType" use="optional"/> <xsd:attribute name="indent" type="ST_TextIndent" use="optional"/> <xsd:attribute name="algn" type="ST_TextAlignType" use="optional"/> <xsd:attribute name="defTabSz" type="ST_Coordinate32" use="optional"/> <xsd:attribute name="rtl" type="xsd:boolean" use="optional"/> <xsd:attribute name="eaLnBrk" type="xsd:boolean" use="optional"/> <xsd:attribute name="fontAlgn" type="ST_TextFontAlignType" use="optional"/> <xsd:attribute name="latinLnBrk" type="xsd:boolean" use="optional"/> <xsd:attribute name="hangingPunct" type="xsd:boolean" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_TextField"> <xsd:sequence> <xsd:element name="rPr" type="CT_TextCharacterProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="pPr" type="CT_TextParagraphProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="t" type="xsd:string" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="id" type="s:ST_Guid" use="required"/> <xsd:attribute name="type" type="xsd:string" use="optional"/> </xsd:complexType> <xsd:group name="EG_TextRun"> <xsd:choice> <xsd:element name="r" type="CT_RegularTextRun"/> <xsd:element name="br" type="CT_TextLineBreak"/> <xsd:element name="fld" type="CT_TextField"/> </xsd:choice> </xsd:group> <xsd:complexType name="CT_RegularTextRun"> <xsd:sequence> <xsd:element name="rPr" type="CT_TextCharacterProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="t" type="xsd:string" minOccurs="1" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> </xsd:schema> ================================================ FILE: skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-picture.xsd ================================================ <?xml version="1.0" encoding="utf-8"?> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.openxmlformats.org/drawingml/2006/picture" xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" elementFormDefault="qualified" targetNamespace="http://schemas.openxmlformats.org/drawingml/2006/picture"> <xsd:import namespace="http://schemas.openxmlformats.org/drawingml/2006/main" schemaLocation="dml-main.xsd"/> <xsd:complexType name="CT_PictureNonVisual"> <xsd:sequence> <xsd:element name="cNvPr" type="a:CT_NonVisualDrawingProps" minOccurs="1" maxOccurs="1"/> <xsd:element name="cNvPicPr" type="a:CT_NonVisualPictureProperties" minOccurs="1" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Picture"> <xsd:sequence minOccurs="1" maxOccurs="1"> <xsd:element name="nvPicPr" type="CT_PictureNonVisual" minOccurs="1" maxOccurs="1"/> <xsd:element name="blipFill" type="a:CT_BlipFillProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="1" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:element name="pic" type="CT_Picture"/> </xsd:schema> ================================================ FILE: skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd ================================================ <?xml version="1.0" encoding="utf-8"?> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" xmlns="http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" targetNamespace="http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing" elementFormDefault="qualified"> <xsd:import namespace="http://schemas.openxmlformats.org/drawingml/2006/main" schemaLocation="dml-main.xsd"/> <xsd:import schemaLocation="shared-relationshipReference.xsd" namespace="http://schemas.openxmlformats.org/officeDocument/2006/relationships"/> <xsd:element name="from" type="CT_Marker"/> <xsd:element name="to" type="CT_Marker"/> <xsd:complexType name="CT_AnchorClientData"> <xsd:attribute name="fLocksWithSheet" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="fPrintsWithSheet" type="xsd:boolean" use="optional" default="true"/> </xsd:complexType> <xsd:complexType name="CT_ShapeNonVisual"> <xsd:sequence> <xsd:element name="cNvPr" type="a:CT_NonVisualDrawingProps" minOccurs="1" maxOccurs="1"/> <xsd:element name="cNvSpPr" type="a:CT_NonVisualDrawingShapeProps" minOccurs="1" maxOccurs="1" /> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Shape"> <xsd:sequence> <xsd:element name="nvSpPr" type="CT_ShapeNonVisual" minOccurs="1" maxOccurs="1"/> <xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="style" type="a:CT_ShapeStyle" minOccurs="0" maxOccurs="1"/> <xsd:element name="txBody" type="a:CT_TextBody" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="macro" type="xsd:string" use="optional"/> <xsd:attribute name="textlink" type="xsd:string" use="optional"/> <xsd:attribute name="fLocksText" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="fPublished" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_ConnectorNonVisual"> <xsd:sequence> <xsd:element name="cNvPr" type="a:CT_NonVisualDrawingProps" minOccurs="1" maxOccurs="1"/> <xsd:element name="cNvCxnSpPr" type="a:CT_NonVisualConnectorProperties" minOccurs="1" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Connector"> <xsd:sequence> <xsd:element name="nvCxnSpPr" type="CT_ConnectorNonVisual" minOccurs="1" maxOccurs="1"/> <xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="style" type="a:CT_ShapeStyle" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="macro" type="xsd:string" use="optional"/> <xsd:attribute name="fPublished" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_PictureNonVisual"> <xsd:sequence> <xsd:element name="cNvPr" type="a:CT_NonVisualDrawingProps" minOccurs="1" maxOccurs="1"/> <xsd:element name="cNvPicPr" type="a:CT_NonVisualPictureProperties" minOccurs="1" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Picture"> <xsd:sequence> <xsd:element name="nvPicPr" type="CT_PictureNonVisual" minOccurs="1" maxOccurs="1"/> <xsd:element name="blipFill" type="a:CT_BlipFillProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="style" type="a:CT_ShapeStyle" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="macro" type="xsd:string" use="optional" default=""/> <xsd:attribute name="fPublished" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_GraphicalObjectFrameNonVisual"> <xsd:sequence> <xsd:element name="cNvPr" type="a:CT_NonVisualDrawingProps" minOccurs="1" maxOccurs="1"/> <xsd:element name="cNvGraphicFramePr" type="a:CT_NonVisualGraphicFrameProperties" minOccurs="1" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_GraphicalObjectFrame"> <xsd:sequence> <xsd:element name="nvGraphicFramePr" type="CT_GraphicalObjectFrameNonVisual" minOccurs="1" maxOccurs="1"/> <xsd:element name="xfrm" type="a:CT_Transform2D" minOccurs="1" maxOccurs="1"/> <xsd:element ref="a:graphic" minOccurs="1" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="macro" type="xsd:string" use="optional"/> <xsd:attribute name="fPublished" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_GroupShapeNonVisual"> <xsd:sequence> <xsd:element name="cNvPr" type="a:CT_NonVisualDrawingProps" minOccurs="1" maxOccurs="1"/> <xsd:element name="cNvGrpSpPr" type="a:CT_NonVisualGroupDrawingShapeProps" minOccurs="1" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_GroupShape"> <xsd:sequence> <xsd:element name="nvGrpSpPr" type="CT_GroupShapeNonVisual" minOccurs="1" maxOccurs="1"/> <xsd:element name="grpSpPr" type="a:CT_GroupShapeProperties" minOccurs="1" maxOccurs="1"/> <xsd:choice minOccurs="0" maxOccurs="unbounded"> <xsd:element name="sp" type="CT_Shape"/> <xsd:element name="grpSp" type="CT_GroupShape"/> <xsd:element name="graphicFrame" type="CT_GraphicalObjectFrame"/> <xsd:element name="cxnSp" type="CT_Connector"/> <xsd:element name="pic" type="CT_Picture"/> </xsd:choice> </xsd:sequence> </xsd:complexType> <xsd:group name="EG_ObjectChoices"> <xsd:sequence> <xsd:choice minOccurs="1" maxOccurs="1"> <xsd:element name="sp" type="CT_Shape"/> <xsd:element name="grpSp" type="CT_GroupShape"/> <xsd:element name="graphicFrame" type="CT_GraphicalObjectFrame"/> <xsd:element name="cxnSp" type="CT_Connector"/> <xsd:element name="pic" type="CT_Picture"/> <xsd:element name="contentPart" type="CT_Rel"/> </xsd:choice> </xsd:sequence> </xsd:group> <xsd:complexType name="CT_Rel"> <xsd:attribute ref="r:id" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_ColID"> <xsd:restriction base="xsd:int"> <xsd:minInclusive value="0"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_RowID"> <xsd:restriction base="xsd:int"> <xsd:minInclusive value="0"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Marker"> <xsd:sequence> <xsd:element name="col" type="ST_ColID"/> <xsd:element name="colOff" type="a:ST_Coordinate"/> <xsd:element name="row" type="ST_RowID"/> <xsd:element name="rowOff" type="a:ST_Coordinate"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_EditAs"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="twoCell"/> <xsd:enumeration value="oneCell"/> <xsd:enumeration value="absolute"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_TwoCellAnchor"> <xsd:sequence> <xsd:element name="from" type="CT_Marker"/> <xsd:element name="to" type="CT_Marker"/> <xsd:group ref="EG_ObjectChoices"/> <xsd:element name="clientData" type="CT_AnchorClientData" minOccurs="1" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="editAs" type="ST_EditAs" use="optional" default="twoCell"/> </xsd:complexType> <xsd:complexType name="CT_OneCellAnchor"> <xsd:sequence> <xsd:element name="from" type="CT_Marker"/> <xsd:element name="ext" type="a:CT_PositiveSize2D"/> <xsd:group ref="EG_ObjectChoices"/> <xsd:element name="clientData" type="CT_AnchorClientData" minOccurs="1" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_AbsoluteAnchor"> <xsd:sequence> <xsd:element name="pos" type="a:CT_Point2D"/> <xsd:element name="ext" type="a:CT_PositiveSize2D"/> <xsd:group ref="EG_ObjectChoices"/> <xsd:element name="clientData" type="CT_AnchorClientData" minOccurs="1" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:group name="EG_Anchor"> <xsd:choice> <xsd:element name="twoCellAnchor" type="CT_TwoCellAnchor"/> <xsd:element name="oneCellAnchor" type="CT_OneCellAnchor"/> <xsd:element name="absoluteAnchor" type="CT_AbsoluteAnchor"/> </xsd:choice> </xsd:group> <xsd:complexType name="CT_Drawing"> <xsd:sequence> <xsd:group ref="EG_Anchor" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:element name="wsDr" type="CT_Drawing"/> </xsd:schema> ================================================ FILE: skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd ================================================ <?xml version="1.0" encoding="utf-8"?> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:dpct="http://schemas.openxmlformats.org/drawingml/2006/picture" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" targetNamespace="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" elementFormDefault="qualified"> <xsd:import namespace="http://schemas.openxmlformats.org/drawingml/2006/main" schemaLocation="dml-main.xsd"/> <xsd:import schemaLocation="wml.xsd" namespace="http://schemas.openxmlformats.org/wordprocessingml/2006/main"/> <xsd:import namespace="http://schemas.openxmlformats.org/drawingml/2006/picture" schemaLocation="dml-picture.xsd"/> <xsd:import namespace="http://schemas.openxmlformats.org/officeDocument/2006/relationships" schemaLocation="shared-relationshipReference.xsd"/> <xsd:complexType name="CT_EffectExtent"> <xsd:attribute name="l" type="a:ST_Coordinate" use="required"/> <xsd:attribute name="t" type="a:ST_Coordinate" use="required"/> <xsd:attribute name="r" type="a:ST_Coordinate" use="required"/> <xsd:attribute name="b" type="a:ST_Coordinate" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_WrapDistance"> <xsd:restriction base="xsd:unsignedInt"/> </xsd:simpleType> <xsd:complexType name="CT_Inline"> <xsd:sequence> <xsd:element name="extent" type="a:CT_PositiveSize2D"/> <xsd:element name="effectExtent" type="CT_EffectExtent" minOccurs="0"/> <xsd:element name="docPr" type="a:CT_NonVisualDrawingProps" minOccurs="1" maxOccurs="1"/> <xsd:element name="cNvGraphicFramePr" type="a:CT_NonVisualGraphicFrameProperties" minOccurs="0" maxOccurs="1"/> <xsd:element ref="a:graphic" minOccurs="1" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="distT" type="ST_WrapDistance" use="optional"/> <xsd:attribute name="distB" type="ST_WrapDistance" use="optional"/> <xsd:attribute name="distL" type="ST_WrapDistance" use="optional"/> <xsd:attribute name="distR" type="ST_WrapDistance" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_WrapText"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="bothSides"/> <xsd:enumeration value="left"/> <xsd:enumeration value="right"/> <xsd:enumeration value="largest"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_WrapPath"> <xsd:sequence> <xsd:element name="start" type="a:CT_Point2D" minOccurs="1" maxOccurs="1"/> <xsd:element name="lineTo" type="a:CT_Point2D" minOccurs="2" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="edited" type="xsd:boolean" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_WrapNone"/> <xsd:complexType name="CT_WrapSquare"> <xsd:sequence> <xsd:element name="effectExtent" type="CT_EffectExtent" minOccurs="0"/> </xsd:sequence> <xsd:attribute name="wrapText" type="ST_WrapText" use="required"/> <xsd:attribute name="distT" type="ST_WrapDistance" use="optional"/> <xsd:attribute name="distB" type="ST_WrapDistance" use="optional"/> <xsd:attribute name="distL" type="ST_WrapDistance" use="optional"/> <xsd:attribute name="distR" type="ST_WrapDistance" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_WrapTight"> <xsd:sequence> <xsd:element name="wrapPolygon" type="CT_WrapPath" minOccurs="1" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="wrapText" type="ST_WrapText" use="required"/> <xsd:attribute name="distL" type="ST_WrapDistance" use="optional"/> <xsd:attribute name="distR" type="ST_WrapDistance" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_WrapThrough"> <xsd:sequence> <xsd:element name="wrapPolygon" type="CT_WrapPath" minOccurs="1" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="wrapText" type="ST_WrapText" use="required"/> <xsd:attribute name="distL" type="ST_WrapDistance" use="optional"/> <xsd:attribute name="distR" type="ST_WrapDistance" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_WrapTopBottom"> <xsd:sequence> <xsd:element name="effectExtent" type="CT_EffectExtent" minOccurs="0"/> </xsd:sequence> <xsd:attribute name="distT" type="ST_WrapDistance" use="optional"/> <xsd:attribute name="distB" type="ST_WrapDistance" use="optional"/> </xsd:complexType> <xsd:group name="EG_WrapType"> <xsd:sequence> <xsd:choice minOccurs="1" maxOccurs="1"> <xsd:element name="wrapNone" type="CT_WrapNone" minOccurs="1" maxOccurs="1"/> <xsd:element name="wrapSquare" type="CT_WrapSquare" minOccurs="1" maxOccurs="1"/> <xsd:element name="wrapTight" type="CT_WrapTight" minOccurs="1" maxOccurs="1"/> <xsd:element name="wrapThrough" type="CT_WrapThrough" minOccurs="1" maxOccurs="1"/> <xsd:element name="wrapTopAndBottom" type="CT_WrapTopBottom" minOccurs="1" maxOccurs="1"/> </xsd:choice> </xsd:sequence> </xsd:group> <xsd:simpleType name="ST_PositionOffset"> <xsd:restriction base="xsd:int"/> </xsd:simpleType> <xsd:simpleType name="ST_AlignH"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="left"/> <xsd:enumeration value="right"/> <xsd:enumeration value="center"/> <xsd:enumeration value="inside"/> <xsd:enumeration value="outside"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_RelFromH"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="margin"/> <xsd:enumeration value="page"/> <xsd:enumeration value="column"/> <xsd:enumeration value="character"/> <xsd:enumeration value="leftMargin"/> <xsd:enumeration value="rightMargin"/> <xsd:enumeration value="insideMargin"/> <xsd:enumeration value="outsideMargin"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_PosH"> <xsd:sequence> <xsd:choice minOccurs="1" maxOccurs="1"> <xsd:element name="align" type="ST_AlignH" minOccurs="1" maxOccurs="1"/> <xsd:element name="posOffset" type="ST_PositionOffset" minOccurs="1" maxOccurs="1"/> </xsd:choice> </xsd:sequence> <xsd:attribute name="relativeFrom" type="ST_RelFromH" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_AlignV"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="top"/> <xsd:enumeration value="bottom"/> <xsd:enumeration value="center"/> <xsd:enumeration value="inside"/> <xsd:enumeration value="outside"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_RelFromV"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="margin"/> <xsd:enumeration value="page"/> <xsd:enumeration value="paragraph"/> <xsd:enumeration value="line"/> <xsd:enumeration value="topMargin"/> <xsd:enumeration value="bottomMargin"/> <xsd:enumeration value="insideMargin"/> <xsd:enumeration value="outsideMargin"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_PosV"> <xsd:sequence> <xsd:choice minOccurs="1" maxOccurs="1"> <xsd:element name="align" type="ST_AlignV" minOccurs="1" maxOccurs="1"/> <xsd:element name="posOffset" type="ST_PositionOffset" minOccurs="1" maxOccurs="1"/> </xsd:choice> </xsd:sequence> <xsd:attribute name="relativeFrom" type="ST_RelFromV" use="required"/> </xsd:complexType> <xsd:complexType name="CT_Anchor"> <xsd:sequence> <xsd:element name="simplePos" type="a:CT_Point2D"/> <xsd:element name="positionH" type="CT_PosH"/> <xsd:element name="positionV" type="CT_PosV"/> <xsd:element name="extent" type="a:CT_PositiveSize2D"/> <xsd:element name="effectExtent" type="CT_EffectExtent" minOccurs="0"/> <xsd:group ref="EG_WrapType"/> <xsd:element name="docPr" type="a:CT_NonVisualDrawingProps" minOccurs="1" maxOccurs="1"/> <xsd:element name="cNvGraphicFramePr" type="a:CT_NonVisualGraphicFrameProperties" minOccurs="0" maxOccurs="1"/> <xsd:element ref="a:graphic" minOccurs="1" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="distT" type="ST_WrapDistance" use="optional"/> <xsd:attribute name="distB" type="ST_WrapDistance" use="optional"/> <xsd:attribute name="distL" type="ST_WrapDistance" use="optional"/> <xsd:attribute name="distR" type="ST_WrapDistance" use="optional"/> <xsd:attribute name="simplePos" type="xsd:boolean"/> <xsd:attribute name="relativeHeight" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="behindDoc" type="xsd:boolean" use="required"/> <xsd:attribute name="locked" type="xsd:boolean" use="required"/> <xsd:attribute name="layoutInCell" type="xsd:boolean" use="required"/> <xsd:attribute name="hidden" type="xsd:boolean" use="optional"/> <xsd:attribute name="allowOverlap" type="xsd:boolean" use="required"/> </xsd:complexType> <xsd:complexType name="CT_TxbxContent"> <xsd:group ref="w:EG_BlockLevelElts" minOccurs="1" maxOccurs="unbounded"/> </xsd:complexType> <xsd:complexType name="CT_TextboxInfo"> <xsd:sequence> <xsd:element name="txbxContent" type="CT_TxbxContent" minOccurs="1" maxOccurs="1"/> <xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="id" type="xsd:unsignedShort" use="optional" default="0"/> </xsd:complexType> <xsd:complexType name="CT_LinkedTextboxInformation"> <xsd:sequence> <xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="id" type="xsd:unsignedShort" use="required"/> <xsd:attribute name="seq" type="xsd:unsignedShort" use="required"/> </xsd:complexType> <xsd:complexType name="CT_WordprocessingShape"> <xsd:sequence minOccurs="1" maxOccurs="1"> <xsd:element name="cNvPr" type="a:CT_NonVisualDrawingProps" minOccurs="0" maxOccurs="1"/> <xsd:choice minOccurs="1" maxOccurs="1"> <xsd:element name="cNvSpPr" type="a:CT_NonVisualDrawingShapeProps" minOccurs="1" maxOccurs="1"/> <xsd:element name="cNvCnPr" type="a:CT_NonVisualConnectorProperties" minOccurs="1" maxOccurs="1"/> </xsd:choice> <xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="style" type="a:CT_ShapeStyle" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> <xsd:choice minOccurs="0" maxOccurs="1"> <xsd:element name="txbx" type="CT_TextboxInfo" minOccurs="1" maxOccurs="1"/> <xsd:element name="linkedTxbx" type="CT_LinkedTextboxInformation" minOccurs="1" maxOccurs="1"/> </xsd:choice> <xsd:element name="bodyPr" type="a:CT_TextBodyProperties" minOccurs="1" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="normalEastAsianFlow" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_GraphicFrame"> <xsd:sequence> <xsd:element name="cNvPr" type="a:CT_NonVisualDrawingProps" minOccurs="1" maxOccurs="1"/> <xsd:element name="cNvFrPr" type="a:CT_NonVisualGraphicFrameProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="xfrm" type="a:CT_Transform2D" minOccurs="1" maxOccurs="1"/> <xsd:element ref="a:graphic" minOccurs="1" maxOccurs="1"/> <xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_WordprocessingContentPartNonVisual"> <xsd:sequence> <xsd:element name="cNvPr" type="a:CT_NonVisualDrawingProps" minOccurs="0" maxOccurs="1"/> <xsd:element name="cNvContentPartPr" type="a:CT_NonVisualContentPartProperties" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_WordprocessingContentPart"> <xsd:sequence> <xsd:element name="nvContentPartPr" type="CT_WordprocessingContentPartNonVisual" minOccurs="0" maxOccurs="1"/> <xsd:element name="xfrm" type="a:CT_Transform2D" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="bwMode" type="a:ST_BlackWhiteMode" use="optional"/> <xsd:attribute ref="r:id" use="required"/> </xsd:complexType> <xsd:complexType name="CT_WordprocessingGroup"> <xsd:sequence minOccurs="1" maxOccurs="1"> <xsd:element name="cNvPr" type="a:CT_NonVisualDrawingProps" minOccurs="0" maxOccurs="1"/> <xsd:element name="cNvGrpSpPr" type="a:CT_NonVisualGroupDrawingShapeProps" minOccurs="1" maxOccurs="1"/> <xsd:element name="grpSpPr" type="a:CT_GroupShapeProperties" minOccurs="1" maxOccurs="1"/> <xsd:choice minOccurs="0" maxOccurs="unbounded"> <xsd:element ref="wsp"/> <xsd:element name="grpSp" type="CT_WordprocessingGroup"/> <xsd:element name="graphicFrame" type="CT_GraphicFrame"/> <xsd:element ref="dpct:pic"/> <xsd:element name="contentPart" type="CT_WordprocessingContentPart"/> </xsd:choice> <xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_WordprocessingCanvas"> <xsd:sequence minOccurs="1" maxOccurs="1"> <xsd:element name="bg" type="a:CT_BackgroundFormatting" minOccurs="0" maxOccurs="1"/> <xsd:element name="whole" type="a:CT_WholeE2oFormatting" minOccurs="0" maxOccurs="1"/> <xsd:choice minOccurs="0" maxOccurs="unbounded"> <xsd:element ref="wsp"/> <xsd:element ref="dpct:pic"/> <xsd:element name="contentPart" type="CT_WordprocessingContentPart"/> <xsd:element ref="wgp"/> <xsd:element name="graphicFrame" type="CT_GraphicFrame"/> </xsd:choice> <xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:element name="wpc" type="CT_WordprocessingCanvas"/> <xsd:element name="wgp" type="CT_WordprocessingGroup"/> <xsd:element name="wsp" type="CT_WordprocessingShape"/> <xsd:element name="inline" type="CT_Inline"/> <xsd:element name="anchor" type="CT_Anchor"/> </xsd:schema> ================================================ FILE: skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/pml.xsd ================================================ <?xml version="1.0" encoding="utf-8"?> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.openxmlformats.org/presentationml/2006/main" xmlns:p="http://schemas.openxmlformats.org/presentationml/2006/main" xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:s="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes" elementFormDefault="qualified" targetNamespace="http://schemas.openxmlformats.org/presentationml/2006/main"> <xsd:import namespace="http://schemas.openxmlformats.org/officeDocument/2006/relationships" schemaLocation="shared-relationshipReference.xsd"/> <xsd:import namespace="http://schemas.openxmlformats.org/drawingml/2006/main" schemaLocation="dml-main.xsd"/> <xsd:import namespace="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes" schemaLocation="shared-commonSimpleTypes.xsd"/> <xsd:simpleType name="ST_TransitionSideDirectionType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="l"/> <xsd:enumeration value="u"/> <xsd:enumeration value="r"/> <xsd:enumeration value="d"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_TransitionCornerDirectionType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="lu"/> <xsd:enumeration value="ru"/> <xsd:enumeration value="ld"/> <xsd:enumeration value="rd"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_TransitionInOutDirectionType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="out"/> <xsd:enumeration value="in"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_SideDirectionTransition"> <xsd:attribute name="dir" type="ST_TransitionSideDirectionType" use="optional" default="l"/> </xsd:complexType> <xsd:complexType name="CT_CornerDirectionTransition"> <xsd:attribute name="dir" type="ST_TransitionCornerDirectionType" use="optional" default="lu"/> </xsd:complexType> <xsd:simpleType name="ST_TransitionEightDirectionType"> <xsd:union memberTypes="ST_TransitionSideDirectionType ST_TransitionCornerDirectionType"/> </xsd:simpleType> <xsd:complexType name="CT_EightDirectionTransition"> <xsd:attribute name="dir" type="ST_TransitionEightDirectionType" use="optional" default="l"/> </xsd:complexType> <xsd:complexType name="CT_OrientationTransition"> <xsd:attribute name="dir" type="ST_Direction" use="optional" default="horz"/> </xsd:complexType> <xsd:complexType name="CT_InOutTransition"> <xsd:attribute name="dir" type="ST_TransitionInOutDirectionType" use="optional" default="out"/> </xsd:complexType> <xsd:complexType name="CT_OptionalBlackTransition"> <xsd:attribute name="thruBlk" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_SplitTransition"> <xsd:attribute name="orient" type="ST_Direction" use="optional" default="horz"/> <xsd:attribute name="dir" type="ST_TransitionInOutDirectionType" use="optional" default="out"/> </xsd:complexType> <xsd:complexType name="CT_WheelTransition"> <xsd:attribute name="spokes" type="xsd:unsignedInt" use="optional" default="4"/> </xsd:complexType> <xsd:complexType name="CT_TransitionStartSoundAction"> <xsd:sequence> <xsd:element minOccurs="1" maxOccurs="1" name="snd" type="a:CT_EmbeddedWAVAudioFile"/> </xsd:sequence> <xsd:attribute name="loop" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_TransitionSoundAction"> <xsd:choice minOccurs="1" maxOccurs="1"> <xsd:element name="stSnd" type="CT_TransitionStartSoundAction"/> <xsd:element name="endSnd" type="CT_Empty"/> </xsd:choice> </xsd:complexType> <xsd:simpleType name="ST_TransitionSpeed"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="slow"/> <xsd:enumeration value="med"/> <xsd:enumeration value="fast"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_SlideTransition"> <xsd:sequence> <xsd:choice minOccurs="0" maxOccurs="1"> <xsd:element name="blinds" type="CT_OrientationTransition"/> <xsd:element name="checker" type="CT_OrientationTransition"/> <xsd:element name="circle" type="CT_Empty"/> <xsd:element name="dissolve" type="CT_Empty"/> <xsd:element name="comb" type="CT_OrientationTransition"/> <xsd:element name="cover" type="CT_EightDirectionTransition"/> <xsd:element name="cut" type="CT_OptionalBlackTransition"/> <xsd:element name="diamond" type="CT_Empty"/> <xsd:element name="fade" type="CT_OptionalBlackTransition"/> <xsd:element name="newsflash" type="CT_Empty"/> <xsd:element name="plus" type="CT_Empty"/> <xsd:element name="pull" type="CT_EightDirectionTransition"/> <xsd:element name="push" type="CT_SideDirectionTransition"/> <xsd:element name="random" type="CT_Empty"/> <xsd:element name="randomBar" type="CT_OrientationTransition"/> <xsd:element name="split" type="CT_SplitTransition"/> <xsd:element name="strips" type="CT_CornerDirectionTransition"/> <xsd:element name="wedge" type="CT_Empty"/> <xsd:element name="wheel" type="CT_WheelTransition"/> <xsd:element name="wipe" type="CT_SideDirectionTransition"/> <xsd:element name="zoom" type="CT_InOutTransition"/> </xsd:choice> <xsd:element name="sndAc" minOccurs="0" maxOccurs="1" type="CT_TransitionSoundAction"/> <xsd:element name="extLst" type="CT_ExtensionListModify" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="spd" type="ST_TransitionSpeed" use="optional" default="fast"/> <xsd:attribute name="advClick" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="advTm" type="xsd:unsignedInt" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_TLTimeIndefinite"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="indefinite"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_TLTime"> <xsd:union memberTypes="xsd:unsignedInt ST_TLTimeIndefinite"/> </xsd:simpleType> <xsd:simpleType name="ST_TLTimeNodeID"> <xsd:restriction base="xsd:unsignedInt"/> </xsd:simpleType> <xsd:complexType name="CT_TLIterateIntervalTime"> <xsd:attribute name="val" type="ST_TLTime" use="required"/> </xsd:complexType> <xsd:complexType name="CT_TLIterateIntervalPercentage"> <xsd:attribute name="val" type="a:ST_PositivePercentage" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_IterateType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="el"/> <xsd:enumeration value="wd"/> <xsd:enumeration value="lt"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_TLIterateData"> <xsd:choice minOccurs="1" maxOccurs="1"> <xsd:element name="tmAbs" type="CT_TLIterateIntervalTime"/> <xsd:element name="tmPct" type="CT_TLIterateIntervalPercentage"/> </xsd:choice> <xsd:attribute name="type" type="ST_IterateType" use="optional" default="el"/> <xsd:attribute name="backwards" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_TLSubShapeId"> <xsd:attribute name="spid" type="a:ST_ShapeID" use="required"/> </xsd:complexType> <xsd:complexType name="CT_TLTextTargetElement"> <xsd:choice minOccurs="0" maxOccurs="1"> <xsd:element name="charRg" type="CT_IndexRange"/> <xsd:element name="pRg" type="CT_IndexRange"/> </xsd:choice> </xsd:complexType> <xsd:simpleType name="ST_TLChartSubelementType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="gridLegend"/> <xsd:enumeration value="series"/> <xsd:enumeration value="category"/> <xsd:enumeration value="ptInSeries"/> <xsd:enumeration value="ptInCategory"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_TLOleChartTargetElement"> <xsd:attribute name="type" type="ST_TLChartSubelementType" use="required"/> <xsd:attribute name="lvl" type="xsd:unsignedInt" use="optional" default="0"/> </xsd:complexType> <xsd:complexType name="CT_TLShapeTargetElement"> <xsd:choice minOccurs="0" maxOccurs="1"> <xsd:element name="bg" type="CT_Empty"/> <xsd:element name="subSp" type="CT_TLSubShapeId"/> <xsd:element name="oleChartEl" type="CT_TLOleChartTargetElement"/> <xsd:element name="txEl" type="CT_TLTextTargetElement"/> <xsd:element name="graphicEl" type="a:CT_AnimationElementChoice"/> </xsd:choice> <xsd:attribute name="spid" type="a:ST_DrawingElementId" use="required"/> </xsd:complexType> <xsd:complexType name="CT_TLTimeTargetElement"> <xsd:choice minOccurs="1" maxOccurs="1"> <xsd:element name="sldTgt" type="CT_Empty"/> <xsd:element name="sndTgt" type="a:CT_EmbeddedWAVAudioFile"/> <xsd:element name="spTgt" type="CT_TLShapeTargetElement"/> <xsd:element name="inkTgt" type="CT_TLSubShapeId"/> </xsd:choice> </xsd:complexType> <xsd:complexType name="CT_TLTriggerTimeNodeID"> <xsd:attribute name="val" type="ST_TLTimeNodeID" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_TLTriggerRuntimeNode"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="first"/> <xsd:enumeration value="last"/> <xsd:enumeration value="all"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_TLTriggerRuntimeNode"> <xsd:attribute name="val" type="ST_TLTriggerRuntimeNode" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_TLTriggerEvent"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="onBegin"/> <xsd:enumeration value="onEnd"/> <xsd:enumeration value="begin"/> <xsd:enumeration value="end"/> <xsd:enumeration value="onClick"/> <xsd:enumeration value="onDblClick"/> <xsd:enumeration value="onMouseOver"/> <xsd:enumeration value="onMouseOut"/> <xsd:enumeration value="onNext"/> <xsd:enumeration value="onPrev"/> <xsd:enumeration value="onStopAudio"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_TLTimeCondition"> <xsd:choice minOccurs="0" maxOccurs="1"> <xsd:element name="tgtEl" type="CT_TLTimeTargetElement"/> <xsd:element name="tn" type="CT_TLTriggerTimeNodeID"/> <xsd:element name="rtn" type="CT_TLTriggerRuntimeNode"/> </xsd:choice> <xsd:attribute name="evt" use="optional" type="ST_TLTriggerEvent"/> <xsd:attribute name="delay" type="ST_TLTime" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_TLTimeConditionList"> <xsd:sequence> <xsd:element name="cond" type="CT_TLTimeCondition" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_TimeNodeList"> <xsd:choice minOccurs="1" maxOccurs="unbounded"> <xsd:element name="par" type="CT_TLTimeNodeParallel"/> <xsd:element name="seq" type="CT_TLTimeNodeSequence"/> <xsd:element name="excl" type="CT_TLTimeNodeExclusive"/> <xsd:element name="anim" type="CT_TLAnimateBehavior"/> <xsd:element name="animClr" type="CT_TLAnimateColorBehavior"/> <xsd:element name="animEffect" type="CT_TLAnimateEffectBehavior"/> <xsd:element name="animMotion" type="CT_TLAnimateMotionBehavior"/> <xsd:element name="animRot" type="CT_TLAnimateRotationBehavior"/> <xsd:element name="animScale" type="CT_TLAnimateScaleBehavior"/> <xsd:element name="cmd" type="CT_TLCommandBehavior"/> <xsd:element name="set" type="CT_TLSetBehavior"/> <xsd:element name="audio" type="CT_TLMediaNodeAudio"/> <xsd:element name="video" type="CT_TLMediaNodeVideo"/> </xsd:choice> </xsd:complexType> <xsd:simpleType name="ST_TLTimeNodePresetClassType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="entr"/> <xsd:enumeration value="exit"/> <xsd:enumeration value="emph"/> <xsd:enumeration value="path"/> <xsd:enumeration value="verb"/> <xsd:enumeration value="mediacall"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_TLTimeNodeRestartType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="always"/> <xsd:enumeration value="whenNotActive"/> <xsd:enumeration value="never"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_TLTimeNodeFillType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="remove"/> <xsd:enumeration value="freeze"/> <xsd:enumeration value="hold"/> <xsd:enumeration value="transition"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_TLTimeNodeSyncType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="canSlip"/> <xsd:enumeration value="locked"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_TLTimeNodeMasterRelation"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="sameClick"/> <xsd:enumeration value="lastClick"/> <xsd:enumeration value="nextClick"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_TLTimeNodeType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="clickEffect"/> <xsd:enumeration value="withEffect"/> <xsd:enumeration value="afterEffect"/> <xsd:enumeration value="mainSeq"/> <xsd:enumeration value="interactiveSeq"/> <xsd:enumeration value="clickPar"/> <xsd:enumeration value="withGroup"/> <xsd:enumeration value="afterGroup"/> <xsd:enumeration value="tmRoot"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_TLCommonTimeNodeData"> <xsd:sequence> <xsd:element name="stCondLst" type="CT_TLTimeConditionList" minOccurs="0" maxOccurs="1"/> <xsd:element name="endCondLst" type="CT_TLTimeConditionList" minOccurs="0" maxOccurs="1"/> <xsd:element name="endSync" type="CT_TLTimeCondition" minOccurs="0" maxOccurs="1"/> <xsd:element name="iterate" type="CT_TLIterateData" minOccurs="0" maxOccurs="1"/> <xsd:element name="childTnLst" type="CT_TimeNodeList" minOccurs="0" maxOccurs="1"/> <xsd:element name="subTnLst" type="CT_TimeNodeList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="id" type="ST_TLTimeNodeID" use="optional"/> <xsd:attribute name="presetID" type="xsd:int" use="optional"/> <xsd:attribute name="presetClass" type="ST_TLTimeNodePresetClassType" use="optional"/> <xsd:attribute name="presetSubtype" type="xsd:int" use="optional"/> <xsd:attribute name="dur" type="ST_TLTime" use="optional"/> <xsd:attribute name="repeatCount" type="ST_TLTime" use="optional" default="1000"/> <xsd:attribute name="repeatDur" type="ST_TLTime" use="optional"/> <xsd:attribute name="spd" type="a:ST_Percentage" use="optional" default="100%"/> <xsd:attribute name="accel" type="a:ST_PositiveFixedPercentage" use="optional" default="0%"/> <xsd:attribute name="decel" type="a:ST_PositiveFixedPercentage" use="optional" default="0%"/> <xsd:attribute name="autoRev" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="restart" type="ST_TLTimeNodeRestartType" use="optional"/> <xsd:attribute name="fill" type="ST_TLTimeNodeFillType" use="optional"/> <xsd:attribute name="syncBehavior" type="ST_TLTimeNodeSyncType" use="optional"/> <xsd:attribute name="tmFilter" type="xsd:string" use="optional"/> <xsd:attribute name="evtFilter" type="xsd:string" use="optional"/> <xsd:attribute name="display" type="xsd:boolean" use="optional"/> <xsd:attribute name="masterRel" type="ST_TLTimeNodeMasterRelation" use="optional"/> <xsd:attribute name="bldLvl" type="xsd:int" use="optional"/> <xsd:attribute name="grpId" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="afterEffect" type="xsd:boolean" use="optional"/> <xsd:attribute name="nodeType" type="ST_TLTimeNodeType" use="optional"/> <xsd:attribute name="nodePh" type="xsd:boolean" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_TLTimeNodeParallel"> <xsd:sequence> <xsd:element name="cTn" type="CT_TLCommonTimeNodeData" minOccurs="1" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_TLNextActionType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="none"/> <xsd:enumeration value="seek"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_TLPreviousActionType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="none"/> <xsd:enumeration value="skipTimed"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_TLTimeNodeSequence"> <xsd:sequence> <xsd:element name="cTn" type="CT_TLCommonTimeNodeData" minOccurs="1" maxOccurs="1"/> <xsd:element name="prevCondLst" type="CT_TLTimeConditionList" minOccurs="0" maxOccurs="1"/> <xsd:element name="nextCondLst" type="CT_TLTimeConditionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="concurrent" type="xsd:boolean" use="optional"/> <xsd:attribute name="prevAc" type="ST_TLPreviousActionType" use="optional"/> <xsd:attribute name="nextAc" type="ST_TLNextActionType" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_TLTimeNodeExclusive"> <xsd:sequence> <xsd:element name="cTn" type="CT_TLCommonTimeNodeData" minOccurs="1" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_TLBehaviorAttributeNameList"> <xsd:sequence> <xsd:element name="attrName" type="xsd:string" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_TLBehaviorAdditiveType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="base"/> <xsd:enumeration value="sum"/> <xsd:enumeration value="repl"/> <xsd:enumeration value="mult"/> <xsd:enumeration value="none"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_TLBehaviorAccumulateType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="none"/> <xsd:enumeration value="always"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_TLBehaviorTransformType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="pt"/> <xsd:enumeration value="img"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_TLBehaviorOverrideType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="normal"/> <xsd:enumeration value="childStyle"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_TLCommonBehaviorData"> <xsd:sequence> <xsd:element name="cTn" type="CT_TLCommonTimeNodeData" minOccurs="1" maxOccurs="1"/> <xsd:element name="tgtEl" type="CT_TLTimeTargetElement" minOccurs="1" maxOccurs="1"/> <xsd:element name="attrNameLst" type="CT_TLBehaviorAttributeNameList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="additive" type="ST_TLBehaviorAdditiveType" use="optional"/> <xsd:attribute name="accumulate" type="ST_TLBehaviorAccumulateType" use="optional"/> <xsd:attribute name="xfrmType" type="ST_TLBehaviorTransformType" use="optional"/> <xsd:attribute name="from" type="xsd:string" use="optional"/> <xsd:attribute name="to" type="xsd:string" use="optional"/> <xsd:attribute name="by" type="xsd:string" use="optional"/> <xsd:attribute name="rctx" type="xsd:string" use="optional"/> <xsd:attribute name="override" type="ST_TLBehaviorOverrideType" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_TLAnimVariantBooleanVal"> <xsd:attribute name="val" type="xsd:boolean" use="required"/> </xsd:complexType> <xsd:complexType name="CT_TLAnimVariantIntegerVal"> <xsd:attribute name="val" type="xsd:int" use="required"/> </xsd:complexType> <xsd:complexType name="CT_TLAnimVariantFloatVal"> <xsd:attribute name="val" type="xsd:float" use="required"/> </xsd:complexType> <xsd:complexType name="CT_TLAnimVariantStringVal"> <xsd:attribute name="val" type="xsd:string" use="required"/> </xsd:complexType> <xsd:complexType name="CT_TLAnimVariant"> <xsd:choice minOccurs="1" maxOccurs="1"> <xsd:element name="boolVal" type="CT_TLAnimVariantBooleanVal"/> <xsd:element name="intVal" type="CT_TLAnimVariantIntegerVal"/> <xsd:element name="fltVal" type="CT_TLAnimVariantFloatVal"/> <xsd:element name="strVal" type="CT_TLAnimVariantStringVal"/> <xsd:element name="clrVal" type="a:CT_Color"/> </xsd:choice> </xsd:complexType> <xsd:simpleType name="ST_TLTimeAnimateValueTime"> <xsd:union memberTypes="a:ST_PositiveFixedPercentage ST_TLTimeIndefinite"/> </xsd:simpleType> <xsd:complexType name="CT_TLTimeAnimateValue"> <xsd:sequence> <xsd:element name="val" type="CT_TLAnimVariant" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="tm" type="ST_TLTimeAnimateValueTime" use="optional" default="indefinite"/> <xsd:attribute name="fmla" type="xsd:string" use="optional" default=""/> </xsd:complexType> <xsd:complexType name="CT_TLTimeAnimateValueList"> <xsd:sequence> <xsd:element name="tav" type="CT_TLTimeAnimateValue" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_TLAnimateBehaviorCalcMode"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="discrete"/> <xsd:enumeration value="lin"/> <xsd:enumeration value="fmla"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_TLAnimateBehaviorValueType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="str"/> <xsd:enumeration value="num"/> <xsd:enumeration value="clr"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_TLAnimateBehavior"> <xsd:sequence> <xsd:element name="cBhvr" type="CT_TLCommonBehaviorData" minOccurs="1" maxOccurs="1"/> <xsd:element name="tavLst" type="CT_TLTimeAnimateValueList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="by" type="xsd:string" use="optional"/> <xsd:attribute name="from" type="xsd:string" use="optional"/> <xsd:attribute name="to" type="xsd:string" use="optional"/> <xsd:attribute name="calcmode" type="ST_TLAnimateBehaviorCalcMode" use="optional"/> <xsd:attribute name="valueType" type="ST_TLAnimateBehaviorValueType" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_TLByRgbColorTransform"> <xsd:attribute name="r" type="a:ST_FixedPercentage" use="required"/> <xsd:attribute name="g" type="a:ST_FixedPercentage" use="required"/> <xsd:attribute name="b" type="a:ST_FixedPercentage" use="required"/> </xsd:complexType> <xsd:complexType name="CT_TLByHslColorTransform"> <xsd:attribute name="h" type="a:ST_Angle" use="required"/> <xsd:attribute name="s" type="a:ST_FixedPercentage" use="required"/> <xsd:attribute name="l" type="a:ST_FixedPercentage" use="required"/> </xsd:complexType> <xsd:complexType name="CT_TLByAnimateColorTransform"> <xsd:choice minOccurs="1" maxOccurs="1"> <xsd:element name="rgb" type="CT_TLByRgbColorTransform"/> <xsd:element name="hsl" type="CT_TLByHslColorTransform"/> </xsd:choice> </xsd:complexType> <xsd:simpleType name="ST_TLAnimateColorSpace"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="rgb"/> <xsd:enumeration value="hsl"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_TLAnimateColorDirection"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="cw"/> <xsd:enumeration value="ccw"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_TLAnimateColorBehavior"> <xsd:sequence> <xsd:element name="cBhvr" type="CT_TLCommonBehaviorData" minOccurs="1" maxOccurs="1"/> <xsd:element name="by" type="CT_TLByAnimateColorTransform" minOccurs="0" maxOccurs="1"/> <xsd:element name="from" type="a:CT_Color" minOccurs="0" maxOccurs="1"/> <xsd:element name="to" type="a:CT_Color" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="clrSpc" type="ST_TLAnimateColorSpace" use="optional"/> <xsd:attribute name="dir" type="ST_TLAnimateColorDirection" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_TLAnimateEffectTransition"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="in"/> <xsd:enumeration value="out"/> <xsd:enumeration value="none"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_TLAnimateEffectBehavior"> <xsd:sequence> <xsd:element name="cBhvr" type="CT_TLCommonBehaviorData" minOccurs="1" maxOccurs="1"/> <xsd:element name="progress" type="CT_TLAnimVariant" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="transition" type="ST_TLAnimateEffectTransition" default="in" use="optional"/> <xsd:attribute name="filter" type="xsd:string" use="optional"/> <xsd:attribute name="prLst" type="xsd:string" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_TLAnimateMotionBehaviorOrigin"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="parent"/> <xsd:enumeration value="layout"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_TLAnimateMotionPathEditMode"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="relative"/> <xsd:enumeration value="fixed"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_TLPoint"> <xsd:attribute name="x" type="a:ST_Percentage" use="required"/> <xsd:attribute name="y" type="a:ST_Percentage" use="required"/> </xsd:complexType> <xsd:complexType name="CT_TLAnimateMotionBehavior"> <xsd:sequence> <xsd:element name="cBhvr" type="CT_TLCommonBehaviorData" minOccurs="1" maxOccurs="1"/> <xsd:element name="by" type="CT_TLPoint" minOccurs="0" maxOccurs="1"/> <xsd:element name="from" type="CT_TLPoint" minOccurs="0" maxOccurs="1"/> <xsd:element name="to" type="CT_TLPoint" minOccurs="0" maxOccurs="1"/> <xsd:element name="rCtr" type="CT_TLPoint" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="origin" type="ST_TLAnimateMotionBehaviorOrigin" use="optional"/> <xsd:attribute name="path" type="xsd:string" use="optional"/> <xsd:attribute name="pathEditMode" type="ST_TLAnimateMotionPathEditMode" use="optional"/> <xsd:attribute name="rAng" type="a:ST_Angle" use="optional"/> <xsd:attribute name="ptsTypes" type="xsd:string" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_TLAnimateRotationBehavior"> <xsd:sequence> <xsd:element name="cBhvr" type="CT_TLCommonBehaviorData" minOccurs="1" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="by" type="a:ST_Angle" use="optional"/> <xsd:attribute name="from" type="a:ST_Angle" use="optional"/> <xsd:attribute name="to" type="a:ST_Angle" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_TLAnimateScaleBehavior"> <xsd:sequence> <xsd:element name="cBhvr" type="CT_TLCommonBehaviorData" minOccurs="1" maxOccurs="1"/> <xsd:element name="by" type="CT_TLPoint" minOccurs="0" maxOccurs="1"/> <xsd:element name="from" type="CT_TLPoint" minOccurs="0" maxOccurs="1"/> <xsd:element name="to" type="CT_TLPoint" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="zoomContents" type="xsd:boolean" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_TLCommandType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="evt"/> <xsd:enumeration value="call"/> <xsd:enumeration value="verb"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_TLCommandBehavior"> <xsd:sequence> <xsd:element name="cBhvr" type="CT_TLCommonBehaviorData" minOccurs="1" maxOccurs="1"/> </xsd:sequence> <xsd:attribute type="ST_TLCommandType" name="type" use="optional"/> <xsd:attribute name="cmd" type="xsd:string" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_TLSetBehavior"> <xsd:sequence> <xsd:element name="cBhvr" type="CT_TLCommonBehaviorData" minOccurs="1" maxOccurs="1"/> <xsd:element name="to" type="CT_TLAnimVariant" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_TLCommonMediaNodeData"> <xsd:sequence> <xsd:element name="cTn" type="CT_TLCommonTimeNodeData" minOccurs="1" maxOccurs="1"/> <xsd:element name="tgtEl" type="CT_TLTimeTargetElement" minOccurs="1" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="vol" type="a:ST_PositiveFixedPercentage" default="50%" use="optional"/> <xsd:attribute name="mute" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="numSld" type="xsd:unsignedInt" use="optional" default="1"/> <xsd:attribute name="showWhenStopped" type="xsd:boolean" use="optional" default="true"/> </xsd:complexType> <xsd:complexType name="CT_TLMediaNodeAudio"> <xsd:sequence> <xsd:element name="cMediaNode" type="CT_TLCommonMediaNodeData" minOccurs="1" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="isNarration" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_TLMediaNodeVideo"> <xsd:sequence> <xsd:element name="cMediaNode" type="CT_TLCommonMediaNodeData" minOccurs="1" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="fullScrn" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:attributeGroup name="AG_TLBuild"> <xsd:attribute name="spid" type="a:ST_DrawingElementId" use="required"/> <xsd:attribute name="grpId" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="uiExpand" type="xsd:boolean" use="optional" default="false"/> </xsd:attributeGroup> <xsd:complexType name="CT_TLTemplate"> <xsd:sequence> <xsd:element name="tnLst" type="CT_TimeNodeList" minOccurs="1" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="lvl" type="xsd:unsignedInt" use="optional" default="0"/> </xsd:complexType> <xsd:complexType name="CT_TLTemplateList"> <xsd:sequence> <xsd:element name="tmpl" type="CT_TLTemplate" minOccurs="0" maxOccurs="9"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_TLParaBuildType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="allAtOnce"/> <xsd:enumeration value="p"/> <xsd:enumeration value="cust"/> <xsd:enumeration value="whole"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_TLBuildParagraph"> <xsd:sequence> <xsd:element name="tmplLst" type="CT_TLTemplateList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attributeGroup ref="AG_TLBuild"/> <xsd:attribute name="build" type="ST_TLParaBuildType" use="optional" default="whole"/> <xsd:attribute name="bldLvl" type="xsd:unsignedInt" use="optional" default="1"/> <xsd:attribute name="animBg" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="autoUpdateAnimBg" type="xsd:boolean" default="true" use="optional"/> <xsd:attribute name="rev" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="advAuto" type="ST_TLTime" use="optional" default="indefinite"/> </xsd:complexType> <xsd:simpleType name="ST_TLDiagramBuildType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="whole"/> <xsd:enumeration value="depthByNode"/> <xsd:enumeration value="depthByBranch"/> <xsd:enumeration value="breadthByNode"/> <xsd:enumeration value="breadthByLvl"/> <xsd:enumeration value="cw"/> <xsd:enumeration value="cwIn"/> <xsd:enumeration value="cwOut"/> <xsd:enumeration value="ccw"/> <xsd:enumeration value="ccwIn"/> <xsd:enumeration value="ccwOut"/> <xsd:enumeration value="inByRing"/> <xsd:enumeration value="outByRing"/> <xsd:enumeration value="up"/> <xsd:enumeration value="down"/> <xsd:enumeration value="allAtOnce"/> <xsd:enumeration value="cust"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_TLBuildDiagram"> <xsd:attributeGroup ref="AG_TLBuild"/> <xsd:attribute name="bld" type="ST_TLDiagramBuildType" use="optional" default="whole"/> </xsd:complexType> <xsd:simpleType name="ST_TLOleChartBuildType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="allAtOnce"/> <xsd:enumeration value="series"/> <xsd:enumeration value="category"/> <xsd:enumeration value="seriesEl"/> <xsd:enumeration value="categoryEl"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_TLOleBuildChart"> <xsd:attributeGroup ref="AG_TLBuild"/> <xsd:attribute name="bld" type="ST_TLOleChartBuildType" use="optional" default="allAtOnce"/> <xsd:attribute name="animBg" type="xsd:boolean" use="optional" default="true"/> </xsd:complexType> <xsd:complexType name="CT_TLGraphicalObjectBuild"> <xsd:choice minOccurs="1" maxOccurs="1"> <xsd:element name="bldAsOne" type="CT_Empty"/> <xsd:element name="bldSub" type="a:CT_AnimationGraphicalObjectBuildProperties"/> </xsd:choice> <xsd:attributeGroup ref="AG_TLBuild"/> </xsd:complexType> <xsd:complexType name="CT_BuildList"> <xsd:choice minOccurs="1" maxOccurs="unbounded"> <xsd:element name="bldP" type="CT_TLBuildParagraph"/> <xsd:element name="bldDgm" type="CT_TLBuildDiagram"/> <xsd:element name="bldOleChart" type="CT_TLOleBuildChart"/> <xsd:element name="bldGraphic" type="CT_TLGraphicalObjectBuild"/> </xsd:choice> </xsd:complexType> <xsd:complexType name="CT_SlideTiming"> <xsd:sequence> <xsd:element name="tnLst" type="CT_TimeNodeList" minOccurs="0" maxOccurs="1"/> <xsd:element name="bldLst" type="CT_BuildList" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionListModify" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Empty"/> <xsd:simpleType name="ST_Name"> <xsd:restriction base="xsd:string"/> </xsd:simpleType> <xsd:simpleType name="ST_Direction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="horz"/> <xsd:enumeration value="vert"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_Index"> <xsd:restriction base="xsd:unsignedInt"/> </xsd:simpleType> <xsd:complexType name="CT_IndexRange"> <xsd:attribute name="st" type="ST_Index" use="required"/> <xsd:attribute name="end" type="ST_Index" use="required"/> </xsd:complexType> <xsd:complexType name="CT_SlideRelationshipListEntry"> <xsd:attribute ref="r:id" use="required"/> </xsd:complexType> <xsd:complexType name="CT_SlideRelationshipList"> <xsd:sequence> <xsd:element name="sld" type="CT_SlideRelationshipListEntry" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_CustomShowId"> <xsd:attribute name="id" type="xsd:unsignedInt" use="required"/> </xsd:complexType> <xsd:group name="EG_SlideListChoice"> <xsd:choice> <xsd:element name="sldAll" type="CT_Empty"/> <xsd:element name="sldRg" type="CT_IndexRange"/> <xsd:element name="custShow" type="CT_CustomShowId"/> </xsd:choice> </xsd:group> <xsd:complexType name="CT_CustomerData"> <xsd:attribute ref="r:id" use="required"/> </xsd:complexType> <xsd:complexType name="CT_TagsData"> <xsd:attribute ref="r:id" use="required"/> </xsd:complexType> <xsd:complexType name="CT_CustomerDataList"> <xsd:sequence minOccurs="0" maxOccurs="1"> <xsd:element name="custData" type="CT_CustomerData" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="tags" type="CT_TagsData" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Extension"> <xsd:sequence> <xsd:any processContents="lax" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="uri" type="xsd:token" use="required"/> </xsd:complexType> <xsd:group name="EG_ExtensionList"> <xsd:sequence> <xsd:element name="ext" type="CT_Extension" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:group> <xsd:complexType name="CT_ExtensionList"> <xsd:sequence> <xsd:group ref="EG_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_ExtensionListModify"> <xsd:sequence> <xsd:group ref="EG_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="mod" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_CommentAuthor"> <xsd:sequence> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="id" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="name" type="ST_Name" use="required"/> <xsd:attribute name="initials" type="ST_Name" use="required"/> <xsd:attribute name="lastIdx" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="clrIdx" type="xsd:unsignedInt" use="required"/> </xsd:complexType> <xsd:complexType name="CT_CommentAuthorList"> <xsd:sequence> <xsd:element name="cmAuthor" type="CT_CommentAuthor" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:element name="cmAuthorLst" type="CT_CommentAuthorList"/> <xsd:complexType name="CT_Comment"> <xsd:sequence> <xsd:element name="pos" type="a:CT_Point2D" minOccurs="1" maxOccurs="1"/> <xsd:element name="text" type="xsd:string" minOccurs="1" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionListModify" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="authorId" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="dt" type="xsd:dateTime" use="optional"/> <xsd:attribute name="idx" type="ST_Index" use="required"/> </xsd:complexType> <xsd:complexType name="CT_CommentList"> <xsd:sequence> <xsd:element name="cm" type="CT_Comment" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:element name="cmLst" type="CT_CommentList"/> <xsd:attributeGroup name="AG_Ole"> <xsd:attribute name="spid" type="a:ST_ShapeID" use="optional"/> <xsd:attribute name="name" type="xsd:string" use="optional" default=""/> <xsd:attribute name="showAsIcon" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute ref="r:id" use="optional"/> <xsd:attribute name="imgW" type="a:ST_PositiveCoordinate32" use="optional"/> <xsd:attribute name="imgH" type="a:ST_PositiveCoordinate32" use="optional"/> </xsd:attributeGroup> <xsd:simpleType name="ST_OleObjectFollowColorScheme"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="none"/> <xsd:enumeration value="full"/> <xsd:enumeration value="textAndBackground"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_OleObjectEmbed"> <xsd:sequence> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="followColorScheme" type="ST_OleObjectFollowColorScheme" use="optional" default="none"/> </xsd:complexType> <xsd:complexType name="CT_OleObjectLink"> <xsd:sequence> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="updateAutomatic" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_OleObject"> <xsd:sequence> <xsd:choice minOccurs="1" maxOccurs="1"> <xsd:element name="embed" type="CT_OleObjectEmbed"/> <xsd:element name="link" type="CT_OleObjectLink"/> </xsd:choice> <xsd:element name="pic" type="CT_Picture" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attributeGroup ref="AG_Ole"/> <xsd:attribute name="progId" type="xsd:string" use="optional"/> </xsd:complexType> <xsd:element name="oleObj" type="CT_OleObject"/> <xsd:complexType name="CT_Control"> <xsd:sequence> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> <xsd:element name="pic" type="CT_Picture" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attributeGroup ref="AG_Ole"/> </xsd:complexType> <xsd:complexType name="CT_ControlList"> <xsd:sequence> <xsd:element name="control" type="CT_Control" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_SlideId"> <xsd:restriction base="xsd:unsignedInt"> <xsd:minInclusive value="256"/> <xsd:maxExclusive value="2147483648"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_SlideIdListEntry"> <xsd:sequence> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="id" type="ST_SlideId" use="required"/> <xsd:attribute ref="r:id" use="required"/> </xsd:complexType> <xsd:complexType name="CT_SlideIdList"> <xsd:sequence> <xsd:element name="sldId" type="CT_SlideIdListEntry" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_SlideMasterId"> <xsd:restriction base="xsd:unsignedInt"> <xsd:minInclusive value="2147483648"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_SlideMasterIdListEntry"> <xsd:sequence> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="id" type="ST_SlideMasterId" use="optional"/> <xsd:attribute ref="r:id" use="required"/> </xsd:complexType> <xsd:complexType name="CT_SlideMasterIdList"> <xsd:sequence> <xsd:element name="sldMasterId" type="CT_SlideMasterIdListEntry" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_NotesMasterIdListEntry"> <xsd:sequence> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute ref="r:id" use="required"/> </xsd:complexType> <xsd:complexType name="CT_NotesMasterIdList"> <xsd:sequence> <xsd:element name="notesMasterId" type="CT_NotesMasterIdListEntry" minOccurs="0" maxOccurs="1" /> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_HandoutMasterIdListEntry"> <xsd:sequence> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute ref="r:id" use="required"/> </xsd:complexType> <xsd:complexType name="CT_HandoutMasterIdList"> <xsd:sequence> <xsd:element name="handoutMasterId" type="CT_HandoutMasterIdListEntry" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_EmbeddedFontDataId"> <xsd:attribute ref="r:id" use="required"/> </xsd:complexType> <xsd:complexType name="CT_EmbeddedFontListEntry"> <xsd:sequence> <xsd:element name="font" type="a:CT_TextFont" minOccurs="1" maxOccurs="1"/> <xsd:element name="regular" type="CT_EmbeddedFontDataId" minOccurs="0" maxOccurs="1"/> <xsd:element name="bold" type="CT_EmbeddedFontDataId" minOccurs="0" maxOccurs="1"/> <xsd:element name="italic" type="CT_EmbeddedFontDataId" minOccurs="0" maxOccurs="1"/> <xsd:element name="boldItalic" type="CT_EmbeddedFontDataId" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_EmbeddedFontList"> <xsd:sequence> <xsd:element name="embeddedFont" type="CT_EmbeddedFontListEntry" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_SmartTags"> <xsd:attribute ref="r:id" use="required"/> </xsd:complexType> <xsd:complexType name="CT_CustomShow"> <xsd:sequence> <xsd:element name="sldLst" type="CT_SlideRelationshipList" minOccurs="1" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="name" type="ST_Name" use="required"/> <xsd:attribute name="id" type="xsd:unsignedInt" use="required"/> </xsd:complexType> <xsd:complexType name="CT_CustomShowList"> <xsd:sequence> <xsd:element name="custShow" type="CT_CustomShow" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_PhotoAlbumLayout"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="fitToSlide"/> <xsd:enumeration value="1pic"/> <xsd:enumeration value="2pic"/> <xsd:enumeration value="4pic"/> <xsd:enumeration value="1picTitle"/> <xsd:enumeration value="2picTitle"/> <xsd:enumeration value="4picTitle"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_PhotoAlbumFrameShape"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="frameStyle1"/> <xsd:enumeration value="frameStyle2"/> <xsd:enumeration value="frameStyle3"/> <xsd:enumeration value="frameStyle4"/> <xsd:enumeration value="frameStyle5"/> <xsd:enumeration value="frameStyle6"/> <xsd:enumeration value="frameStyle7"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_PhotoAlbum"> <xsd:sequence> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="bw" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="showCaptions" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="layout" type="ST_PhotoAlbumLayout" use="optional" default="fitToSlide"/> <xsd:attribute name="frame" type="ST_PhotoAlbumFrameShape" use="optional" default="frameStyle1" /> </xsd:complexType> <xsd:simpleType name="ST_SlideSizeCoordinate"> <xsd:restriction base="a:ST_PositiveCoordinate32"> <xsd:minInclusive value="914400"/> <xsd:maxInclusive value="51206400"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_SlideSizeType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="screen4x3"/> <xsd:enumeration value="letter"/> <xsd:enumeration value="A4"/> <xsd:enumeration value="35mm"/> <xsd:enumeration value="overhead"/> <xsd:enumeration value="banner"/> <xsd:enumeration value="custom"/> <xsd:enumeration value="ledger"/> <xsd:enumeration value="A3"/> <xsd:enumeration value="B4ISO"/> <xsd:enumeration value="B5ISO"/> <xsd:enumeration value="B4JIS"/> <xsd:enumeration value="B5JIS"/> <xsd:enumeration value="hagakiCard"/> <xsd:enumeration value="screen16x9"/> <xsd:enumeration value="screen16x10"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_SlideSize"> <xsd:attribute name="cx" type="ST_SlideSizeCoordinate" use="required"/> <xsd:attribute name="cy" type="ST_SlideSizeCoordinate" use="required"/> <xsd:attribute name="type" type="ST_SlideSizeType" use="optional" default="custom"/> </xsd:complexType> <xsd:complexType name="CT_Kinsoku"> <xsd:attribute name="lang" type="xsd:string" use="optional"/> <xsd:attribute name="invalStChars" type="xsd:string" use="required"/> <xsd:attribute name="invalEndChars" type="xsd:string" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_BookmarkIdSeed"> <xsd:restriction base="xsd:unsignedInt"> <xsd:minInclusive value="1"/> <xsd:maxExclusive value="2147483648"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_ModifyVerifier"> <xsd:attribute name="algorithmName" type="xsd:string" use="optional"/> <xsd:attribute name="hashValue" type="xsd:base64Binary" use="optional"/> <xsd:attribute name="saltValue" type="xsd:base64Binary" use="optional"/> <xsd:attribute name="spinValue" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="cryptProviderType" type="s:ST_CryptProv" use="optional"/> <xsd:attribute name="cryptAlgorithmClass" type="s:ST_AlgClass" use="optional"/> <xsd:attribute name="cryptAlgorithmType" type="s:ST_AlgType" use="optional"/> <xsd:attribute name="cryptAlgorithmSid" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="spinCount" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="saltData" type="xsd:base64Binary" use="optional"/> <xsd:attribute name="hashData" type="xsd:base64Binary" use="optional"/> <xsd:attribute name="cryptProvider" type="xsd:string" use="optional"/> <xsd:attribute name="algIdExt" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="algIdExtSource" type="xsd:string" use="optional"/> <xsd:attribute name="cryptProviderTypeExt" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="cryptProviderTypeExtSource" type="xsd:string" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_Presentation"> <xsd:sequence> <xsd:element name="sldMasterIdLst" type="CT_SlideMasterIdList" minOccurs="0" maxOccurs="1"/> <xsd:element name="notesMasterIdLst" type="CT_NotesMasterIdList" minOccurs="0" maxOccurs="1"/> <xsd:element name="handoutMasterIdLst" type="CT_HandoutMasterIdList" minOccurs="0" maxOccurs="1"/> <xsd:element name="sldIdLst" type="CT_SlideIdList" minOccurs="0" maxOccurs="1"/> <xsd:element name="sldSz" type="CT_SlideSize" minOccurs="0" maxOccurs="1"/> <xsd:element name="notesSz" type="a:CT_PositiveSize2D" minOccurs="1" maxOccurs="1"/> <xsd:element name="smartTags" type="CT_SmartTags" minOccurs="0" maxOccurs="1"/> <xsd:element name="embeddedFontLst" type="CT_EmbeddedFontList" minOccurs="0" maxOccurs="1"/> <xsd:element name="custShowLst" type="CT_CustomShowList" minOccurs="0" maxOccurs="1"/> <xsd:element name="photoAlbum" type="CT_PhotoAlbum" minOccurs="0" maxOccurs="1"/> <xsd:element name="custDataLst" type="CT_CustomerDataList" minOccurs="0" maxOccurs="1"/> <xsd:element name="kinsoku" type="CT_Kinsoku" minOccurs="0"/> <xsd:element name="defaultTextStyle" type="a:CT_TextListStyle" minOccurs="0" maxOccurs="1"/> <xsd:element name="modifyVerifier" type="CT_ModifyVerifier" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="serverZoom" type="a:ST_Percentage" use="optional" default="50%"/> <xsd:attribute name="firstSlideNum" type="xsd:int" use="optional" default="1"/> <xsd:attribute name="showSpecialPlsOnTitleSld" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="rtl" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="removePersonalInfoOnSave" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="compatMode" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="strictFirstAndLastChars" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="embedTrueTypeFonts" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="saveSubsetFonts" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="autoCompressPictures" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="bookmarkIdSeed" type="ST_BookmarkIdSeed" use="optional" default="1"/> <xsd:attribute name="conformance" type="s:ST_ConformanceClass"/> </xsd:complexType> <xsd:element name="presentation" type="CT_Presentation"/> <xsd:complexType name="CT_HtmlPublishProperties"> <xsd:sequence> <xsd:group ref="EG_SlideListChoice" minOccurs="1" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="showSpeakerNotes" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="target" type="xsd:string" use="optional"/> <xsd:attribute name="title" type="xsd:string" use="optional" default=""/> <xsd:attribute ref="r:id" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_WebColorType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="none"/> <xsd:enumeration value="browser"/> <xsd:enumeration value="presentationText"/> <xsd:enumeration value="presentationAccent"/> <xsd:enumeration value="whiteTextOnBlack"/> <xsd:enumeration value="blackTextOnWhite"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_WebScreenSize"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="544x376"/> <xsd:enumeration value="640x480"/> <xsd:enumeration value="720x512"/> <xsd:enumeration value="800x600"/> <xsd:enumeration value="1024x768"/> <xsd:enumeration value="1152x882"/> <xsd:enumeration value="1152x900"/> <xsd:enumeration value="1280x1024"/> <xsd:enumeration value="1600x1200"/> <xsd:enumeration value="1800x1400"/> <xsd:enumeration value="1920x1200"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_WebEncoding"> <xsd:restriction base="xsd:string"/> </xsd:simpleType> <xsd:complexType name="CT_WebProperties"> <xsd:sequence> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="showAnimation" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="resizeGraphics" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="allowPng" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="relyOnVml" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="organizeInFolders" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="useLongFilenames" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="imgSz" type="ST_WebScreenSize" use="optional" default="800x600"/> <xsd:attribute name="encoding" type="ST_WebEncoding" use="optional" default=""/> <xsd:attribute name="clr" type="ST_WebColorType" use="optional" default="whiteTextOnBlack"/> </xsd:complexType> <xsd:simpleType name="ST_PrintWhat"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="slides"/> <xsd:enumeration value="handouts1"/> <xsd:enumeration value="handouts2"/> <xsd:enumeration value="handouts3"/> <xsd:enumeration value="handouts4"/> <xsd:enumeration value="handouts6"/> <xsd:enumeration value="handouts9"/> <xsd:enumeration value="notes"/> <xsd:enumeration value="outline"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_PrintColorMode"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="bw"/> <xsd:enumeration value="gray"/> <xsd:enumeration value="clr"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_PrintProperties"> <xsd:sequence> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="prnWhat" type="ST_PrintWhat" use="optional" default="slides"/> <xsd:attribute name="clrMode" type="ST_PrintColorMode" use="optional" default="clr"/> <xsd:attribute name="hiddenSlides" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="scaleToFitPaper" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="frameSlides" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_ShowInfoBrowse"> <xsd:attribute name="showScrollbar" type="xsd:boolean" use="optional" default="true"/> </xsd:complexType> <xsd:complexType name="CT_ShowInfoKiosk"> <xsd:attribute name="restart" type="xsd:unsignedInt" use="optional" default="300000"/> </xsd:complexType> <xsd:group name="EG_ShowType"> <xsd:choice> <xsd:element name="present" type="CT_Empty"/> <xsd:element name="browse" type="CT_ShowInfoBrowse"/> <xsd:element name="kiosk" type="CT_ShowInfoKiosk"/> </xsd:choice> </xsd:group> <xsd:complexType name="CT_ShowProperties"> <xsd:sequence minOccurs="0" maxOccurs="1"> <xsd:group ref="EG_ShowType" minOccurs="0" maxOccurs="1"/> <xsd:group ref="EG_SlideListChoice" minOccurs="0" maxOccurs="1"/> <xsd:element name="penClr" type="a:CT_Color" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="loop" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="showNarration" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="showAnimation" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="useTimings" type="xsd:boolean" use="optional" default="true"/> </xsd:complexType> <xsd:complexType name="CT_PresentationProperties"> <xsd:sequence> <xsd:element name="htmlPubPr" type="CT_HtmlPublishProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="webPr" type="CT_WebProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="prnPr" type="CT_PrintProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="showPr" type="CT_ShowProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="clrMru" type="a:CT_ColorMRU" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:element name="presentationPr" type="CT_PresentationProperties"/> <xsd:complexType name="CT_HeaderFooter"> <xsd:sequence> <xsd:element name="extLst" type="CT_ExtensionListModify" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="sldNum" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="hdr" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="ftr" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="dt" type="xsd:boolean" use="optional" default="true"/> </xsd:complexType> <xsd:simpleType name="ST_PlaceholderType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="title"/> <xsd:enumeration value="body"/> <xsd:enumeration value="ctrTitle"/> <xsd:enumeration value="subTitle"/> <xsd:enumeration value="dt"/> <xsd:enumeration value="sldNum"/> <xsd:enumeration value="ftr"/> <xsd:enumeration value="hdr"/> <xsd:enumeration value="obj"/> <xsd:enumeration value="chart"/> <xsd:enumeration value="tbl"/> <xsd:enumeration value="clipArt"/> <xsd:enumeration value="dgm"/> <xsd:enumeration value="media"/> <xsd:enumeration value="sldImg"/> <xsd:enumeration value="pic"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_PlaceholderSize"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="full"/> <xsd:enumeration value="half"/> <xsd:enumeration value="quarter"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Placeholder"> <xsd:sequence> <xsd:element name="extLst" type="CT_ExtensionListModify" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="type" type="ST_PlaceholderType" use="optional" default="obj"/> <xsd:attribute name="orient" type="ST_Direction" use="optional" default="horz"/> <xsd:attribute name="sz" type="ST_PlaceholderSize" use="optional" default="full"/> <xsd:attribute name="idx" type="xsd:unsignedInt" use="optional" default="0"/> <xsd:attribute name="hasCustomPrompt" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_ApplicationNonVisualDrawingProps"> <xsd:sequence> <xsd:element name="ph" type="CT_Placeholder" minOccurs="0" maxOccurs="1"/> <xsd:group ref="a:EG_Media" minOccurs="0" maxOccurs="1"/> <xsd:element name="custDataLst" type="CT_CustomerDataList" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="isPhoto" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="userDrawn" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_ShapeNonVisual"> <xsd:sequence> <xsd:element name="cNvPr" type="a:CT_NonVisualDrawingProps" minOccurs="1" maxOccurs="1"/> <xsd:element name="cNvSpPr" type="a:CT_NonVisualDrawingShapeProps" minOccurs="1" maxOccurs="1"/> <xsd:element name="nvPr" type="CT_ApplicationNonVisualDrawingProps" minOccurs="1" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Shape"> <xsd:sequence> <xsd:element name="nvSpPr" type="CT_ShapeNonVisual" minOccurs="1" maxOccurs="1"/> <xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="style" type="a:CT_ShapeStyle" minOccurs="0" maxOccurs="1"/> <xsd:element name="txBody" type="a:CT_TextBody" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionListModify" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="useBgFill" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_ConnectorNonVisual"> <xsd:sequence> <xsd:element name="cNvPr" type="a:CT_NonVisualDrawingProps" minOccurs="1" maxOccurs="1"/> <xsd:element name="cNvCxnSpPr" type="a:CT_NonVisualConnectorProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="nvPr" type="CT_ApplicationNonVisualDrawingProps" minOccurs="1" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Connector"> <xsd:sequence> <xsd:element name="nvCxnSpPr" type="CT_ConnectorNonVisual" minOccurs="1" maxOccurs="1"/> <xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="style" type="a:CT_ShapeStyle" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionListModify" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_PictureNonVisual"> <xsd:sequence> <xsd:element name="cNvPr" type="a:CT_NonVisualDrawingProps" minOccurs="1" maxOccurs="1"/> <xsd:element name="cNvPicPr" type="a:CT_NonVisualPictureProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="nvPr" type="CT_ApplicationNonVisualDrawingProps" minOccurs="1" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Picture"> <xsd:sequence> <xsd:element name="nvPicPr" type="CT_PictureNonVisual" minOccurs="1" maxOccurs="1"/> <xsd:element name="blipFill" type="a:CT_BlipFillProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="style" type="a:CT_ShapeStyle" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionListModify" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_GraphicalObjectFrameNonVisual"> <xsd:sequence> <xsd:element name="cNvPr" type="a:CT_NonVisualDrawingProps" minOccurs="1" maxOccurs="1"/> <xsd:element name="cNvGraphicFramePr" type="a:CT_NonVisualGraphicFrameProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="nvPr" type="CT_ApplicationNonVisualDrawingProps" minOccurs="1" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_GraphicalObjectFrame"> <xsd:sequence> <xsd:element name="nvGraphicFramePr" type="CT_GraphicalObjectFrameNonVisual" minOccurs="1" maxOccurs="1"/> <xsd:element name="xfrm" type="a:CT_Transform2D" minOccurs="1" maxOccurs="1"/> <xsd:element ref="a:graphic" minOccurs="1" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionListModify" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="bwMode" type="a:ST_BlackWhiteMode" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_GroupShapeNonVisual"> <xsd:sequence> <xsd:element name="cNvPr" type="a:CT_NonVisualDrawingProps" minOccurs="1" maxOccurs="1"/> <xsd:element name="cNvGrpSpPr" type="a:CT_NonVisualGroupDrawingShapeProps" minOccurs="1" maxOccurs="1"/> <xsd:element name="nvPr" type="CT_ApplicationNonVisualDrawingProps" minOccurs="1" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_GroupShape"> <xsd:sequence> <xsd:element name="nvGrpSpPr" type="CT_GroupShapeNonVisual" minOccurs="1" maxOccurs="1"/> <xsd:element name="grpSpPr" type="a:CT_GroupShapeProperties" minOccurs="1" maxOccurs="1"/> <xsd:choice minOccurs="0" maxOccurs="unbounded"> <xsd:element name="sp" type="CT_Shape"/> <xsd:element name="grpSp" type="CT_GroupShape"/> <xsd:element name="graphicFrame" type="CT_GraphicalObjectFrame"/> <xsd:element name="cxnSp" type="CT_Connector"/> <xsd:element name="pic" type="CT_Picture"/> <xsd:element name="contentPart" type="CT_Rel"/> </xsd:choice> <xsd:element name="extLst" type="CT_ExtensionListModify" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Rel"> <xsd:attribute ref="r:id" use="required"/> </xsd:complexType> <xsd:group name="EG_TopLevelSlide"> <xsd:sequence> <xsd:element name="clrMap" type="a:CT_ColorMapping" minOccurs="1" maxOccurs="1"/> </xsd:sequence> </xsd:group> <xsd:group name="EG_ChildSlide"> <xsd:sequence> <xsd:element name="clrMapOvr" type="a:CT_ColorMappingOverride" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:group> <xsd:attributeGroup name="AG_ChildSlide"> <xsd:attribute name="showMasterSp" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="showMasterPhAnim" type="xsd:boolean" use="optional" default="true"/> </xsd:attributeGroup> <xsd:complexType name="CT_BackgroundProperties"> <xsd:sequence> <xsd:group ref="a:EG_FillProperties" minOccurs="1" maxOccurs="1"/> <xsd:group ref="a:EG_EffectProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="shadeToTitle" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:group name="EG_Background"> <xsd:choice> <xsd:element name="bgPr" type="CT_BackgroundProperties"/> <xsd:element name="bgRef" type="a:CT_StyleMatrixReference"/> </xsd:choice> </xsd:group> <xsd:complexType name="CT_Background"> <xsd:sequence> <xsd:group ref="EG_Background"/> </xsd:sequence> <xsd:attribute name="bwMode" type="a:ST_BlackWhiteMode" use="optional" default="white"/> </xsd:complexType> <xsd:complexType name="CT_CommonSlideData"> <xsd:sequence> <xsd:element name="bg" type="CT_Background" minOccurs="0" maxOccurs="1"/> <xsd:element name="spTree" type="CT_GroupShape" minOccurs="1" maxOccurs="1"/> <xsd:element name="custDataLst" type="CT_CustomerDataList" minOccurs="0" maxOccurs="1"/> <xsd:element name="controls" type="CT_ControlList" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="optional" default=""/> </xsd:complexType> <xsd:complexType name="CT_Slide"> <xsd:sequence minOccurs="1" maxOccurs="1"> <xsd:element name="cSld" type="CT_CommonSlideData" minOccurs="1" maxOccurs="1"/> <xsd:group ref="EG_ChildSlide" minOccurs="0" maxOccurs="1"/> <xsd:element name="transition" type="CT_SlideTransition" minOccurs="0" maxOccurs="1"/> <xsd:element name="timing" type="CT_SlideTiming" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionListModify" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attributeGroup ref="AG_ChildSlide"/> <xsd:attribute name="show" type="xsd:boolean" use="optional" default="true"/> </xsd:complexType> <xsd:element name="sld" type="CT_Slide"/> <xsd:simpleType name="ST_SlideLayoutType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="title"/> <xsd:enumeration value="tx"/> <xsd:enumeration value="twoColTx"/> <xsd:enumeration value="tbl"/> <xsd:enumeration value="txAndChart"/> <xsd:enumeration value="chartAndTx"/> <xsd:enumeration value="dgm"/> <xsd:enumeration value="chart"/> <xsd:enumeration value="txAndClipArt"/> <xsd:enumeration value="clipArtAndTx"/> <xsd:enumeration value="titleOnly"/> <xsd:enumeration value="blank"/> <xsd:enumeration value="txAndObj"/> <xsd:enumeration value="objAndTx"/> <xsd:enumeration value="objOnly"/> <xsd:enumeration value="obj"/> <xsd:enumeration value="txAndMedia"/> <xsd:enumeration value="mediaAndTx"/> <xsd:enumeration value="objOverTx"/> <xsd:enumeration value="txOverObj"/> <xsd:enumeration value="txAndTwoObj"/> <xsd:enumeration value="twoObjAndTx"/> <xsd:enumeration value="twoObjOverTx"/> <xsd:enumeration value="fourObj"/> <xsd:enumeration value="vertTx"/> <xsd:enumeration value="clipArtAndVertTx"/> <xsd:enumeration value="vertTitleAndTx"/> <xsd:enumeration value="vertTitleAndTxOverChart"/> <xsd:enumeration value="twoObj"/> <xsd:enumeration value="objAndTwoObj"/> <xsd:enumeration value="twoObjAndObj"/> <xsd:enumeration value="cust"/> <xsd:enumeration value="secHead"/> <xsd:enumeration value="twoTxTwoObj"/> <xsd:enumeration value="objTx"/> <xsd:enumeration value="picTx"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_SlideLayout"> <xsd:sequence minOccurs="1" maxOccurs="1"> <xsd:element name="cSld" type="CT_CommonSlideData" minOccurs="1" maxOccurs="1"/> <xsd:group ref="EG_ChildSlide" minOccurs="0" maxOccurs="1"/> <xsd:element name="transition" type="CT_SlideTransition" minOccurs="0" maxOccurs="1"/> <xsd:element name="timing" type="CT_SlideTiming" minOccurs="0" maxOccurs="1"/> <xsd:element name="hf" type="CT_HeaderFooter" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionListModify" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attributeGroup ref="AG_ChildSlide"/> <xsd:attribute name="matchingName" type="xsd:string" use="optional" default=""/> <xsd:attribute name="type" type="ST_SlideLayoutType" use="optional" default="cust"/> <xsd:attribute name="preserve" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="userDrawn" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:element name="sldLayout" type="CT_SlideLayout"/> <xsd:complexType name="CT_SlideMasterTextStyles"> <xsd:sequence> <xsd:element name="titleStyle" type="a:CT_TextListStyle" minOccurs="0" maxOccurs="1"/> <xsd:element name="bodyStyle" type="a:CT_TextListStyle" minOccurs="0" maxOccurs="1"/> <xsd:element name="otherStyle" type="a:CT_TextListStyle" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_SlideLayoutId"> <xsd:restriction base="xsd:unsignedInt"> <xsd:minInclusive value="2147483648"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_SlideLayoutIdListEntry"> <xsd:sequence> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="id" type="ST_SlideLayoutId" use="optional"/> <xsd:attribute ref="r:id" use="required"/> </xsd:complexType> <xsd:complexType name="CT_SlideLayoutIdList"> <xsd:sequence> <xsd:element name="sldLayoutId" type="CT_SlideLayoutIdListEntry" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_SlideMaster"> <xsd:sequence minOccurs="1" maxOccurs="1"> <xsd:element name="cSld" type="CT_CommonSlideData" minOccurs="1" maxOccurs="1"/> <xsd:group ref="EG_TopLevelSlide" minOccurs="1" maxOccurs="1"/> <xsd:element name="sldLayoutIdLst" type="CT_SlideLayoutIdList" minOccurs="0" maxOccurs="1"/> <xsd:element name="transition" type="CT_SlideTransition" minOccurs="0" maxOccurs="1"/> <xsd:element name="timing" type="CT_SlideTiming" minOccurs="0" maxOccurs="1"/> <xsd:element name="hf" type="CT_HeaderFooter" minOccurs="0" maxOccurs="1"/> <xsd:element name="txStyles" type="CT_SlideMasterTextStyles" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionListModify" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="preserve" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:element name="sldMaster" type="CT_SlideMaster"/> <xsd:complexType name="CT_HandoutMaster"> <xsd:sequence> <xsd:element name="cSld" type="CT_CommonSlideData" minOccurs="1" maxOccurs="1"/> <xsd:group ref="EG_TopLevelSlide" minOccurs="1" maxOccurs="1"/> <xsd:element name="hf" type="CT_HeaderFooter" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionListModify" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:element name="handoutMaster" type="CT_HandoutMaster"/> <xsd:complexType name="CT_NotesMaster"> <xsd:sequence> <xsd:element name="cSld" type="CT_CommonSlideData" minOccurs="1" maxOccurs="1"/> <xsd:group ref="EG_TopLevelSlide" minOccurs="1" maxOccurs="1"/> <xsd:element name="hf" type="CT_HeaderFooter" minOccurs="0" maxOccurs="1"/> <xsd:element name="notesStyle" type="a:CT_TextListStyle" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionListModify" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:element name="notesMaster" type="CT_NotesMaster"/> <xsd:complexType name="CT_NotesSlide"> <xsd:sequence minOccurs="1" maxOccurs="1"> <xsd:element name="cSld" type="CT_CommonSlideData" minOccurs="1" maxOccurs="1"/> <xsd:group ref="EG_ChildSlide" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionListModify" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attributeGroup ref="AG_ChildSlide"/> </xsd:complexType> <xsd:element name="notes" type="CT_NotesSlide"/> <xsd:complexType name="CT_SlideSyncProperties"> <xsd:sequence> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="serverSldId" type="xsd:string" use="required"/> <xsd:attribute name="serverSldModifiedTime" type="xsd:dateTime" use="required"/> <xsd:attribute name="clientInsertedTime" type="xsd:dateTime" use="required"/> </xsd:complexType> <xsd:element name="sldSyncPr" type="CT_SlideSyncProperties"/> <xsd:complexType name="CT_StringTag"> <xsd:attribute name="name" type="xsd:string" use="required"/> <xsd:attribute name="val" type="xsd:string" use="required"/> </xsd:complexType> <xsd:complexType name="CT_TagList"> <xsd:sequence> <xsd:element name="tag" type="CT_StringTag" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:element name="tagLst" type="CT_TagList"/> <xsd:simpleType name="ST_SplitterBarState"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="minimized"/> <xsd:enumeration value="restored"/> <xsd:enumeration value="maximized"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_ViewType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="sldView"/> <xsd:enumeration value="sldMasterView"/> <xsd:enumeration value="notesView"/> <xsd:enumeration value="handoutView"/> <xsd:enumeration value="notesMasterView"/> <xsd:enumeration value="outlineView"/> <xsd:enumeration value="sldSorterView"/> <xsd:enumeration value="sldThumbnailView"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_NormalViewPortion"> <xsd:attribute name="sz" type="a:ST_PositiveFixedPercentage" use="required"/> <xsd:attribute name="autoAdjust" type="xsd:boolean" use="optional" default="true"/> </xsd:complexType> <xsd:complexType name="CT_NormalViewProperties"> <xsd:sequence> <xsd:element name="restoredLeft" type="CT_NormalViewPortion" minOccurs="1" maxOccurs="1"/> <xsd:element name="restoredTop" type="CT_NormalViewPortion" minOccurs="1" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="showOutlineIcons" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="snapVertSplitter" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="vertBarState" type="ST_SplitterBarState" use="optional" default="restored"/> <xsd:attribute name="horzBarState" type="ST_SplitterBarState" use="optional" default="restored"/> <xsd:attribute name="preferSingleView" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_CommonViewProperties"> <xsd:sequence> <xsd:element name="scale" type="a:CT_Scale2D" minOccurs="1" maxOccurs="1"/> <xsd:element name="origin" type="a:CT_Point2D" minOccurs="1" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="varScale" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_NotesTextViewProperties"> <xsd:sequence minOccurs="1" maxOccurs="1"> <xsd:element name="cViewPr" type="CT_CommonViewProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_OutlineViewSlideEntry"> <xsd:attribute ref="r:id" use="required"/> <xsd:attribute name="collapse" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_OutlineViewSlideList"> <xsd:sequence> <xsd:element name="sld" type="CT_OutlineViewSlideEntry" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_OutlineViewProperties"> <xsd:sequence minOccurs="1" maxOccurs="1"> <xsd:element name="cViewPr" type="CT_CommonViewProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="sldLst" type="CT_OutlineViewSlideList" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_SlideSorterViewProperties"> <xsd:sequence minOccurs="1" maxOccurs="1"> <xsd:element name="cViewPr" type="CT_CommonViewProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="showFormatting" type="xsd:boolean" use="optional" default="true"/> </xsd:complexType> <xsd:complexType name="CT_Guide"> <xsd:attribute name="orient" type="ST_Direction" use="optional" default="vert"/> <xsd:attribute name="pos" type="a:ST_Coordinate32" use="optional" default="0"/> </xsd:complexType> <xsd:complexType name="CT_GuideList"> <xsd:sequence minOccurs="0" maxOccurs="1"> <xsd:element name="guide" type="CT_Guide" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_CommonSlideViewProperties"> <xsd:sequence> <xsd:element name="cViewPr" type="CT_CommonViewProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="guideLst" type="CT_GuideList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="snapToGrid" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="snapToObjects" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="showGuides" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_SlideViewProperties"> <xsd:sequence> <xsd:element name="cSldViewPr" type="CT_CommonSlideViewProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_NotesViewProperties"> <xsd:sequence> <xsd:element name="cSldViewPr" type="CT_CommonSlideViewProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_ViewProperties"> <xsd:sequence minOccurs="0" maxOccurs="1"> <xsd:element name="normalViewPr" type="CT_NormalViewProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="slideViewPr" type="CT_SlideViewProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="outlineViewPr" type="CT_OutlineViewProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="notesTextViewPr" type="CT_NotesTextViewProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="sorterViewPr" type="CT_SlideSorterViewProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="notesViewPr" type="CT_NotesViewProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="gridSpacing" type="a:CT_PositiveSize2D" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="lastView" type="ST_ViewType" use="optional" default="sldView"/> <xsd:attribute name="showComments" type="xsd:boolean" use="optional" default="true"/> </xsd:complexType> <xsd:element name="viewPr" type="CT_ViewProperties"/> </xsd:schema> ================================================ FILE: skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd ================================================ <?xml version="1.0" encoding="utf-8"?> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.openxmlformats.org/officeDocument/2006/characteristics" targetNamespace="http://schemas.openxmlformats.org/officeDocument/2006/characteristics" elementFormDefault="qualified"> <xsd:complexType name="CT_AdditionalCharacteristics"> <xsd:sequence> <xsd:element name="characteristic" type="CT_Characteristic" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Characteristic"> <xsd:attribute name="name" type="xsd:string" use="required"/> <xsd:attribute name="relation" type="ST_Relation" use="required"/> <xsd:attribute name="val" type="xsd:string" use="required"/> <xsd:attribute name="vocabulary" type="xsd:anyURI" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_Relation"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="ge"/> <xsd:enumeration value="le"/> <xsd:enumeration value="gt"/> <xsd:enumeration value="lt"/> <xsd:enumeration value="eq"/> </xsd:restriction> </xsd:simpleType> <xsd:element name="additionalCharacteristics" type="CT_AdditionalCharacteristics"/> </xsd:schema> ================================================ FILE: skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd ================================================ <?xml version="1.0" encoding="utf-8"?> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.openxmlformats.org/officeDocument/2006/bibliography" xmlns:s="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes" targetNamespace="http://schemas.openxmlformats.org/officeDocument/2006/bibliography" elementFormDefault="qualified"> <xsd:import namespace="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes" schemaLocation="shared-commonSimpleTypes.xsd"/> <xsd:simpleType name="ST_SourceType"> <xsd:restriction base="s:ST_String"> <xsd:enumeration value="ArticleInAPeriodical"/> <xsd:enumeration value="Book"/> <xsd:enumeration value="BookSection"/> <xsd:enumeration value="JournalArticle"/> <xsd:enumeration value="ConferenceProceedings"/> <xsd:enumeration value="Report"/> <xsd:enumeration value="SoundRecording"/> <xsd:enumeration value="Performance"/> <xsd:enumeration value="Art"/> <xsd:enumeration value="DocumentFromInternetSite"/> <xsd:enumeration value="InternetSite"/> <xsd:enumeration value="Film"/> <xsd:enumeration value="Interview"/> <xsd:enumeration value="Patent"/> <xsd:enumeration value="ElectronicSource"/> <xsd:enumeration value="Case"/> <xsd:enumeration value="Misc"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_NameListType"> <xsd:sequence> <xsd:element name="Person" type="CT_PersonType" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_PersonType"> <xsd:sequence> <xsd:element name="Last" type="s:ST_String" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="First" type="s:ST_String" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="Middle" type="s:ST_String" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_NameType"> <xsd:sequence> <xsd:element name="NameList" type="CT_NameListType" minOccurs="1" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_NameOrCorporateType"> <xsd:sequence> <xsd:choice minOccurs="0" maxOccurs="1"> <xsd:element name="NameList" type="CT_NameListType" minOccurs="1" maxOccurs="1"/> <xsd:element name="Corporate" minOccurs="1" maxOccurs="1" type="s:ST_String"/> </xsd:choice> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_AuthorType"> <xsd:sequence> <xsd:choice minOccurs="0" maxOccurs="unbounded"> <xsd:element name="Artist" type="CT_NameType"/> <xsd:element name="Author" type="CT_NameOrCorporateType"/> <xsd:element name="BookAuthor" type="CT_NameType"/> <xsd:element name="Compiler" type="CT_NameType"/> <xsd:element name="Composer" type="CT_NameType"/> <xsd:element name="Conductor" type="CT_NameType"/> <xsd:element name="Counsel" type="CT_NameType"/> <xsd:element name="Director" type="CT_NameType"/> <xsd:element name="Editor" type="CT_NameType"/> <xsd:element name="Interviewee" type="CT_NameType"/> <xsd:element name="Interviewer" type="CT_NameType"/> <xsd:element name="Inventor" type="CT_NameType"/> <xsd:element name="Performer" type="CT_NameOrCorporateType"/> <xsd:element name="ProducerName" type="CT_NameType"/> <xsd:element name="Translator" type="CT_NameType"/> <xsd:element name="Writer" type="CT_NameType"/> </xsd:choice> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_SourceType"> <xsd:sequence> <xsd:choice minOccurs="0" maxOccurs="unbounded"> <xsd:element name="AbbreviatedCaseNumber" type="s:ST_String"/> <xsd:element name="AlbumTitle" type="s:ST_String"/> <xsd:element name="Author" type="CT_AuthorType"/> <xsd:element name="BookTitle" type="s:ST_String"/> <xsd:element name="Broadcaster" type="s:ST_String"/> <xsd:element name="BroadcastTitle" type="s:ST_String"/> <xsd:element name="CaseNumber" type="s:ST_String"/> <xsd:element name="ChapterNumber" type="s:ST_String"/> <xsd:element name="City" type="s:ST_String"/> <xsd:element name="Comments" type="s:ST_String"/> <xsd:element name="ConferenceName" type="s:ST_String"/> <xsd:element name="CountryRegion" type="s:ST_String"/> <xsd:element name="Court" type="s:ST_String"/> <xsd:element name="Day" type="s:ST_String"/> <xsd:element name="DayAccessed" type="s:ST_String"/> <xsd:element name="Department" type="s:ST_String"/> <xsd:element name="Distributor" type="s:ST_String"/> <xsd:element name="Edition" type="s:ST_String"/> <xsd:element name="Guid" type="s:ST_String"/> <xsd:element name="Institution" type="s:ST_String"/> <xsd:element name="InternetSiteTitle" type="s:ST_String"/> <xsd:element name="Issue" type="s:ST_String"/> <xsd:element name="JournalName" type="s:ST_String"/> <xsd:element name="LCID" type="s:ST_Lang"/> <xsd:element name="Medium" type="s:ST_String"/> <xsd:element name="Month" type="s:ST_String"/> <xsd:element name="MonthAccessed" type="s:ST_String"/> <xsd:element name="NumberVolumes" type="s:ST_String"/> <xsd:element name="Pages" type="s:ST_String"/> <xsd:element name="PatentNumber" type="s:ST_String"/> <xsd:element name="PeriodicalTitle" type="s:ST_String"/> <xsd:element name="ProductionCompany" type="s:ST_String"/> <xsd:element name="PublicationTitle" type="s:ST_String"/> <xsd:element name="Publisher" type="s:ST_String"/> <xsd:element name="RecordingNumber" type="s:ST_String"/> <xsd:element name="RefOrder" type="s:ST_String"/> <xsd:element name="Reporter" type="s:ST_String"/> <xsd:element name="SourceType" type="ST_SourceType"/> <xsd:element name="ShortTitle" type="s:ST_String"/> <xsd:element name="StandardNumber" type="s:ST_String"/> <xsd:element name="StateProvince" type="s:ST_String"/> <xsd:element name="Station" type="s:ST_String"/> <xsd:element name="Tag" type="s:ST_String"/> <xsd:element name="Theater" type="s:ST_String"/> <xsd:element name="ThesisType" type="s:ST_String"/> <xsd:element name="Title" type="s:ST_String"/> <xsd:element name="Type" type="s:ST_String"/> <xsd:element name="URL" type="s:ST_String"/> <xsd:element name="Version" type="s:ST_String"/> <xsd:element name="Volume" type="s:ST_String"/> <xsd:element name="Year" type="s:ST_String"/> <xsd:element name="YearAccessed" type="s:ST_String"/> </xsd:choice> </xsd:sequence> </xsd:complexType> <xsd:element name="Sources" type="CT_Sources"/> <xsd:complexType name="CT_Sources"> <xsd:sequence> <xsd:element name="Source" type="CT_SourceType" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="SelectedStyle" type="s:ST_String"/> <xsd:attribute name="StyleName" type="s:ST_String"/> <xsd:attribute name="URI" type="s:ST_String"/> </xsd:complexType> </xsd:schema> ================================================ FILE: skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd ================================================ <?xml version="1.0" encoding="utf-8"?> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes" targetNamespace="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes" elementFormDefault="qualified"> <xsd:simpleType name="ST_Lang"> <xsd:restriction base="xsd:string"/> </xsd:simpleType> <xsd:simpleType name="ST_HexColorRGB"> <xsd:restriction base="xsd:hexBinary"> <xsd:length value="3" fixed="true"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_Panose"> <xsd:restriction base="xsd:hexBinary"> <xsd:length value="10"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_CalendarType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="gregorian"/> <xsd:enumeration value="gregorianUs"/> <xsd:enumeration value="gregorianMeFrench"/> <xsd:enumeration value="gregorianArabic"/> <xsd:enumeration value="hijri"/> <xsd:enumeration value="hebrew"/> <xsd:enumeration value="taiwan"/> <xsd:enumeration value="japan"/> <xsd:enumeration value="thai"/> <xsd:enumeration value="korea"/> <xsd:enumeration value="saka"/> <xsd:enumeration value="gregorianXlitEnglish"/> <xsd:enumeration value="gregorianXlitFrench"/> <xsd:enumeration value="none"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_AlgClass"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="hash"/> <xsd:enumeration value="custom"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_CryptProv"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="rsaAES"/> <xsd:enumeration value="rsaFull"/> <xsd:enumeration value="custom"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_AlgType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="typeAny"/> <xsd:enumeration value="custom"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_ColorType"> <xsd:restriction base="xsd:string"/> </xsd:simpleType> <xsd:simpleType name="ST_Guid"> <xsd:restriction base="xsd:token"> <xsd:pattern value="\{[0-9A-F]{8}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{12}\}"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_OnOff"> <xsd:union memberTypes="xsd:boolean ST_OnOff1"/> </xsd:simpleType> <xsd:simpleType name="ST_OnOff1"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="on"/> <xsd:enumeration value="off"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_String"> <xsd:restriction base="xsd:string"/> </xsd:simpleType> <xsd:simpleType name="ST_XmlName"> <xsd:restriction base="xsd:NCName"> <xsd:minLength value="1"/> <xsd:maxLength value="255"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_TrueFalse"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="t"/> <xsd:enumeration value="f"/> <xsd:enumeration value="true"/> <xsd:enumeration value="false"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_TrueFalseBlank"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="t"/> <xsd:enumeration value="f"/> <xsd:enumeration value="true"/> <xsd:enumeration value="false"/> <xsd:enumeration value=""/> <xsd:enumeration value="True"/> <xsd:enumeration value="False"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_UnsignedDecimalNumber"> <xsd:restriction base="xsd:decimal"> <xsd:minInclusive value="0"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_TwipsMeasure"> <xsd:union memberTypes="ST_UnsignedDecimalNumber ST_PositiveUniversalMeasure"/> </xsd:simpleType> <xsd:simpleType name="ST_VerticalAlignRun"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="baseline"/> <xsd:enumeration value="superscript"/> <xsd:enumeration value="subscript"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_Xstring"> <xsd:restriction base="xsd:string"/> </xsd:simpleType> <xsd:simpleType name="ST_XAlign"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="left"/> <xsd:enumeration value="center"/> <xsd:enumeration value="right"/> <xsd:enumeration value="inside"/> <xsd:enumeration value="outside"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_YAlign"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="inline"/> <xsd:enumeration value="top"/> <xsd:enumeration value="center"/> <xsd:enumeration value="bottom"/> <xsd:enumeration value="inside"/> <xsd:enumeration value="outside"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_ConformanceClass"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="strict"/> <xsd:enumeration value="transitional"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_UniversalMeasure"> <xsd:restriction base="xsd:string"> <xsd:pattern value="-?[0-9]+(\.[0-9]+)?(mm|cm|in|pt|pc|pi)"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_PositiveUniversalMeasure"> <xsd:restriction base="ST_UniversalMeasure"> <xsd:pattern value="[0-9]+(\.[0-9]+)?(mm|cm|in|pt|pc|pi)"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_Percentage"> <xsd:restriction base="xsd:string"> <xsd:pattern value="-?[0-9]+(\.[0-9]+)?%"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_FixedPercentage"> <xsd:restriction base="ST_Percentage"> <xsd:pattern value="-?((100)|([0-9][0-9]?))(\.[0-9][0-9]?)?%"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_PositivePercentage"> <xsd:restriction base="ST_Percentage"> <xsd:pattern value="[0-9]+(\.[0-9]+)?%"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_PositiveFixedPercentage"> <xsd:restriction base="ST_Percentage"> <xsd:pattern value="((100)|([0-9][0-9]?))(\.[0-9][0-9]?)?%"/> </xsd:restriction> </xsd:simpleType> </xsd:schema> ================================================ FILE: skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd ================================================ <?xml version="1.0" encoding="utf-8"?> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.openxmlformats.org/officeDocument/2006/customXml" xmlns:s="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes" targetNamespace="http://schemas.openxmlformats.org/officeDocument/2006/customXml" elementFormDefault="qualified" attributeFormDefault="qualified" blockDefault="#all"> <xsd:import namespace="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes" schemaLocation="shared-commonSimpleTypes.xsd"/> <xsd:complexType name="CT_DatastoreSchemaRef"> <xsd:attribute name="uri" type="xsd:string" use="required"/> </xsd:complexType> <xsd:complexType name="CT_DatastoreSchemaRefs"> <xsd:sequence> <xsd:element name="schemaRef" type="CT_DatastoreSchemaRef" minOccurs="0" maxOccurs="unbounded" /> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_DatastoreItem"> <xsd:sequence> <xsd:element name="schemaRefs" type="CT_DatastoreSchemaRefs" minOccurs="0"/> </xsd:sequence> <xsd:attribute name="itemID" type="s:ST_Guid" use="required"/> </xsd:complexType> <xsd:element name="datastoreItem" type="CT_DatastoreItem"/> </xsd:schema> ================================================ FILE: skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd ================================================ <?xml version="1.0" encoding="utf-8"?> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.openxmlformats.org/schemaLibrary/2006/main" targetNamespace="http://schemas.openxmlformats.org/schemaLibrary/2006/main" attributeFormDefault="qualified" elementFormDefault="qualified"> <xsd:complexType name="CT_Schema"> <xsd:attribute name="uri" type="xsd:string" default=""/> <xsd:attribute name="manifestLocation" type="xsd:string"/> <xsd:attribute name="schemaLocation" type="xsd:string"/> <xsd:attribute name="schemaLanguage" type="xsd:token"/> </xsd:complexType> <xsd:complexType name="CT_SchemaLibrary"> <xsd:sequence> <xsd:element name="schema" type="CT_Schema" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:element name="schemaLibrary" type="CT_SchemaLibrary"/> </xsd:schema> ================================================ FILE: skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd ================================================ <?xml version="1.0" encoding="utf-8"?> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.openxmlformats.org/officeDocument/2006/custom-properties" xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes" xmlns:s="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes" targetNamespace="http://schemas.openxmlformats.org/officeDocument/2006/custom-properties" blockDefault="#all" elementFormDefault="qualified"> <xsd:import namespace="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes" schemaLocation="shared-documentPropertiesVariantTypes.xsd"/> <xsd:import namespace="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes" schemaLocation="shared-commonSimpleTypes.xsd"/> <xsd:element name="Properties" type="CT_Properties"/> <xsd:complexType name="CT_Properties"> <xsd:sequence> <xsd:element name="property" minOccurs="0" maxOccurs="unbounded" type="CT_Property"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Property"> <xsd:choice minOccurs="1" maxOccurs="1"> <xsd:element ref="vt:vector"/> <xsd:element ref="vt:array"/> <xsd:element ref="vt:blob"/> <xsd:element ref="vt:oblob"/> <xsd:element ref="vt:empty"/> <xsd:element ref="vt:null"/> <xsd:element ref="vt:i1"/> <xsd:element ref="vt:i2"/> <xsd:element ref="vt:i4"/> <xsd:element ref="vt:i8"/> <xsd:element ref="vt:int"/> <xsd:element ref="vt:ui1"/> <xsd:element ref="vt:ui2"/> <xsd:element ref="vt:ui4"/> <xsd:element ref="vt:ui8"/> <xsd:element ref="vt:uint"/> <xsd:element ref="vt:r4"/> <xsd:element ref="vt:r8"/> <xsd:element ref="vt:decimal"/> <xsd:element ref="vt:lpstr"/> <xsd:element ref="vt:lpwstr"/> <xsd:element ref="vt:bstr"/> <xsd:element ref="vt:date"/> <xsd:element ref="vt:filetime"/> <xsd:element ref="vt:bool"/> <xsd:element ref="vt:cy"/> <xsd:element ref="vt:error"/> <xsd:element ref="vt:stream"/> <xsd:element ref="vt:ostream"/> <xsd:element ref="vt:storage"/> <xsd:element ref="vt:ostorage"/> <xsd:element ref="vt:vstream"/> <xsd:element ref="vt:clsid"/> </xsd:choice> <xsd:attribute name="fmtid" use="required" type="s:ST_Guid"/> <xsd:attribute name="pid" use="required" type="xsd:int"/> <xsd:attribute name="name" use="optional" type="xsd:string"/> <xsd:attribute name="linkTarget" use="optional" type="xsd:string"/> </xsd:complexType> </xsd:schema> ================================================ FILE: skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd ================================================ <?xml version="1.0" encoding="utf-8"?> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.openxmlformats.org/officeDocument/2006/extended-properties" xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes" targetNamespace="http://schemas.openxmlformats.org/officeDocument/2006/extended-properties" elementFormDefault="qualified" blockDefault="#all"> <xsd:import namespace="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes" schemaLocation="shared-documentPropertiesVariantTypes.xsd"/> <xsd:element name="Properties" type="CT_Properties"/> <xsd:complexType name="CT_Properties"> <xsd:all> <xsd:element name="Template" minOccurs="0" maxOccurs="1" type="xsd:string"/> <xsd:element name="Manager" minOccurs="0" maxOccurs="1" type="xsd:string"/> <xsd:element name="Company" minOccurs="0" maxOccurs="1" type="xsd:string"/> <xsd:element name="Pages" minOccurs="0" maxOccurs="1" type="xsd:int"/> <xsd:element name="Words" minOccurs="0" maxOccurs="1" type="xsd:int"/> <xsd:element name="Characters" minOccurs="0" maxOccurs="1" type="xsd:int"/> <xsd:element name="PresentationFormat" minOccurs="0" maxOccurs="1" type="xsd:string"/> <xsd:element name="Lines" minOccurs="0" maxOccurs="1" type="xsd:int"/> <xsd:element name="Paragraphs" minOccurs="0" maxOccurs="1" type="xsd:int"/> <xsd:element name="Slides" minOccurs="0" maxOccurs="1" type="xsd:int"/> <xsd:element name="Notes" minOccurs="0" maxOccurs="1" type="xsd:int"/> <xsd:element name="TotalTime" minOccurs="0" maxOccurs="1" type="xsd:int"/> <xsd:element name="HiddenSlides" minOccurs="0" maxOccurs="1" type="xsd:int"/> <xsd:element name="MMClips" minOccurs="0" maxOccurs="1" type="xsd:int"/> <xsd:element name="ScaleCrop" minOccurs="0" maxOccurs="1" type="xsd:boolean"/> <xsd:element name="HeadingPairs" minOccurs="0" maxOccurs="1" type="CT_VectorVariant"/> <xsd:element name="TitlesOfParts" minOccurs="0" maxOccurs="1" type="CT_VectorLpstr"/> <xsd:element name="LinksUpToDate" minOccurs="0" maxOccurs="1" type="xsd:boolean"/> <xsd:element name="CharactersWithSpaces" minOccurs="0" maxOccurs="1" type="xsd:int"/> <xsd:element name="SharedDoc" minOccurs="0" maxOccurs="1" type="xsd:boolean"/> <xsd:element name="HyperlinkBase" minOccurs="0" maxOccurs="1" type="xsd:string"/> <xsd:element name="HLinks" minOccurs="0" maxOccurs="1" type="CT_VectorVariant"/> <xsd:element name="HyperlinksChanged" minOccurs="0" maxOccurs="1" type="xsd:boolean"/> <xsd:element name="DigSig" minOccurs="0" maxOccurs="1" type="CT_DigSigBlob"/> <xsd:element name="Application" minOccurs="0" maxOccurs="1" type="xsd:string"/> <xsd:element name="AppVersion" minOccurs="0" maxOccurs="1" type="xsd:string"/> <xsd:element name="DocSecurity" minOccurs="0" maxOccurs="1" type="xsd:int"/> </xsd:all> </xsd:complexType> <xsd:complexType name="CT_VectorVariant"> <xsd:sequence minOccurs="1" maxOccurs="1"> <xsd:element ref="vt:vector"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_VectorLpstr"> <xsd:sequence minOccurs="1" maxOccurs="1"> <xsd:element ref="vt:vector"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_DigSigBlob"> <xsd:sequence minOccurs="1" maxOccurs="1"> <xsd:element ref="vt:blob"/> </xsd:sequence> </xsd:complexType> </xsd:schema> ================================================ FILE: skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd ================================================ <?xml version="1.0" encoding="utf-8"?> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes" xmlns:s="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes" targetNamespace="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes" blockDefault="#all" elementFormDefault="qualified"> <xsd:import namespace="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes" schemaLocation="shared-commonSimpleTypes.xsd"/> <xsd:simpleType name="ST_VectorBaseType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="variant"/> <xsd:enumeration value="i1"/> <xsd:enumeration value="i2"/> <xsd:enumeration value="i4"/> <xsd:enumeration value="i8"/> <xsd:enumeration value="ui1"/> <xsd:enumeration value="ui2"/> <xsd:enumeration value="ui4"/> <xsd:enumeration value="ui8"/> <xsd:enumeration value="r4"/> <xsd:enumeration value="r8"/> <xsd:enumeration value="lpstr"/> <xsd:enumeration value="lpwstr"/> <xsd:enumeration value="bstr"/> <xsd:enumeration value="date"/> <xsd:enumeration value="filetime"/> <xsd:enumeration value="bool"/> <xsd:enumeration value="cy"/> <xsd:enumeration value="error"/> <xsd:enumeration value="clsid"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_ArrayBaseType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="variant"/> <xsd:enumeration value="i1"/> <xsd:enumeration value="i2"/> <xsd:enumeration value="i4"/> <xsd:enumeration value="int"/> <xsd:enumeration value="ui1"/> <xsd:enumeration value="ui2"/> <xsd:enumeration value="ui4"/> <xsd:enumeration value="uint"/> <xsd:enumeration value="r4"/> <xsd:enumeration value="r8"/> <xsd:enumeration value="decimal"/> <xsd:enumeration value="bstr"/> <xsd:enumeration value="date"/> <xsd:enumeration value="bool"/> <xsd:enumeration value="cy"/> <xsd:enumeration value="error"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_Cy"> <xsd:restriction base="xsd:string"> <xsd:pattern value="\s*[0-9]*\.[0-9]{4}\s*"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_Error"> <xsd:restriction base="xsd:string"> <xsd:pattern value="\s*0x[0-9A-Za-z]{8}\s*"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Empty"/> <xsd:complexType name="CT_Null"/> <xsd:complexType name="CT_Vector"> <xsd:choice minOccurs="1" maxOccurs="unbounded"> <xsd:element ref="variant"/> <xsd:element ref="i1"/> <xsd:element ref="i2"/> <xsd:element ref="i4"/> <xsd:element ref="i8"/> <xsd:element ref="ui1"/> <xsd:element ref="ui2"/> <xsd:element ref="ui4"/> <xsd:element ref="ui8"/> <xsd:element ref="r4"/> <xsd:element ref="r8"/> <xsd:element ref="lpstr"/> <xsd:element ref="lpwstr"/> <xsd:element ref="bstr"/> <xsd:element ref="date"/> <xsd:element ref="filetime"/> <xsd:element ref="bool"/> <xsd:element ref="cy"/> <xsd:element ref="error"/> <xsd:element ref="clsid"/> </xsd:choice> <xsd:attribute name="baseType" type="ST_VectorBaseType" use="required"/> <xsd:attribute name="size" type="xsd:unsignedInt" use="required"/> </xsd:complexType> <xsd:complexType name="CT_Array"> <xsd:choice minOccurs="1" maxOccurs="unbounded"> <xsd:element ref="variant"/> <xsd:element ref="i1"/> <xsd:element ref="i2"/> <xsd:element ref="i4"/> <xsd:element ref="int"/> <xsd:element ref="ui1"/> <xsd:element ref="ui2"/> <xsd:element ref="ui4"/> <xsd:element ref="uint"/> <xsd:element ref="r4"/> <xsd:element ref="r8"/> <xsd:element ref="decimal"/> <xsd:element ref="bstr"/> <xsd:element ref="date"/> <xsd:element ref="bool"/> <xsd:element ref="error"/> <xsd:element ref="cy"/> </xsd:choice> <xsd:attribute name="lBounds" type="xsd:int" use="required"/> <xsd:attribute name="uBounds" type="xsd:int" use="required"/> <xsd:attribute name="baseType" type="ST_ArrayBaseType" use="required"/> </xsd:complexType> <xsd:complexType name="CT_Variant"> <xsd:choice minOccurs="1" maxOccurs="1"> <xsd:element ref="variant"/> <xsd:element ref="vector"/> <xsd:element ref="array"/> <xsd:element ref="blob"/> <xsd:element ref="oblob"/> <xsd:element ref="empty"/> <xsd:element ref="null"/> <xsd:element ref="i1"/> <xsd:element ref="i2"/> <xsd:element ref="i4"/> <xsd:element ref="i8"/> <xsd:element ref="int"/> <xsd:element ref="ui1"/> <xsd:element ref="ui2"/> <xsd:element ref="ui4"/> <xsd:element ref="ui8"/> <xsd:element ref="uint"/> <xsd:element ref="r4"/> <xsd:element ref="r8"/> <xsd:element ref="decimal"/> <xsd:element ref="lpstr"/> <xsd:element ref="lpwstr"/> <xsd:element ref="bstr"/> <xsd:element ref="date"/> <xsd:element ref="filetime"/> <xsd:element ref="bool"/> <xsd:element ref="cy"/> <xsd:element ref="error"/> <xsd:element ref="stream"/> <xsd:element ref="ostream"/> <xsd:element ref="storage"/> <xsd:element ref="ostorage"/> <xsd:element ref="vstream"/> <xsd:element ref="clsid"/> </xsd:choice> </xsd:complexType> <xsd:complexType name="CT_Vstream"> <xsd:simpleContent> <xsd:extension base="xsd:base64Binary"> <xsd:attribute name="version" type="s:ST_Guid"/> </xsd:extension> </xsd:simpleContent> </xsd:complexType> <xsd:element name="variant" type="CT_Variant"/> <xsd:element name="vector" type="CT_Vector"/> <xsd:element name="array" type="CT_Array"/> <xsd:element name="blob" type="xsd:base64Binary"/> <xsd:element name="oblob" type="xsd:base64Binary"/> <xsd:element name="empty" type="CT_Empty"/> <xsd:element name="null" type="CT_Null"/> <xsd:element name="i1" type="xsd:byte"/> <xsd:element name="i2" type="xsd:short"/> <xsd:element name="i4" type="xsd:int"/> <xsd:element name="i8" type="xsd:long"/> <xsd:element name="int" type="xsd:int"/> <xsd:element name="ui1" type="xsd:unsignedByte"/> <xsd:element name="ui2" type="xsd:unsignedShort"/> <xsd:element name="ui4" type="xsd:unsignedInt"/> <xsd:element name="ui8" type="xsd:unsignedLong"/> <xsd:element name="uint" type="xsd:unsignedInt"/> <xsd:element name="r4" type="xsd:float"/> <xsd:element name="r8" type="xsd:double"/> <xsd:element name="decimal" type="xsd:decimal"/> <xsd:element name="lpstr" type="xsd:string"/> <xsd:element name="lpwstr" type="xsd:string"/> <xsd:element name="bstr" type="xsd:string"/> <xsd:element name="date" type="xsd:dateTime"/> <xsd:element name="filetime" type="xsd:dateTime"/> <xsd:element name="bool" type="xsd:boolean"/> <xsd:element name="cy" type="ST_Cy"/> <xsd:element name="error" type="ST_Error"/> <xsd:element name="stream" type="xsd:base64Binary"/> <xsd:element name="ostream" type="xsd:base64Binary"/> <xsd:element name="storage" type="xsd:base64Binary"/> <xsd:element name="ostorage" type="xsd:base64Binary"/> <xsd:element name="vstream" type="CT_Vstream"/> <xsd:element name="clsid" type="s:ST_Guid"/> </xsd:schema> ================================================ FILE: skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-math.xsd ================================================ <?xml version="1.0" encoding="utf-8"?> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:s="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes" elementFormDefault="qualified" attributeFormDefault="qualified" blockDefault="#all" targetNamespace="http://schemas.openxmlformats.org/officeDocument/2006/math"> <xsd:import namespace="http://schemas.openxmlformats.org/wordprocessingml/2006/main" schemaLocation="wml.xsd"/> <xsd:import namespace="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes" schemaLocation="shared-commonSimpleTypes.xsd"/> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" schemaLocation="xml.xsd"/> <xsd:simpleType name="ST_Integer255"> <xsd:restriction base="xsd:integer"> <xsd:minInclusive value="1"/> <xsd:maxInclusive value="255"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Integer255"> <xsd:attribute name="val" type="ST_Integer255" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_Integer2"> <xsd:restriction base="xsd:integer"> <xsd:minInclusive value="-2"/> <xsd:maxInclusive value="2"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Integer2"> <xsd:attribute name="val" type="ST_Integer2" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_SpacingRule"> <xsd:restriction base="xsd:integer"> <xsd:minInclusive value="0"/> <xsd:maxInclusive value="4"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_SpacingRule"> <xsd:attribute name="val" type="ST_SpacingRule" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_UnSignedInteger"> <xsd:restriction base="xsd:unsignedInt"/> </xsd:simpleType> <xsd:complexType name="CT_UnSignedInteger"> <xsd:attribute name="val" type="ST_UnSignedInteger" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_Char"> <xsd:restriction base="xsd:string"> <xsd:maxLength value="1"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Char"> <xsd:attribute name="val" type="ST_Char" use="required"/> </xsd:complexType> <xsd:complexType name="CT_OnOff"> <xsd:attribute name="val" type="s:ST_OnOff"/> </xsd:complexType> <xsd:complexType name="CT_String"> <xsd:attribute name="val" type="s:ST_String"/> </xsd:complexType> <xsd:complexType name="CT_XAlign"> <xsd:attribute name="val" type="s:ST_XAlign" use="required"/> </xsd:complexType> <xsd:complexType name="CT_YAlign"> <xsd:attribute name="val" type="s:ST_YAlign" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_Shp"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="centered"/> <xsd:enumeration value="match"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Shp"> <xsd:attribute name="val" type="ST_Shp" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_FType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="bar"/> <xsd:enumeration value="skw"/> <xsd:enumeration value="lin"/> <xsd:enumeration value="noBar"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_FType"> <xsd:attribute name="val" type="ST_FType" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_LimLoc"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="undOvr"/> <xsd:enumeration value="subSup"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_LimLoc"> <xsd:attribute name="val" type="ST_LimLoc" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_TopBot"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="top"/> <xsd:enumeration value="bot"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_TopBot"> <xsd:attribute name="val" type="ST_TopBot" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_Script"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="roman"/> <xsd:enumeration value="script"/> <xsd:enumeration value="fraktur"/> <xsd:enumeration value="double-struck"/> <xsd:enumeration value="sans-serif"/> <xsd:enumeration value="monospace"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Script"> <xsd:attribute name="val" type="ST_Script"/> </xsd:complexType> <xsd:simpleType name="ST_Style"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="p"/> <xsd:enumeration value="b"/> <xsd:enumeration value="i"/> <xsd:enumeration value="bi"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Style"> <xsd:attribute name="val" type="ST_Style"/> </xsd:complexType> <xsd:complexType name="CT_ManualBreak"> <xsd:attribute name="alnAt" type="ST_Integer255"/> </xsd:complexType> <xsd:group name="EG_ScriptStyle"> <xsd:sequence> <xsd:element name="scr" minOccurs="0" type="CT_Script"/> <xsd:element name="sty" minOccurs="0" type="CT_Style"/> </xsd:sequence> </xsd:group> <xsd:complexType name="CT_RPR"> <xsd:sequence> <xsd:element name="lit" minOccurs="0" type="CT_OnOff"/> <xsd:choice> <xsd:element name="nor" minOccurs="0" type="CT_OnOff"/> <xsd:sequence> <xsd:group ref="EG_ScriptStyle"/> </xsd:sequence> </xsd:choice> <xsd:element name="brk" minOccurs="0" type="CT_ManualBreak"/> <xsd:element name="aln" minOccurs="0" type="CT_OnOff"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Text"> <xsd:simpleContent> <xsd:extension base="s:ST_String"> <xsd:attribute ref="xml:space" use="optional"/> </xsd:extension> </xsd:simpleContent> </xsd:complexType> <xsd:complexType name="CT_R"> <xsd:sequence> <xsd:element name="rPr" type="CT_RPR" minOccurs="0"/> <xsd:group ref="w:EG_RPr" minOccurs="0"/> <xsd:choice minOccurs="0" maxOccurs="unbounded"> <xsd:group ref="w:EG_RunInnerContent"/> <xsd:element name="t" type="CT_Text" minOccurs="0"/> </xsd:choice> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_CtrlPr"> <xsd:sequence> <xsd:group ref="w:EG_RPrMath" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_AccPr"> <xsd:sequence> <xsd:element name="chr" type="CT_Char" minOccurs="0"/> <xsd:element name="ctrlPr" type="CT_CtrlPr" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Acc"> <xsd:sequence> <xsd:element name="accPr" type="CT_AccPr" minOccurs="0"/> <xsd:element name="e" type="CT_OMathArg"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_BarPr"> <xsd:sequence> <xsd:element name="pos" type="CT_TopBot" minOccurs="0"/> <xsd:element name="ctrlPr" type="CT_CtrlPr" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Bar"> <xsd:sequence> <xsd:element name="barPr" type="CT_BarPr" minOccurs="0"/> <xsd:element name="e" type="CT_OMathArg"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_BoxPr"> <xsd:sequence> <xsd:element name="opEmu" type="CT_OnOff" minOccurs="0"/> <xsd:element name="noBreak" type="CT_OnOff" minOccurs="0"/> <xsd:element name="diff" type="CT_OnOff" minOccurs="0"/> <xsd:element name="brk" type="CT_ManualBreak" minOccurs="0"/> <xsd:element name="aln" type="CT_OnOff" minOccurs="0"/> <xsd:element name="ctrlPr" type="CT_CtrlPr" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Box"> <xsd:sequence> <xsd:element name="boxPr" type="CT_BoxPr" minOccurs="0"/> <xsd:element name="e" type="CT_OMathArg"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_BorderBoxPr"> <xsd:sequence> <xsd:element name="hideTop" type="CT_OnOff" minOccurs="0"/> <xsd:element name="hideBot" type="CT_OnOff" minOccurs="0"/> <xsd:element name="hideLeft" type="CT_OnOff" minOccurs="0"/> <xsd:element name="hideRight" type="CT_OnOff" minOccurs="0"/> <xsd:element name="strikeH" type="CT_OnOff" minOccurs="0"/> <xsd:element name="strikeV" type="CT_OnOff" minOccurs="0"/> <xsd:element name="strikeBLTR" type="CT_OnOff" minOccurs="0"/> <xsd:element name="strikeTLBR" type="CT_OnOff" minOccurs="0"/> <xsd:element name="ctrlPr" type="CT_CtrlPr" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_BorderBox"> <xsd:sequence> <xsd:element name="borderBoxPr" type="CT_BorderBoxPr" minOccurs="0"/> <xsd:element name="e" type="CT_OMathArg"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_DPr"> <xsd:sequence> <xsd:element name="begChr" type="CT_Char" minOccurs="0"/> <xsd:element name="sepChr" type="CT_Char" minOccurs="0"/> <xsd:element name="endChr" type="CT_Char" minOccurs="0"/> <xsd:element name="grow" type="CT_OnOff" minOccurs="0"/> <xsd:element name="shp" type="CT_Shp" minOccurs="0"/> <xsd:element name="ctrlPr" type="CT_CtrlPr" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_D"> <xsd:sequence> <xsd:element name="dPr" type="CT_DPr" minOccurs="0"/> <xsd:element name="e" type="CT_OMathArg" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_EqArrPr"> <xsd:sequence> <xsd:element name="baseJc" type="CT_YAlign" minOccurs="0"/> <xsd:element name="maxDist" type="CT_OnOff" minOccurs="0"/> <xsd:element name="objDist" type="CT_OnOff" minOccurs="0"/> <xsd:element name="rSpRule" type="CT_SpacingRule" minOccurs="0"/> <xsd:element name="rSp" type="CT_UnSignedInteger" minOccurs="0"/> <xsd:element name="ctrlPr" type="CT_CtrlPr" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_EqArr"> <xsd:sequence> <xsd:element name="eqArrPr" type="CT_EqArrPr" minOccurs="0"/> <xsd:element name="e" type="CT_OMathArg" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_FPr"> <xsd:sequence> <xsd:element name="type" type="CT_FType" minOccurs="0"/> <xsd:element name="ctrlPr" type="CT_CtrlPr" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_F"> <xsd:sequence> <xsd:element name="fPr" type="CT_FPr" minOccurs="0"/> <xsd:element name="num" type="CT_OMathArg"/> <xsd:element name="den" type="CT_OMathArg"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_FuncPr"> <xsd:sequence> <xsd:element name="ctrlPr" type="CT_CtrlPr" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Func"> <xsd:sequence> <xsd:element name="funcPr" type="CT_FuncPr" minOccurs="0"/> <xsd:element name="fName" type="CT_OMathArg"/> <xsd:element name="e" type="CT_OMathArg"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_GroupChrPr"> <xsd:sequence> <xsd:element name="chr" type="CT_Char" minOccurs="0"/> <xsd:element name="pos" type="CT_TopBot" minOccurs="0"/> <xsd:element name="vertJc" type="CT_TopBot" minOccurs="0"/> <xsd:element name="ctrlPr" type="CT_CtrlPr" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_GroupChr"> <xsd:sequence> <xsd:element name="groupChrPr" type="CT_GroupChrPr" minOccurs="0"/> <xsd:element name="e" type="CT_OMathArg"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_LimLowPr"> <xsd:sequence> <xsd:element name="ctrlPr" type="CT_CtrlPr" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_LimLow"> <xsd:sequence> <xsd:element name="limLowPr" type="CT_LimLowPr" minOccurs="0"/> <xsd:element name="e" type="CT_OMathArg"/> <xsd:element name="lim" type="CT_OMathArg"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_LimUppPr"> <xsd:sequence> <xsd:element name="ctrlPr" type="CT_CtrlPr" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_LimUpp"> <xsd:sequence> <xsd:element name="limUppPr" type="CT_LimUppPr" minOccurs="0"/> <xsd:element name="e" type="CT_OMathArg"/> <xsd:element name="lim" type="CT_OMathArg"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_MCPr"> <xsd:sequence> <xsd:element name="count" type="CT_Integer255" minOccurs="0"/> <xsd:element name="mcJc" type="CT_XAlign" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_MC"> <xsd:sequence> <xsd:element name="mcPr" type="CT_MCPr" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_MCS"> <xsd:sequence> <xsd:element name="mc" type="CT_MC" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_MPr"> <xsd:sequence> <xsd:element name="baseJc" type="CT_YAlign" minOccurs="0"/> <xsd:element name="plcHide" type="CT_OnOff" minOccurs="0"/> <xsd:element name="rSpRule" type="CT_SpacingRule" minOccurs="0"/> <xsd:element name="cGpRule" type="CT_SpacingRule" minOccurs="0"/> <xsd:element name="rSp" type="CT_UnSignedInteger" minOccurs="0"/> <xsd:element name="cSp" type="CT_UnSignedInteger" minOccurs="0"/> <xsd:element name="cGp" type="CT_UnSignedInteger" minOccurs="0"/> <xsd:element name="mcs" type="CT_MCS" minOccurs="0"/> <xsd:element name="ctrlPr" type="CT_CtrlPr" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_MR"> <xsd:sequence> <xsd:element name="e" type="CT_OMathArg" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_M"> <xsd:sequence> <xsd:element name="mPr" type="CT_MPr" minOccurs="0"/> <xsd:element name="mr" type="CT_MR" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_NaryPr"> <xsd:sequence> <xsd:element name="chr" type="CT_Char" minOccurs="0"/> <xsd:element name="limLoc" type="CT_LimLoc" minOccurs="0"/> <xsd:element name="grow" type="CT_OnOff" minOccurs="0"/> <xsd:element name="subHide" type="CT_OnOff" minOccurs="0"/> <xsd:element name="supHide" type="CT_OnOff" minOccurs="0"/> <xsd:element name="ctrlPr" type="CT_CtrlPr" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Nary"> <xsd:sequence> <xsd:element name="naryPr" type="CT_NaryPr" minOccurs="0"/> <xsd:element name="sub" type="CT_OMathArg"/> <xsd:element name="sup" type="CT_OMathArg"/> <xsd:element name="e" type="CT_OMathArg"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_PhantPr"> <xsd:sequence> <xsd:element name="show" type="CT_OnOff" minOccurs="0"/> <xsd:element name="zeroWid" type="CT_OnOff" minOccurs="0"/> <xsd:element name="zeroAsc" type="CT_OnOff" minOccurs="0"/> <xsd:element name="zeroDesc" type="CT_OnOff" minOccurs="0"/> <xsd:element name="transp" type="CT_OnOff" minOccurs="0"/> <xsd:element name="ctrlPr" type="CT_CtrlPr" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Phant"> <xsd:sequence> <xsd:element name="phantPr" type="CT_PhantPr" minOccurs="0"/> <xsd:element name="e" type="CT_OMathArg"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_RadPr"> <xsd:sequence> <xsd:element name="degHide" type="CT_OnOff" minOccurs="0"/> <xsd:element name="ctrlPr" type="CT_CtrlPr" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Rad"> <xsd:sequence> <xsd:element name="radPr" type="CT_RadPr" minOccurs="0"/> <xsd:element name="deg" type="CT_OMathArg"/> <xsd:element name="e" type="CT_OMathArg"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_SPrePr"> <xsd:sequence> <xsd:element name="ctrlPr" type="CT_CtrlPr" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_SPre"> <xsd:sequence> <xsd:element name="sPrePr" type="CT_SPrePr" minOccurs="0"/> <xsd:element name="sub" type="CT_OMathArg"/> <xsd:element name="sup" type="CT_OMathArg"/> <xsd:element name="e" type="CT_OMathArg"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_SSubPr"> <xsd:sequence> <xsd:element name="ctrlPr" type="CT_CtrlPr" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_SSub"> <xsd:sequence> <xsd:element name="sSubPr" type="CT_SSubPr" minOccurs="0"/> <xsd:element name="e" type="CT_OMathArg"/> <xsd:element name="sub" type="CT_OMathArg"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_SSubSupPr"> <xsd:sequence> <xsd:element name="alnScr" type="CT_OnOff" minOccurs="0"/> <xsd:element name="ctrlPr" type="CT_CtrlPr" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_SSubSup"> <xsd:sequence> <xsd:element name="sSubSupPr" type="CT_SSubSupPr" minOccurs="0"/> <xsd:element name="e" type="CT_OMathArg"/> <xsd:element name="sub" type="CT_OMathArg"/> <xsd:element name="sup" type="CT_OMathArg"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_SSupPr"> <xsd:sequence> <xsd:element name="ctrlPr" type="CT_CtrlPr" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_SSup"> <xsd:sequence> <xsd:element name="sSupPr" type="CT_SSupPr" minOccurs="0"/> <xsd:element name="e" type="CT_OMathArg"/> <xsd:element name="sup" type="CT_OMathArg"/> </xsd:sequence> </xsd:complexType> <xsd:group name="EG_OMathMathElements"> <xsd:choice> <xsd:element name="acc" type="CT_Acc"/> <xsd:element name="bar" type="CT_Bar"/> <xsd:element name="box" type="CT_Box"/> <xsd:element name="borderBox" type="CT_BorderBox"/> <xsd:element name="d" type="CT_D"/> <xsd:element name="eqArr" type="CT_EqArr"/> <xsd:element name="f" type="CT_F"/> <xsd:element name="func" type="CT_Func"/> <xsd:element name="groupChr" type="CT_GroupChr"/> <xsd:element name="limLow" type="CT_LimLow"/> <xsd:element name="limUpp" type="CT_LimUpp"/> <xsd:element name="m" type="CT_M"/> <xsd:element name="nary" type="CT_Nary"/> <xsd:element name="phant" type="CT_Phant"/> <xsd:element name="rad" type="CT_Rad"/> <xsd:element name="sPre" type="CT_SPre"/> <xsd:element name="sSub" type="CT_SSub"/> <xsd:element name="sSubSup" type="CT_SSubSup"/> <xsd:element name="sSup" type="CT_SSup"/> <xsd:element name="r" type="CT_R"/> </xsd:choice> </xsd:group> <xsd:group name="EG_OMathElements"> <xsd:choice> <xsd:group ref="EG_OMathMathElements"/> <xsd:group ref="w:EG_PContentMath"/> </xsd:choice> </xsd:group> <xsd:complexType name="CT_OMathArgPr"> <xsd:sequence> <xsd:element name="argSz" type="CT_Integer2" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_OMathArg"> <xsd:sequence> <xsd:element name="argPr" type="CT_OMathArgPr" minOccurs="0"/> <xsd:group ref="EG_OMathElements" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="ctrlPr" type="CT_CtrlPr" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_Jc"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="left"/> <xsd:enumeration value="right"/> <xsd:enumeration value="center"/> <xsd:enumeration value="centerGroup"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_OMathJc"> <xsd:attribute name="val" type="ST_Jc"/> </xsd:complexType> <xsd:complexType name="CT_OMathParaPr"> <xsd:sequence> <xsd:element name="jc" type="CT_OMathJc" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_TwipsMeasure"> <xsd:attribute name="val" type="s:ST_TwipsMeasure" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_BreakBin"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="before"/> <xsd:enumeration value="after"/> <xsd:enumeration value="repeat"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_BreakBin"> <xsd:attribute name="val" type="ST_BreakBin"/> </xsd:complexType> <xsd:simpleType name="ST_BreakBinSub"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="--"/> <xsd:enumeration value="-+"/> <xsd:enumeration value="+-"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_BreakBinSub"> <xsd:attribute name="val" type="ST_BreakBinSub"/> </xsd:complexType> <xsd:complexType name="CT_MathPr"> <xsd:sequence> <xsd:element name="mathFont" type="CT_String" minOccurs="0"/> <xsd:element name="brkBin" type="CT_BreakBin" minOccurs="0"/> <xsd:element name="brkBinSub" type="CT_BreakBinSub" minOccurs="0"/> <xsd:element name="smallFrac" type="CT_OnOff" minOccurs="0"/> <xsd:element name="dispDef" type="CT_OnOff" minOccurs="0"/> <xsd:element name="lMargin" type="CT_TwipsMeasure" minOccurs="0"/> <xsd:element name="rMargin" type="CT_TwipsMeasure" minOccurs="0"/> <xsd:element name="defJc" type="CT_OMathJc" minOccurs="0"/> <xsd:element name="preSp" type="CT_TwipsMeasure" minOccurs="0"/> <xsd:element name="postSp" type="CT_TwipsMeasure" minOccurs="0"/> <xsd:element name="interSp" type="CT_TwipsMeasure" minOccurs="0"/> <xsd:element name="intraSp" type="CT_TwipsMeasure" minOccurs="0"/> <xsd:choice minOccurs="0"> <xsd:element name="wrapIndent" type="CT_TwipsMeasure"/> <xsd:element name="wrapRight" type="CT_OnOff"/> </xsd:choice> <xsd:element name="intLim" type="CT_LimLoc" minOccurs="0"/> <xsd:element name="naryLim" type="CT_LimLoc" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:element name="mathPr" type="CT_MathPr"/> <xsd:complexType name="CT_OMathPara"> <xsd:sequence> <xsd:element name="oMathParaPr" type="CT_OMathParaPr" minOccurs="0"/> <xsd:element name="oMath" type="CT_OMath" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_OMath"> <xsd:sequence> <xsd:group ref="EG_OMathElements" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:element name="oMathPara" type="CT_OMathPara"/> <xsd:element name="oMath" type="CT_OMath"/> </xsd:schema> ================================================ FILE: skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd ================================================ <?xml version="1.0" encoding="utf-8"?> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" elementFormDefault="qualified" targetNamespace="http://schemas.openxmlformats.org/officeDocument/2006/relationships" blockDefault="#all"> <xsd:simpleType name="ST_RelationshipId"> <xsd:restriction base="xsd:string"/> </xsd:simpleType> <xsd:attribute name="id" type="ST_RelationshipId"/> <xsd:attribute name="embed" type="ST_RelationshipId"/> <xsd:attribute name="link" type="ST_RelationshipId"/> <xsd:attribute name="dm" type="ST_RelationshipId" default=""/> <xsd:attribute name="lo" type="ST_RelationshipId" default=""/> <xsd:attribute name="qs" type="ST_RelationshipId" default=""/> <xsd:attribute name="cs" type="ST_RelationshipId" default=""/> <xsd:attribute name="blip" type="ST_RelationshipId" default=""/> <xsd:attribute name="pict" type="ST_RelationshipId"/> <xsd:attribute name="href" type="ST_RelationshipId"/> <xsd:attribute name="topLeft" type="ST_RelationshipId"/> <xsd:attribute name="topRight" type="ST_RelationshipId"/> <xsd:attribute name="bottomLeft" type="ST_RelationshipId"/> <xsd:attribute name="bottomRight" type="ST_RelationshipId"/> </xsd:schema> ================================================ FILE: skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/sml.xsd ================================================ <?xml version="1.0" encoding="utf-8"?> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:xdr="http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing" xmlns:s="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes" targetNamespace="http://schemas.openxmlformats.org/spreadsheetml/2006/main" elementFormDefault="qualified"> <xsd:import namespace="http://schemas.openxmlformats.org/officeDocument/2006/relationships" schemaLocation="shared-relationshipReference.xsd"/> <xsd:import namespace="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes" schemaLocation="shared-commonSimpleTypes.xsd"/> <xsd:import namespace="http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing" schemaLocation="dml-spreadsheetDrawing.xsd"/> <xsd:complexType name="CT_AutoFilter"> <xsd:sequence> <xsd:element name="filterColumn" minOccurs="0" maxOccurs="unbounded" type="CT_FilterColumn"/> <xsd:element name="sortState" minOccurs="0" maxOccurs="1" type="CT_SortState"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="ref" type="ST_Ref"/> </xsd:complexType> <xsd:complexType name="CT_FilterColumn"> <xsd:choice minOccurs="0" maxOccurs="1"> <xsd:element name="filters" type="CT_Filters" minOccurs="0" maxOccurs="1"/> <xsd:element name="top10" type="CT_Top10" minOccurs="0" maxOccurs="1"/> <xsd:element name="customFilters" type="CT_CustomFilters" minOccurs="0" maxOccurs="1"/> <xsd:element name="dynamicFilter" type="CT_DynamicFilter" minOccurs="0" maxOccurs="1"/> <xsd:element name="colorFilter" type="CT_ColorFilter" minOccurs="0" maxOccurs="1"/> <xsd:element name="iconFilter" minOccurs="0" maxOccurs="1" type="CT_IconFilter"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:choice> <xsd:attribute name="colId" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="hiddenButton" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="showButton" type="xsd:boolean" use="optional" default="true"/> </xsd:complexType> <xsd:complexType name="CT_Filters"> <xsd:sequence> <xsd:element name="filter" type="CT_Filter" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="dateGroupItem" type="CT_DateGroupItem" minOccurs="0" maxOccurs="unbounded" /> </xsd:sequence> <xsd:attribute name="blank" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="calendarType" type="s:ST_CalendarType" use="optional" default="none"/> </xsd:complexType> <xsd:complexType name="CT_Filter"> <xsd:attribute name="val" type="s:ST_Xstring"/> </xsd:complexType> <xsd:complexType name="CT_CustomFilters"> <xsd:sequence> <xsd:element name="customFilter" type="CT_CustomFilter" minOccurs="1" maxOccurs="2"/> </xsd:sequence> <xsd:attribute name="and" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_CustomFilter"> <xsd:attribute name="operator" type="ST_FilterOperator" default="equal" use="optional"/> <xsd:attribute name="val" type="s:ST_Xstring"/> </xsd:complexType> <xsd:complexType name="CT_Top10"> <xsd:attribute name="top" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="percent" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="val" type="xsd:double" use="required"/> <xsd:attribute name="filterVal" type="xsd:double" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_ColorFilter"> <xsd:attribute name="dxfId" type="ST_DxfId" use="optional"/> <xsd:attribute name="cellColor" type="xsd:boolean" use="optional" default="true"/> </xsd:complexType> <xsd:complexType name="CT_IconFilter"> <xsd:attribute name="iconSet" type="ST_IconSetType" use="required"/> <xsd:attribute name="iconId" type="xsd:unsignedInt" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_FilterOperator"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="equal"/> <xsd:enumeration value="lessThan"/> <xsd:enumeration value="lessThanOrEqual"/> <xsd:enumeration value="notEqual"/> <xsd:enumeration value="greaterThanOrEqual"/> <xsd:enumeration value="greaterThan"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_DynamicFilter"> <xsd:attribute name="type" type="ST_DynamicFilterType" use="required"/> <xsd:attribute name="val" type="xsd:double" use="optional"/> <xsd:attribute name="valIso" type="xsd:dateTime" use="optional"/> <xsd:attribute name="maxVal" type="xsd:double" use="optional"/> <xsd:attribute name="maxValIso" type="xsd:dateTime" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_DynamicFilterType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="null"/> <xsd:enumeration value="aboveAverage"/> <xsd:enumeration value="belowAverage"/> <xsd:enumeration value="tomorrow"/> <xsd:enumeration value="today"/> <xsd:enumeration value="yesterday"/> <xsd:enumeration value="nextWeek"/> <xsd:enumeration value="thisWeek"/> <xsd:enumeration value="lastWeek"/> <xsd:enumeration value="nextMonth"/> <xsd:enumeration value="thisMonth"/> <xsd:enumeration value="lastMonth"/> <xsd:enumeration value="nextQuarter"/> <xsd:enumeration value="thisQuarter"/> <xsd:enumeration value="lastQuarter"/> <xsd:enumeration value="nextYear"/> <xsd:enumeration value="thisYear"/> <xsd:enumeration value="lastYear"/> <xsd:enumeration value="yearToDate"/> <xsd:enumeration value="Q1"/> <xsd:enumeration value="Q2"/> <xsd:enumeration value="Q3"/> <xsd:enumeration value="Q4"/> <xsd:enumeration value="M1"/> <xsd:enumeration value="M2"/> <xsd:enumeration value="M3"/> <xsd:enumeration value="M4"/> <xsd:enumeration value="M5"/> <xsd:enumeration value="M6"/> <xsd:enumeration value="M7"/> <xsd:enumeration value="M8"/> <xsd:enumeration value="M9"/> <xsd:enumeration value="M10"/> <xsd:enumeration value="M11"/> <xsd:enumeration value="M12"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_IconSetType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="3Arrows"/> <xsd:enumeration value="3ArrowsGray"/> <xsd:enumeration value="3Flags"/> <xsd:enumeration value="3TrafficLights1"/> <xsd:enumeration value="3TrafficLights2"/> <xsd:enumeration value="3Signs"/> <xsd:enumeration value="3Symbols"/> <xsd:enumeration value="3Symbols2"/> <xsd:enumeration value="4Arrows"/> <xsd:enumeration value="4ArrowsGray"/> <xsd:enumeration value="4RedToBlack"/> <xsd:enumeration value="4Rating"/> <xsd:enumeration value="4TrafficLights"/> <xsd:enumeration value="5Arrows"/> <xsd:enumeration value="5ArrowsGray"/> <xsd:enumeration value="5Rating"/> <xsd:enumeration value="5Quarters"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_SortState"> <xsd:sequence> <xsd:element name="sortCondition" minOccurs="0" maxOccurs="64" type="CT_SortCondition"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="columnSort" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="caseSensitive" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="sortMethod" type="ST_SortMethod" use="optional" default="none"/> <xsd:attribute name="ref" type="ST_Ref" use="required"/> </xsd:complexType> <xsd:complexType name="CT_SortCondition"> <xsd:attribute name="descending" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="sortBy" type="ST_SortBy" use="optional" default="value"/> <xsd:attribute name="ref" type="ST_Ref" use="required"/> <xsd:attribute name="customList" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="dxfId" type="ST_DxfId" use="optional"/> <xsd:attribute name="iconSet" type="ST_IconSetType" use="optional" default="3Arrows"/> <xsd:attribute name="iconId" type="xsd:unsignedInt" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_SortBy"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="value"/> <xsd:enumeration value="cellColor"/> <xsd:enumeration value="fontColor"/> <xsd:enumeration value="icon"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_SortMethod"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="stroke"/> <xsd:enumeration value="pinYin"/> <xsd:enumeration value="none"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_DateGroupItem"> <xsd:attribute name="year" type="xsd:unsignedShort" use="required"/> <xsd:attribute name="month" type="xsd:unsignedShort" use="optional"/> <xsd:attribute name="day" type="xsd:unsignedShort" use="optional"/> <xsd:attribute name="hour" type="xsd:unsignedShort" use="optional"/> <xsd:attribute name="minute" type="xsd:unsignedShort" use="optional"/> <xsd:attribute name="second" type="xsd:unsignedShort" use="optional"/> <xsd:attribute name="dateTimeGrouping" type="ST_DateTimeGrouping" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_DateTimeGrouping"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="year"/> <xsd:enumeration value="month"/> <xsd:enumeration value="day"/> <xsd:enumeration value="hour"/> <xsd:enumeration value="minute"/> <xsd:enumeration value="second"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_CellRef"> <xsd:restriction base="xsd:string"/> </xsd:simpleType> <xsd:simpleType name="ST_Ref"> <xsd:restriction base="xsd:string"/> </xsd:simpleType> <xsd:simpleType name="ST_RefA"> <xsd:restriction base="xsd:string"/> </xsd:simpleType> <xsd:simpleType name="ST_Sqref"> <xsd:list itemType="ST_Ref"/> </xsd:simpleType> <xsd:simpleType name="ST_Formula"> <xsd:restriction base="s:ST_Xstring"/> </xsd:simpleType> <xsd:simpleType name="ST_UnsignedIntHex"> <xsd:restriction base="xsd:hexBinary"> <xsd:length value="4"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_UnsignedShortHex"> <xsd:restriction base="xsd:hexBinary"> <xsd:length value="2"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_XStringElement"> <xsd:attribute name="v" type="s:ST_Xstring" use="required"/> </xsd:complexType> <xsd:complexType name="CT_Extension"> <xsd:sequence> <xsd:any processContents="lax"/> </xsd:sequence> <xsd:attribute name="uri" type="xsd:token"/> </xsd:complexType> <xsd:complexType name="CT_ObjectAnchor"> <xsd:sequence> <xsd:element ref="xdr:from" minOccurs="1" maxOccurs="1"/> <xsd:element ref="xdr:to" minOccurs="1" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="moveWithCells" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="sizeWithCells" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:group name="EG_ExtensionList"> <xsd:sequence> <xsd:element name="ext" type="CT_Extension" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:group> <xsd:complexType name="CT_ExtensionList"> <xsd:sequence> <xsd:group ref="EG_ExtensionList" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:element name="calcChain" type="CT_CalcChain"/> <xsd:complexType name="CT_CalcChain"> <xsd:sequence> <xsd:element name="c" type="CT_CalcCell" minOccurs="1" maxOccurs="unbounded"/> <xsd:element name="extLst" minOccurs="0" type="CT_ExtensionList"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_CalcCell"> <xsd:attribute name="r" type="ST_CellRef" use="optional"/> <xsd:attribute name="ref" type="ST_CellRef" use="optional"/> <xsd:attribute name="i" type="xsd:int" use="optional" default="0"/> <xsd:attribute name="s" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="l" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="t" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="a" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:element name="comments" type="CT_Comments"/> <xsd:complexType name="CT_Comments"> <xsd:sequence> <xsd:element name="authors" type="CT_Authors" minOccurs="1" maxOccurs="1"/> <xsd:element name="commentList" type="CT_CommentList" minOccurs="1" maxOccurs="1"/> <xsd:element name="extLst" minOccurs="0" type="CT_ExtensionList"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Authors"> <xsd:sequence> <xsd:element name="author" type="s:ST_Xstring" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_CommentList"> <xsd:sequence> <xsd:element name="comment" type="CT_Comment" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Comment"> <xsd:sequence> <xsd:element name="text" type="CT_Rst" minOccurs="1" maxOccurs="1"/> <xsd:element name="commentPr" type="CT_CommentPr" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="ref" type="ST_Ref" use="required"/> <xsd:attribute name="authorId" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="guid" type="s:ST_Guid" use="optional"/> <xsd:attribute name="shapeId" type="xsd:unsignedInt" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_CommentPr"> <xsd:sequence> <xsd:element name="anchor" type="CT_ObjectAnchor" minOccurs="1" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="locked" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="defaultSize" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="print" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="disabled" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="autoFill" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="autoLine" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="altText" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="textHAlign" type="ST_TextHAlign" use="optional" default="left"/> <xsd:attribute name="textVAlign" type="ST_TextVAlign" use="optional" default="top"/> <xsd:attribute name="lockText" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="justLastX" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="autoScale" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:simpleType name="ST_TextHAlign"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="left"/> <xsd:enumeration value="center"/> <xsd:enumeration value="right"/> <xsd:enumeration value="justify"/> <xsd:enumeration value="distributed"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_TextVAlign"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="top"/> <xsd:enumeration value="center"/> <xsd:enumeration value="bottom"/> <xsd:enumeration value="justify"/> <xsd:enumeration value="distributed"/> </xsd:restriction> </xsd:simpleType> <xsd:element name="MapInfo" type="CT_MapInfo"/> <xsd:complexType name="CT_MapInfo"> <xsd:sequence> <xsd:element name="Schema" type="CT_Schema" minOccurs="1" maxOccurs="unbounded"/> <xsd:element name="Map" type="CT_Map" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="SelectionNamespaces" type="xsd:string" use="required"/> </xsd:complexType> <xsd:complexType name="CT_Schema" mixed="true"> <xsd:sequence> <xsd:any/> </xsd:sequence> <xsd:attribute name="ID" type="xsd:string" use="required"/> <xsd:attribute name="SchemaRef" type="xsd:string" use="optional"/> <xsd:attribute name="Namespace" type="xsd:string" use="optional"/> <xsd:attribute name="SchemaLanguage" type="xsd:token" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_Map"> <xsd:sequence> <xsd:element name="DataBinding" type="CT_DataBinding" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="ID" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="Name" type="xsd:string" use="required"/> <xsd:attribute name="RootElement" type="xsd:string" use="required"/> <xsd:attribute name="SchemaID" type="xsd:string" use="required"/> <xsd:attribute name="ShowImportExportValidationErrors" type="xsd:boolean" use="required"/> <xsd:attribute name="AutoFit" type="xsd:boolean" use="required"/> <xsd:attribute name="Append" type="xsd:boolean" use="required"/> <xsd:attribute name="PreserveSortAFLayout" type="xsd:boolean" use="required"/> <xsd:attribute name="PreserveFormat" type="xsd:boolean" use="required"/> </xsd:complexType> <xsd:complexType name="CT_DataBinding"> <xsd:sequence> <xsd:any/> </xsd:sequence> <xsd:attribute name="DataBindingName" type="xsd:string" use="optional"/> <xsd:attribute name="FileBinding" type="xsd:boolean" use="optional"/> <xsd:attribute name="ConnectionID" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="FileBindingName" type="xsd:string" use="optional"/> <xsd:attribute name="DataBindingLoadMode" type="xsd:unsignedInt" use="required"/> </xsd:complexType> <xsd:element name="connections" type="CT_Connections"/> <xsd:complexType name="CT_Connections"> <xsd:sequence> <xsd:element name="connection" minOccurs="1" maxOccurs="unbounded" type="CT_Connection"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Connection"> <xsd:sequence> <xsd:element name="dbPr" minOccurs="0" maxOccurs="1" type="CT_DbPr"/> <xsd:element name="olapPr" minOccurs="0" maxOccurs="1" type="CT_OlapPr"/> <xsd:element name="webPr" minOccurs="0" maxOccurs="1" type="CT_WebPr"/> <xsd:element name="textPr" minOccurs="0" maxOccurs="1" type="CT_TextPr"/> <xsd:element name="parameters" minOccurs="0" maxOccurs="1" type="CT_Parameters"/> <xsd:element name="extLst" minOccurs="0" maxOccurs="1" type="CT_ExtensionList"/> </xsd:sequence> <xsd:attribute name="id" use="required" type="xsd:unsignedInt"/> <xsd:attribute name="sourceFile" use="optional" type="s:ST_Xstring"/> <xsd:attribute name="odcFile" use="optional" type="s:ST_Xstring"/> <xsd:attribute name="keepAlive" use="optional" type="xsd:boolean" default="false"/> <xsd:attribute name="interval" use="optional" type="xsd:unsignedInt" default="0"/> <xsd:attribute name="name" use="optional" type="s:ST_Xstring"/> <xsd:attribute name="description" use="optional" type="s:ST_Xstring"/> <xsd:attribute name="type" use="optional" type="xsd:unsignedInt"/> <xsd:attribute name="reconnectionMethod" use="optional" type="xsd:unsignedInt" default="1"/> <xsd:attribute name="refreshedVersion" use="required" type="xsd:unsignedByte"/> <xsd:attribute name="minRefreshableVersion" use="optional" type="xsd:unsignedByte" default="0"/> <xsd:attribute name="savePassword" use="optional" type="xsd:boolean" default="false"/> <xsd:attribute name="new" use="optional" type="xsd:boolean" default="false"/> <xsd:attribute name="deleted" use="optional" type="xsd:boolean" default="false"/> <xsd:attribute name="onlyUseConnectionFile" use="optional" type="xsd:boolean" default="false"/> <xsd:attribute name="background" use="optional" type="xsd:boolean" default="false"/> <xsd:attribute name="refreshOnLoad" use="optional" type="xsd:boolean" default="false"/> <xsd:attribute name="saveData" use="optional" type="xsd:boolean" default="false"/> <xsd:attribute name="credentials" use="optional" type="ST_CredMethod" default="integrated"/> <xsd:attribute name="singleSignOnId" use="optional" type="s:ST_Xstring"/> </xsd:complexType> <xsd:simpleType name="ST_CredMethod"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="integrated"/> <xsd:enumeration value="none"/> <xsd:enumeration value="stored"/> <xsd:enumeration value="prompt"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_DbPr"> <xsd:attribute name="connection" use="required" type="s:ST_Xstring"/> <xsd:attribute name="command" use="optional" type="s:ST_Xstring"/> <xsd:attribute name="serverCommand" use="optional" type="s:ST_Xstring"/> <xsd:attribute name="commandType" use="optional" type="xsd:unsignedInt" default="2"/> </xsd:complexType> <xsd:complexType name="CT_OlapPr"> <xsd:attribute name="local" use="optional" type="xsd:boolean" default="false"/> <xsd:attribute name="localConnection" use="optional" type="s:ST_Xstring"/> <xsd:attribute name="localRefresh" use="optional" type="xsd:boolean" default="true"/> <xsd:attribute name="sendLocale" use="optional" type="xsd:boolean" default="false"/> <xsd:attribute name="rowDrillCount" use="optional" type="xsd:unsignedInt"/> <xsd:attribute name="serverFill" use="optional" type="xsd:boolean" default="true"/> <xsd:attribute name="serverNumberFormat" use="optional" type="xsd:boolean" default="true"/> <xsd:attribute name="serverFont" use="optional" type="xsd:boolean" default="true"/> <xsd:attribute name="serverFontColor" use="optional" type="xsd:boolean" default="true"/> </xsd:complexType> <xsd:complexType name="CT_WebPr"> <xsd:sequence> <xsd:element name="tables" minOccurs="0" maxOccurs="1" type="CT_Tables"/> </xsd:sequence> <xsd:attribute name="xml" use="optional" type="xsd:boolean" default="false"/> <xsd:attribute name="sourceData" use="optional" type="xsd:boolean" default="false"/> <xsd:attribute name="parsePre" use="optional" type="xsd:boolean" default="false"/> <xsd:attribute name="consecutive" use="optional" type="xsd:boolean" default="false"/> <xsd:attribute name="firstRow" use="optional" type="xsd:boolean" default="false"/> <xsd:attribute name="xl97" use="optional" type="xsd:boolean" default="false"/> <xsd:attribute name="textDates" use="optional" type="xsd:boolean" default="false"/> <xsd:attribute name="xl2000" use="optional" type="xsd:boolean" default="false"/> <xsd:attribute name="url" use="optional" type="s:ST_Xstring"/> <xsd:attribute name="post" use="optional" type="s:ST_Xstring"/> <xsd:attribute name="htmlTables" use="optional" type="xsd:boolean" default="false"/> <xsd:attribute name="htmlFormat" use="optional" type="ST_HtmlFmt" default="none"/> <xsd:attribute name="editPage" use="optional" type="s:ST_Xstring"/> </xsd:complexType> <xsd:simpleType name="ST_HtmlFmt"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="none"/> <xsd:enumeration value="rtf"/> <xsd:enumeration value="all"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Parameters"> <xsd:sequence> <xsd:element name="parameter" minOccurs="1" maxOccurs="unbounded" type="CT_Parameter"/> </xsd:sequence> <xsd:attribute name="count" use="optional" type="xsd:unsignedInt"/> </xsd:complexType> <xsd:complexType name="CT_Parameter"> <xsd:attribute name="name" use="optional" type="s:ST_Xstring"/> <xsd:attribute name="sqlType" use="optional" type="xsd:int" default="0"/> <xsd:attribute name="parameterType" use="optional" type="ST_ParameterType" default="prompt"/> <xsd:attribute name="refreshOnChange" use="optional" type="xsd:boolean" default="false"/> <xsd:attribute name="prompt" use="optional" type="s:ST_Xstring"/> <xsd:attribute name="boolean" use="optional" type="xsd:boolean"/> <xsd:attribute name="double" use="optional" type="xsd:double"/> <xsd:attribute name="integer" use="optional" type="xsd:int"/> <xsd:attribute name="string" use="optional" type="s:ST_Xstring"/> <xsd:attribute name="cell" use="optional" type="s:ST_Xstring"/> </xsd:complexType> <xsd:simpleType name="ST_ParameterType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="prompt"/> <xsd:enumeration value="value"/> <xsd:enumeration value="cell"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Tables"> <xsd:choice minOccurs="1" maxOccurs="unbounded"> <xsd:element name="m" type="CT_TableMissing"/> <xsd:element name="s" type="CT_XStringElement"/> <xsd:element name="x" type="CT_Index"/> </xsd:choice> <xsd:attribute name="count" use="optional" type="xsd:unsignedInt"/> </xsd:complexType> <xsd:complexType name="CT_TableMissing"/> <xsd:complexType name="CT_TextPr"> <xsd:sequence> <xsd:element name="textFields" minOccurs="0" maxOccurs="1" type="CT_TextFields"/> </xsd:sequence> <xsd:attribute name="prompt" use="optional" type="xsd:boolean" default="true"/> <xsd:attribute name="fileType" use="optional" type="ST_FileType" default="win"/> <xsd:attribute name="codePage" use="optional" type="xsd:unsignedInt" default="1252"/> <xsd:attribute name="characterSet" use="optional" type="xsd:string"/> <xsd:attribute name="firstRow" use="optional" type="xsd:unsignedInt" default="1"/> <xsd:attribute name="sourceFile" use="optional" type="s:ST_Xstring" default=""/> <xsd:attribute name="delimited" use="optional" type="xsd:boolean" default="true"/> <xsd:attribute name="decimal" use="optional" type="s:ST_Xstring" default="."/> <xsd:attribute name="thousands" use="optional" type="s:ST_Xstring" default=","/> <xsd:attribute name="tab" use="optional" type="xsd:boolean" default="true"/> <xsd:attribute name="space" use="optional" type="xsd:boolean" default="false"/> <xsd:attribute name="comma" use="optional" type="xsd:boolean" default="false"/> <xsd:attribute name="semicolon" use="optional" type="xsd:boolean" default="false"/> <xsd:attribute name="consecutive" use="optional" type="xsd:boolean" default="false"/> <xsd:attribute name="qualifier" use="optional" type="ST_Qualifier" default="doubleQuote"/> <xsd:attribute name="delimiter" use="optional" type="s:ST_Xstring"/> </xsd:complexType> <xsd:simpleType name="ST_FileType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="mac"/> <xsd:enumeration value="win"/> <xsd:enumeration value="dos"/> <xsd:enumeration value="lin"/> <xsd:enumeration value="other"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_Qualifier"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="doubleQuote"/> <xsd:enumeration value="singleQuote"/> <xsd:enumeration value="none"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_TextFields"> <xsd:sequence> <xsd:element name="textField" minOccurs="1" maxOccurs="unbounded" type="CT_TextField"/> </xsd:sequence> <xsd:attribute name="count" use="optional" type="xsd:unsignedInt" default="1"/> </xsd:complexType> <xsd:complexType name="CT_TextField"> <xsd:attribute name="type" use="optional" type="ST_ExternalConnectionType" default="general"/> <xsd:attribute name="position" use="optional" type="xsd:unsignedInt" default="0"/> </xsd:complexType> <xsd:simpleType name="ST_ExternalConnectionType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="general"/> <xsd:enumeration value="text"/> <xsd:enumeration value="MDY"/> <xsd:enumeration value="DMY"/> <xsd:enumeration value="YMD"/> <xsd:enumeration value="MYD"/> <xsd:enumeration value="DYM"/> <xsd:enumeration value="YDM"/> <xsd:enumeration value="skip"/> <xsd:enumeration value="EMD"/> </xsd:restriction> </xsd:simpleType> <xsd:element name="pivotCacheDefinition" type="CT_PivotCacheDefinition"/> <xsd:element name="pivotCacheRecords" type="CT_PivotCacheRecords"/> <xsd:element name="pivotTableDefinition" type="CT_pivotTableDefinition"/> <xsd:complexType name="CT_PivotCacheDefinition"> <xsd:sequence> <xsd:element name="cacheSource" type="CT_CacheSource" minOccurs="1" maxOccurs="1"/> <xsd:element name="cacheFields" type="CT_CacheFields" minOccurs="1" maxOccurs="1"/> <xsd:element name="cacheHierarchies" minOccurs="0" type="CT_CacheHierarchies"/> <xsd:element name="kpis" minOccurs="0" type="CT_PCDKPIs"/> <xsd:element name="tupleCache" minOccurs="0" type="CT_TupleCache"/> <xsd:element name="calculatedItems" minOccurs="0" type="CT_CalculatedItems"/> <xsd:element name="calculatedMembers" type="CT_CalculatedMembers" minOccurs="0"/> <xsd:element name="dimensions" type="CT_Dimensions" minOccurs="0"/> <xsd:element name="measureGroups" type="CT_MeasureGroups" minOccurs="0"/> <xsd:element name="maps" type="CT_MeasureDimensionMaps" minOccurs="0"/> <xsd:element name="extLst" minOccurs="0" type="CT_ExtensionList"/> </xsd:sequence> <xsd:attribute ref="r:id" use="optional"/> <xsd:attribute name="invalid" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="saveData" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="refreshOnLoad" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="optimizeMemory" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="enableRefresh" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="refreshedBy" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="refreshedDate" type="xsd:double" use="optional"/> <xsd:attribute name="refreshedDateIso" type="xsd:dateTime" use="optional"/> <xsd:attribute name="backgroundQuery" type="xsd:boolean" default="false"/> <xsd:attribute name="missingItemsLimit" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="createdVersion" type="xsd:unsignedByte" use="optional" default="0"/> <xsd:attribute name="refreshedVersion" type="xsd:unsignedByte" use="optional" default="0"/> <xsd:attribute name="minRefreshableVersion" type="xsd:unsignedByte" use="optional" default="0"/> <xsd:attribute name="recordCount" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="upgradeOnRefresh" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="tupleCache" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="supportSubquery" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="supportAdvancedDrill" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_CacheFields"> <xsd:sequence> <xsd:element name="cacheField" type="CT_CacheField" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt"/> </xsd:complexType> <xsd:complexType name="CT_CacheField"> <xsd:sequence> <xsd:element name="sharedItems" type="CT_SharedItems" minOccurs="0" maxOccurs="1"/> <xsd:element name="fieldGroup" minOccurs="0" type="CT_FieldGroup"/> <xsd:element name="mpMap" minOccurs="0" maxOccurs="unbounded" type="CT_X"/> <xsd:element name="extLst" minOccurs="0" type="CT_ExtensionList"/> </xsd:sequence> <xsd:attribute name="name" type="s:ST_Xstring" use="required"/> <xsd:attribute name="caption" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="propertyName" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="serverField" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="uniqueList" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="numFmtId" type="ST_NumFmtId" use="optional"/> <xsd:attribute name="formula" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="sqlType" type="xsd:int" use="optional" default="0"/> <xsd:attribute name="hierarchy" type="xsd:int" use="optional" default="0"/> <xsd:attribute name="level" type="xsd:unsignedInt" use="optional" default="0"/> <xsd:attribute name="databaseField" type="xsd:boolean" default="true"/> <xsd:attribute name="mappingCount" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="memberPropertyField" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_CacheSource"> <xsd:choice minOccurs="0" maxOccurs="1"> <xsd:element name="worksheetSource" type="CT_WorksheetSource" minOccurs="1" maxOccurs="1"/> <xsd:element name="consolidation" type="CT_Consolidation" minOccurs="1" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0"/> </xsd:choice> <xsd:attribute name="type" type="ST_SourceType" use="required"/> <xsd:attribute name="connectionId" type="xsd:unsignedInt" default="0" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_SourceType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="worksheet"/> <xsd:enumeration value="external"/> <xsd:enumeration value="consolidation"/> <xsd:enumeration value="scenario"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_WorksheetSource"> <xsd:attribute name="ref" type="ST_Ref" use="optional"/> <xsd:attribute name="name" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="sheet" type="s:ST_Xstring" use="optional"/> <xsd:attribute ref="r:id" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_Consolidation"> <xsd:sequence> <xsd:element name="pages" type="CT_Pages" minOccurs="0" maxOccurs="1"/> <xsd:element name="rangeSets" type="CT_RangeSets" minOccurs="1" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="autoPage" type="xsd:boolean" default="true" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_Pages"> <xsd:sequence> <xsd:element name="page" type="CT_PCDSCPage" minOccurs="1" maxOccurs="4"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_PCDSCPage"> <xsd:sequence> <xsd:element name="pageItem" type="CT_PageItem" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_PageItem"> <xsd:attribute name="name" type="s:ST_Xstring" use="required"/> </xsd:complexType> <xsd:complexType name="CT_RangeSets"> <xsd:sequence> <xsd:element name="rangeSet" type="CT_RangeSet" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_RangeSet"> <xsd:attribute name="i1" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="i2" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="i3" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="i4" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="ref" type="ST_Ref" use="optional"/> <xsd:attribute name="name" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="sheet" type="s:ST_Xstring" use="optional"/> <xsd:attribute ref="r:id" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_SharedItems"> <xsd:choice minOccurs="0" maxOccurs="unbounded"> <xsd:element name="m" type="CT_Missing" minOccurs="1" maxOccurs="1"/> <xsd:element name="n" type="CT_Number" minOccurs="1" maxOccurs="1"/> <xsd:element name="b" type="CT_Boolean" minOccurs="1" maxOccurs="1"/> <xsd:element name="e" type="CT_Error" minOccurs="1" maxOccurs="1"/> <xsd:element name="s" type="CT_String" minOccurs="1" maxOccurs="1"/> <xsd:element name="d" type="CT_DateTime" minOccurs="1" maxOccurs="1"/> </xsd:choice> <xsd:attribute name="containsSemiMixedTypes" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="containsNonDate" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="containsDate" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="containsString" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="containsBlank" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="containsMixedTypes" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="containsNumber" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="containsInteger" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="minValue" type="xsd:double" use="optional"/> <xsd:attribute name="maxValue" type="xsd:double" use="optional"/> <xsd:attribute name="minDate" type="xsd:dateTime" use="optional"/> <xsd:attribute name="maxDate" type="xsd:dateTime" use="optional"/> <xsd:attribute name="count" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="longText" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_Missing"> <xsd:sequence> <xsd:element name="tpls" minOccurs="0" maxOccurs="unbounded" type="CT_Tuples"/> <xsd:element name="x" minOccurs="0" maxOccurs="unbounded" type="CT_X"/> </xsd:sequence> <xsd:attribute name="u" type="xsd:boolean"/> <xsd:attribute name="f" type="xsd:boolean"/> <xsd:attribute name="c" type="s:ST_Xstring"/> <xsd:attribute name="cp" type="xsd:unsignedInt"/> <xsd:attribute name="in" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="bc" type="ST_UnsignedIntHex" use="optional"/> <xsd:attribute name="fc" type="ST_UnsignedIntHex" use="optional"/> <xsd:attribute name="i" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="un" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="st" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="b" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_Number"> <xsd:sequence> <xsd:element name="tpls" minOccurs="0" maxOccurs="unbounded" type="CT_Tuples"/> <xsd:element name="x" minOccurs="0" maxOccurs="unbounded" type="CT_X"/> </xsd:sequence> <xsd:attribute name="v" use="required" type="xsd:double"/> <xsd:attribute name="u" type="xsd:boolean"/> <xsd:attribute name="f" type="xsd:boolean"/> <xsd:attribute name="c" type="s:ST_Xstring"/> <xsd:attribute name="cp" type="xsd:unsignedInt"/> <xsd:attribute name="in" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="bc" type="ST_UnsignedIntHex" use="optional"/> <xsd:attribute name="fc" type="ST_UnsignedIntHex" use="optional"/> <xsd:attribute name="i" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="un" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="st" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="b" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_Boolean"> <xsd:sequence> <xsd:element name="x" minOccurs="0" maxOccurs="unbounded" type="CT_X"/> </xsd:sequence> <xsd:attribute name="v" use="required" type="xsd:boolean"/> <xsd:attribute name="u" type="xsd:boolean"/> <xsd:attribute name="f" type="xsd:boolean"/> <xsd:attribute name="c" type="s:ST_Xstring"/> <xsd:attribute name="cp" type="xsd:unsignedInt"/> </xsd:complexType> <xsd:complexType name="CT_Error"> <xsd:sequence> <xsd:element name="tpls" minOccurs="0" type="CT_Tuples"/> <xsd:element name="x" minOccurs="0" maxOccurs="unbounded" type="CT_X"/> </xsd:sequence> <xsd:attribute name="v" use="required" type="s:ST_Xstring"/> <xsd:attribute name="u" type="xsd:boolean"/> <xsd:attribute name="f" type="xsd:boolean"/> <xsd:attribute name="c" type="s:ST_Xstring"/> <xsd:attribute name="cp" type="xsd:unsignedInt"/> <xsd:attribute name="in" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="bc" type="ST_UnsignedIntHex" use="optional"/> <xsd:attribute name="fc" type="ST_UnsignedIntHex" use="optional"/> <xsd:attribute name="i" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="un" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="st" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="b" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_String"> <xsd:sequence> <xsd:element name="tpls" minOccurs="0" maxOccurs="unbounded" type="CT_Tuples"/> <xsd:element name="x" minOccurs="0" maxOccurs="unbounded" type="CT_X"/> </xsd:sequence> <xsd:attribute name="v" use="required" type="s:ST_Xstring"/> <xsd:attribute name="u" type="xsd:boolean"/> <xsd:attribute name="f" type="xsd:boolean"/> <xsd:attribute name="c" type="s:ST_Xstring"/> <xsd:attribute name="cp" type="xsd:unsignedInt"/> <xsd:attribute name="in" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="bc" type="ST_UnsignedIntHex" use="optional"/> <xsd:attribute name="fc" type="ST_UnsignedIntHex" use="optional"/> <xsd:attribute name="i" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="un" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="st" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="b" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_DateTime"> <xsd:sequence> <xsd:element name="x" minOccurs="0" maxOccurs="unbounded" type="CT_X"/> </xsd:sequence> <xsd:attribute name="v" use="required" type="xsd:dateTime"/> <xsd:attribute name="u" type="xsd:boolean"/> <xsd:attribute name="f" type="xsd:boolean"/> <xsd:attribute name="c" type="s:ST_Xstring"/> <xsd:attribute name="cp" type="xsd:unsignedInt"/> </xsd:complexType> <xsd:complexType name="CT_FieldGroup"> <xsd:sequence> <xsd:element name="rangePr" minOccurs="0" type="CT_RangePr"/> <xsd:element name="discretePr" minOccurs="0" type="CT_DiscretePr"/> <xsd:element name="groupItems" minOccurs="0" type="CT_GroupItems"/> </xsd:sequence> <xsd:attribute name="par" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="base" type="xsd:unsignedInt" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_RangePr"> <xsd:attribute name="autoStart" type="xsd:boolean" default="true"/> <xsd:attribute name="autoEnd" type="xsd:boolean" default="true"/> <xsd:attribute name="groupBy" type="ST_GroupBy" default="range"/> <xsd:attribute name="startNum" type="xsd:double"/> <xsd:attribute name="endNum" type="xsd:double"/> <xsd:attribute name="startDate" type="xsd:dateTime"/> <xsd:attribute name="endDate" type="xsd:dateTime"/> <xsd:attribute name="groupInterval" type="xsd:double" default="1"/> </xsd:complexType> <xsd:simpleType name="ST_GroupBy"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="range"/> <xsd:enumeration value="seconds"/> <xsd:enumeration value="minutes"/> <xsd:enumeration value="hours"/> <xsd:enumeration value="days"/> <xsd:enumeration value="months"/> <xsd:enumeration value="quarters"/> <xsd:enumeration value="years"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_DiscretePr"> <xsd:sequence> <xsd:element name="x" maxOccurs="unbounded" type="CT_Index"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt"/> </xsd:complexType> <xsd:complexType name="CT_GroupItems"> <xsd:choice maxOccurs="unbounded"> <xsd:element name="m" type="CT_Missing"/> <xsd:element name="n" type="CT_Number"/> <xsd:element name="b" type="CT_Boolean"/> <xsd:element name="e" type="CT_Error"/> <xsd:element name="s" type="CT_String"/> <xsd:element name="d" type="CT_DateTime"/> </xsd:choice> <xsd:attribute name="count" type="xsd:unsignedInt"/> </xsd:complexType> <xsd:complexType name="CT_PivotCacheRecords"> <xsd:sequence> <xsd:element name="r" minOccurs="0" maxOccurs="unbounded" type="CT_Record"/> <xsd:element name="extLst" minOccurs="0" type="CT_ExtensionList"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt"/> </xsd:complexType> <xsd:complexType name="CT_Record"> <xsd:choice maxOccurs="unbounded"> <xsd:element name="m" type="CT_Missing"/> <xsd:element name="n" type="CT_Number"/> <xsd:element name="b" type="CT_Boolean"/> <xsd:element name="e" type="CT_Error"/> <xsd:element name="s" type="CT_String"/> <xsd:element name="d" type="CT_DateTime"/> <xsd:element name="x" type="CT_Index"/> </xsd:choice> </xsd:complexType> <xsd:complexType name="CT_PCDKPIs"> <xsd:sequence> <xsd:element name="kpi" minOccurs="0" maxOccurs="unbounded" type="CT_PCDKPI"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt"/> </xsd:complexType> <xsd:complexType name="CT_PCDKPI"> <xsd:attribute name="uniqueName" use="required" type="s:ST_Xstring"/> <xsd:attribute name="caption" use="optional" type="s:ST_Xstring"/> <xsd:attribute name="displayFolder" type="s:ST_Xstring"/> <xsd:attribute name="measureGroup" type="s:ST_Xstring"/> <xsd:attribute name="parent" type="s:ST_Xstring"/> <xsd:attribute name="value" use="required" type="s:ST_Xstring"/> <xsd:attribute name="goal" type="s:ST_Xstring"/> <xsd:attribute name="status" type="s:ST_Xstring"/> <xsd:attribute name="trend" type="s:ST_Xstring"/> <xsd:attribute name="weight" type="s:ST_Xstring"/> <xsd:attribute name="time" type="s:ST_Xstring"/> </xsd:complexType> <xsd:complexType name="CT_CacheHierarchies"> <xsd:sequence> <xsd:element name="cacheHierarchy" minOccurs="0" maxOccurs="unbounded" type="CT_CacheHierarchy"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt"/> </xsd:complexType> <xsd:complexType name="CT_CacheHierarchy"> <xsd:sequence> <xsd:element name="fieldsUsage" minOccurs="0" type="CT_FieldsUsage"/> <xsd:element name="groupLevels" minOccurs="0" type="CT_GroupLevels"/> <xsd:element name="extLst" minOccurs="0" type="CT_ExtensionList"/> </xsd:sequence> <xsd:attribute name="uniqueName" use="required" type="s:ST_Xstring"/> <xsd:attribute name="caption" use="optional" type="s:ST_Xstring"/> <xsd:attribute name="measure" type="xsd:boolean" default="false"/> <xsd:attribute name="set" type="xsd:boolean" default="false"/> <xsd:attribute name="parentSet" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="iconSet" type="xsd:int" default="0"/> <xsd:attribute name="attribute" type="xsd:boolean" default="false"/> <xsd:attribute name="time" type="xsd:boolean" default="false"/> <xsd:attribute name="keyAttribute" type="xsd:boolean" default="false"/> <xsd:attribute name="defaultMemberUniqueName" type="s:ST_Xstring"/> <xsd:attribute name="allUniqueName" type="s:ST_Xstring"/> <xsd:attribute name="allCaption" type="s:ST_Xstring"/> <xsd:attribute name="dimensionUniqueName" type="s:ST_Xstring"/> <xsd:attribute name="displayFolder" type="s:ST_Xstring"/> <xsd:attribute name="measureGroup" type="s:ST_Xstring"/> <xsd:attribute name="measures" type="xsd:boolean" default="false"/> <xsd:attribute name="count" use="required" type="xsd:unsignedInt"/> <xsd:attribute name="oneField" type="xsd:boolean" default="false"/> <xsd:attribute name="memberValueDatatype" use="optional" type="xsd:unsignedShort"/> <xsd:attribute name="unbalanced" use="optional" type="xsd:boolean"/> <xsd:attribute name="unbalancedGroup" use="optional" type="xsd:boolean"/> <xsd:attribute name="hidden" type="xsd:boolean" default="false"/> </xsd:complexType> <xsd:complexType name="CT_FieldsUsage"> <xsd:sequence> <xsd:element name="fieldUsage" minOccurs="0" maxOccurs="unbounded" type="CT_FieldUsage"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt"/> </xsd:complexType> <xsd:complexType name="CT_FieldUsage"> <xsd:attribute name="x" use="required" type="xsd:int"/> </xsd:complexType> <xsd:complexType name="CT_GroupLevels"> <xsd:sequence> <xsd:element name="groupLevel" maxOccurs="unbounded" type="CT_GroupLevel"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt"/> </xsd:complexType> <xsd:complexType name="CT_GroupLevel"> <xsd:sequence> <xsd:element name="groups" minOccurs="0" type="CT_Groups"/> <xsd:element name="extLst" minOccurs="0" type="CT_ExtensionList"/> </xsd:sequence> <xsd:attribute name="uniqueName" use="required" type="s:ST_Xstring"/> <xsd:attribute name="caption" use="required" type="s:ST_Xstring"/> <xsd:attribute name="user" type="xsd:boolean" default="false"/> <xsd:attribute name="customRollUp" type="xsd:boolean" default="false"/> </xsd:complexType> <xsd:complexType name="CT_Groups"> <xsd:sequence> <xsd:element name="group" maxOccurs="unbounded" type="CT_LevelGroup"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt"/> </xsd:complexType> <xsd:complexType name="CT_LevelGroup"> <xsd:sequence> <xsd:element name="groupMembers" type="CT_GroupMembers"/> </xsd:sequence> <xsd:attribute name="name" use="required" type="s:ST_Xstring"/> <xsd:attribute name="uniqueName" use="required" type="s:ST_Xstring"/> <xsd:attribute name="caption" use="required" type="s:ST_Xstring"/> <xsd:attribute name="uniqueParent" type="s:ST_Xstring"/> <xsd:attribute name="id" type="xsd:int"/> </xsd:complexType> <xsd:complexType name="CT_GroupMembers"> <xsd:sequence> <xsd:element name="groupMember" maxOccurs="unbounded" type="CT_GroupMember"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt"/> </xsd:complexType> <xsd:complexType name="CT_GroupMember"> <xsd:attribute name="uniqueName" use="required" type="s:ST_Xstring"/> <xsd:attribute name="group" type="xsd:boolean" default="false"/> </xsd:complexType> <xsd:complexType name="CT_TupleCache"> <xsd:sequence> <xsd:element name="entries" minOccurs="0" type="CT_PCDSDTCEntries"/> <xsd:element name="sets" minOccurs="0" type="CT_Sets"/> <xsd:element name="queryCache" minOccurs="0" type="CT_QueryCache"/> <xsd:element name="serverFormats" minOccurs="0" maxOccurs="1" type="CT_ServerFormats"/> <xsd:element name="extLst" minOccurs="0" type="CT_ExtensionList"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_ServerFormat"> <xsd:attribute name="culture" use="optional" type="s:ST_Xstring"/> <xsd:attribute name="format" use="optional" type="s:ST_Xstring"/> </xsd:complexType> <xsd:complexType name="CT_ServerFormats"> <xsd:sequence> <xsd:element name="serverFormat" type="CT_ServerFormat" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt"/> </xsd:complexType> <xsd:complexType name="CT_PCDSDTCEntries"> <xsd:choice maxOccurs="unbounded"> <xsd:element name="m" type="CT_Missing"/> <xsd:element name="n" type="CT_Number"/> <xsd:element name="e" type="CT_Error"/> <xsd:element name="s" type="CT_String"/> </xsd:choice> <xsd:attribute name="count" type="xsd:unsignedInt"/> </xsd:complexType> <xsd:complexType name="CT_Tuples"> <xsd:sequence> <xsd:element name="tpl" type="CT_Tuple" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="c" type="xsd:unsignedInt" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_Tuple"> <xsd:attribute name="fld" type="xsd:unsignedInt"/> <xsd:attribute name="hier" type="xsd:unsignedInt"/> <xsd:attribute name="item" type="xsd:unsignedInt" use="required"/> </xsd:complexType> <xsd:complexType name="CT_Sets"> <xsd:sequence> <xsd:element name="set" maxOccurs="unbounded" type="CT_Set"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt"/> </xsd:complexType> <xsd:complexType name="CT_Set"> <xsd:sequence> <xsd:element name="tpls" minOccurs="0" maxOccurs="unbounded" type="CT_Tuples"/> <xsd:element name="sortByTuple" minOccurs="0" type="CT_Tuples"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt"/> <xsd:attribute name="maxRank" use="required" type="xsd:int"/> <xsd:attribute name="setDefinition" use="required" type="s:ST_Xstring"/> <xsd:attribute name="sortType" type="ST_SortType" default="none"/> <xsd:attribute name="queryFailed" type="xsd:boolean" default="false"/> </xsd:complexType> <xsd:simpleType name="ST_SortType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="none"/> <xsd:enumeration value="ascending"/> <xsd:enumeration value="descending"/> <xsd:enumeration value="ascendingAlpha"/> <xsd:enumeration value="descendingAlpha"/> <xsd:enumeration value="ascendingNatural"/> <xsd:enumeration value="descendingNatural"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_QueryCache"> <xsd:sequence> <xsd:element name="query" maxOccurs="unbounded" type="CT_Query"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt"/> </xsd:complexType> <xsd:complexType name="CT_Query"> <xsd:sequence> <xsd:element name="tpls" minOccurs="0" type="CT_Tuples"/> </xsd:sequence> <xsd:attribute name="mdx" use="required" type="s:ST_Xstring"/> </xsd:complexType> <xsd:complexType name="CT_CalculatedItems"> <xsd:sequence> <xsd:element name="calculatedItem" maxOccurs="unbounded" type="CT_CalculatedItem"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt"/> </xsd:complexType> <xsd:complexType name="CT_CalculatedItem"> <xsd:sequence> <xsd:element name="pivotArea" type="CT_PivotArea"/> <xsd:element name="extLst" minOccurs="0" type="CT_ExtensionList"/> </xsd:sequence> <xsd:attribute name="field" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="formula" type="s:ST_Xstring"/> </xsd:complexType> <xsd:complexType name="CT_CalculatedMembers"> <xsd:sequence> <xsd:element name="calculatedMember" maxOccurs="unbounded" type="CT_CalculatedMember"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt"/> </xsd:complexType> <xsd:complexType name="CT_CalculatedMember"> <xsd:sequence minOccurs="0"> <xsd:element name="extLst" minOccurs="0" type="CT_ExtensionList"/> </xsd:sequence> <xsd:attribute name="name" use="required" type="s:ST_Xstring"/> <xsd:attribute name="mdx" use="required" type="s:ST_Xstring"/> <xsd:attribute name="memberName" type="s:ST_Xstring"/> <xsd:attribute name="hierarchy" type="s:ST_Xstring"/> <xsd:attribute name="parent" type="s:ST_Xstring"/> <xsd:attribute name="solveOrder" type="xsd:int" default="0"/> <xsd:attribute name="set" type="xsd:boolean" default="false"/> </xsd:complexType> <xsd:complexType name="CT_pivotTableDefinition"> <xsd:sequence> <xsd:element name="location" type="CT_Location"/> <xsd:element name="pivotFields" type="CT_PivotFields" minOccurs="0"/> <xsd:element name="rowFields" type="CT_RowFields" minOccurs="0"/> <xsd:element name="rowItems" type="CT_rowItems" minOccurs="0"/> <xsd:element name="colFields" type="CT_ColFields" minOccurs="0"/> <xsd:element name="colItems" type="CT_colItems" minOccurs="0"/> <xsd:element name="pageFields" type="CT_PageFields" minOccurs="0"/> <xsd:element name="dataFields" type="CT_DataFields" minOccurs="0"/> <xsd:element name="formats" type="CT_Formats" minOccurs="0"/> <xsd:element name="conditionalFormats" type="CT_ConditionalFormats" minOccurs="0"/> <xsd:element name="chartFormats" type="CT_ChartFormats" minOccurs="0"/> <xsd:element name="pivotHierarchies" type="CT_PivotHierarchies" minOccurs="0"/> <xsd:element name="pivotTableStyleInfo" minOccurs="0" maxOccurs="1" type="CT_PivotTableStyle"/> <xsd:element name="filters" minOccurs="0" maxOccurs="1" type="CT_PivotFilters"/> <xsd:element name="rowHierarchiesUsage" type="CT_RowHierarchiesUsage" minOccurs="0" maxOccurs="1"/> <xsd:element name="colHierarchiesUsage" type="CT_ColHierarchiesUsage" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" minOccurs="0" type="CT_ExtensionList"/> </xsd:sequence> <xsd:attribute name="name" use="required" type="s:ST_Xstring"/> <xsd:attribute name="cacheId" use="required" type="xsd:unsignedInt"/> <xsd:attribute name="dataOnRows" type="xsd:boolean" default="false"/> <xsd:attribute name="dataPosition" type="xsd:unsignedInt" use="optional"/> <xsd:attributeGroup ref="AG_AutoFormat"/> <xsd:attribute name="dataCaption" use="required" type="s:ST_Xstring"/> <xsd:attribute name="grandTotalCaption" type="s:ST_Xstring"/> <xsd:attribute name="errorCaption" type="s:ST_Xstring"/> <xsd:attribute name="showError" type="xsd:boolean" default="false"/> <xsd:attribute name="missingCaption" type="s:ST_Xstring"/> <xsd:attribute name="showMissing" type="xsd:boolean" default="true"/> <xsd:attribute name="pageStyle" type="s:ST_Xstring"/> <xsd:attribute name="pivotTableStyle" type="s:ST_Xstring"/> <xsd:attribute name="vacatedStyle" type="s:ST_Xstring"/> <xsd:attribute name="tag" type="s:ST_Xstring"/> <xsd:attribute name="updatedVersion" type="xsd:unsignedByte" default="0"/> <xsd:attribute name="minRefreshableVersion" type="xsd:unsignedByte" default="0"/> <xsd:attribute name="asteriskTotals" type="xsd:boolean" default="false"/> <xsd:attribute name="showItems" type="xsd:boolean" default="true"/> <xsd:attribute name="editData" type="xsd:boolean" default="false"/> <xsd:attribute name="disableFieldList" type="xsd:boolean" default="false"/> <xsd:attribute name="showCalcMbrs" type="xsd:boolean" default="true"/> <xsd:attribute name="visualTotals" type="xsd:boolean" default="true"/> <xsd:attribute name="showMultipleLabel" type="xsd:boolean" default="true"/> <xsd:attribute name="showDataDropDown" type="xsd:boolean" default="true"/> <xsd:attribute name="showDrill" type="xsd:boolean" default="true"/> <xsd:attribute name="printDrill" type="xsd:boolean" default="false"/> <xsd:attribute name="showMemberPropertyTips" type="xsd:boolean" default="true"/> <xsd:attribute name="showDataTips" type="xsd:boolean" default="true"/> <xsd:attribute name="enableWizard" type="xsd:boolean" default="true"/> <xsd:attribute name="enableDrill" type="xsd:boolean" default="true"/> <xsd:attribute name="enableFieldProperties" type="xsd:boolean" default="true"/> <xsd:attribute name="preserveFormatting" type="xsd:boolean" default="true"/> <xsd:attribute name="useAutoFormatting" type="xsd:boolean" default="false"/> <xsd:attribute name="pageWrap" type="xsd:unsignedInt" default="0"/> <xsd:attribute name="pageOverThenDown" type="xsd:boolean" default="false"/> <xsd:attribute name="subtotalHiddenItems" type="xsd:boolean" default="false"/> <xsd:attribute name="rowGrandTotals" type="xsd:boolean" default="true"/> <xsd:attribute name="colGrandTotals" type="xsd:boolean" default="true"/> <xsd:attribute name="fieldPrintTitles" type="xsd:boolean" default="false"/> <xsd:attribute name="itemPrintTitles" type="xsd:boolean" default="false"/> <xsd:attribute name="mergeItem" type="xsd:boolean" default="false"/> <xsd:attribute name="showDropZones" type="xsd:boolean" default="true"/> <xsd:attribute name="createdVersion" type="xsd:unsignedByte" default="0"/> <xsd:attribute name="indent" type="xsd:unsignedInt" default="1"/> <xsd:attribute name="showEmptyRow" type="xsd:boolean" default="false"/> <xsd:attribute name="showEmptyCol" type="xsd:boolean" default="false"/> <xsd:attribute name="showHeaders" type="xsd:boolean" default="true"/> <xsd:attribute name="compact" type="xsd:boolean" default="true"/> <xsd:attribute name="outline" type="xsd:boolean" default="false"/> <xsd:attribute name="outlineData" type="xsd:boolean" default="false"/> <xsd:attribute name="compactData" type="xsd:boolean" default="true"/> <xsd:attribute name="published" type="xsd:boolean" default="false"/> <xsd:attribute name="gridDropZones" type="xsd:boolean" default="false"/> <xsd:attribute name="immersive" type="xsd:boolean" default="true"/> <xsd:attribute name="multipleFieldFilters" type="xsd:boolean" default="true"/> <xsd:attribute name="chartFormat" type="xsd:unsignedInt" default="0"/> <xsd:attribute name="rowHeaderCaption" type="s:ST_Xstring"/> <xsd:attribute name="colHeaderCaption" type="s:ST_Xstring"/> <xsd:attribute name="fieldListSortAscending" type="xsd:boolean" default="false"/> <xsd:attribute name="mdxSubqueries" type="xsd:boolean" default="false"/> <xsd:attribute name="customListSort" type="xsd:boolean" use="optional" default="true"/> </xsd:complexType> <xsd:complexType name="CT_Location"> <xsd:attribute name="ref" use="required" type="ST_Ref"/> <xsd:attribute name="firstHeaderRow" use="required" type="xsd:unsignedInt"/> <xsd:attribute name="firstDataRow" use="required" type="xsd:unsignedInt"/> <xsd:attribute name="firstDataCol" use="required" type="xsd:unsignedInt"/> <xsd:attribute name="rowPageCount" type="xsd:unsignedInt" default="0"/> <xsd:attribute name="colPageCount" type="xsd:unsignedInt" default="0"/> </xsd:complexType> <xsd:complexType name="CT_PivotFields"> <xsd:sequence> <xsd:element name="pivotField" maxOccurs="unbounded" type="CT_PivotField"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt"/> </xsd:complexType> <xsd:complexType name="CT_PivotField"> <xsd:sequence> <xsd:element name="items" minOccurs="0" type="CT_Items"/> <xsd:element name="autoSortScope" minOccurs="0" type="CT_AutoSortScope"/> <xsd:element name="extLst" minOccurs="0" type="CT_ExtensionList"/> </xsd:sequence> <xsd:attribute name="name" type="s:ST_Xstring"/> <xsd:attribute name="axis" use="optional" type="ST_Axis"/> <xsd:attribute name="dataField" type="xsd:boolean" default="false"/> <xsd:attribute name="subtotalCaption" type="s:ST_Xstring"/> <xsd:attribute name="showDropDowns" type="xsd:boolean" default="true"/> <xsd:attribute name="hiddenLevel" type="xsd:boolean" default="false"/> <xsd:attribute name="uniqueMemberProperty" type="s:ST_Xstring"/> <xsd:attribute name="compact" type="xsd:boolean" default="true"/> <xsd:attribute name="allDrilled" type="xsd:boolean" default="false"/> <xsd:attribute name="numFmtId" type="ST_NumFmtId" use="optional"/> <xsd:attribute name="outline" type="xsd:boolean" default="true"/> <xsd:attribute name="subtotalTop" type="xsd:boolean" default="true"/> <xsd:attribute name="dragToRow" type="xsd:boolean" default="true"/> <xsd:attribute name="dragToCol" type="xsd:boolean" default="true"/> <xsd:attribute name="multipleItemSelectionAllowed" type="xsd:boolean" default="false"/> <xsd:attribute name="dragToPage" type="xsd:boolean" default="true"/> <xsd:attribute name="dragToData" type="xsd:boolean" default="true"/> <xsd:attribute name="dragOff" type="xsd:boolean" default="true"/> <xsd:attribute name="showAll" type="xsd:boolean" default="true"/> <xsd:attribute name="insertBlankRow" type="xsd:boolean" default="false"/> <xsd:attribute name="serverField" type="xsd:boolean" default="false"/> <xsd:attribute name="insertPageBreak" type="xsd:boolean" default="false"/> <xsd:attribute name="autoShow" type="xsd:boolean" default="false"/> <xsd:attribute name="topAutoShow" type="xsd:boolean" default="true"/> <xsd:attribute name="hideNewItems" type="xsd:boolean" default="false"/> <xsd:attribute name="measureFilter" type="xsd:boolean" default="false"/> <xsd:attribute name="includeNewItemsInFilter" type="xsd:boolean" default="false"/> <xsd:attribute name="itemPageCount" type="xsd:unsignedInt" default="10"/> <xsd:attribute name="sortType" type="ST_FieldSortType" default="manual"/> <xsd:attribute name="dataSourceSort" type="xsd:boolean" use="optional"/> <xsd:attribute name="nonAutoSortDefault" type="xsd:boolean" default="false"/> <xsd:attribute name="rankBy" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="defaultSubtotal" type="xsd:boolean" default="true"/> <xsd:attribute name="sumSubtotal" type="xsd:boolean" default="false"/> <xsd:attribute name="countASubtotal" type="xsd:boolean" default="false"/> <xsd:attribute name="avgSubtotal" type="xsd:boolean" default="false"/> <xsd:attribute name="maxSubtotal" type="xsd:boolean" default="false"/> <xsd:attribute name="minSubtotal" type="xsd:boolean" default="false"/> <xsd:attribute name="productSubtotal" type="xsd:boolean" default="false"/> <xsd:attribute name="countSubtotal" type="xsd:boolean" default="false"/> <xsd:attribute name="stdDevSubtotal" type="xsd:boolean" default="false"/> <xsd:attribute name="stdDevPSubtotal" type="xsd:boolean" default="false"/> <xsd:attribute name="varSubtotal" type="xsd:boolean" default="false"/> <xsd:attribute name="varPSubtotal" type="xsd:boolean" default="false"/> <xsd:attribute name="showPropCell" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="showPropTip" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="showPropAsCaption" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="defaultAttributeDrillState" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_AutoSortScope"> <xsd:sequence> <xsd:element name="pivotArea" type="CT_PivotArea"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Items"> <xsd:sequence> <xsd:element name="item" maxOccurs="unbounded" type="CT_Item"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt"/> </xsd:complexType> <xsd:complexType name="CT_Item"> <xsd:attribute name="n" type="s:ST_Xstring"/> <xsd:attribute name="t" type="ST_ItemType" default="data"/> <xsd:attribute name="h" type="xsd:boolean" default="false"/> <xsd:attribute name="s" type="xsd:boolean" default="false"/> <xsd:attribute name="sd" type="xsd:boolean" default="true"/> <xsd:attribute name="f" type="xsd:boolean" default="false"/> <xsd:attribute name="m" type="xsd:boolean" default="false"/> <xsd:attribute name="c" type="xsd:boolean" default="false"/> <xsd:attribute name="x" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="d" type="xsd:boolean" default="false"/> <xsd:attribute name="e" type="xsd:boolean" default="true"/> </xsd:complexType> <xsd:complexType name="CT_PageFields"> <xsd:sequence> <xsd:element name="pageField" maxOccurs="unbounded" type="CT_PageField"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt"/> </xsd:complexType> <xsd:complexType name="CT_PageField"> <xsd:sequence minOccurs="0"> <xsd:element name="extLst" minOccurs="0" type="CT_ExtensionList"/> </xsd:sequence> <xsd:attribute name="fld" use="required" type="xsd:int"/> <xsd:attribute name="item" use="optional" type="xsd:unsignedInt"/> <xsd:attribute name="hier" type="xsd:int"/> <xsd:attribute name="name" type="s:ST_Xstring"/> <xsd:attribute name="cap" type="s:ST_Xstring"/> </xsd:complexType> <xsd:complexType name="CT_DataFields"> <xsd:sequence> <xsd:element name="dataField" maxOccurs="unbounded" type="CT_DataField"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt"/> </xsd:complexType> <xsd:complexType name="CT_DataField"> <xsd:sequence> <xsd:element name="extLst" minOccurs="0" type="CT_ExtensionList"/> </xsd:sequence> <xsd:attribute name="name" use="optional" type="s:ST_Xstring"/> <xsd:attribute name="fld" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="subtotal" type="ST_DataConsolidateFunction" default="sum"/> <xsd:attribute name="showDataAs" type="ST_ShowDataAs" default="normal"/> <xsd:attribute name="baseField" type="xsd:int" default="-1"/> <xsd:attribute name="baseItem" type="xsd:unsignedInt" default="1048832"/> <xsd:attribute name="numFmtId" type="ST_NumFmtId" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_rowItems"> <xsd:sequence> <xsd:element name="i" maxOccurs="unbounded" type="CT_I"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt"/> </xsd:complexType> <xsd:complexType name="CT_colItems"> <xsd:sequence> <xsd:element name="i" maxOccurs="unbounded" type="CT_I"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt"/> </xsd:complexType> <xsd:complexType name="CT_I"> <xsd:sequence> <xsd:element name="x" minOccurs="0" maxOccurs="unbounded" type="CT_X"/> </xsd:sequence> <xsd:attribute name="t" type="ST_ItemType" default="data"/> <xsd:attribute name="r" type="xsd:unsignedInt" default="0"/> <xsd:attribute name="i" type="xsd:unsignedInt" default="0"/> </xsd:complexType> <xsd:complexType name="CT_X"> <xsd:attribute name="v" type="xsd:int" default="0"/> </xsd:complexType> <xsd:complexType name="CT_RowFields"> <xsd:sequence> <xsd:element name="field" maxOccurs="unbounded" type="CT_Field"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt" default="0"/> </xsd:complexType> <xsd:complexType name="CT_ColFields"> <xsd:sequence> <xsd:element name="field" maxOccurs="unbounded" type="CT_Field"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt" default="0"/> </xsd:complexType> <xsd:complexType name="CT_Field"> <xsd:attribute name="x" type="xsd:int" use="required"/> </xsd:complexType> <xsd:complexType name="CT_Formats"> <xsd:sequence> <xsd:element name="format" maxOccurs="unbounded" type="CT_Format"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt" default="0"/> </xsd:complexType> <xsd:complexType name="CT_Format"> <xsd:sequence> <xsd:element name="pivotArea" type="CT_PivotArea"/> <xsd:element name="extLst" minOccurs="0" type="CT_ExtensionList"/> </xsd:sequence> <xsd:attribute name="action" type="ST_FormatAction" default="formatting"/> <xsd:attribute name="dxfId" type="ST_DxfId" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_ConditionalFormats"> <xsd:sequence> <xsd:element name="conditionalFormat" maxOccurs="unbounded" type="CT_ConditionalFormat"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt" default="0"/> </xsd:complexType> <xsd:complexType name="CT_ConditionalFormat"> <xsd:sequence> <xsd:element name="pivotAreas" type="CT_PivotAreas"/> <xsd:element name="extLst" minOccurs="0" type="CT_ExtensionList"/> </xsd:sequence> <xsd:attribute name="scope" type="ST_Scope" default="selection"/> <xsd:attribute name="type" type="ST_Type" default="none"/> <xsd:attribute name="priority" use="required" type="xsd:unsignedInt"/> </xsd:complexType> <xsd:complexType name="CT_PivotAreas"> <xsd:sequence> <xsd:element name="pivotArea" minOccurs="0" maxOccurs="unbounded" type="CT_PivotArea"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt"/> </xsd:complexType> <xsd:simpleType name="ST_Scope"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="selection"/> <xsd:enumeration value="data"/> <xsd:enumeration value="field"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_Type"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="none"/> <xsd:enumeration value="all"/> <xsd:enumeration value="row"/> <xsd:enumeration value="column"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_ChartFormats"> <xsd:sequence> <xsd:element name="chartFormat" maxOccurs="unbounded" type="CT_ChartFormat"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt" default="0"/> </xsd:complexType> <xsd:complexType name="CT_ChartFormat"> <xsd:sequence> <xsd:element name="pivotArea" type="CT_PivotArea"/> </xsd:sequence> <xsd:attribute name="chart" use="required" type="xsd:unsignedInt"/> <xsd:attribute name="format" use="required" type="xsd:unsignedInt"/> <xsd:attribute name="series" type="xsd:boolean" default="false"/> </xsd:complexType> <xsd:complexType name="CT_PivotHierarchies"> <xsd:sequence> <xsd:element name="pivotHierarchy" maxOccurs="unbounded" type="CT_PivotHierarchy"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt"/> </xsd:complexType> <xsd:complexType name="CT_PivotHierarchy"> <xsd:sequence> <xsd:element name="mps" minOccurs="0" type="CT_MemberProperties"/> <xsd:element name="members" minOccurs="0" maxOccurs="unbounded" type="CT_Members"/> <xsd:element name="extLst" minOccurs="0" type="CT_ExtensionList"/> </xsd:sequence> <xsd:attribute name="outline" type="xsd:boolean" default="false"/> <xsd:attribute name="multipleItemSelectionAllowed" type="xsd:boolean" default="false"/> <xsd:attribute name="subtotalTop" type="xsd:boolean" default="false"/> <xsd:attribute name="showInFieldList" type="xsd:boolean" default="true"/> <xsd:attribute name="dragToRow" type="xsd:boolean" default="true"/> <xsd:attribute name="dragToCol" type="xsd:boolean" default="true"/> <xsd:attribute name="dragToPage" type="xsd:boolean" default="true"/> <xsd:attribute name="dragToData" type="xsd:boolean" default="false"/> <xsd:attribute name="dragOff" type="xsd:boolean" default="true"/> <xsd:attribute name="includeNewItemsInFilter" type="xsd:boolean" default="false"/> <xsd:attribute name="caption" type="s:ST_Xstring" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_RowHierarchiesUsage"> <xsd:sequence> <xsd:element name="rowHierarchyUsage" minOccurs="1" maxOccurs="unbounded" type="CT_HierarchyUsage"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt"/> </xsd:complexType> <xsd:complexType name="CT_ColHierarchiesUsage"> <xsd:sequence> <xsd:element name="colHierarchyUsage" minOccurs="1" maxOccurs="unbounded" type="CT_HierarchyUsage"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt"/> </xsd:complexType> <xsd:complexType name="CT_HierarchyUsage"> <xsd:attribute name="hierarchyUsage" type="xsd:int" use="required"/> </xsd:complexType> <xsd:complexType name="CT_MemberProperties"> <xsd:sequence> <xsd:element name="mp" maxOccurs="unbounded" type="CT_MemberProperty"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt"/> </xsd:complexType> <xsd:complexType name="CT_MemberProperty"> <xsd:attribute name="name" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="showCell" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="showTip" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="showAsCaption" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="nameLen" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="pPos" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="pLen" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="level" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="field" use="required" type="xsd:unsignedInt"/> </xsd:complexType> <xsd:complexType name="CT_Members"> <xsd:sequence> <xsd:element name="member" maxOccurs="unbounded" type="CT_Member"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt"/> <xsd:attribute name="level" use="optional" type="xsd:unsignedInt"/> </xsd:complexType> <xsd:complexType name="CT_Member"> <xsd:attribute name="name" use="required" type="s:ST_Xstring"/> </xsd:complexType> <xsd:complexType name="CT_Dimensions"> <xsd:sequence> <xsd:element name="dimension" minOccurs="0" maxOccurs="unbounded" type="CT_PivotDimension"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt"/> </xsd:complexType> <xsd:complexType name="CT_PivotDimension"> <xsd:attribute name="measure" type="xsd:boolean" default="false"/> <xsd:attribute name="name" use="required" type="s:ST_Xstring"/> <xsd:attribute name="uniqueName" use="required" type="s:ST_Xstring"/> <xsd:attribute name="caption" use="required" type="s:ST_Xstring"/> </xsd:complexType> <xsd:complexType name="CT_MeasureGroups"> <xsd:sequence> <xsd:element name="measureGroup" minOccurs="0" maxOccurs="unbounded" type="CT_MeasureGroup"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt"/> </xsd:complexType> <xsd:complexType name="CT_MeasureDimensionMaps"> <xsd:sequence> <xsd:element name="map" minOccurs="0" maxOccurs="unbounded" type="CT_MeasureDimensionMap"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt"/> </xsd:complexType> <xsd:complexType name="CT_MeasureGroup"> <xsd:attribute name="name" use="required" type="s:ST_Xstring"/> <xsd:attribute name="caption" use="required" type="s:ST_Xstring"/> </xsd:complexType> <xsd:complexType name="CT_MeasureDimensionMap"> <xsd:attribute name="measureGroup" use="optional" type="xsd:unsignedInt"/> <xsd:attribute name="dimension" use="optional" type="xsd:unsignedInt"/> </xsd:complexType> <xsd:complexType name="CT_PivotTableStyle"> <xsd:attribute name="name" type="xsd:string"/> <xsd:attribute name="showRowHeaders" type="xsd:boolean"/> <xsd:attribute name="showColHeaders" type="xsd:boolean"/> <xsd:attribute name="showRowStripes" type="xsd:boolean"/> <xsd:attribute name="showColStripes" type="xsd:boolean"/> <xsd:attribute name="showLastColumn" type="xsd:boolean" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_PivotFilters"> <xsd:sequence> <xsd:element name="filter" minOccurs="0" maxOccurs="unbounded" type="CT_PivotFilter"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt" default="0"/> </xsd:complexType> <xsd:complexType name="CT_PivotFilter"> <xsd:sequence> <xsd:element name="autoFilter" minOccurs="1" maxOccurs="1" type="CT_AutoFilter"/> <xsd:element name="extLst" minOccurs="0" type="CT_ExtensionList"/> </xsd:sequence> <xsd:attribute name="fld" use="required" type="xsd:unsignedInt"/> <xsd:attribute name="mpFld" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="type" use="required" type="ST_PivotFilterType"/> <xsd:attribute name="evalOrder" use="optional" type="xsd:int" default="0"/> <xsd:attribute name="id" use="required" type="xsd:unsignedInt"/> <xsd:attribute name="iMeasureHier" use="optional" type="xsd:unsignedInt"/> <xsd:attribute name="iMeasureFld" use="optional" type="xsd:unsignedInt"/> <xsd:attribute name="name" type="s:ST_Xstring"/> <xsd:attribute name="description" type="s:ST_Xstring"/> <xsd:attribute name="stringValue1" type="s:ST_Xstring"/> <xsd:attribute name="stringValue2" type="s:ST_Xstring"/> </xsd:complexType> <xsd:simpleType name="ST_ShowDataAs"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="normal"/> <xsd:enumeration value="difference"/> <xsd:enumeration value="percent"/> <xsd:enumeration value="percentDiff"/> <xsd:enumeration value="runTotal"/> <xsd:enumeration value="percentOfRow"/> <xsd:enumeration value="percentOfCol"/> <xsd:enumeration value="percentOfTotal"/> <xsd:enumeration value="index"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_ItemType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="data"/> <xsd:enumeration value="default"/> <xsd:enumeration value="sum"/> <xsd:enumeration value="countA"/> <xsd:enumeration value="avg"/> <xsd:enumeration value="max"/> <xsd:enumeration value="min"/> <xsd:enumeration value="product"/> <xsd:enumeration value="count"/> <xsd:enumeration value="stdDev"/> <xsd:enumeration value="stdDevP"/> <xsd:enumeration value="var"/> <xsd:enumeration value="varP"/> <xsd:enumeration value="grand"/> <xsd:enumeration value="blank"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_FormatAction"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="blank"/> <xsd:enumeration value="formatting"/> <xsd:enumeration value="drill"/> <xsd:enumeration value="formula"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_FieldSortType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="manual"/> <xsd:enumeration value="ascending"/> <xsd:enumeration value="descending"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_PivotFilterType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="unknown"/> <xsd:enumeration value="count"/> <xsd:enumeration value="percent"/> <xsd:enumeration value="sum"/> <xsd:enumeration value="captionEqual"/> <xsd:enumeration value="captionNotEqual"/> <xsd:enumeration value="captionBeginsWith"/> <xsd:enumeration value="captionNotBeginsWith"/> <xsd:enumeration value="captionEndsWith"/> <xsd:enumeration value="captionNotEndsWith"/> <xsd:enumeration value="captionContains"/> <xsd:enumeration value="captionNotContains"/> <xsd:enumeration value="captionGreaterThan"/> <xsd:enumeration value="captionGreaterThanOrEqual"/> <xsd:enumeration value="captionLessThan"/> <xsd:enumeration value="captionLessThanOrEqual"/> <xsd:enumeration value="captionBetween"/> <xsd:enumeration value="captionNotBetween"/> <xsd:enumeration value="valueEqual"/> <xsd:enumeration value="valueNotEqual"/> <xsd:enumeration value="valueGreaterThan"/> <xsd:enumeration value="valueGreaterThanOrEqual"/> <xsd:enumeration value="valueLessThan"/> <xsd:enumeration value="valueLessThanOrEqual"/> <xsd:enumeration value="valueBetween"/> <xsd:enumeration value="valueNotBetween"/> <xsd:enumeration value="dateEqual"/> <xsd:enumeration value="dateNotEqual"/> <xsd:enumeration value="dateOlderThan"/> <xsd:enumeration value="dateOlderThanOrEqual"/> <xsd:enumeration value="dateNewerThan"/> <xsd:enumeration value="dateNewerThanOrEqual"/> <xsd:enumeration value="dateBetween"/> <xsd:enumeration value="dateNotBetween"/> <xsd:enumeration value="tomorrow"/> <xsd:enumeration value="today"/> <xsd:enumeration value="yesterday"/> <xsd:enumeration value="nextWeek"/> <xsd:enumeration value="thisWeek"/> <xsd:enumeration value="lastWeek"/> <xsd:enumeration value="nextMonth"/> <xsd:enumeration value="thisMonth"/> <xsd:enumeration value="lastMonth"/> <xsd:enumeration value="nextQuarter"/> <xsd:enumeration value="thisQuarter"/> <xsd:enumeration value="lastQuarter"/> <xsd:enumeration value="nextYear"/> <xsd:enumeration value="thisYear"/> <xsd:enumeration value="lastYear"/> <xsd:enumeration value="yearToDate"/> <xsd:enumeration value="Q1"/> <xsd:enumeration value="Q2"/> <xsd:enumeration value="Q3"/> <xsd:enumeration value="Q4"/> <xsd:enumeration value="M1"/> <xsd:enumeration value="M2"/> <xsd:enumeration value="M3"/> <xsd:enumeration value="M4"/> <xsd:enumeration value="M5"/> <xsd:enumeration value="M6"/> <xsd:enumeration value="M7"/> <xsd:enumeration value="M8"/> <xsd:enumeration value="M9"/> <xsd:enumeration value="M10"/> <xsd:enumeration value="M11"/> <xsd:enumeration value="M12"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_PivotArea"> <xsd:sequence> <xsd:element name="references" minOccurs="0" type="CT_PivotAreaReferences"/> <xsd:element name="extLst" minOccurs="0" type="CT_ExtensionList"/> </xsd:sequence> <xsd:attribute name="field" use="optional" type="xsd:int"/> <xsd:attribute name="type" type="ST_PivotAreaType" default="normal"/> <xsd:attribute name="dataOnly" type="xsd:boolean" default="true"/> <xsd:attribute name="labelOnly" type="xsd:boolean" default="false"/> <xsd:attribute name="grandRow" type="xsd:boolean" default="false"/> <xsd:attribute name="grandCol" type="xsd:boolean" default="false"/> <xsd:attribute name="cacheIndex" type="xsd:boolean" default="false"/> <xsd:attribute name="outline" type="xsd:boolean" default="true"/> <xsd:attribute name="offset" type="ST_Ref"/> <xsd:attribute name="collapsedLevelsAreSubtotals" type="xsd:boolean" default="false"/> <xsd:attribute name="axis" type="ST_Axis" use="optional"/> <xsd:attribute name="fieldPosition" type="xsd:unsignedInt" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_PivotAreaType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="none"/> <xsd:enumeration value="normal"/> <xsd:enumeration value="data"/> <xsd:enumeration value="all"/> <xsd:enumeration value="origin"/> <xsd:enumeration value="button"/> <xsd:enumeration value="topEnd"/> <xsd:enumeration value="topRight"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_PivotAreaReferences"> <xsd:sequence> <xsd:element name="reference" maxOccurs="unbounded" type="CT_PivotAreaReference"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt"/> </xsd:complexType> <xsd:complexType name="CT_PivotAreaReference"> <xsd:sequence> <xsd:element name="x" minOccurs="0" maxOccurs="unbounded" type="CT_Index"/> <xsd:element name="extLst" minOccurs="0" type="CT_ExtensionList"/> </xsd:sequence> <xsd:attribute name="field" use="optional" type="xsd:unsignedInt"/> <xsd:attribute name="count" type="xsd:unsignedInt"/> <xsd:attribute name="selected" type="xsd:boolean" default="true"/> <xsd:attribute name="byPosition" type="xsd:boolean" default="false"/> <xsd:attribute name="relative" type="xsd:boolean" default="false"/> <xsd:attribute name="defaultSubtotal" type="xsd:boolean" default="false"/> <xsd:attribute name="sumSubtotal" type="xsd:boolean" default="false"/> <xsd:attribute name="countASubtotal" type="xsd:boolean" default="false"/> <xsd:attribute name="avgSubtotal" type="xsd:boolean" default="false"/> <xsd:attribute name="maxSubtotal" type="xsd:boolean" default="false"/> <xsd:attribute name="minSubtotal" type="xsd:boolean" default="false"/> <xsd:attribute name="productSubtotal" type="xsd:boolean" default="false"/> <xsd:attribute name="countSubtotal" type="xsd:boolean" default="false"/> <xsd:attribute name="stdDevSubtotal" type="xsd:boolean" default="false"/> <xsd:attribute name="stdDevPSubtotal" type="xsd:boolean" default="false"/> <xsd:attribute name="varSubtotal" type="xsd:boolean" default="false"/> <xsd:attribute name="varPSubtotal" type="xsd:boolean" default="false"/> </xsd:complexType> <xsd:complexType name="CT_Index"> <xsd:attribute name="v" use="required" type="xsd:unsignedInt"/> </xsd:complexType> <xsd:simpleType name="ST_Axis"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="axisRow"/> <xsd:enumeration value="axisCol"/> <xsd:enumeration value="axisPage"/> <xsd:enumeration value="axisValues"/> </xsd:restriction> </xsd:simpleType> <xsd:element name="queryTable" type="CT_QueryTable"/> <xsd:complexType name="CT_QueryTable"> <xsd:sequence> <xsd:element name="queryTableRefresh" type="CT_QueryTableRefresh" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="name" type="s:ST_Xstring" use="required"/> <xsd:attribute name="headers" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="rowNumbers" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="disableRefresh" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="backgroundRefresh" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="firstBackgroundRefresh" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="refreshOnLoad" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="growShrinkType" type="ST_GrowShrinkType" use="optional" default="insertDelete"/> <xsd:attribute name="fillFormulas" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="removeDataOnSave" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="disableEdit" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="preserveFormatting" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="adjustColumnWidth" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="intermediate" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="connectionId" type="xsd:unsignedInt" use="required"/> <xsd:attributeGroup ref="AG_AutoFormat"/> </xsd:complexType> <xsd:complexType name="CT_QueryTableRefresh"> <xsd:sequence> <xsd:element name="queryTableFields" type="CT_QueryTableFields" minOccurs="1" maxOccurs="1"/> <xsd:element name="queryTableDeletedFields" type="CT_QueryTableDeletedFields" minOccurs="0" maxOccurs="1"/> <xsd:element name="sortState" minOccurs="0" maxOccurs="1" type="CT_SortState"/> <xsd:element name="extLst" minOccurs="0" maxOccurs="1" type="CT_ExtensionList"/> </xsd:sequence> <xsd:attribute name="preserveSortFilterLayout" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="fieldIdWrapped" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="headersInLastRefresh" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="minimumVersion" type="xsd:unsignedByte" use="optional" default="0"/> <xsd:attribute name="nextId" type="xsd:unsignedInt" use="optional" default="1"/> <xsd:attribute name="unboundColumnsLeft" type="xsd:unsignedInt" use="optional" default="0"/> <xsd:attribute name="unboundColumnsRight" type="xsd:unsignedInt" use="optional" default="0"/> </xsd:complexType> <xsd:complexType name="CT_QueryTableDeletedFields"> <xsd:sequence> <xsd:element name="deletedField" type="CT_DeletedField" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_DeletedField"> <xsd:attribute name="name" type="s:ST_Xstring" use="required"/> </xsd:complexType> <xsd:complexType name="CT_QueryTableFields"> <xsd:sequence> <xsd:element name="queryTableField" type="CT_QueryTableField" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt" use="optional" default="0"/> </xsd:complexType> <xsd:complexType name="CT_QueryTableField"> <xsd:sequence minOccurs="0"> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="id" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="name" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="dataBound" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="rowNumbers" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="fillFormulas" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="clipped" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="tableColumnId" type="xsd:unsignedInt" default="0"/> </xsd:complexType> <xsd:simpleType name="ST_GrowShrinkType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="insertDelete"/> <xsd:enumeration value="insertClear"/> <xsd:enumeration value="overwriteClear"/> </xsd:restriction> </xsd:simpleType> <xsd:element name="sst" type="CT_Sst"/> <xsd:complexType name="CT_Sst"> <xsd:sequence> <xsd:element name="si" type="CT_Rst" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="extLst" minOccurs="0" type="CT_ExtensionList"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="uniqueCount" type="xsd:unsignedInt" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_PhoneticType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="halfwidthKatakana"/> <xsd:enumeration value="fullwidthKatakana"/> <xsd:enumeration value="Hiragana"/> <xsd:enumeration value="noConversion"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_PhoneticAlignment"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="noControl"/> <xsd:enumeration value="left"/> <xsd:enumeration value="center"/> <xsd:enumeration value="distributed"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_PhoneticRun"> <xsd:sequence> <xsd:element name="t" type="s:ST_Xstring" minOccurs="1" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="sb" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="eb" type="xsd:unsignedInt" use="required"/> </xsd:complexType> <xsd:complexType name="CT_RElt"> <xsd:sequence> <xsd:element name="rPr" type="CT_RPrElt" minOccurs="0" maxOccurs="1"/> <xsd:element name="t" type="s:ST_Xstring" minOccurs="1" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_RPrElt"> <xsd:choice maxOccurs="unbounded"> <xsd:element name="rFont" type="CT_FontName" minOccurs="0" maxOccurs="1"/> <xsd:element name="charset" type="CT_IntProperty" minOccurs="0" maxOccurs="1"/> <xsd:element name="family" type="CT_IntProperty" minOccurs="0" maxOccurs="1"/> <xsd:element name="b" type="CT_BooleanProperty" minOccurs="0" maxOccurs="1"/> <xsd:element name="i" type="CT_BooleanProperty" minOccurs="0" maxOccurs="1"/> <xsd:element name="strike" type="CT_BooleanProperty" minOccurs="0" maxOccurs="1"/> <xsd:element name="outline" type="CT_BooleanProperty" minOccurs="0" maxOccurs="1"/> <xsd:element name="shadow" type="CT_BooleanProperty" minOccurs="0" maxOccurs="1"/> <xsd:element name="condense" type="CT_BooleanProperty" minOccurs="0" maxOccurs="1"/> <xsd:element name="extend" type="CT_BooleanProperty" minOccurs="0" maxOccurs="1"/> <xsd:element name="color" type="CT_Color" minOccurs="0" maxOccurs="1"/> <xsd:element name="sz" type="CT_FontSize" minOccurs="0" maxOccurs="1"/> <xsd:element name="u" type="CT_UnderlineProperty" minOccurs="0" maxOccurs="1"/> <xsd:element name="vertAlign" type="CT_VerticalAlignFontProperty" minOccurs="0" maxOccurs="1"/> <xsd:element name="scheme" type="CT_FontScheme" minOccurs="0" maxOccurs="1"/> </xsd:choice> </xsd:complexType> <xsd:complexType name="CT_Rst"> <xsd:sequence> <xsd:element name="t" type="s:ST_Xstring" minOccurs="0" maxOccurs="1"/> <xsd:element name="r" type="CT_RElt" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="rPh" type="CT_PhoneticRun" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="phoneticPr" minOccurs="0" maxOccurs="1" type="CT_PhoneticPr"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_PhoneticPr"> <xsd:attribute name="fontId" type="ST_FontId" use="required"/> <xsd:attribute name="type" type="ST_PhoneticType" use="optional" default="fullwidthKatakana"/> <xsd:attribute name="alignment" type="ST_PhoneticAlignment" use="optional" default="left"/> </xsd:complexType> <xsd:element name="headers" type="CT_RevisionHeaders"/> <xsd:element name="revisions" type="CT_Revisions"/> <xsd:complexType name="CT_RevisionHeaders"> <xsd:sequence> <xsd:element name="header" type="CT_RevisionHeader" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="guid" type="s:ST_Guid" use="required"/> <xsd:attribute name="lastGuid" type="s:ST_Guid" use="optional"/> <xsd:attribute name="shared" type="xsd:boolean" default="true"/> <xsd:attribute name="diskRevisions" type="xsd:boolean" default="false"/> <xsd:attribute name="history" type="xsd:boolean" default="true"/> <xsd:attribute name="trackRevisions" type="xsd:boolean" default="true"/> <xsd:attribute name="exclusive" type="xsd:boolean" default="false"/> <xsd:attribute name="revisionId" type="xsd:unsignedInt" default="0"/> <xsd:attribute name="version" type="xsd:int" default="1"/> <xsd:attribute name="keepChangeHistory" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="protected" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="preserveHistory" type="xsd:unsignedInt" default="30"/> </xsd:complexType> <xsd:complexType name="CT_Revisions"> <xsd:choice maxOccurs="unbounded"> <xsd:element name="rrc" type="CT_RevisionRowColumn" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="rm" type="CT_RevisionMove" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="rcv" type="CT_RevisionCustomView" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="rsnm" type="CT_RevisionSheetRename" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="ris" type="CT_RevisionInsertSheet" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="rcc" type="CT_RevisionCellChange" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="rfmt" type="CT_RevisionFormatting" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="raf" type="CT_RevisionAutoFormatting" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="rdn" type="CT_RevisionDefinedName" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="rcmt" type="CT_RevisionComment" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="rqt" type="CT_RevisionQueryTableField" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="rcft" type="CT_RevisionConflict" minOccurs="0" maxOccurs="unbounded"/> </xsd:choice> </xsd:complexType> <xsd:attributeGroup name="AG_RevData"> <xsd:attribute name="rId" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="ua" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="ra" type="xsd:boolean" use="optional" default="false"/> </xsd:attributeGroup> <xsd:complexType name="CT_RevisionHeader"> <xsd:sequence> <xsd:element name="sheetIdMap" minOccurs="1" maxOccurs="1" type="CT_SheetIdMap"/> <xsd:element name="reviewedList" minOccurs="0" maxOccurs="1" type="CT_ReviewedRevisions"/> <xsd:element name="extLst" minOccurs="0" type="CT_ExtensionList"/> </xsd:sequence> <xsd:attribute name="guid" type="s:ST_Guid" use="required"/> <xsd:attribute name="dateTime" type="xsd:dateTime" use="required"/> <xsd:attribute name="maxSheetId" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="userName" type="s:ST_Xstring" use="required"/> <xsd:attribute ref="r:id" use="required"/> <xsd:attribute name="minRId" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="maxRId" type="xsd:unsignedInt" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_SheetIdMap"> <xsd:sequence> <xsd:element name="sheetId" type="CT_SheetId" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_SheetId"> <xsd:attribute name="val" type="xsd:unsignedInt" use="required"/> </xsd:complexType> <xsd:complexType name="CT_ReviewedRevisions"> <xsd:sequence> <xsd:element name="reviewed" type="CT_Reviewed" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_Reviewed"> <xsd:attribute name="rId" type="xsd:unsignedInt" use="required"/> </xsd:complexType> <xsd:complexType name="CT_UndoInfo"> <xsd:attribute name="index" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="exp" type="ST_FormulaExpression" use="required"/> <xsd:attribute name="ref3D" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="array" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="v" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="nf" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="cs" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="dr" type="ST_RefA" use="required"/> <xsd:attribute name="dn" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="r" type="ST_CellRef" use="optional"/> <xsd:attribute name="sId" type="xsd:unsignedInt" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_RevisionRowColumn"> <xsd:choice minOccurs="0" maxOccurs="unbounded"> <xsd:element name="undo" type="CT_UndoInfo" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="rcc" type="CT_RevisionCellChange" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="rfmt" type="CT_RevisionFormatting" minOccurs="0" maxOccurs="unbounded"/> </xsd:choice> <xsd:attributeGroup ref="AG_RevData"/> <xsd:attribute name="sId" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="eol" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="ref" type="ST_Ref" use="required"/> <xsd:attribute name="action" type="ST_rwColActionType" use="required"/> <xsd:attribute name="edge" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_RevisionMove"> <xsd:choice minOccurs="0" maxOccurs="unbounded"> <xsd:element name="undo" type="CT_UndoInfo" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="rcc" type="CT_RevisionCellChange" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="rfmt" type="CT_RevisionFormatting" minOccurs="0" maxOccurs="unbounded"/> </xsd:choice> <xsd:attributeGroup ref="AG_RevData"/> <xsd:attribute name="sheetId" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="source" type="ST_Ref" use="required"/> <xsd:attribute name="destination" type="ST_Ref" use="required"/> <xsd:attribute name="sourceSheetId" type="xsd:unsignedInt" use="optional" default="0"/> </xsd:complexType> <xsd:complexType name="CT_RevisionCustomView"> <xsd:attribute name="guid" type="s:ST_Guid" use="required"/> <xsd:attribute name="action" type="ST_RevisionAction" use="required"/> </xsd:complexType> <xsd:complexType name="CT_RevisionSheetRename"> <xsd:sequence> <xsd:element name="extLst" minOccurs="0" type="CT_ExtensionList"/> </xsd:sequence> <xsd:attributeGroup ref="AG_RevData"/> <xsd:attribute name="sheetId" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="oldName" type="s:ST_Xstring" use="required"/> <xsd:attribute name="newName" type="s:ST_Xstring" use="required"/> </xsd:complexType> <xsd:complexType name="CT_RevisionInsertSheet"> <xsd:attributeGroup ref="AG_RevData"/> <xsd:attribute name="sheetId" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="name" type="s:ST_Xstring" use="required"/> <xsd:attribute name="sheetPosition" type="xsd:unsignedInt" use="required"/> </xsd:complexType> <xsd:complexType name="CT_RevisionCellChange"> <xsd:sequence> <xsd:element name="oc" type="CT_Cell" minOccurs="0" maxOccurs="1"/> <xsd:element name="nc" type="CT_Cell" minOccurs="1" maxOccurs="1"/> <xsd:element name="odxf" type="CT_Dxf" minOccurs="0" maxOccurs="1"/> <xsd:element name="ndxf" type="CT_Dxf" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" minOccurs="0" type="CT_ExtensionList"/> </xsd:sequence> <xsd:attributeGroup ref="AG_RevData"/> <xsd:attribute name="sId" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="odxf" type="xsd:boolean" default="false"/> <xsd:attribute name="xfDxf" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="s" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="dxf" type="xsd:boolean" default="false"/> <xsd:attribute name="numFmtId" type="ST_NumFmtId" use="optional"/> <xsd:attribute name="quotePrefix" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="oldQuotePrefix" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="ph" type="xsd:boolean" default="false"/> <xsd:attribute name="oldPh" type="xsd:boolean" default="false"/> <xsd:attribute name="endOfListFormulaUpdate" type="xsd:boolean" default="false"/> </xsd:complexType> <xsd:complexType name="CT_RevisionFormatting"> <xsd:sequence> <xsd:element name="dxf" type="CT_Dxf" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" minOccurs="0" type="CT_ExtensionList"/> </xsd:sequence> <xsd:attribute name="sheetId" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="xfDxf" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="s" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="sqref" type="ST_Sqref" use="required"/> <xsd:attribute name="start" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="length" type="xsd:unsignedInt" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_RevisionAutoFormatting"> <xsd:attribute name="sheetId" type="xsd:unsignedInt" use="required"/> <xsd:attributeGroup ref="AG_AutoFormat"/> <xsd:attribute name="ref" type="ST_Ref" use="required"/> </xsd:complexType> <xsd:complexType name="CT_RevisionComment"> <xsd:attribute name="sheetId" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="cell" type="ST_CellRef" use="required"/> <xsd:attribute name="guid" type="s:ST_Guid" use="required"/> <xsd:attribute name="action" type="ST_RevisionAction" default="add"/> <xsd:attribute name="alwaysShow" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="old" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="hiddenRow" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="hiddenColumn" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="author" type="s:ST_Xstring" use="required"/> <xsd:attribute name="oldLength" type="xsd:unsignedInt" default="0"/> <xsd:attribute name="newLength" type="xsd:unsignedInt" default="0"/> </xsd:complexType> <xsd:complexType name="CT_RevisionDefinedName"> <xsd:sequence> <xsd:element name="formula" type="ST_Formula" minOccurs="0" maxOccurs="1"/> <xsd:element name="oldFormula" type="ST_Formula" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" minOccurs="0" type="CT_ExtensionList"/> </xsd:sequence> <xsd:attributeGroup ref="AG_RevData"/> <xsd:attribute name="localSheetId" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="customView" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="name" type="s:ST_Xstring" use="required"/> <xsd:attribute name="function" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="oldFunction" type="xsd:boolean" default="false"/> <xsd:attribute name="functionGroupId" type="xsd:unsignedByte" use="optional"/> <xsd:attribute name="oldFunctionGroupId" type="xsd:unsignedByte" use="optional"/> <xsd:attribute name="shortcutKey" type="xsd:unsignedByte" use="optional"/> <xsd:attribute name="oldShortcutKey" type="xsd:unsignedByte" use="optional"/> <xsd:attribute name="hidden" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="oldHidden" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="customMenu" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="oldCustomMenu" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="description" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="oldDescription" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="help" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="oldHelp" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="statusBar" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="oldStatusBar" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="comment" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="oldComment" type="s:ST_Xstring" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_RevisionConflict"> <xsd:attributeGroup ref="AG_RevData"/> <xsd:attribute name="sheetId" type="xsd:unsignedInt" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_RevisionQueryTableField"> <xsd:attribute name="sheetId" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="ref" type="ST_Ref" use="required"/> <xsd:attribute name="fieldId" type="xsd:unsignedInt" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_rwColActionType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="insertRow"/> <xsd:enumeration value="deleteRow"/> <xsd:enumeration value="insertCol"/> <xsd:enumeration value="deleteCol"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_RevisionAction"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="add"/> <xsd:enumeration value="delete"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_FormulaExpression"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="ref"/> <xsd:enumeration value="refError"/> <xsd:enumeration value="area"/> <xsd:enumeration value="areaError"/> <xsd:enumeration value="computedArea"/> </xsd:restriction> </xsd:simpleType> <xsd:element name="users" type="CT_Users"/> <xsd:complexType name="CT_Users"> <xsd:sequence> <xsd:element name="userInfo" minOccurs="0" maxOccurs="256" type="CT_SharedUser"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_SharedUser"> <xsd:sequence> <xsd:element name="extLst" minOccurs="0" type="CT_ExtensionList"/> </xsd:sequence> <xsd:attribute name="guid" type="s:ST_Guid" use="required"/> <xsd:attribute name="name" type="s:ST_Xstring" use="required"/> <xsd:attribute name="id" type="xsd:int" use="required"/> <xsd:attribute name="dateTime" type="xsd:dateTime" use="required"/> </xsd:complexType> <xsd:element name="worksheet" type="CT_Worksheet"/> <xsd:element name="chartsheet" type="CT_Chartsheet"/> <xsd:element name="dialogsheet" type="CT_Dialogsheet"/> <xsd:complexType name="CT_Macrosheet"> <xsd:sequence> <xsd:element name="sheetPr" type="CT_SheetPr" minOccurs="0" maxOccurs="1"/> <xsd:element name="dimension" type="CT_SheetDimension" minOccurs="0" maxOccurs="1"/> <xsd:element name="sheetViews" type="CT_SheetViews" minOccurs="0" maxOccurs="1"/> <xsd:element name="sheetFormatPr" type="CT_SheetFormatPr" minOccurs="0" maxOccurs="1"/> <xsd:element name="cols" type="CT_Cols" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="sheetData" type="CT_SheetData" minOccurs="1" maxOccurs="1"/> <xsd:element name="sheetProtection" type="CT_SheetProtection" minOccurs="0" maxOccurs="1"/> <xsd:element name="autoFilter" type="CT_AutoFilter" minOccurs="0" maxOccurs="1"/> <xsd:element name="sortState" type="CT_SortState" minOccurs="0" maxOccurs="1"/> <xsd:element name="dataConsolidate" type="CT_DataConsolidate" minOccurs="0" maxOccurs="1"/> <xsd:element name="customSheetViews" type="CT_CustomSheetViews" minOccurs="0" maxOccurs="1"/> <xsd:element name="phoneticPr" type="CT_PhoneticPr" minOccurs="0" maxOccurs="1"/> <xsd:element name="conditionalFormatting" type="CT_ConditionalFormatting" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="printOptions" type="CT_PrintOptions" minOccurs="0" maxOccurs="1"/> <xsd:element name="pageMargins" type="CT_PageMargins" minOccurs="0" maxOccurs="1"/> <xsd:element name="pageSetup" type="CT_PageSetup" minOccurs="0" maxOccurs="1"/> <xsd:element name="headerFooter" type="CT_HeaderFooter" minOccurs="0" maxOccurs="1"/> <xsd:element name="rowBreaks" type="CT_PageBreak" minOccurs="0" maxOccurs="1"/> <xsd:element name="colBreaks" type="CT_PageBreak" minOccurs="0" maxOccurs="1"/> <xsd:element name="customProperties" type="CT_CustomProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="drawing" type="CT_Drawing" minOccurs="0" maxOccurs="1"/> <xsd:element name="legacyDrawing" type="CT_LegacyDrawing" minOccurs="0" maxOccurs="1"/> <xsd:element name="legacyDrawingHF" type="CT_LegacyDrawing" minOccurs="0" maxOccurs="1"/> <xsd:element name="drawingHF" type="CT_DrawingHF" minOccurs="0" maxOccurs="1"/> <xsd:element name="picture" type="CT_SheetBackgroundPicture" minOccurs="0" maxOccurs="1"/> <xsd:element name="oleObjects" type="CT_OleObjects" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" minOccurs="0" type="CT_ExtensionList"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Dialogsheet"> <xsd:sequence> <xsd:element name="sheetPr" minOccurs="0" type="CT_SheetPr"/> <xsd:element name="sheetViews" minOccurs="0" type="CT_SheetViews"/> <xsd:element name="sheetFormatPr" minOccurs="0" type="CT_SheetFormatPr"/> <xsd:element name="sheetProtection" type="CT_SheetProtection" minOccurs="0" maxOccurs="1"/> <xsd:element name="customSheetViews" minOccurs="0" type="CT_CustomSheetViews"/> <xsd:element name="printOptions" minOccurs="0" type="CT_PrintOptions"/> <xsd:element name="pageMargins" minOccurs="0" type="CT_PageMargins"/> <xsd:element name="pageSetup" minOccurs="0" type="CT_PageSetup"/> <xsd:element name="headerFooter" minOccurs="0" type="CT_HeaderFooter"/> <xsd:element name="drawing" minOccurs="0" type="CT_Drawing"/> <xsd:element name="legacyDrawing" minOccurs="0" type="CT_LegacyDrawing"/> <xsd:element name="legacyDrawingHF" type="CT_LegacyDrawing" minOccurs="0" maxOccurs="1"/> <xsd:element name="drawingHF" type="CT_DrawingHF" minOccurs="0" maxOccurs="1"/> <xsd:element name="oleObjects" type="CT_OleObjects" minOccurs="0" maxOccurs="1"/> <xsd:element name="controls" type="CT_Controls" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" minOccurs="0" type="CT_ExtensionList"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Worksheet"> <xsd:sequence> <xsd:element name="sheetPr" type="CT_SheetPr" minOccurs="0" maxOccurs="1"/> <xsd:element name="dimension" type="CT_SheetDimension" minOccurs="0" maxOccurs="1"/> <xsd:element name="sheetViews" type="CT_SheetViews" minOccurs="0" maxOccurs="1"/> <xsd:element name="sheetFormatPr" type="CT_SheetFormatPr" minOccurs="0" maxOccurs="1"/> <xsd:element name="cols" type="CT_Cols" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="sheetData" type="CT_SheetData" minOccurs="1" maxOccurs="1"/> <xsd:element name="sheetCalcPr" type="CT_SheetCalcPr" minOccurs="0" maxOccurs="1"/> <xsd:element name="sheetProtection" type="CT_SheetProtection" minOccurs="0" maxOccurs="1"/> <xsd:element name="protectedRanges" type="CT_ProtectedRanges" minOccurs="0" maxOccurs="1"/> <xsd:element name="scenarios" type="CT_Scenarios" minOccurs="0" maxOccurs="1"/> <xsd:element name="autoFilter" type="CT_AutoFilter" minOccurs="0" maxOccurs="1"/> <xsd:element name="sortState" type="CT_SortState" minOccurs="0" maxOccurs="1"/> <xsd:element name="dataConsolidate" type="CT_DataConsolidate" minOccurs="0" maxOccurs="1"/> <xsd:element name="customSheetViews" type="CT_CustomSheetViews" minOccurs="0" maxOccurs="1"/> <xsd:element name="mergeCells" type="CT_MergeCells" minOccurs="0" maxOccurs="1"/> <xsd:element name="phoneticPr" type="CT_PhoneticPr" minOccurs="0" maxOccurs="1"/> <xsd:element name="conditionalFormatting" type="CT_ConditionalFormatting" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="dataValidations" type="CT_DataValidations" minOccurs="0" maxOccurs="1"/> <xsd:element name="hyperlinks" type="CT_Hyperlinks" minOccurs="0" maxOccurs="1"/> <xsd:element name="printOptions" type="CT_PrintOptions" minOccurs="0" maxOccurs="1"/> <xsd:element name="pageMargins" type="CT_PageMargins" minOccurs="0" maxOccurs="1"/> <xsd:element name="pageSetup" type="CT_PageSetup" minOccurs="0" maxOccurs="1"/> <xsd:element name="headerFooter" type="CT_HeaderFooter" minOccurs="0" maxOccurs="1"/> <xsd:element name="rowBreaks" type="CT_PageBreak" minOccurs="0" maxOccurs="1"/> <xsd:element name="colBreaks" type="CT_PageBreak" minOccurs="0" maxOccurs="1"/> <xsd:element name="customProperties" type="CT_CustomProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="cellWatches" type="CT_CellWatches" minOccurs="0" maxOccurs="1"/> <xsd:element name="ignoredErrors" type="CT_IgnoredErrors" minOccurs="0" maxOccurs="1"/> <xsd:element name="smartTags" type="CT_SmartTags" minOccurs="0" maxOccurs="1"/> <xsd:element name="drawing" type="CT_Drawing" minOccurs="0" maxOccurs="1"/> <xsd:element name="legacyDrawing" type="CT_LegacyDrawing" minOccurs="0" maxOccurs="1"/> <xsd:element name="legacyDrawingHF" type="CT_LegacyDrawing" minOccurs="0" maxOccurs="1"/> <xsd:element name="drawingHF" type="CT_DrawingHF" minOccurs="0" maxOccurs="1"/> <xsd:element name="picture" type="CT_SheetBackgroundPicture" minOccurs="0" maxOccurs="1"/> <xsd:element name="oleObjects" type="CT_OleObjects" minOccurs="0" maxOccurs="1"/> <xsd:element name="controls" type="CT_Controls" minOccurs="0" maxOccurs="1"/> <xsd:element name="webPublishItems" type="CT_WebPublishItems" minOccurs="0" maxOccurs="1"/> <xsd:element name="tableParts" type="CT_TableParts" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_SheetData"> <xsd:sequence> <xsd:element name="row" type="CT_Row" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_SheetCalcPr"> <xsd:attribute name="fullCalcOnLoad" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_SheetFormatPr"> <xsd:attribute name="baseColWidth" type="xsd:unsignedInt" use="optional" default="8"/> <xsd:attribute name="defaultColWidth" type="xsd:double" use="optional"/> <xsd:attribute name="defaultRowHeight" type="xsd:double" use="required"/> <xsd:attribute name="customHeight" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="zeroHeight" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="thickTop" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="thickBottom" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="outlineLevelRow" type="xsd:unsignedByte" use="optional" default="0"/> <xsd:attribute name="outlineLevelCol" type="xsd:unsignedByte" use="optional" default="0"/> </xsd:complexType> <xsd:complexType name="CT_Cols"> <xsd:sequence> <xsd:element name="col" type="CT_Col" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Col"> <xsd:attribute name="min" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="max" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="width" type="xsd:double" use="optional"/> <xsd:attribute name="style" type="xsd:unsignedInt" use="optional" default="0"/> <xsd:attribute name="hidden" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="bestFit" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="customWidth" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="phonetic" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="outlineLevel" type="xsd:unsignedByte" use="optional" default="0"/> <xsd:attribute name="collapsed" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:simpleType name="ST_CellSpan"> <xsd:restriction base="xsd:string"/> </xsd:simpleType> <xsd:simpleType name="ST_CellSpans"> <xsd:list itemType="ST_CellSpan"/> </xsd:simpleType> <xsd:complexType name="CT_Row"> <xsd:sequence> <xsd:element name="c" type="CT_Cell" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="extLst" minOccurs="0" type="CT_ExtensionList"/> </xsd:sequence> <xsd:attribute name="r" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="spans" type="ST_CellSpans" use="optional"/> <xsd:attribute name="s" type="xsd:unsignedInt" use="optional" default="0"/> <xsd:attribute name="customFormat" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="ht" type="xsd:double" use="optional"/> <xsd:attribute name="hidden" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="customHeight" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="outlineLevel" type="xsd:unsignedByte" use="optional" default="0"/> <xsd:attribute name="collapsed" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="thickTop" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="thickBot" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="ph" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_Cell"> <xsd:sequence> <xsd:element name="f" type="CT_CellFormula" minOccurs="0" maxOccurs="1"/> <xsd:element name="v" type="s:ST_Xstring" minOccurs="0" maxOccurs="1"/> <xsd:element name="is" type="CT_Rst" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" minOccurs="0" type="CT_ExtensionList"/> </xsd:sequence> <xsd:attribute name="r" type="ST_CellRef" use="optional"/> <xsd:attribute name="s" type="xsd:unsignedInt" use="optional" default="0"/> <xsd:attribute name="t" type="ST_CellType" use="optional" default="n"/> <xsd:attribute name="cm" type="xsd:unsignedInt" use="optional" default="0"/> <xsd:attribute name="vm" type="xsd:unsignedInt" use="optional" default="0"/> <xsd:attribute name="ph" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:simpleType name="ST_CellType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="b"/> <xsd:enumeration value="n"/> <xsd:enumeration value="e"/> <xsd:enumeration value="s"/> <xsd:enumeration value="str"/> <xsd:enumeration value="inlineStr"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_CellFormulaType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="normal"/> <xsd:enumeration value="array"/> <xsd:enumeration value="dataTable"/> <xsd:enumeration value="shared"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_SheetPr"> <xsd:sequence> <xsd:element name="tabColor" type="CT_Color" minOccurs="0" maxOccurs="1"/> <xsd:element name="outlinePr" type="CT_OutlinePr" minOccurs="0" maxOccurs="1"/> <xsd:element name="pageSetUpPr" type="CT_PageSetUpPr" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="syncHorizontal" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="syncVertical" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="syncRef" type="ST_Ref" use="optional"/> <xsd:attribute name="transitionEvaluation" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="transitionEntry" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="published" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="codeName" type="xsd:string" use="optional"/> <xsd:attribute name="filterMode" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="enableFormatConditionsCalculation" type="xsd:boolean" use="optional" default="true"/> </xsd:complexType> <xsd:complexType name="CT_SheetDimension"> <xsd:attribute name="ref" type="ST_Ref" use="required"/> </xsd:complexType> <xsd:complexType name="CT_SheetViews"> <xsd:sequence> <xsd:element name="sheetView" type="CT_SheetView" minOccurs="1" maxOccurs="unbounded"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_SheetView"> <xsd:sequence> <xsd:element name="pane" type="CT_Pane" minOccurs="0" maxOccurs="1"/> <xsd:element name="selection" type="CT_Selection" minOccurs="0" maxOccurs="4"/> <xsd:element name="pivotSelection" type="CT_PivotSelection" minOccurs="0" maxOccurs="4"/> <xsd:element name="extLst" minOccurs="0" maxOccurs="1" type="CT_ExtensionList"/> </xsd:sequence> <xsd:attribute name="windowProtection" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="showFormulas" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="showGridLines" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="showRowColHeaders" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="showZeros" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="rightToLeft" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="tabSelected" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="showRuler" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="showOutlineSymbols" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="defaultGridColor" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="showWhiteSpace" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="view" type="ST_SheetViewType" use="optional" default="normal"/> <xsd:attribute name="topLeftCell" type="ST_CellRef" use="optional"/> <xsd:attribute name="colorId" type="xsd:unsignedInt" use="optional" default="64"/> <xsd:attribute name="zoomScale" type="xsd:unsignedInt" use="optional" default="100"/> <xsd:attribute name="zoomScaleNormal" type="xsd:unsignedInt" use="optional" default="0"/> <xsd:attribute name="zoomScaleSheetLayoutView" type="xsd:unsignedInt" use="optional" default="0"/> <xsd:attribute name="zoomScalePageLayoutView" type="xsd:unsignedInt" use="optional" default="0"/> <xsd:attribute name="workbookViewId" type="xsd:unsignedInt" use="required"/> </xsd:complexType> <xsd:complexType name="CT_Pane"> <xsd:attribute name="xSplit" type="xsd:double" use="optional" default="0"/> <xsd:attribute name="ySplit" type="xsd:double" use="optional" default="0"/> <xsd:attribute name="topLeftCell" type="ST_CellRef" use="optional"/> <xsd:attribute name="activePane" type="ST_Pane" use="optional" default="topLeft"/> <xsd:attribute name="state" type="ST_PaneState" use="optional" default="split"/> </xsd:complexType> <xsd:complexType name="CT_PivotSelection"> <xsd:sequence> <xsd:element name="pivotArea" type="CT_PivotArea"/> </xsd:sequence> <xsd:attribute name="pane" type="ST_Pane" use="optional" default="topLeft"/> <xsd:attribute name="showHeader" type="xsd:boolean" default="false"/> <xsd:attribute name="label" type="xsd:boolean" default="false"/> <xsd:attribute name="data" type="xsd:boolean" default="false"/> <xsd:attribute name="extendable" type="xsd:boolean" default="false"/> <xsd:attribute name="count" type="xsd:unsignedInt" default="0"/> <xsd:attribute name="axis" type="ST_Axis" use="optional"/> <xsd:attribute name="dimension" type="xsd:unsignedInt" default="0"/> <xsd:attribute name="start" type="xsd:unsignedInt" default="0"/> <xsd:attribute name="min" type="xsd:unsignedInt" default="0"/> <xsd:attribute name="max" type="xsd:unsignedInt" default="0"/> <xsd:attribute name="activeRow" type="xsd:unsignedInt" default="0"/> <xsd:attribute name="activeCol" type="xsd:unsignedInt" default="0"/> <xsd:attribute name="previousRow" type="xsd:unsignedInt" default="0"/> <xsd:attribute name="previousCol" type="xsd:unsignedInt" default="0"/> <xsd:attribute name="click" type="xsd:unsignedInt" default="0"/> <xsd:attribute ref="r:id" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_Selection"> <xsd:attribute name="pane" type="ST_Pane" use="optional" default="topLeft"/> <xsd:attribute name="activeCell" type="ST_CellRef" use="optional"/> <xsd:attribute name="activeCellId" type="xsd:unsignedInt" use="optional" default="0"/> <xsd:attribute name="sqref" type="ST_Sqref" use="optional" default="A1"/> </xsd:complexType> <xsd:simpleType name="ST_Pane"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="bottomRight"/> <xsd:enumeration value="topRight"/> <xsd:enumeration value="bottomLeft"/> <xsd:enumeration value="topLeft"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_PageBreak"> <xsd:sequence> <xsd:element name="brk" type="CT_Break" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt" use="optional" default="0"/> <xsd:attribute name="manualBreakCount" type="xsd:unsignedInt" use="optional" default="0"/> </xsd:complexType> <xsd:complexType name="CT_Break"> <xsd:attribute name="id" type="xsd:unsignedInt" use="optional" default="0"/> <xsd:attribute name="min" type="xsd:unsignedInt" use="optional" default="0"/> <xsd:attribute name="max" type="xsd:unsignedInt" use="optional" default="0"/> <xsd:attribute name="man" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="pt" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:simpleType name="ST_SheetViewType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="normal"/> <xsd:enumeration value="pageBreakPreview"/> <xsd:enumeration value="pageLayout"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_OutlinePr"> <xsd:attribute name="applyStyles" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="summaryBelow" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="summaryRight" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="showOutlineSymbols" type="xsd:boolean" use="optional" default="true"/> </xsd:complexType> <xsd:complexType name="CT_PageSetUpPr"> <xsd:attribute name="autoPageBreaks" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="fitToPage" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_DataConsolidate"> <xsd:sequence> <xsd:element name="dataRefs" type="CT_DataRefs" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="function" type="ST_DataConsolidateFunction" use="optional" default="sum"/> <xsd:attribute name="startLabels" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="leftLabels" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="topLabels" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="link" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:simpleType name="ST_DataConsolidateFunction"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="average"/> <xsd:enumeration value="count"/> <xsd:enumeration value="countNums"/> <xsd:enumeration value="max"/> <xsd:enumeration value="min"/> <xsd:enumeration value="product"/> <xsd:enumeration value="stdDev"/> <xsd:enumeration value="stdDevp"/> <xsd:enumeration value="sum"/> <xsd:enumeration value="var"/> <xsd:enumeration value="varp"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_DataRefs"> <xsd:sequence> <xsd:element name="dataRef" type="CT_DataRef" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_DataRef"> <xsd:attribute name="ref" type="ST_Ref" use="optional"/> <xsd:attribute name="name" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="sheet" type="s:ST_Xstring" use="optional"/> <xsd:attribute ref="r:id" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_MergeCells"> <xsd:sequence> <xsd:element name="mergeCell" type="CT_MergeCell" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_MergeCell"> <xsd:attribute name="ref" type="ST_Ref" use="required"/> </xsd:complexType> <xsd:complexType name="CT_SmartTags"> <xsd:sequence> <xsd:element name="cellSmartTags" type="CT_CellSmartTags" minOccurs="1" maxOccurs="unbounded" /> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_CellSmartTags"> <xsd:sequence> <xsd:element name="cellSmartTag" type="CT_CellSmartTag" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="r" type="ST_CellRef" use="required"/> </xsd:complexType> <xsd:complexType name="CT_CellSmartTag"> <xsd:sequence> <xsd:element name="cellSmartTagPr" minOccurs="0" maxOccurs="unbounded" type="CT_CellSmartTagPr"/> </xsd:sequence> <xsd:attribute name="type" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="deleted" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="xmlBased" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_CellSmartTagPr"> <xsd:attribute name="key" type="s:ST_Xstring" use="required"/> <xsd:attribute name="val" type="s:ST_Xstring" use="required"/> </xsd:complexType> <xsd:complexType name="CT_Drawing"> <xsd:attribute ref="r:id" use="required"/> </xsd:complexType> <xsd:complexType name="CT_LegacyDrawing"> <xsd:attribute ref="r:id" use="required"/> </xsd:complexType> <xsd:complexType name="CT_DrawingHF"> <xsd:attribute ref="r:id" use="required"/> <xsd:attribute name="lho" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="lhe" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="lhf" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="cho" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="che" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="chf" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="rho" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="rhe" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="rhf" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="lfo" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="lfe" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="lff" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="cfo" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="cfe" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="cff" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="rfo" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="rfe" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="rff" type="xsd:unsignedInt" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_CustomSheetViews"> <xsd:sequence> <xsd:element name="customSheetView" minOccurs="1" maxOccurs="unbounded" type="CT_CustomSheetView"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_CustomSheetView"> <xsd:sequence> <xsd:element name="pane" type="CT_Pane" minOccurs="0" maxOccurs="1"/> <xsd:element name="selection" type="CT_Selection" minOccurs="0" maxOccurs="1"/> <xsd:element name="rowBreaks" type="CT_PageBreak" minOccurs="0" maxOccurs="1"/> <xsd:element name="colBreaks" type="CT_PageBreak" minOccurs="0" maxOccurs="1"/> <xsd:element name="pageMargins" type="CT_PageMargins" minOccurs="0" maxOccurs="1"/> <xsd:element name="printOptions" type="CT_PrintOptions" minOccurs="0" maxOccurs="1"/> <xsd:element name="pageSetup" type="CT_PageSetup" minOccurs="0" maxOccurs="1"/> <xsd:element name="headerFooter" type="CT_HeaderFooter" minOccurs="0" maxOccurs="1"/> <xsd:element name="autoFilter" type="CT_AutoFilter" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" minOccurs="0" type="CT_ExtensionList"/> </xsd:sequence> <xsd:attribute name="guid" type="s:ST_Guid" use="required"/> <xsd:attribute name="scale" type="xsd:unsignedInt" default="100"/> <xsd:attribute name="colorId" type="xsd:unsignedInt" default="64"/> <xsd:attribute name="showPageBreaks" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="showFormulas" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="showGridLines" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="showRowCol" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="outlineSymbols" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="zeroValues" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="fitToPage" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="printArea" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="filter" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="showAutoFilter" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="hiddenRows" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="hiddenColumns" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="state" type="ST_SheetState" default="visible"/> <xsd:attribute name="filterUnique" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="view" type="ST_SheetViewType" default="normal"/> <xsd:attribute name="showRuler" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="topLeftCell" type="ST_CellRef" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_DataValidations"> <xsd:sequence> <xsd:element name="dataValidation" type="CT_DataValidation" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="disablePrompts" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="xWindow" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="yWindow" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="count" type="xsd:unsignedInt" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_DataValidation"> <xsd:sequence> <xsd:element name="formula1" type="ST_Formula" minOccurs="0" maxOccurs="1"/> <xsd:element name="formula2" type="ST_Formula" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="type" type="ST_DataValidationType" use="optional" default="none"/> <xsd:attribute name="errorStyle" type="ST_DataValidationErrorStyle" use="optional" default="stop"/> <xsd:attribute name="imeMode" type="ST_DataValidationImeMode" use="optional" default="noControl"/> <xsd:attribute name="operator" type="ST_DataValidationOperator" use="optional" default="between"/> <xsd:attribute name="allowBlank" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="showDropDown" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="showInputMessage" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="showErrorMessage" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="errorTitle" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="error" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="promptTitle" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="prompt" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="sqref" type="ST_Sqref" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_DataValidationType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="none"/> <xsd:enumeration value="whole"/> <xsd:enumeration value="decimal"/> <xsd:enumeration value="list"/> <xsd:enumeration value="date"/> <xsd:enumeration value="time"/> <xsd:enumeration value="textLength"/> <xsd:enumeration value="custom"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_DataValidationOperator"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="between"/> <xsd:enumeration value="notBetween"/> <xsd:enumeration value="equal"/> <xsd:enumeration value="notEqual"/> <xsd:enumeration value="lessThan"/> <xsd:enumeration value="lessThanOrEqual"/> <xsd:enumeration value="greaterThan"/> <xsd:enumeration value="greaterThanOrEqual"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_DataValidationErrorStyle"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="stop"/> <xsd:enumeration value="warning"/> <xsd:enumeration value="information"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_DataValidationImeMode"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="noControl"/> <xsd:enumeration value="off"/> <xsd:enumeration value="on"/> <xsd:enumeration value="disabled"/> <xsd:enumeration value="hiragana"/> <xsd:enumeration value="fullKatakana"/> <xsd:enumeration value="halfKatakana"/> <xsd:enumeration value="fullAlpha"/> <xsd:enumeration value="halfAlpha"/> <xsd:enumeration value="fullHangul"/> <xsd:enumeration value="halfHangul"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_CfType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="expression"/> <xsd:enumeration value="cellIs"/> <xsd:enumeration value="colorScale"/> <xsd:enumeration value="dataBar"/> <xsd:enumeration value="iconSet"/> <xsd:enumeration value="top10"/> <xsd:enumeration value="uniqueValues"/> <xsd:enumeration value="duplicateValues"/> <xsd:enumeration value="containsText"/> <xsd:enumeration value="notContainsText"/> <xsd:enumeration value="beginsWith"/> <xsd:enumeration value="endsWith"/> <xsd:enumeration value="containsBlanks"/> <xsd:enumeration value="notContainsBlanks"/> <xsd:enumeration value="containsErrors"/> <xsd:enumeration value="notContainsErrors"/> <xsd:enumeration value="timePeriod"/> <xsd:enumeration value="aboveAverage"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_TimePeriod"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="today"/> <xsd:enumeration value="yesterday"/> <xsd:enumeration value="tomorrow"/> <xsd:enumeration value="last7Days"/> <xsd:enumeration value="thisMonth"/> <xsd:enumeration value="lastMonth"/> <xsd:enumeration value="nextMonth"/> <xsd:enumeration value="thisWeek"/> <xsd:enumeration value="lastWeek"/> <xsd:enumeration value="nextWeek"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_ConditionalFormattingOperator"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="lessThan"/> <xsd:enumeration value="lessThanOrEqual"/> <xsd:enumeration value="equal"/> <xsd:enumeration value="notEqual"/> <xsd:enumeration value="greaterThanOrEqual"/> <xsd:enumeration value="greaterThan"/> <xsd:enumeration value="between"/> <xsd:enumeration value="notBetween"/> <xsd:enumeration value="containsText"/> <xsd:enumeration value="notContains"/> <xsd:enumeration value="beginsWith"/> <xsd:enumeration value="endsWith"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_CfvoType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="num"/> <xsd:enumeration value="percent"/> <xsd:enumeration value="max"/> <xsd:enumeration value="min"/> <xsd:enumeration value="formula"/> <xsd:enumeration value="percentile"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_ConditionalFormatting"> <xsd:sequence> <xsd:element name="cfRule" type="CT_CfRule" minOccurs="1" maxOccurs="unbounded"/> <xsd:element name="extLst" minOccurs="0" type="CT_ExtensionList"/> </xsd:sequence> <xsd:attribute name="pivot" type="xsd:boolean" default="false"/> <xsd:attribute name="sqref" type="ST_Sqref"/> </xsd:complexType> <xsd:complexType name="CT_CfRule"> <xsd:sequence> <xsd:element name="formula" type="ST_Formula" minOccurs="0" maxOccurs="3"/> <xsd:element name="colorScale" type="CT_ColorScale" minOccurs="0" maxOccurs="1"/> <xsd:element name="dataBar" type="CT_DataBar" minOccurs="0" maxOccurs="1"/> <xsd:element name="iconSet" type="CT_IconSet" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" minOccurs="0" type="CT_ExtensionList"/> </xsd:sequence> <xsd:attribute name="type" type="ST_CfType"/> <xsd:attribute name="dxfId" type="ST_DxfId" use="optional"/> <xsd:attribute name="priority" type="xsd:int" use="required"/> <xsd:attribute name="stopIfTrue" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="aboveAverage" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="percent" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="bottom" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="operator" type="ST_ConditionalFormattingOperator" use="optional"/> <xsd:attribute name="text" type="xsd:string" use="optional"/> <xsd:attribute name="timePeriod" type="ST_TimePeriod" use="optional"/> <xsd:attribute name="rank" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="stdDev" type="xsd:int" use="optional"/> <xsd:attribute name="equalAverage" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_Hyperlinks"> <xsd:sequence> <xsd:element name="hyperlink" type="CT_Hyperlink" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Hyperlink"> <xsd:attribute name="ref" type="ST_Ref" use="required"/> <xsd:attribute ref="r:id" use="optional"/> <xsd:attribute name="location" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="tooltip" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="display" type="s:ST_Xstring" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_CellFormula"> <xsd:simpleContent> <xsd:extension base="ST_Formula"> <xsd:attribute name="t" type="ST_CellFormulaType" use="optional" default="normal"/> <xsd:attribute name="aca" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="ref" type="ST_Ref" use="optional"/> <xsd:attribute name="dt2D" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="dtr" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="del1" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="del2" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="r1" type="ST_CellRef" use="optional"/> <xsd:attribute name="r2" type="ST_CellRef" use="optional"/> <xsd:attribute name="ca" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="si" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="bx" type="xsd:boolean" use="optional" default="false"/> </xsd:extension> </xsd:simpleContent> </xsd:complexType> <xsd:complexType name="CT_ColorScale"> <xsd:sequence> <xsd:element name="cfvo" type="CT_Cfvo" minOccurs="2" maxOccurs="unbounded"/> <xsd:element name="color" type="CT_Color" minOccurs="2" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_DataBar"> <xsd:sequence> <xsd:element name="cfvo" type="CT_Cfvo" minOccurs="2" maxOccurs="2"/> <xsd:element name="color" type="CT_Color" minOccurs="1" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="minLength" type="xsd:unsignedInt" use="optional" default="10"/> <xsd:attribute name="maxLength" type="xsd:unsignedInt" use="optional" default="90"/> <xsd:attribute name="showValue" type="xsd:boolean" use="optional" default="true"/> </xsd:complexType> <xsd:complexType name="CT_IconSet"> <xsd:sequence> <xsd:element name="cfvo" type="CT_Cfvo" minOccurs="2" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="iconSet" type="ST_IconSetType" use="optional" default="3TrafficLights1"/> <xsd:attribute name="showValue" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="percent" type="xsd:boolean" default="true"/> <xsd:attribute name="reverse" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_Cfvo"> <xsd:sequence> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="type" type="ST_CfvoType" use="required"/> <xsd:attribute name="val" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="gte" type="xsd:boolean" use="optional" default="true"/> </xsd:complexType> <xsd:complexType name="CT_PageMargins"> <xsd:attribute name="left" type="xsd:double" use="required"/> <xsd:attribute name="right" type="xsd:double" use="required"/> <xsd:attribute name="top" type="xsd:double" use="required"/> <xsd:attribute name="bottom" type="xsd:double" use="required"/> <xsd:attribute name="header" type="xsd:double" use="required"/> <xsd:attribute name="footer" type="xsd:double" use="required"/> </xsd:complexType> <xsd:complexType name="CT_PrintOptions"> <xsd:attribute name="horizontalCentered" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="verticalCentered" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="headings" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="gridLines" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="gridLinesSet" type="xsd:boolean" use="optional" default="true"/> </xsd:complexType> <xsd:complexType name="CT_PageSetup"> <xsd:attribute name="paperSize" type="xsd:unsignedInt" use="optional" default="1"/> <xsd:attribute name="paperHeight" type="s:ST_PositiveUniversalMeasure" use="optional"/> <xsd:attribute name="paperWidth" type="s:ST_PositiveUniversalMeasure" use="optional"/> <xsd:attribute name="scale" type="xsd:unsignedInt" use="optional" default="100"/> <xsd:attribute name="firstPageNumber" type="xsd:unsignedInt" use="optional" default="1"/> <xsd:attribute name="fitToWidth" type="xsd:unsignedInt" use="optional" default="1"/> <xsd:attribute name="fitToHeight" type="xsd:unsignedInt" use="optional" default="1"/> <xsd:attribute name="pageOrder" type="ST_PageOrder" use="optional" default="downThenOver"/> <xsd:attribute name="orientation" type="ST_Orientation" use="optional" default="default"/> <xsd:attribute name="usePrinterDefaults" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="blackAndWhite" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="draft" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="cellComments" type="ST_CellComments" use="optional" default="none"/> <xsd:attribute name="useFirstPageNumber" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="errors" type="ST_PrintError" use="optional" default="displayed"/> <xsd:attribute name="horizontalDpi" type="xsd:unsignedInt" use="optional" default="600"/> <xsd:attribute name="verticalDpi" type="xsd:unsignedInt" use="optional" default="600"/> <xsd:attribute name="copies" type="xsd:unsignedInt" use="optional" default="1"/> <xsd:attribute ref="r:id" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_PageOrder"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="downThenOver"/> <xsd:enumeration value="overThenDown"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_Orientation"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="default"/> <xsd:enumeration value="portrait"/> <xsd:enumeration value="landscape"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_CellComments"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="none"/> <xsd:enumeration value="asDisplayed"/> <xsd:enumeration value="atEnd"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_HeaderFooter"> <xsd:sequence> <xsd:element name="oddHeader" type="s:ST_Xstring" minOccurs="0" maxOccurs="1"/> <xsd:element name="oddFooter" type="s:ST_Xstring" minOccurs="0" maxOccurs="1"/> <xsd:element name="evenHeader" type="s:ST_Xstring" minOccurs="0" maxOccurs="1"/> <xsd:element name="evenFooter" type="s:ST_Xstring" minOccurs="0" maxOccurs="1"/> <xsd:element name="firstHeader" type="s:ST_Xstring" minOccurs="0" maxOccurs="1"/> <xsd:element name="firstFooter" type="s:ST_Xstring" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="differentOddEven" type="xsd:boolean" default="false"/> <xsd:attribute name="differentFirst" type="xsd:boolean" default="false"/> <xsd:attribute name="scaleWithDoc" type="xsd:boolean" default="true"/> <xsd:attribute name="alignWithMargins" type="xsd:boolean" default="true"/> </xsd:complexType> <xsd:simpleType name="ST_PrintError"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="displayed"/> <xsd:enumeration value="blank"/> <xsd:enumeration value="dash"/> <xsd:enumeration value="NA"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Scenarios"> <xsd:sequence> <xsd:element name="scenario" type="CT_Scenario" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="current" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="show" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="sqref" type="ST_Sqref" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_SheetProtection"> <xsd:attribute name="password" type="ST_UnsignedShortHex" use="optional"/> <xsd:attribute name="algorithmName" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="hashValue" type="xsd:base64Binary" use="optional"/> <xsd:attribute name="saltValue" type="xsd:base64Binary" use="optional"/> <xsd:attribute name="spinCount" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="sheet" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="objects" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="scenarios" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="formatCells" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="formatColumns" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="formatRows" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="insertColumns" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="insertRows" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="insertHyperlinks" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="deleteColumns" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="deleteRows" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="selectLockedCells" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="sort" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="autoFilter" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="pivotTables" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="selectUnlockedCells" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_ProtectedRanges"> <xsd:sequence> <xsd:element name="protectedRange" type="CT_ProtectedRange" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_ProtectedRange"> <xsd:sequence> <xsd:element name="securityDescriptor" type="xsd:string" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="password" type="ST_UnsignedShortHex" use="optional"/> <xsd:attribute name="sqref" type="ST_Sqref" use="required"/> <xsd:attribute name="name" type="s:ST_Xstring" use="required"/> <xsd:attribute name="securityDescriptor" type="xsd:string" use="optional"/> <xsd:attribute name="algorithmName" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="hashValue" type="xsd:base64Binary" use="optional"/> <xsd:attribute name="saltValue" type="xsd:base64Binary" use="optional"/> <xsd:attribute name="spinCount" type="xsd:unsignedInt" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_Scenario"> <xsd:sequence> <xsd:element name="inputCells" type="CT_InputCells" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="name" type="s:ST_Xstring" use="required"/> <xsd:attribute name="locked" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="hidden" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="count" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="user" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="comment" type="s:ST_Xstring" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_InputCells"> <xsd:attribute name="r" type="ST_CellRef" use="required"/> <xsd:attribute name="deleted" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="undone" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="val" type="s:ST_Xstring" use="required"/> <xsd:attribute name="numFmtId" type="ST_NumFmtId" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_CellWatches"> <xsd:sequence> <xsd:element name="cellWatch" type="CT_CellWatch" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_CellWatch"> <xsd:attribute name="r" type="ST_CellRef" use="required"/> </xsd:complexType> <xsd:complexType name="CT_Chartsheet"> <xsd:sequence> <xsd:element name="sheetPr" type="CT_ChartsheetPr" minOccurs="0" maxOccurs="1"/> <xsd:element name="sheetViews" type="CT_ChartsheetViews" minOccurs="1" maxOccurs="1"/> <xsd:element name="sheetProtection" type="CT_ChartsheetProtection" minOccurs="0" maxOccurs="1"/> <xsd:element name="customSheetViews" type="CT_CustomChartsheetViews" minOccurs="0" maxOccurs="1"/> <xsd:element name="pageMargins" minOccurs="0" type="CT_PageMargins"/> <xsd:element name="pageSetup" type="CT_CsPageSetup" minOccurs="0" maxOccurs="1"/> <xsd:element name="headerFooter" minOccurs="0" type="CT_HeaderFooter"/> <xsd:element name="drawing" type="CT_Drawing" minOccurs="1" maxOccurs="1"/> <xsd:element name="legacyDrawing" type="CT_LegacyDrawing" minOccurs="0" maxOccurs="1"/> <xsd:element name="legacyDrawingHF" type="CT_LegacyDrawing" minOccurs="0" maxOccurs="1"/> <xsd:element name="drawingHF" type="CT_DrawingHF" minOccurs="0" maxOccurs="1"/> <xsd:element name="picture" type="CT_SheetBackgroundPicture" minOccurs="0" maxOccurs="1"/> <xsd:element name="webPublishItems" type="CT_WebPublishItems" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_ChartsheetPr"> <xsd:sequence> <xsd:element name="tabColor" type="CT_Color" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="published" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="codeName" type="xsd:string" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_ChartsheetViews"> <xsd:sequence> <xsd:element name="sheetView" type="CT_ChartsheetView" minOccurs="1" maxOccurs="unbounded"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_ChartsheetView"> <xsd:sequence> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="tabSelected" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="zoomScale" type="xsd:unsignedInt" default="100" use="optional"/> <xsd:attribute name="workbookViewId" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="zoomToFit" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_ChartsheetProtection"> <xsd:attribute name="password" type="ST_UnsignedShortHex" use="optional"/> <xsd:attribute name="algorithmName" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="hashValue" type="xsd:base64Binary" use="optional"/> <xsd:attribute name="saltValue" type="xsd:base64Binary" use="optional"/> <xsd:attribute name="spinCount" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="content" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="objects" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_CsPageSetup"> <xsd:attribute name="paperSize" type="xsd:unsignedInt" use="optional" default="1"/> <xsd:attribute name="paperHeight" type="s:ST_PositiveUniversalMeasure" use="optional"/> <xsd:attribute name="paperWidth" type="s:ST_PositiveUniversalMeasure" use="optional"/> <xsd:attribute name="firstPageNumber" type="xsd:unsignedInt" use="optional" default="1"/> <xsd:attribute name="orientation" type="ST_Orientation" use="optional" default="default"/> <xsd:attribute name="usePrinterDefaults" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="blackAndWhite" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="draft" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="useFirstPageNumber" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="horizontalDpi" type="xsd:unsignedInt" use="optional" default="600"/> <xsd:attribute name="verticalDpi" type="xsd:unsignedInt" use="optional" default="600"/> <xsd:attribute name="copies" type="xsd:unsignedInt" use="optional" default="1"/> <xsd:attribute ref="r:id" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_CustomChartsheetViews"> <xsd:sequence> <xsd:element name="customSheetView" minOccurs="0" maxOccurs="unbounded" type="CT_CustomChartsheetView"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_CustomChartsheetView"> <xsd:sequence> <xsd:element name="pageMargins" type="CT_PageMargins" minOccurs="0" maxOccurs="1"/> <xsd:element name="pageSetup" type="CT_CsPageSetup" minOccurs="0" maxOccurs="1"/> <xsd:element name="headerFooter" type="CT_HeaderFooter" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="guid" type="s:ST_Guid" use="required"/> <xsd:attribute name="scale" type="xsd:unsignedInt" default="100"/> <xsd:attribute name="state" type="ST_SheetState" default="visible"/> <xsd:attribute name="zoomToFit" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_CustomProperties"> <xsd:sequence> <xsd:element name="customPr" type="CT_CustomProperty" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_CustomProperty"> <xsd:attribute name="name" type="s:ST_Xstring" use="required"/> <xsd:attribute ref="r:id" use="required"/> </xsd:complexType> <xsd:complexType name="CT_OleObjects"> <xsd:sequence> <xsd:element name="oleObject" type="CT_OleObject" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_OleObject"> <xsd:sequence> <xsd:element name="objectPr" type="CT_ObjectPr" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="progId" type="xsd:string" use="optional"/> <xsd:attribute name="dvAspect" type="ST_DvAspect" use="optional" default="DVASPECT_CONTENT"/> <xsd:attribute name="link" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="oleUpdate" type="ST_OleUpdate" use="optional"/> <xsd:attribute name="autoLoad" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="shapeId" type="xsd:unsignedInt" use="required"/> <xsd:attribute ref="r:id" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_ObjectPr"> <xsd:sequence> <xsd:element name="anchor" type="CT_ObjectAnchor" minOccurs="1" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="locked" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="defaultSize" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="print" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="disabled" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="uiObject" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="autoFill" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="autoLine" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="autoPict" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="macro" type="ST_Formula" use="optional"/> <xsd:attribute name="altText" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="dde" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute ref="r:id" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_DvAspect"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="DVASPECT_CONTENT"/> <xsd:enumeration value="DVASPECT_ICON"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_OleUpdate"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="OLEUPDATE_ALWAYS"/> <xsd:enumeration value="OLEUPDATE_ONCALL"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_WebPublishItems"> <xsd:sequence> <xsd:element name="webPublishItem" type="CT_WebPublishItem" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_WebPublishItem"> <xsd:attribute name="id" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="divId" type="s:ST_Xstring" use="required"/> <xsd:attribute name="sourceType" type="ST_WebSourceType" use="required"/> <xsd:attribute name="sourceRef" type="ST_Ref" use="optional"/> <xsd:attribute name="sourceObject" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="destinationFile" type="s:ST_Xstring" use="required"/> <xsd:attribute name="title" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="autoRepublish" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_Controls"> <xsd:sequence> <xsd:element name="control" type="CT_Control" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Control"> <xsd:sequence> <xsd:element name="controlPr" type="CT_ControlPr" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="shapeId" type="xsd:unsignedInt" use="required"/> <xsd:attribute ref="r:id" use="required"/> <xsd:attribute name="name" type="xsd:string" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_ControlPr"> <xsd:sequence> <xsd:element name="anchor" type="CT_ObjectAnchor" minOccurs="1" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="locked" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="defaultSize" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="print" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="disabled" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="recalcAlways" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="uiObject" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="autoFill" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="autoLine" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="autoPict" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="macro" type="ST_Formula" use="optional"/> <xsd:attribute name="altText" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="linkedCell" type="ST_Formula" use="optional"/> <xsd:attribute name="listFillRange" type="ST_Formula" use="optional"/> <xsd:attribute name="cf" type="s:ST_Xstring" use="optional" default="pict"/> <xsd:attribute ref="r:id" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_WebSourceType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="sheet"/> <xsd:enumeration value="printArea"/> <xsd:enumeration value="autoFilter"/> <xsd:enumeration value="range"/> <xsd:enumeration value="chart"/> <xsd:enumeration value="pivotTable"/> <xsd:enumeration value="query"/> <xsd:enumeration value="label"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_IgnoredErrors"> <xsd:sequence> <xsd:element name="ignoredError" type="CT_IgnoredError" minOccurs="1" maxOccurs="unbounded"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_IgnoredError"> <xsd:attribute name="sqref" type="ST_Sqref" use="required"/> <xsd:attribute name="evalError" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="twoDigitTextYear" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="numberStoredAsText" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="formula" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="formulaRange" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="unlockedFormula" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="emptyCellReference" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="listDataValidation" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="calculatedColumn" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:simpleType name="ST_PaneState"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="split"/> <xsd:enumeration value="frozen"/> <xsd:enumeration value="frozenSplit"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_TableParts"> <xsd:sequence> <xsd:element name="tablePart" type="CT_TablePart" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_TablePart"> <xsd:attribute ref="r:id" use="required"/> </xsd:complexType> <xsd:element name="metadata" type="CT_Metadata"/> <xsd:complexType name="CT_Metadata"> <xsd:sequence> <xsd:element name="metadataTypes" type="CT_MetadataTypes" minOccurs="0" maxOccurs="1"/> <xsd:element name="metadataStrings" type="CT_MetadataStrings" minOccurs="0" maxOccurs="1"/> <xsd:element name="mdxMetadata" type="CT_MdxMetadata" minOccurs="0" maxOccurs="1"/> <xsd:element name="futureMetadata" type="CT_FutureMetadata" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="cellMetadata" type="CT_MetadataBlocks" minOccurs="0" maxOccurs="1"/> <xsd:element name="valueMetadata" type="CT_MetadataBlocks" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" minOccurs="0" maxOccurs="1" type="CT_ExtensionList"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_MetadataTypes"> <xsd:sequence> <xsd:element name="metadataType" type="CT_MetadataType" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt" use="optional" default="0"/> </xsd:complexType> <xsd:complexType name="CT_MetadataType"> <xsd:attribute name="name" type="s:ST_Xstring" use="required"/> <xsd:attribute name="minSupportedVersion" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="ghostRow" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="ghostCol" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="edit" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="delete" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="copy" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="pasteAll" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="pasteFormulas" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="pasteValues" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="pasteFormats" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="pasteComments" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="pasteDataValidation" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="pasteBorders" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="pasteColWidths" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="pasteNumberFormats" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="merge" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="splitFirst" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="splitAll" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="rowColShift" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="clearAll" type="xsd:boolean" default="false"/> <xsd:attribute name="clearFormats" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="clearContents" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="clearComments" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="assign" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="coerce" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="adjust" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="cellMeta" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_MetadataBlocks"> <xsd:sequence> <xsd:element name="bk" type="CT_MetadataBlock" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt" use="optional" default="0"/> </xsd:complexType> <xsd:complexType name="CT_MetadataBlock"> <xsd:sequence> <xsd:element name="rc" type="CT_MetadataRecord" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_MetadataRecord"> <xsd:attribute name="t" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="v" type="xsd:unsignedInt" use="required"/> </xsd:complexType> <xsd:complexType name="CT_FutureMetadata"> <xsd:sequence> <xsd:element name="bk" type="CT_FutureMetadataBlock" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="extLst" minOccurs="0" maxOccurs="1" type="CT_ExtensionList"/> </xsd:sequence> <xsd:attribute name="name" type="s:ST_Xstring" use="required"/> <xsd:attribute name="count" type="xsd:unsignedInt" use="optional" default="0"/> </xsd:complexType> <xsd:complexType name="CT_FutureMetadataBlock"> <xsd:sequence> <xsd:element name="extLst" minOccurs="0" maxOccurs="1" type="CT_ExtensionList"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_MdxMetadata"> <xsd:sequence> <xsd:element name="mdx" type="CT_Mdx" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt" use="optional" default="0"/> </xsd:complexType> <xsd:complexType name="CT_Mdx"> <xsd:choice minOccurs="1" maxOccurs="1"> <xsd:element name="t" type="CT_MdxTuple"/> <xsd:element name="ms" type="CT_MdxSet"/> <xsd:element name="p" type="CT_MdxMemeberProp"/> <xsd:element name="k" type="CT_MdxKPI"/> </xsd:choice> <xsd:attribute name="n" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="f" type="ST_MdxFunctionType" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_MdxFunctionType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="m"/> <xsd:enumeration value="v"/> <xsd:enumeration value="s"/> <xsd:enumeration value="c"/> <xsd:enumeration value="r"/> <xsd:enumeration value="p"/> <xsd:enumeration value="k"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_MdxTuple"> <xsd:sequence> <xsd:element name="n" type="CT_MetadataStringIndex" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="c" type="xsd:unsignedInt" use="optional" default="0"/> <xsd:attribute name="ct" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="si" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="fi" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="bc" type="ST_UnsignedIntHex" use="optional"/> <xsd:attribute name="fc" type="ST_UnsignedIntHex" use="optional"/> <xsd:attribute name="i" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="u" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="st" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="b" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_MdxSet"> <xsd:sequence> <xsd:element name="n" type="CT_MetadataStringIndex" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="ns" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="c" type="xsd:unsignedInt" use="optional" default="0"/> <xsd:attribute name="o" type="ST_MdxSetOrder" use="optional" default="u"/> </xsd:complexType> <xsd:simpleType name="ST_MdxSetOrder"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="u"/> <xsd:enumeration value="a"/> <xsd:enumeration value="d"/> <xsd:enumeration value="aa"/> <xsd:enumeration value="ad"/> <xsd:enumeration value="na"/> <xsd:enumeration value="nd"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_MdxMemeberProp"> <xsd:attribute name="n" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="np" type="xsd:unsignedInt" use="required"/> </xsd:complexType> <xsd:complexType name="CT_MdxKPI"> <xsd:attribute name="n" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="np" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="p" type="ST_MdxKPIProperty" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_MdxKPIProperty"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="v"/> <xsd:enumeration value="g"/> <xsd:enumeration value="s"/> <xsd:enumeration value="t"/> <xsd:enumeration value="w"/> <xsd:enumeration value="m"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_MetadataStringIndex"> <xsd:attribute name="x" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="s" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_MetadataStrings"> <xsd:sequence> <xsd:element name="s" type="CT_XStringElement" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt" use="optional" default="0"/> </xsd:complexType> <xsd:element name="singleXmlCells" type="CT_SingleXmlCells"/> <xsd:complexType name="CT_SingleXmlCells"> <xsd:sequence> <xsd:element name="singleXmlCell" type="CT_SingleXmlCell" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_SingleXmlCell"> <xsd:sequence> <xsd:element name="xmlCellPr" type="CT_XmlCellPr" minOccurs="1" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="id" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="r" type="ST_CellRef" use="required"/> <xsd:attribute name="connectionId" type="xsd:unsignedInt" use="required"/> </xsd:complexType> <xsd:complexType name="CT_XmlCellPr"> <xsd:sequence> <xsd:element name="xmlPr" type="CT_XmlPr" minOccurs="1" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="id" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="uniqueName" type="s:ST_Xstring" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_XmlPr"> <xsd:sequence> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="mapId" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="xpath" type="s:ST_Xstring" use="required"/> <xsd:attribute name="xmlDataType" type="ST_XmlDataType" use="required"/> </xsd:complexType> <xsd:element name="styleSheet" type="CT_Stylesheet"/> <xsd:complexType name="CT_Stylesheet"> <xsd:sequence> <xsd:element name="numFmts" type="CT_NumFmts" minOccurs="0" maxOccurs="1"/> <xsd:element name="fonts" type="CT_Fonts" minOccurs="0" maxOccurs="1"/> <xsd:element name="fills" type="CT_Fills" minOccurs="0" maxOccurs="1"/> <xsd:element name="borders" type="CT_Borders" minOccurs="0" maxOccurs="1"/> <xsd:element name="cellStyleXfs" type="CT_CellStyleXfs" minOccurs="0" maxOccurs="1"/> <xsd:element name="cellXfs" type="CT_CellXfs" minOccurs="0" maxOccurs="1"/> <xsd:element name="cellStyles" type="CT_CellStyles" minOccurs="0" maxOccurs="1"/> <xsd:element name="dxfs" type="CT_Dxfs" minOccurs="0" maxOccurs="1"/> <xsd:element name="tableStyles" type="CT_TableStyles" minOccurs="0" maxOccurs="1"/> <xsd:element name="colors" type="CT_Colors" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_CellAlignment"> <xsd:attribute name="horizontal" type="ST_HorizontalAlignment" use="optional"/> <xsd:attribute name="vertical" type="ST_VerticalAlignment" default="bottom" use="optional"/> <xsd:attribute name="textRotation" type="ST_TextRotation" use="optional"/> <xsd:attribute name="wrapText" type="xsd:boolean" use="optional"/> <xsd:attribute name="indent" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="relativeIndent" type="xsd:int" use="optional"/> <xsd:attribute name="justifyLastLine" type="xsd:boolean" use="optional"/> <xsd:attribute name="shrinkToFit" type="xsd:boolean" use="optional"/> <xsd:attribute name="readingOrder" type="xsd:unsignedInt" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_TextRotation"> <xsd:union> <xsd:simpleType> <xsd:restriction base="xsd:nonNegativeInteger"> <xsd:maxInclusive value="180"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType> <xsd:restriction base="xsd:nonNegativeInteger"> <xsd:enumeration value="255"/> </xsd:restriction> </xsd:simpleType> </xsd:union> </xsd:simpleType> <xsd:simpleType name="ST_BorderStyle"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="none"/> <xsd:enumeration value="thin"/> <xsd:enumeration value="medium"/> <xsd:enumeration value="dashed"/> <xsd:enumeration value="dotted"/> <xsd:enumeration value="thick"/> <xsd:enumeration value="double"/> <xsd:enumeration value="hair"/> <xsd:enumeration value="mediumDashed"/> <xsd:enumeration value="dashDot"/> <xsd:enumeration value="mediumDashDot"/> <xsd:enumeration value="dashDotDot"/> <xsd:enumeration value="mediumDashDotDot"/> <xsd:enumeration value="slantDashDot"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Borders"> <xsd:sequence> <xsd:element name="border" type="CT_Border" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_Border"> <xsd:sequence> <xsd:element name="start" type="CT_BorderPr" minOccurs="0" maxOccurs="1"/> <xsd:element name="end" type="CT_BorderPr" minOccurs="0" maxOccurs="1"/> <xsd:element name="left" type="CT_BorderPr" minOccurs="0"/> <xsd:element name="right" type="CT_BorderPr" minOccurs="0"/> <xsd:element name="top" type="CT_BorderPr" minOccurs="0" maxOccurs="1"/> <xsd:element name="bottom" type="CT_BorderPr" minOccurs="0" maxOccurs="1"/> <xsd:element name="diagonal" type="CT_BorderPr" minOccurs="0" maxOccurs="1"/> <xsd:element name="vertical" type="CT_BorderPr" minOccurs="0" maxOccurs="1"/> <xsd:element name="horizontal" type="CT_BorderPr" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="diagonalUp" type="xsd:boolean" use="optional"/> <xsd:attribute name="diagonalDown" type="xsd:boolean" use="optional"/> <xsd:attribute name="outline" type="xsd:boolean" use="optional" default="true"/> </xsd:complexType> <xsd:complexType name="CT_BorderPr"> <xsd:sequence> <xsd:element name="color" type="CT_Color" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="style" type="ST_BorderStyle" use="optional" default="none"/> </xsd:complexType> <xsd:complexType name="CT_CellProtection"> <xsd:attribute name="locked" type="xsd:boolean" use="optional"/> <xsd:attribute name="hidden" type="xsd:boolean" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_Fonts"> <xsd:sequence> <xsd:element name="font" type="CT_Font" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_Fills"> <xsd:sequence> <xsd:element name="fill" type="CT_Fill" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_Fill"> <xsd:choice minOccurs="1" maxOccurs="1"> <xsd:element name="patternFill" type="CT_PatternFill" minOccurs="0" maxOccurs="1"/> <xsd:element name="gradientFill" type="CT_GradientFill" minOccurs="0" maxOccurs="1"/> </xsd:choice> </xsd:complexType> <xsd:complexType name="CT_PatternFill"> <xsd:sequence> <xsd:element name="fgColor" type="CT_Color" minOccurs="0" maxOccurs="1"/> <xsd:element name="bgColor" type="CT_Color" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="patternType" type="ST_PatternType" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_Color"> <xsd:attribute name="auto" type="xsd:boolean" use="optional"/> <xsd:attribute name="indexed" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="rgb" type="ST_UnsignedIntHex" use="optional"/> <xsd:attribute name="theme" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="tint" type="xsd:double" use="optional" default="0.0"/> </xsd:complexType> <xsd:simpleType name="ST_PatternType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="none"/> <xsd:enumeration value="solid"/> <xsd:enumeration value="mediumGray"/> <xsd:enumeration value="darkGray"/> <xsd:enumeration value="lightGray"/> <xsd:enumeration value="darkHorizontal"/> <xsd:enumeration value="darkVertical"/> <xsd:enumeration value="darkDown"/> <xsd:enumeration value="darkUp"/> <xsd:enumeration value="darkGrid"/> <xsd:enumeration value="darkTrellis"/> <xsd:enumeration value="lightHorizontal"/> <xsd:enumeration value="lightVertical"/> <xsd:enumeration value="lightDown"/> <xsd:enumeration value="lightUp"/> <xsd:enumeration value="lightGrid"/> <xsd:enumeration value="lightTrellis"/> <xsd:enumeration value="gray125"/> <xsd:enumeration value="gray0625"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_GradientFill"> <xsd:sequence> <xsd:element name="stop" type="CT_GradientStop" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="type" type="ST_GradientType" use="optional" default="linear"/> <xsd:attribute name="degree" type="xsd:double" use="optional" default="0"/> <xsd:attribute name="left" type="xsd:double" use="optional" default="0"/> <xsd:attribute name="right" type="xsd:double" use="optional" default="0"/> <xsd:attribute name="top" type="xsd:double" use="optional" default="0"/> <xsd:attribute name="bottom" type="xsd:double" use="optional" default="0"/> </xsd:complexType> <xsd:complexType name="CT_GradientStop"> <xsd:sequence> <xsd:element name="color" type="CT_Color" minOccurs="1" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="position" type="xsd:double" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_GradientType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="linear"/> <xsd:enumeration value="path"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_HorizontalAlignment"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="general"/> <xsd:enumeration value="left"/> <xsd:enumeration value="center"/> <xsd:enumeration value="right"/> <xsd:enumeration value="fill"/> <xsd:enumeration value="justify"/> <xsd:enumeration value="centerContinuous"/> <xsd:enumeration value="distributed"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_VerticalAlignment"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="top"/> <xsd:enumeration value="center"/> <xsd:enumeration value="bottom"/> <xsd:enumeration value="justify"/> <xsd:enumeration value="distributed"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_NumFmts"> <xsd:sequence> <xsd:element name="numFmt" type="CT_NumFmt" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_NumFmt"> <xsd:attribute name="numFmtId" type="ST_NumFmtId" use="required"/> <xsd:attribute name="formatCode" type="s:ST_Xstring" use="required"/> </xsd:complexType> <xsd:complexType name="CT_CellStyleXfs"> <xsd:sequence> <xsd:element name="xf" type="CT_Xf" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_CellXfs"> <xsd:sequence> <xsd:element name="xf" type="CT_Xf" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_Xf"> <xsd:sequence> <xsd:element name="alignment" type="CT_CellAlignment" minOccurs="0" maxOccurs="1"/> <xsd:element name="protection" type="CT_CellProtection" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="numFmtId" type="ST_NumFmtId" use="optional"/> <xsd:attribute name="fontId" type="ST_FontId" use="optional"/> <xsd:attribute name="fillId" type="ST_FillId" use="optional"/> <xsd:attribute name="borderId" type="ST_BorderId" use="optional"/> <xsd:attribute name="xfId" type="ST_CellStyleXfId" use="optional"/> <xsd:attribute name="quotePrefix" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="pivotButton" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="applyNumberFormat" type="xsd:boolean" use="optional"/> <xsd:attribute name="applyFont" type="xsd:boolean" use="optional"/> <xsd:attribute name="applyFill" type="xsd:boolean" use="optional"/> <xsd:attribute name="applyBorder" type="xsd:boolean" use="optional"/> <xsd:attribute name="applyAlignment" type="xsd:boolean" use="optional"/> <xsd:attribute name="applyProtection" type="xsd:boolean" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_CellStyles"> <xsd:sequence> <xsd:element name="cellStyle" type="CT_CellStyle" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_CellStyle"> <xsd:sequence> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="name" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="xfId" type="ST_CellStyleXfId" use="required"/> <xsd:attribute name="builtinId" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="iLevel" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="hidden" type="xsd:boolean" use="optional"/> <xsd:attribute name="customBuiltin" type="xsd:boolean" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_Dxfs"> <xsd:sequence> <xsd:element name="dxf" type="CT_Dxf" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_Dxf"> <xsd:sequence> <xsd:element name="font" type="CT_Font" minOccurs="0" maxOccurs="1"/> <xsd:element name="numFmt" type="CT_NumFmt" minOccurs="0" maxOccurs="1"/> <xsd:element name="fill" type="CT_Fill" minOccurs="0" maxOccurs="1"/> <xsd:element name="alignment" type="CT_CellAlignment" minOccurs="0" maxOccurs="1"/> <xsd:element name="border" type="CT_Border" minOccurs="0" maxOccurs="1"/> <xsd:element name="protection" type="CT_CellProtection" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_NumFmtId"> <xsd:restriction base="xsd:unsignedInt"/> </xsd:simpleType> <xsd:simpleType name="ST_FontId"> <xsd:restriction base="xsd:unsignedInt"/> </xsd:simpleType> <xsd:simpleType name="ST_FillId"> <xsd:restriction base="xsd:unsignedInt"/> </xsd:simpleType> <xsd:simpleType name="ST_BorderId"> <xsd:restriction base="xsd:unsignedInt"/> </xsd:simpleType> <xsd:simpleType name="ST_CellStyleXfId"> <xsd:restriction base="xsd:unsignedInt"/> </xsd:simpleType> <xsd:simpleType name="ST_DxfId"> <xsd:restriction base="xsd:unsignedInt"/> </xsd:simpleType> <xsd:complexType name="CT_Colors"> <xsd:sequence> <xsd:element name="indexedColors" type="CT_IndexedColors" minOccurs="0" maxOccurs="1"/> <xsd:element name="mruColors" type="CT_MRUColors" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_IndexedColors"> <xsd:sequence> <xsd:element name="rgbColor" type="CT_RgbColor" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_MRUColors"> <xsd:sequence> <xsd:element name="color" type="CT_Color" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_RgbColor"> <xsd:attribute name="rgb" type="ST_UnsignedIntHex" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_TableStyles"> <xsd:sequence> <xsd:element name="tableStyle" type="CT_TableStyle" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="defaultTableStyle" type="xsd:string" use="optional"/> <xsd:attribute name="defaultPivotStyle" type="xsd:string" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_TableStyle"> <xsd:sequence> <xsd:element name="tableStyleElement" type="CT_TableStyleElement" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required"/> <xsd:attribute name="pivot" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="table" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="count" type="xsd:unsignedInt" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_TableStyleElement"> <xsd:attribute name="type" type="ST_TableStyleType" use="required"/> <xsd:attribute name="size" type="xsd:unsignedInt" use="optional" default="1"/> <xsd:attribute name="dxfId" type="ST_DxfId" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_TableStyleType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="wholeTable"/> <xsd:enumeration value="headerRow"/> <xsd:enumeration value="totalRow"/> <xsd:enumeration value="firstColumn"/> <xsd:enumeration value="lastColumn"/> <xsd:enumeration value="firstRowStripe"/> <xsd:enumeration value="secondRowStripe"/> <xsd:enumeration value="firstColumnStripe"/> <xsd:enumeration value="secondColumnStripe"/> <xsd:enumeration value="firstHeaderCell"/> <xsd:enumeration value="lastHeaderCell"/> <xsd:enumeration value="firstTotalCell"/> <xsd:enumeration value="lastTotalCell"/> <xsd:enumeration value="firstSubtotalColumn"/> <xsd:enumeration value="secondSubtotalColumn"/> <xsd:enumeration value="thirdSubtotalColumn"/> <xsd:enumeration value="firstSubtotalRow"/> <xsd:enumeration value="secondSubtotalRow"/> <xsd:enumeration value="thirdSubtotalRow"/> <xsd:enumeration value="blankRow"/> <xsd:enumeration value="firstColumnSubheading"/> <xsd:enumeration value="secondColumnSubheading"/> <xsd:enumeration value="thirdColumnSubheading"/> <xsd:enumeration value="firstRowSubheading"/> <xsd:enumeration value="secondRowSubheading"/> <xsd:enumeration value="thirdRowSubheading"/> <xsd:enumeration value="pageFieldLabels"/> <xsd:enumeration value="pageFieldValues"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_BooleanProperty"> <xsd:attribute name="val" type="xsd:boolean" use="optional" default="true"/> </xsd:complexType> <xsd:complexType name="CT_FontSize"> <xsd:attribute name="val" type="xsd:double" use="required"/> </xsd:complexType> <xsd:complexType name="CT_IntProperty"> <xsd:attribute name="val" type="xsd:int" use="required"/> </xsd:complexType> <xsd:complexType name="CT_FontName"> <xsd:attribute name="val" type="s:ST_Xstring" use="required"/> </xsd:complexType> <xsd:complexType name="CT_VerticalAlignFontProperty"> <xsd:attribute name="val" type="s:ST_VerticalAlignRun" use="required"/> </xsd:complexType> <xsd:complexType name="CT_FontScheme"> <xsd:attribute name="val" type="ST_FontScheme" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_FontScheme"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="none"/> <xsd:enumeration value="major"/> <xsd:enumeration value="minor"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_UnderlineProperty"> <xsd:attribute name="val" type="ST_UnderlineValues" use="optional" default="single"/> </xsd:complexType> <xsd:simpleType name="ST_UnderlineValues"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="single"/> <xsd:enumeration value="double"/> <xsd:enumeration value="singleAccounting"/> <xsd:enumeration value="doubleAccounting"/> <xsd:enumeration value="none"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Font"> <xsd:choice maxOccurs="unbounded"> <xsd:element name="name" type="CT_FontName" minOccurs="0" maxOccurs="1"/> <xsd:element name="charset" type="CT_IntProperty" minOccurs="0" maxOccurs="1"/> <xsd:element name="family" type="CT_FontFamily" minOccurs="0" maxOccurs="1"/> <xsd:element name="b" type="CT_BooleanProperty" minOccurs="0" maxOccurs="1"/> <xsd:element name="i" type="CT_BooleanProperty" minOccurs="0" maxOccurs="1"/> <xsd:element name="strike" type="CT_BooleanProperty" minOccurs="0" maxOccurs="1"/> <xsd:element name="outline" type="CT_BooleanProperty" minOccurs="0" maxOccurs="1"/> <xsd:element name="shadow" type="CT_BooleanProperty" minOccurs="0" maxOccurs="1"/> <xsd:element name="condense" type="CT_BooleanProperty" minOccurs="0" maxOccurs="1"/> <xsd:element name="extend" type="CT_BooleanProperty" minOccurs="0" maxOccurs="1"/> <xsd:element name="color" type="CT_Color" minOccurs="0" maxOccurs="1"/> <xsd:element name="sz" type="CT_FontSize" minOccurs="0" maxOccurs="1"/> <xsd:element name="u" type="CT_UnderlineProperty" minOccurs="0" maxOccurs="1"/> <xsd:element name="vertAlign" type="CT_VerticalAlignFontProperty" minOccurs="0" maxOccurs="1"/> <xsd:element name="scheme" type="CT_FontScheme" minOccurs="0" maxOccurs="1"/> </xsd:choice> </xsd:complexType> <xsd:complexType name="CT_FontFamily"> <xsd:attribute name="val" type="ST_FontFamily" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_FontFamily"> <xsd:restriction base="xsd:integer"> <xsd:minInclusive value="0"/> <xsd:maxInclusive value="14"/> </xsd:restriction> </xsd:simpleType> <xsd:attributeGroup name="AG_AutoFormat"> <xsd:attribute name="autoFormatId" type="xsd:unsignedInt"/> <xsd:attribute name="applyNumberFormats" type="xsd:boolean"/> <xsd:attribute name="applyBorderFormats" type="xsd:boolean"/> <xsd:attribute name="applyFontFormats" type="xsd:boolean"/> <xsd:attribute name="applyPatternFormats" type="xsd:boolean"/> <xsd:attribute name="applyAlignmentFormats" type="xsd:boolean"/> <xsd:attribute name="applyWidthHeightFormats" type="xsd:boolean"/> </xsd:attributeGroup> <xsd:element name="externalLink" type="CT_ExternalLink"/> <xsd:complexType name="CT_ExternalLink"> <xsd:sequence> <xsd:choice> <xsd:element name="externalBook" type="CT_ExternalBook" minOccurs="0" maxOccurs="1"/> <xsd:element name="ddeLink" type="CT_DdeLink" minOccurs="0" maxOccurs="1"/> <xsd:element name="oleLink" type="CT_OleLink" minOccurs="0" maxOccurs="1"/> </xsd:choice> <xsd:element name="extLst" minOccurs="0" type="CT_ExtensionList"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_ExternalBook"> <xsd:sequence> <xsd:element name="sheetNames" type="CT_ExternalSheetNames" minOccurs="0" maxOccurs="1"/> <xsd:element name="definedNames" type="CT_ExternalDefinedNames" minOccurs="0" maxOccurs="1"/> <xsd:element name="sheetDataSet" type="CT_ExternalSheetDataSet" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute ref="r:id" use="required"/> </xsd:complexType> <xsd:complexType name="CT_ExternalSheetNames"> <xsd:sequence> <xsd:element name="sheetName" minOccurs="1" maxOccurs="unbounded" type="CT_ExternalSheetName" /> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_ExternalSheetName"> <xsd:attribute name="val" type="s:ST_Xstring"/> </xsd:complexType> <xsd:complexType name="CT_ExternalDefinedNames"> <xsd:sequence> <xsd:element name="definedName" type="CT_ExternalDefinedName" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_ExternalDefinedName"> <xsd:attribute name="name" type="s:ST_Xstring" use="required"/> <xsd:attribute name="refersTo" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="sheetId" type="xsd:unsignedInt" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_ExternalSheetDataSet"> <xsd:sequence> <xsd:element name="sheetData" type="CT_ExternalSheetData" minOccurs="1" maxOccurs="unbounded" /> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_ExternalSheetData"> <xsd:sequence> <xsd:element name="row" type="CT_ExternalRow" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="sheetId" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="refreshError" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_ExternalRow"> <xsd:sequence> <xsd:element name="cell" type="CT_ExternalCell" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="r" type="xsd:unsignedInt" use="required"/> </xsd:complexType> <xsd:complexType name="CT_ExternalCell"> <xsd:sequence> <xsd:element name="v" type="s:ST_Xstring" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="r" type="ST_CellRef" use="optional"/> <xsd:attribute name="t" type="ST_CellType" use="optional" default="n"/> <xsd:attribute name="vm" type="xsd:unsignedInt" use="optional" default="0"/> </xsd:complexType> <xsd:complexType name="CT_DdeLink"> <xsd:sequence> <xsd:element name="ddeItems" type="CT_DdeItems" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="ddeService" type="s:ST_Xstring" use="required"/> <xsd:attribute name="ddeTopic" type="s:ST_Xstring" use="required"/> </xsd:complexType> <xsd:complexType name="CT_DdeItems"> <xsd:sequence> <xsd:element name="ddeItem" type="CT_DdeItem" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_DdeItem"> <xsd:sequence> <xsd:element name="values" type="CT_DdeValues" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="name" type="s:ST_Xstring" default="0"/> <xsd:attribute name="ole" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="advise" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="preferPic" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_DdeValues"> <xsd:sequence> <xsd:element name="value" minOccurs="1" maxOccurs="unbounded" type="CT_DdeValue"/> </xsd:sequence> <xsd:attribute name="rows" type="xsd:unsignedInt" use="optional" default="1"/> <xsd:attribute name="cols" type="xsd:unsignedInt" use="optional" default="1"/> </xsd:complexType> <xsd:complexType name="CT_DdeValue"> <xsd:sequence> <xsd:element name="val" type="s:ST_Xstring" minOccurs="1" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="t" type="ST_DdeValueType" use="optional" default="n"/> </xsd:complexType> <xsd:simpleType name="ST_DdeValueType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="nil"/> <xsd:enumeration value="b"/> <xsd:enumeration value="n"/> <xsd:enumeration value="e"/> <xsd:enumeration value="str"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_OleLink"> <xsd:sequence> <xsd:element name="oleItems" type="CT_OleItems" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute ref="r:id" use="required"/> <xsd:attribute name="progId" type="s:ST_Xstring" use="required"/> </xsd:complexType> <xsd:complexType name="CT_OleItems"> <xsd:sequence> <xsd:element name="oleItem" type="CT_OleItem" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_OleItem"> <xsd:attribute name="name" type="s:ST_Xstring" use="required"/> <xsd:attribute name="icon" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="advise" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="preferPic" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:element name="table" type="CT_Table"/> <xsd:complexType name="CT_Table"> <xsd:sequence> <xsd:element name="autoFilter" type="CT_AutoFilter" minOccurs="0" maxOccurs="1"/> <xsd:element name="sortState" type="CT_SortState" minOccurs="0" maxOccurs="1"/> <xsd:element name="tableColumns" type="CT_TableColumns" minOccurs="1" maxOccurs="1"/> <xsd:element name="tableStyleInfo" type="CT_TableStyleInfo" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="id" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="name" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="displayName" type="s:ST_Xstring" use="required"/> <xsd:attribute name="comment" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="ref" type="ST_Ref" use="required"/> <xsd:attribute name="tableType" type="ST_TableType" use="optional" default="worksheet"/> <xsd:attribute name="headerRowCount" type="xsd:unsignedInt" use="optional" default="1"/> <xsd:attribute name="insertRow" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="insertRowShift" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="totalsRowCount" type="xsd:unsignedInt" use="optional" default="0"/> <xsd:attribute name="totalsRowShown" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="published" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="headerRowDxfId" type="ST_DxfId" use="optional"/> <xsd:attribute name="dataDxfId" type="ST_DxfId" use="optional"/> <xsd:attribute name="totalsRowDxfId" type="ST_DxfId" use="optional"/> <xsd:attribute name="headerRowBorderDxfId" type="ST_DxfId" use="optional"/> <xsd:attribute name="tableBorderDxfId" type="ST_DxfId" use="optional"/> <xsd:attribute name="totalsRowBorderDxfId" type="ST_DxfId" use="optional"/> <xsd:attribute name="headerRowCellStyle" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="dataCellStyle" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="totalsRowCellStyle" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="connectionId" type="xsd:unsignedInt" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_TableType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="worksheet"/> <xsd:enumeration value="xml"/> <xsd:enumeration value="queryTable"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_TableStyleInfo"> <xsd:attribute name="name" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="showFirstColumn" type="xsd:boolean" use="optional"/> <xsd:attribute name="showLastColumn" type="xsd:boolean" use="optional"/> <xsd:attribute name="showRowStripes" type="xsd:boolean" use="optional"/> <xsd:attribute name="showColumnStripes" type="xsd:boolean" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_TableColumns"> <xsd:sequence> <xsd:element name="tableColumn" type="CT_TableColumn" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_TableColumn"> <xsd:sequence> <xsd:element name="calculatedColumnFormula" type="CT_TableFormula" minOccurs="0" maxOccurs="1"/> <xsd:element name="totalsRowFormula" type="CT_TableFormula" minOccurs="0" maxOccurs="1"/> <xsd:element name="xmlColumnPr" type="CT_XmlColumnPr" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="id" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="uniqueName" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="name" type="s:ST_Xstring" use="required"/> <xsd:attribute name="totalsRowFunction" type="ST_TotalsRowFunction" use="optional" default="none"/> <xsd:attribute name="totalsRowLabel" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="queryTableFieldId" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="headerRowDxfId" type="ST_DxfId" use="optional"/> <xsd:attribute name="dataDxfId" type="ST_DxfId" use="optional"/> <xsd:attribute name="totalsRowDxfId" type="ST_DxfId" use="optional"/> <xsd:attribute name="headerRowCellStyle" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="dataCellStyle" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="totalsRowCellStyle" type="s:ST_Xstring" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_TableFormula"> <xsd:simpleContent> <xsd:extension base="ST_Formula"> <xsd:attribute name="array" type="xsd:boolean" default="false"/> </xsd:extension> </xsd:simpleContent> </xsd:complexType> <xsd:simpleType name="ST_TotalsRowFunction"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="none"/> <xsd:enumeration value="sum"/> <xsd:enumeration value="min"/> <xsd:enumeration value="max"/> <xsd:enumeration value="average"/> <xsd:enumeration value="count"/> <xsd:enumeration value="countNums"/> <xsd:enumeration value="stdDev"/> <xsd:enumeration value="var"/> <xsd:enumeration value="custom"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_XmlColumnPr"> <xsd:sequence> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="mapId" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="xpath" type="s:ST_Xstring" use="required"/> <xsd:attribute name="denormalized" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="xmlDataType" type="ST_XmlDataType" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_XmlDataType"> <xsd:restriction base="xsd:string"/> </xsd:simpleType> <xsd:element name="volTypes" type="CT_VolTypes"/> <xsd:complexType name="CT_VolTypes"> <xsd:sequence> <xsd:element name="volType" type="CT_VolType" minOccurs="1" maxOccurs="unbounded"/> <xsd:element name="extLst" minOccurs="0" type="CT_ExtensionList"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_VolType"> <xsd:sequence> <xsd:element name="main" type="CT_VolMain" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="type" type="ST_VolDepType" use="required"/> </xsd:complexType> <xsd:complexType name="CT_VolMain"> <xsd:sequence> <xsd:element name="tp" type="CT_VolTopic" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="first" type="s:ST_Xstring" use="required"/> </xsd:complexType> <xsd:complexType name="CT_VolTopic"> <xsd:sequence> <xsd:element name="v" type="s:ST_Xstring" minOccurs="1" maxOccurs="1"/> <xsd:element name="stp" type="s:ST_Xstring" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="tr" type="CT_VolTopicRef" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="t" type="ST_VolValueType" use="optional" default="n"/> </xsd:complexType> <xsd:complexType name="CT_VolTopicRef"> <xsd:attribute name="r" type="ST_CellRef" use="required"/> <xsd:attribute name="s" type="xsd:unsignedInt" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_VolDepType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="realTimeData"/> <xsd:enumeration value="olapFunctions"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_VolValueType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="b"/> <xsd:enumeration value="n"/> <xsd:enumeration value="e"/> <xsd:enumeration value="s"/> </xsd:restriction> </xsd:simpleType> <xsd:element name="workbook" type="CT_Workbook"/> <xsd:complexType name="CT_Workbook"> <xsd:sequence> <xsd:element name="fileVersion" type="CT_FileVersion" minOccurs="0" maxOccurs="1"/> <xsd:element name="fileSharing" type="CT_FileSharing" minOccurs="0" maxOccurs="1"/> <xsd:element name="workbookPr" type="CT_WorkbookPr" minOccurs="0" maxOccurs="1"/> <xsd:element name="workbookProtection" type="CT_WorkbookProtection" minOccurs="0" maxOccurs="1"/> <xsd:element name="bookViews" type="CT_BookViews" minOccurs="0" maxOccurs="1"/> <xsd:element name="sheets" type="CT_Sheets" minOccurs="1" maxOccurs="1"/> <xsd:element name="functionGroups" type="CT_FunctionGroups" minOccurs="0" maxOccurs="1"/> <xsd:element name="externalReferences" type="CT_ExternalReferences" minOccurs="0" maxOccurs="1"/> <xsd:element name="definedNames" type="CT_DefinedNames" minOccurs="0" maxOccurs="1"/> <xsd:element name="calcPr" type="CT_CalcPr" minOccurs="0" maxOccurs="1"/> <xsd:element name="oleSize" type="CT_OleSize" minOccurs="0" maxOccurs="1"/> <xsd:element name="customWorkbookViews" type="CT_CustomWorkbookViews" minOccurs="0" maxOccurs="1"/> <xsd:element name="pivotCaches" type="CT_PivotCaches" minOccurs="0" maxOccurs="1"/> <xsd:element name="smartTagPr" type="CT_SmartTagPr" minOccurs="0" maxOccurs="1"/> <xsd:element name="smartTagTypes" type="CT_SmartTagTypes" minOccurs="0" maxOccurs="1"/> <xsd:element name="webPublishing" type="CT_WebPublishing" minOccurs="0" maxOccurs="1"/> <xsd:element name="fileRecoveryPr" type="CT_FileRecoveryPr" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="webPublishObjects" type="CT_WebPublishObjects" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="conformance" type="s:ST_ConformanceClass"/> </xsd:complexType> <xsd:complexType name="CT_FileVersion"> <xsd:attribute name="appName" type="xsd:string" use="optional"/> <xsd:attribute name="lastEdited" type="xsd:string" use="optional"/> <xsd:attribute name="lowestEdited" type="xsd:string" use="optional"/> <xsd:attribute name="rupBuild" type="xsd:string" use="optional"/> <xsd:attribute name="codeName" type="s:ST_Guid" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_BookViews"> <xsd:sequence> <xsd:element name="workbookView" type="CT_BookView" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_BookView"> <xsd:sequence> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="visibility" type="ST_Visibility" use="optional" default="visible"/> <xsd:attribute name="minimized" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="showHorizontalScroll" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="showVerticalScroll" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="showSheetTabs" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="xWindow" type="xsd:int" use="optional"/> <xsd:attribute name="yWindow" type="xsd:int" use="optional"/> <xsd:attribute name="windowWidth" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="windowHeight" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="tabRatio" type="xsd:unsignedInt" use="optional" default="600"/> <xsd:attribute name="firstSheet" type="xsd:unsignedInt" use="optional" default="0"/> <xsd:attribute name="activeTab" type="xsd:unsignedInt" use="optional" default="0"/> <xsd:attribute name="autoFilterDateGrouping" type="xsd:boolean" use="optional" default="true"/> </xsd:complexType> <xsd:simpleType name="ST_Visibility"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="visible"/> <xsd:enumeration value="hidden"/> <xsd:enumeration value="veryHidden"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_CustomWorkbookViews"> <xsd:sequence> <xsd:element name="customWorkbookView" minOccurs="1" maxOccurs="unbounded" type="CT_CustomWorkbookView"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_CustomWorkbookView"> <xsd:sequence> <xsd:element name="extLst" minOccurs="0" type="CT_ExtensionList"/> </xsd:sequence> <xsd:attribute name="name" type="s:ST_Xstring" use="required"/> <xsd:attribute name="guid" type="s:ST_Guid" use="required"/> <xsd:attribute name="autoUpdate" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="mergeInterval" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="changesSavedWin" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="onlySync" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="personalView" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="includePrintSettings" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="includeHiddenRowCol" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="maximized" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="minimized" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="showHorizontalScroll" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="showVerticalScroll" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="showSheetTabs" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="xWindow" type="xsd:int" use="optional" default="0"/> <xsd:attribute name="yWindow" type="xsd:int" use="optional" default="0"/> <xsd:attribute name="windowWidth" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="windowHeight" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="tabRatio" type="xsd:unsignedInt" use="optional" default="600"/> <xsd:attribute name="activeSheetId" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="showFormulaBar" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="showStatusbar" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="showComments" type="ST_Comments" use="optional" default="commIndicator"/> <xsd:attribute name="showObjects" type="ST_Objects" use="optional" default="all"/> </xsd:complexType> <xsd:simpleType name="ST_Comments"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="commNone"/> <xsd:enumeration value="commIndicator"/> <xsd:enumeration value="commIndAndComment"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_Objects"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="all"/> <xsd:enumeration value="placeholders"/> <xsd:enumeration value="none"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Sheets"> <xsd:sequence> <xsd:element name="sheet" type="CT_Sheet" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Sheet"> <xsd:attribute name="name" type="s:ST_Xstring" use="required"/> <xsd:attribute name="sheetId" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="state" type="ST_SheetState" use="optional" default="visible"/> <xsd:attribute ref="r:id" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_SheetState"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="visible"/> <xsd:enumeration value="hidden"/> <xsd:enumeration value="veryHidden"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_WorkbookPr"> <xsd:attribute name="date1904" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="showObjects" type="ST_Objects" use="optional" default="all"/> <xsd:attribute name="showBorderUnselectedTables" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="filterPrivacy" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="promptedSolutions" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="showInkAnnotation" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="backupFile" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="saveExternalLinkValues" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="updateLinks" type="ST_UpdateLinks" use="optional" default="userSet"/> <xsd:attribute name="codeName" type="xsd:string" use="optional"/> <xsd:attribute name="hidePivotFieldList" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="showPivotChartFilter" type="xsd:boolean" default="false"/> <xsd:attribute name="allowRefreshQuery" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="publishItems" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="checkCompatibility" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="autoCompressPictures" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="refreshAllConnections" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="defaultThemeVersion" type="xsd:unsignedInt" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_UpdateLinks"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="userSet"/> <xsd:enumeration value="never"/> <xsd:enumeration value="always"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_SmartTagPr"> <xsd:attribute name="embed" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="show" type="ST_SmartTagShow" use="optional" default="all"/> </xsd:complexType> <xsd:simpleType name="ST_SmartTagShow"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="all"/> <xsd:enumeration value="none"/> <xsd:enumeration value="noIndicator"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_SmartTagTypes"> <xsd:sequence> <xsd:element name="smartTagType" type="CT_SmartTagType" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_SmartTagType"> <xsd:attribute name="namespaceUri" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="name" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="url" type="s:ST_Xstring" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_FileRecoveryPr"> <xsd:attribute name="autoRecover" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="crashSave" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="dataExtractLoad" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="repairLoad" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_CalcPr"> <xsd:attribute name="calcId" type="xsd:unsignedInt"/> <xsd:attribute name="calcMode" type="ST_CalcMode" use="optional" default="auto"/> <xsd:attribute name="fullCalcOnLoad" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="refMode" type="ST_RefMode" use="optional" default="A1"/> <xsd:attribute name="iterate" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="iterateCount" type="xsd:unsignedInt" use="optional" default="100"/> <xsd:attribute name="iterateDelta" type="xsd:double" use="optional" default="0.001"/> <xsd:attribute name="fullPrecision" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="calcCompleted" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="calcOnSave" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="concurrentCalc" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="concurrentManualCount" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="forceFullCalc" type="xsd:boolean" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_CalcMode"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="manual"/> <xsd:enumeration value="auto"/> <xsd:enumeration value="autoNoTable"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_RefMode"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="A1"/> <xsd:enumeration value="R1C1"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_DefinedNames"> <xsd:sequence> <xsd:element name="definedName" type="CT_DefinedName" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_DefinedName"> <xsd:simpleContent> <xsd:extension base="ST_Formula"> <xsd:attribute name="name" type="s:ST_Xstring" use="required"/> <xsd:attribute name="comment" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="customMenu" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="description" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="help" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="statusBar" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="localSheetId" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="hidden" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="function" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="vbProcedure" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="xlm" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="functionGroupId" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="shortcutKey" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="publishToServer" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="workbookParameter" type="xsd:boolean" use="optional" default="false"/> </xsd:extension> </xsd:simpleContent> </xsd:complexType> <xsd:complexType name="CT_ExternalReferences"> <xsd:sequence> <xsd:element name="externalReference" type="CT_ExternalReference" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_ExternalReference"> <xsd:attribute ref="r:id" use="required"/> </xsd:complexType> <xsd:complexType name="CT_SheetBackgroundPicture"> <xsd:attribute ref="r:id" use="required"/> </xsd:complexType> <xsd:complexType name="CT_PivotCaches"> <xsd:sequence> <xsd:element name="pivotCache" type="CT_PivotCache" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_PivotCache"> <xsd:attribute name="cacheId" type="xsd:unsignedInt" use="required"/> <xsd:attribute ref="r:id" use="required"/> </xsd:complexType> <xsd:complexType name="CT_FileSharing"> <xsd:attribute name="readOnlyRecommended" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="userName" type="s:ST_Xstring"/> <xsd:attribute name="reservationPassword" type="ST_UnsignedShortHex"/> <xsd:attribute name="algorithmName" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="hashValue" type="xsd:base64Binary" use="optional"/> <xsd:attribute name="saltValue" type="xsd:base64Binary" use="optional"/> <xsd:attribute name="spinCount" type="xsd:unsignedInt" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_OleSize"> <xsd:attribute name="ref" type="ST_Ref" use="required"/> </xsd:complexType> <xsd:complexType name="CT_WorkbookProtection"> <xsd:attribute name="workbookPassword" type="ST_UnsignedShortHex" use="optional"/> <xsd:attribute name="workbookPasswordCharacterSet" type="xsd:string" use="optional"/> <xsd:attribute name="revisionsPassword" type="ST_UnsignedShortHex" use="optional"/> <xsd:attribute name="revisionsPasswordCharacterSet" type="xsd:string" use="optional"/> <xsd:attribute name="lockStructure" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="lockWindows" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="lockRevision" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="revisionsAlgorithmName" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="revisionsHashValue" type="xsd:base64Binary" use="optional"/> <xsd:attribute name="revisionsSaltValue" type="xsd:base64Binary" use="optional"/> <xsd:attribute name="revisionsSpinCount" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="workbookAlgorithmName" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="workbookHashValue" type="xsd:base64Binary" use="optional"/> <xsd:attribute name="workbookSaltValue" type="xsd:base64Binary" use="optional"/> <xsd:attribute name="workbookSpinCount" type="xsd:unsignedInt" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_WebPublishing"> <xsd:attribute name="css" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="thicket" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="longFileNames" type="xsd:boolean" use="optional" default="true"/> <xsd:attribute name="vml" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="allowPng" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="targetScreenSize" type="ST_TargetScreenSize" use="optional" default="800x600"/> <xsd:attribute name="dpi" type="xsd:unsignedInt" use="optional" default="96"/> <xsd:attribute name="codePage" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="characterSet" type="xsd:string" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_TargetScreenSize"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="544x376"/> <xsd:enumeration value="640x480"/> <xsd:enumeration value="720x512"/> <xsd:enumeration value="800x600"/> <xsd:enumeration value="1024x768"/> <xsd:enumeration value="1152x882"/> <xsd:enumeration value="1152x900"/> <xsd:enumeration value="1280x1024"/> <xsd:enumeration value="1600x1200"/> <xsd:enumeration value="1800x1440"/> <xsd:enumeration value="1920x1200"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_FunctionGroups"> <xsd:sequence maxOccurs="unbounded"> <xsd:element name="functionGroup" type="CT_FunctionGroup" minOccurs="0"/> </xsd:sequence> <xsd:attribute name="builtInGroupCount" type="xsd:unsignedInt" default="16" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_FunctionGroup"> <xsd:attribute name="name" type="s:ST_Xstring"/> </xsd:complexType> <xsd:complexType name="CT_WebPublishObjects"> <xsd:sequence> <xsd:element name="webPublishObject" type="CT_WebPublishObject" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="count" type="xsd:unsignedInt" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_WebPublishObject"> <xsd:attribute name="id" type="xsd:unsignedInt" use="required"/> <xsd:attribute name="divId" type="s:ST_Xstring" use="required"/> <xsd:attribute name="sourceObject" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="destinationFile" type="s:ST_Xstring" use="required"/> <xsd:attribute name="title" type="s:ST_Xstring" use="optional"/> <xsd:attribute name="autoRepublish" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> </xsd:schema> ================================================ FILE: skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-main.xsd ================================================ <?xml version="1.0" encoding="utf-8"?> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="urn:schemas-microsoft-com:vml" xmlns:pvml="urn:schemas-microsoft-com:office:powerpoint" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:s="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes" targetNamespace="urn:schemas-microsoft-com:vml" elementFormDefault="qualified" attributeFormDefault="unqualified"> <xsd:import namespace="urn:schemas-microsoft-com:office:office" schemaLocation="vml-officeDrawing.xsd"/> <xsd:import namespace="http://schemas.openxmlformats.org/wordprocessingml/2006/main" schemaLocation="wml.xsd"/> <xsd:import namespace="urn:schemas-microsoft-com:office:word" schemaLocation="vml-wordprocessingDrawing.xsd"/> <xsd:import namespace="http://schemas.openxmlformats.org/officeDocument/2006/relationships" schemaLocation="shared-relationshipReference.xsd"/> <xsd:import namespace="urn:schemas-microsoft-com:office:excel" schemaLocation="vml-spreadsheetDrawing.xsd"/> <xsd:import namespace="urn:schemas-microsoft-com:office:powerpoint" schemaLocation="vml-presentationDrawing.xsd"/> <xsd:import namespace="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes" schemaLocation="shared-commonSimpleTypes.xsd"/> <xsd:attributeGroup name="AG_Id"> <xsd:attribute name="id" type="xsd:string" use="optional"/> </xsd:attributeGroup> <xsd:attributeGroup name="AG_Style"> <xsd:attribute name="style" type="xsd:string" use="optional"/> </xsd:attributeGroup> <xsd:attributeGroup name="AG_Type"> <xsd:attribute name="type" type="xsd:string" use="optional"/> </xsd:attributeGroup> <xsd:attributeGroup name="AG_Adj"> <xsd:attribute name="adj" type="xsd:string" use="optional"/> </xsd:attributeGroup> <xsd:attributeGroup name="AG_Path"> <xsd:attribute name="path" type="xsd:string" use="optional"/> </xsd:attributeGroup> <xsd:attributeGroup name="AG_Fill"> <xsd:attribute name="filled" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="fillcolor" type="s:ST_ColorType" use="optional"/> </xsd:attributeGroup> <xsd:attributeGroup name="AG_Chromakey"> <xsd:attribute name="chromakey" type="s:ST_ColorType" use="optional"/> </xsd:attributeGroup> <xsd:attributeGroup name="AG_Ext"> <xsd:attribute name="ext" form="qualified" type="ST_Ext"/> </xsd:attributeGroup> <xsd:attributeGroup name="AG_CoreAttributes"> <xsd:attributeGroup ref="AG_Id"/> <xsd:attributeGroup ref="AG_Style"/> <xsd:attribute name="href" type="xsd:string" use="optional"/> <xsd:attribute name="target" type="xsd:string" use="optional"/> <xsd:attribute name="class" type="xsd:string" use="optional"/> <xsd:attribute name="title" type="xsd:string" use="optional"/> <xsd:attribute name="alt" type="xsd:string" use="optional"/> <xsd:attribute name="coordsize" type="xsd:string" use="optional"/> <xsd:attribute name="coordorigin" type="xsd:string" use="optional"/> <xsd:attribute name="wrapcoords" type="xsd:string" use="optional"/> <xsd:attribute name="print" type="s:ST_TrueFalse" use="optional"/> </xsd:attributeGroup> <xsd:attributeGroup name="AG_ShapeAttributes"> <xsd:attributeGroup ref="AG_Chromakey"/> <xsd:attributeGroup ref="AG_Fill"/> <xsd:attribute name="opacity" type="xsd:string" use="optional"/> <xsd:attribute name="stroked" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="strokecolor" type="s:ST_ColorType" use="optional"/> <xsd:attribute name="strokeweight" type="xsd:string" use="optional"/> <xsd:attribute name="insetpen" type="s:ST_TrueFalse" use="optional"/> </xsd:attributeGroup> <xsd:attributeGroup name="AG_OfficeCoreAttributes"> <xsd:attribute ref="o:spid"/> <xsd:attribute ref="o:oned"/> <xsd:attribute ref="o:regroupid"/> <xsd:attribute ref="o:doubleclicknotify"/> <xsd:attribute ref="o:button"/> <xsd:attribute ref="o:userhidden"/> <xsd:attribute ref="o:bullet"/> <xsd:attribute ref="o:hr"/> <xsd:attribute ref="o:hrstd"/> <xsd:attribute ref="o:hrnoshade"/> <xsd:attribute ref="o:hrpct"/> <xsd:attribute ref="o:hralign"/> <xsd:attribute ref="o:allowincell"/> <xsd:attribute ref="o:allowoverlap"/> <xsd:attribute ref="o:userdrawn"/> <xsd:attribute ref="o:bordertopcolor"/> <xsd:attribute ref="o:borderleftcolor"/> <xsd:attribute ref="o:borderbottomcolor"/> <xsd:attribute ref="o:borderrightcolor"/> <xsd:attribute ref="o:dgmlayout"/> <xsd:attribute ref="o:dgmnodekind"/> <xsd:attribute ref="o:dgmlayoutmru"/> <xsd:attribute ref="o:insetmode"/> </xsd:attributeGroup> <xsd:attributeGroup name="AG_OfficeShapeAttributes"> <xsd:attribute ref="o:spt"/> <xsd:attribute ref="o:connectortype"/> <xsd:attribute ref="o:bwmode"/> <xsd:attribute ref="o:bwpure"/> <xsd:attribute ref="o:bwnormal"/> <xsd:attribute ref="o:forcedash"/> <xsd:attribute ref="o:oleicon"/> <xsd:attribute ref="o:ole"/> <xsd:attribute ref="o:preferrelative"/> <xsd:attribute ref="o:cliptowrap"/> <xsd:attribute ref="o:clip"/> </xsd:attributeGroup> <xsd:attributeGroup name="AG_AllCoreAttributes"> <xsd:attributeGroup ref="AG_CoreAttributes"/> <xsd:attributeGroup ref="AG_OfficeCoreAttributes"/> </xsd:attributeGroup> <xsd:attributeGroup name="AG_AllShapeAttributes"> <xsd:attributeGroup ref="AG_ShapeAttributes"/> <xsd:attributeGroup ref="AG_OfficeShapeAttributes"/> </xsd:attributeGroup> <xsd:attributeGroup name="AG_ImageAttributes"> <xsd:attribute name="src" type="xsd:string" use="optional"/> <xsd:attribute name="cropleft" type="xsd:string" use="optional"/> <xsd:attribute name="croptop" type="xsd:string" use="optional"/> <xsd:attribute name="cropright" type="xsd:string" use="optional"/> <xsd:attribute name="cropbottom" type="xsd:string" use="optional"/> <xsd:attribute name="gain" type="xsd:string" use="optional"/> <xsd:attribute name="blacklevel" type="xsd:string" use="optional"/> <xsd:attribute name="gamma" type="xsd:string" use="optional"/> <xsd:attribute name="grayscale" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="bilevel" type="s:ST_TrueFalse" use="optional"/> </xsd:attributeGroup> <xsd:attributeGroup name="AG_StrokeAttributes"> <xsd:attribute name="on" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="weight" type="xsd:string" use="optional"/> <xsd:attribute name="color" type="s:ST_ColorType" use="optional"/> <xsd:attribute name="opacity" type="xsd:string" use="optional"/> <xsd:attribute name="linestyle" type="ST_StrokeLineStyle" use="optional"/> <xsd:attribute name="miterlimit" type="xsd:decimal" use="optional"/> <xsd:attribute name="joinstyle" type="ST_StrokeJoinStyle" use="optional"/> <xsd:attribute name="endcap" type="ST_StrokeEndCap" use="optional"/> <xsd:attribute name="dashstyle" type="xsd:string" use="optional"/> <xsd:attribute name="filltype" type="ST_FillType" use="optional"/> <xsd:attribute name="src" type="xsd:string" use="optional"/> <xsd:attribute name="imageaspect" type="ST_ImageAspect" use="optional"/> <xsd:attribute name="imagesize" type="xsd:string" use="optional"/> <xsd:attribute name="imagealignshape" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="color2" type="s:ST_ColorType" use="optional"/> <xsd:attribute name="startarrow" type="ST_StrokeArrowType" use="optional"/> <xsd:attribute name="startarrowwidth" type="ST_StrokeArrowWidth" use="optional"/> <xsd:attribute name="startarrowlength" type="ST_StrokeArrowLength" use="optional"/> <xsd:attribute name="endarrow" type="ST_StrokeArrowType" use="optional"/> <xsd:attribute name="endarrowwidth" type="ST_StrokeArrowWidth" use="optional"/> <xsd:attribute name="endarrowlength" type="ST_StrokeArrowLength" use="optional"/> <xsd:attribute ref="o:href"/> <xsd:attribute ref="o:althref"/> <xsd:attribute ref="o:title"/> <xsd:attribute ref="o:forcedash"/> <xsd:attribute ref="r:id" use="optional"/> <xsd:attribute name="insetpen" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute ref="o:relid"/> </xsd:attributeGroup> <xsd:group name="EG_ShapeElements"> <xsd:choice> <xsd:element ref="path"/> <xsd:element ref="formulas"/> <xsd:element ref="handles"/> <xsd:element ref="fill"/> <xsd:element ref="stroke"/> <xsd:element ref="shadow"/> <xsd:element ref="textbox"/> <xsd:element ref="textpath"/> <xsd:element ref="imagedata"/> <xsd:element ref="o:skew"/> <xsd:element ref="o:extrusion"/> <xsd:element ref="o:callout"/> <xsd:element ref="o:lock"/> <xsd:element ref="o:clippath"/> <xsd:element ref="o:signatureline"/> <xsd:element ref="w10:wrap"/> <xsd:element ref="w10:anchorlock"/> <xsd:element ref="w10:bordertop"/> <xsd:element ref="w10:borderbottom"/> <xsd:element ref="w10:borderleft"/> <xsd:element ref="w10:borderright"/> <xsd:element ref="x:ClientData" minOccurs="0"/> <xsd:element ref="pvml:textdata" minOccurs="0"/> </xsd:choice> </xsd:group> <xsd:element name="shape" type="CT_Shape"/> <xsd:element name="shapetype" type="CT_Shapetype"/> <xsd:element name="group" type="CT_Group"/> <xsd:element name="background" type="CT_Background"/> <xsd:complexType name="CT_Shape"> <xsd:choice maxOccurs="unbounded"> <xsd:group ref="EG_ShapeElements"/> <xsd:element ref="o:ink"/> <xsd:element ref="pvml:iscomment"/> <xsd:element ref="o:equationxml"/> </xsd:choice> <xsd:attributeGroup ref="AG_AllCoreAttributes"/> <xsd:attributeGroup ref="AG_AllShapeAttributes"/> <xsd:attributeGroup ref="AG_Type"/> <xsd:attributeGroup ref="AG_Adj"/> <xsd:attributeGroup ref="AG_Path"/> <xsd:attribute ref="o:gfxdata"/> <xsd:attribute name="equationxml" type="xsd:string" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_Shapetype"> <xsd:sequence> <xsd:group ref="EG_ShapeElements" minOccurs="0" maxOccurs="unbounded"/> <xsd:element ref="o:complex" minOccurs="0"/> </xsd:sequence> <xsd:attributeGroup ref="AG_AllCoreAttributes"/> <xsd:attributeGroup ref="AG_AllShapeAttributes"/> <xsd:attributeGroup ref="AG_Adj"/> <xsd:attributeGroup ref="AG_Path"/> <xsd:attribute ref="o:master"/> </xsd:complexType> <xsd:complexType name="CT_Group"> <xsd:choice maxOccurs="unbounded"> <xsd:group ref="EG_ShapeElements"/> <xsd:element ref="group"/> <xsd:element ref="shape"/> <xsd:element ref="shapetype"/> <xsd:element ref="arc"/> <xsd:element ref="curve"/> <xsd:element ref="image"/> <xsd:element ref="line"/> <xsd:element ref="oval"/> <xsd:element ref="polyline"/> <xsd:element ref="rect"/> <xsd:element ref="roundrect"/> <xsd:element ref="o:diagram"/> </xsd:choice> <xsd:attributeGroup ref="AG_AllCoreAttributes"/> <xsd:attributeGroup ref="AG_Fill"/> <xsd:attribute name="editas" type="ST_EditAs" use="optional"/> <xsd:attribute ref="o:tableproperties"/> <xsd:attribute ref="o:tablelimits"/> </xsd:complexType> <xsd:complexType name="CT_Background"> <xsd:sequence> <xsd:element ref="fill" minOccurs="0"/> </xsd:sequence> <xsd:attributeGroup ref="AG_Id"/> <xsd:attributeGroup ref="AG_Fill"/> <xsd:attribute ref="o:bwmode"/> <xsd:attribute ref="o:bwpure"/> <xsd:attribute ref="o:bwnormal"/> <xsd:attribute ref="o:targetscreensize"/> </xsd:complexType> <xsd:element name="fill" type="CT_Fill"/> <xsd:element name="formulas" type="CT_Formulas"/> <xsd:element name="handles" type="CT_Handles"/> <xsd:element name="imagedata" type="CT_ImageData"/> <xsd:element name="path" type="CT_Path"/> <xsd:element name="textbox" type="CT_Textbox"/> <xsd:element name="shadow" type="CT_Shadow"/> <xsd:element name="stroke" type="CT_Stroke"/> <xsd:element name="textpath" type="CT_TextPath"/> <xsd:complexType name="CT_Fill"> <xsd:sequence> <xsd:element ref="o:fill" minOccurs="0"/> </xsd:sequence> <xsd:attributeGroup ref="AG_Id"/> <xsd:attribute name="type" type="ST_FillType" use="optional"/> <xsd:attribute name="on" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="color" type="s:ST_ColorType" use="optional"/> <xsd:attribute name="opacity" type="xsd:string" use="optional"/> <xsd:attribute name="color2" type="s:ST_ColorType" use="optional"/> <xsd:attribute name="src" type="xsd:string" use="optional"/> <xsd:attribute ref="o:href"/> <xsd:attribute ref="o:althref"/> <xsd:attribute name="size" type="xsd:string" use="optional"/> <xsd:attribute name="origin" type="xsd:string" use="optional"/> <xsd:attribute name="position" type="xsd:string" use="optional"/> <xsd:attribute name="aspect" type="ST_ImageAspect" use="optional"/> <xsd:attribute name="colors" type="xsd:string" use="optional"/> <xsd:attribute name="angle" type="xsd:decimal" use="optional"/> <xsd:attribute name="alignshape" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="focus" type="xsd:string" use="optional"/> <xsd:attribute name="focussize" type="xsd:string" use="optional"/> <xsd:attribute name="focusposition" type="xsd:string" use="optional"/> <xsd:attribute name="method" type="ST_FillMethod" use="optional"/> <xsd:attribute ref="o:detectmouseclick"/> <xsd:attribute ref="o:title"/> <xsd:attribute ref="o:opacity2"/> <xsd:attribute name="recolor" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="rotate" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute ref="r:id" use="optional"/> <xsd:attribute ref="o:relid" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_Formulas"> <xsd:sequence> <xsd:element name="f" type="CT_F" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_F"> <xsd:attribute name="eqn" type="xsd:string"/> </xsd:complexType> <xsd:complexType name="CT_Handles"> <xsd:sequence> <xsd:element name="h" type="CT_H" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_H"> <xsd:attribute name="position" type="xsd:string"/> <xsd:attribute name="polar" type="xsd:string"/> <xsd:attribute name="map" type="xsd:string"/> <xsd:attribute name="invx" type="s:ST_TrueFalse"/> <xsd:attribute name="invy" type="s:ST_TrueFalse"/> <xsd:attribute name="switch" type="s:ST_TrueFalseBlank"/> <xsd:attribute name="xrange" type="xsd:string"/> <xsd:attribute name="yrange" type="xsd:string"/> <xsd:attribute name="radiusrange" type="xsd:string"/> </xsd:complexType> <xsd:complexType name="CT_ImageData"> <xsd:attributeGroup ref="AG_Id"/> <xsd:attributeGroup ref="AG_ImageAttributes"/> <xsd:attributeGroup ref="AG_Chromakey"/> <xsd:attribute name="embosscolor" type="s:ST_ColorType" use="optional"/> <xsd:attribute name="recolortarget" type="s:ST_ColorType"/> <xsd:attribute ref="o:href"/> <xsd:attribute ref="o:althref"/> <xsd:attribute ref="o:title"/> <xsd:attribute ref="o:oleid"/> <xsd:attribute ref="o:detectmouseclick"/> <xsd:attribute ref="o:movie"/> <xsd:attribute ref="o:relid"/> <xsd:attribute ref="r:id"/> <xsd:attribute ref="r:pict"/> <xsd:attribute ref="r:href"/> </xsd:complexType> <xsd:complexType name="CT_Path"> <xsd:attributeGroup ref="AG_Id"/> <xsd:attribute name="v" type="xsd:string" use="optional"/> <xsd:attribute name="limo" type="xsd:string" use="optional"/> <xsd:attribute name="textboxrect" type="xsd:string" use="optional"/> <xsd:attribute name="fillok" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="strokeok" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="shadowok" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="arrowok" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="gradientshapeok" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="textpathok" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="insetpenok" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute ref="o:connecttype"/> <xsd:attribute ref="o:connectlocs"/> <xsd:attribute ref="o:connectangles"/> <xsd:attribute ref="o:extrusionok"/> </xsd:complexType> <xsd:complexType name="CT_Shadow"> <xsd:attributeGroup ref="AG_Id"/> <xsd:attribute name="on" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="type" type="ST_ShadowType" use="optional"/> <xsd:attribute name="obscured" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="color" type="s:ST_ColorType" use="optional"/> <xsd:attribute name="opacity" type="xsd:string" use="optional"/> <xsd:attribute name="offset" type="xsd:string" use="optional"/> <xsd:attribute name="color2" type="s:ST_ColorType" use="optional"/> <xsd:attribute name="offset2" type="xsd:string" use="optional"/> <xsd:attribute name="origin" type="xsd:string" use="optional"/> <xsd:attribute name="matrix" type="xsd:string" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_Stroke"> <xsd:sequence> <xsd:element ref="o:left" minOccurs="0"/> <xsd:element ref="o:top" minOccurs="0"/> <xsd:element ref="o:right" minOccurs="0"/> <xsd:element ref="o:bottom" minOccurs="0"/> <xsd:element ref="o:column" minOccurs="0"/> </xsd:sequence> <xsd:attributeGroup ref="AG_Id"/> <xsd:attributeGroup ref="AG_StrokeAttributes"/> </xsd:complexType> <xsd:complexType name="CT_Textbox"> <xsd:choice> <xsd:element ref="w:txbxContent" minOccurs="0"/> <xsd:any namespace="##local" processContents="skip"/> </xsd:choice> <xsd:attributeGroup ref="AG_Id"/> <xsd:attributeGroup ref="AG_Style"/> <xsd:attribute name="inset" type="xsd:string" use="optional"/> <xsd:attribute ref="o:singleclick"/> <xsd:attribute ref="o:insetmode"/> </xsd:complexType> <xsd:complexType name="CT_TextPath"> <xsd:attributeGroup ref="AG_Id"/> <xsd:attributeGroup ref="AG_Style"/> <xsd:attribute name="on" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="fitshape" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="fitpath" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="trim" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="xscale" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="string" type="xsd:string" use="optional"/> </xsd:complexType> <xsd:element name="arc" type="CT_Arc"/> <xsd:element name="curve" type="CT_Curve"/> <xsd:element name="image" type="CT_Image"/> <xsd:element name="line" type="CT_Line"/> <xsd:element name="oval" type="CT_Oval"/> <xsd:element name="polyline" type="CT_PolyLine"/> <xsd:element name="rect" type="CT_Rect"/> <xsd:element name="roundrect" type="CT_RoundRect"/> <xsd:complexType name="CT_Arc"> <xsd:sequence> <xsd:group ref="EG_ShapeElements" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attributeGroup ref="AG_AllCoreAttributes"/> <xsd:attributeGroup ref="AG_AllShapeAttributes"/> <xsd:attribute name="startAngle" type="xsd:decimal" use="optional"/> <xsd:attribute name="endAngle" type="xsd:decimal" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_Curve"> <xsd:sequence> <xsd:group ref="EG_ShapeElements" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attributeGroup ref="AG_AllCoreAttributes"/> <xsd:attributeGroup ref="AG_AllShapeAttributes"/> <xsd:attribute name="from" type="xsd:string" use="optional"/> <xsd:attribute name="control1" type="xsd:string" use="optional"/> <xsd:attribute name="control2" type="xsd:string" use="optional"/> <xsd:attribute name="to" type="xsd:string" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_Image"> <xsd:sequence> <xsd:group ref="EG_ShapeElements" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attributeGroup ref="AG_AllCoreAttributes"/> <xsd:attributeGroup ref="AG_AllShapeAttributes"/> <xsd:attributeGroup ref="AG_ImageAttributes"/> </xsd:complexType> <xsd:complexType name="CT_Line"> <xsd:sequence> <xsd:group ref="EG_ShapeElements" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attributeGroup ref="AG_AllCoreAttributes"/> <xsd:attributeGroup ref="AG_AllShapeAttributes"/> <xsd:attribute name="from" type="xsd:string" use="optional"/> <xsd:attribute name="to" type="xsd:string" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_Oval"> <xsd:choice maxOccurs="unbounded"> <xsd:group ref="EG_ShapeElements" minOccurs="0" maxOccurs="unbounded"/> </xsd:choice> <xsd:attributeGroup ref="AG_AllCoreAttributes"/> <xsd:attributeGroup ref="AG_AllShapeAttributes"/> </xsd:complexType> <xsd:complexType name="CT_PolyLine"> <xsd:choice minOccurs="0" maxOccurs="unbounded"> <xsd:group ref="EG_ShapeElements"/> <xsd:element ref="o:ink"/> </xsd:choice> <xsd:attributeGroup ref="AG_AllCoreAttributes"/> <xsd:attributeGroup ref="AG_AllShapeAttributes"/> <xsd:attribute name="points" type="xsd:string" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_Rect"> <xsd:choice maxOccurs="unbounded"> <xsd:group ref="EG_ShapeElements" minOccurs="0" maxOccurs="unbounded"/> </xsd:choice> <xsd:attributeGroup ref="AG_AllCoreAttributes"/> <xsd:attributeGroup ref="AG_AllShapeAttributes"/> </xsd:complexType> <xsd:complexType name="CT_RoundRect"> <xsd:choice maxOccurs="unbounded"> <xsd:group ref="EG_ShapeElements" minOccurs="0" maxOccurs="unbounded"/> </xsd:choice> <xsd:attributeGroup ref="AG_AllCoreAttributes"/> <xsd:attributeGroup ref="AG_AllShapeAttributes"/> <xsd:attribute name="arcsize" type="xsd:string" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_Ext"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="view"/> <xsd:enumeration value="edit"/> <xsd:enumeration value="backwardCompatible"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_FillType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="solid"/> <xsd:enumeration value="gradient"/> <xsd:enumeration value="gradientRadial"/> <xsd:enumeration value="tile"/> <xsd:enumeration value="pattern"/> <xsd:enumeration value="frame"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_FillMethod"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="none"/> <xsd:enumeration value="linear"/> <xsd:enumeration value="sigma"/> <xsd:enumeration value="any"/> <xsd:enumeration value="linear sigma"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_ShadowType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="single"/> <xsd:enumeration value="double"/> <xsd:enumeration value="emboss"/> <xsd:enumeration value="perspective"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_StrokeLineStyle"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="single"/> <xsd:enumeration value="thinThin"/> <xsd:enumeration value="thinThick"/> <xsd:enumeration value="thickThin"/> <xsd:enumeration value="thickBetweenThin"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_StrokeJoinStyle"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="round"/> <xsd:enumeration value="bevel"/> <xsd:enumeration value="miter"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_StrokeEndCap"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="flat"/> <xsd:enumeration value="square"/> <xsd:enumeration value="round"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_StrokeArrowLength"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="short"/> <xsd:enumeration value="medium"/> <xsd:enumeration value="long"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_StrokeArrowWidth"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="narrow"/> <xsd:enumeration value="medium"/> <xsd:enumeration value="wide"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_StrokeArrowType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="none"/> <xsd:enumeration value="block"/> <xsd:enumeration value="classic"/> <xsd:enumeration value="oval"/> <xsd:enumeration value="diamond"/> <xsd:enumeration value="open"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_ImageAspect"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="ignore"/> <xsd:enumeration value="atMost"/> <xsd:enumeration value="atLeast"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_EditAs"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="canvas"/> <xsd:enumeration value="orgchart"/> <xsd:enumeration value="radial"/> <xsd:enumeration value="cycle"/> <xsd:enumeration value="stacked"/> <xsd:enumeration value="venn"/> <xsd:enumeration value="bullseye"/> </xsd:restriction> </xsd:simpleType> </xsd:schema> ================================================ FILE: skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd ================================================ <?xml version="1.0" encoding="utf-8"?> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="urn:schemas-microsoft-com:office:office" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:s="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes" targetNamespace="urn:schemas-microsoft-com:office:office" elementFormDefault="qualified" attributeFormDefault="unqualified"> <xsd:import namespace="urn:schemas-microsoft-com:vml" schemaLocation="vml-main.xsd"/> <xsd:import namespace="http://schemas.openxmlformats.org/officeDocument/2006/relationships" schemaLocation="shared-relationshipReference.xsd"/> <xsd:import namespace="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes" schemaLocation="shared-commonSimpleTypes.xsd"/> <xsd:attribute name="bwmode" type="ST_BWMode"/> <xsd:attribute name="bwpure" type="ST_BWMode"/> <xsd:attribute name="bwnormal" type="ST_BWMode"/> <xsd:attribute name="targetscreensize" type="ST_ScreenSize"/> <xsd:attribute name="insetmode" type="ST_InsetMode" default="custom"/> <xsd:attribute name="spt" type="xsd:float"/> <xsd:attribute name="wrapcoords" type="xsd:string"/> <xsd:attribute name="oned" type="s:ST_TrueFalse"/> <xsd:attribute name="regroupid" type="xsd:integer"/> <xsd:attribute name="doubleclicknotify" type="s:ST_TrueFalse"/> <xsd:attribute name="connectortype" type="ST_ConnectorType" default="straight"/> <xsd:attribute name="button" type="s:ST_TrueFalse"/> <xsd:attribute name="userhidden" type="s:ST_TrueFalse"/> <xsd:attribute name="forcedash" type="s:ST_TrueFalse"/> <xsd:attribute name="oleicon" type="s:ST_TrueFalse"/> <xsd:attribute name="ole" type="s:ST_TrueFalseBlank"/> <xsd:attribute name="preferrelative" type="s:ST_TrueFalse"/> <xsd:attribute name="cliptowrap" type="s:ST_TrueFalse"/> <xsd:attribute name="clip" type="s:ST_TrueFalse"/> <xsd:attribute name="bullet" type="s:ST_TrueFalse"/> <xsd:attribute name="hr" type="s:ST_TrueFalse"/> <xsd:attribute name="hrstd" type="s:ST_TrueFalse"/> <xsd:attribute name="hrnoshade" type="s:ST_TrueFalse"/> <xsd:attribute name="hrpct" type="xsd:float"/> <xsd:attribute name="hralign" type="ST_HrAlign" default="left"/> <xsd:attribute name="allowincell" type="s:ST_TrueFalse"/> <xsd:attribute name="allowoverlap" type="s:ST_TrueFalse"/> <xsd:attribute name="userdrawn" type="s:ST_TrueFalse"/> <xsd:attribute name="bordertopcolor" type="xsd:string"/> <xsd:attribute name="borderleftcolor" type="xsd:string"/> <xsd:attribute name="borderbottomcolor" type="xsd:string"/> <xsd:attribute name="borderrightcolor" type="xsd:string"/> <xsd:attribute name="connecttype" type="ST_ConnectType"/> <xsd:attribute name="connectlocs" type="xsd:string"/> <xsd:attribute name="connectangles" type="xsd:string"/> <xsd:attribute name="master" type="xsd:string"/> <xsd:attribute name="extrusionok" type="s:ST_TrueFalse"/> <xsd:attribute name="href" type="xsd:string"/> <xsd:attribute name="althref" type="xsd:string"/> <xsd:attribute name="title" type="xsd:string"/> <xsd:attribute name="singleclick" type="s:ST_TrueFalse"/> <xsd:attribute name="oleid" type="xsd:float"/> <xsd:attribute name="detectmouseclick" type="s:ST_TrueFalse"/> <xsd:attribute name="movie" type="xsd:float"/> <xsd:attribute name="spid" type="xsd:string"/> <xsd:attribute name="opacity2" type="xsd:string"/> <xsd:attribute name="relid" type="r:ST_RelationshipId"/> <xsd:attribute name="dgmlayout" type="ST_DiagramLayout"/> <xsd:attribute name="dgmnodekind" type="xsd:integer"/> <xsd:attribute name="dgmlayoutmru" type="ST_DiagramLayout"/> <xsd:attribute name="gfxdata" type="xsd:base64Binary"/> <xsd:attribute name="tableproperties" type="xsd:string"/> <xsd:attribute name="tablelimits" type="xsd:string"/> <xsd:element name="shapedefaults" type="CT_ShapeDefaults"/> <xsd:element name="shapelayout" type="CT_ShapeLayout"/> <xsd:element name="signatureline" type="CT_SignatureLine"/> <xsd:element name="ink" type="CT_Ink"/> <xsd:element name="diagram" type="CT_Diagram"/> <xsd:element name="equationxml" type="CT_EquationXml"/> <xsd:complexType name="CT_ShapeDefaults"> <xsd:all minOccurs="0"> <xsd:element ref="v:fill" minOccurs="0"/> <xsd:element ref="v:stroke" minOccurs="0"/> <xsd:element ref="v:textbox" minOccurs="0"/> <xsd:element ref="v:shadow" minOccurs="0"/> <xsd:element ref="skew" minOccurs="0"/> <xsd:element ref="extrusion" minOccurs="0"/> <xsd:element ref="callout" minOccurs="0"/> <xsd:element ref="lock" minOccurs="0"/> <xsd:element name="colormru" minOccurs="0" type="CT_ColorMru"/> <xsd:element name="colormenu" minOccurs="0" type="CT_ColorMenu"/> </xsd:all> <xsd:attributeGroup ref="v:AG_Ext"/> <xsd:attribute name="spidmax" type="xsd:integer" use="optional"/> <xsd:attribute name="style" type="xsd:string" use="optional"/> <xsd:attribute name="fill" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="fillcolor" type="s:ST_ColorType" use="optional"/> <xsd:attribute name="stroke" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="strokecolor" type="s:ST_ColorType"/> <xsd:attribute name="allowincell" form="qualified" type="s:ST_TrueFalse"/> </xsd:complexType> <xsd:complexType name="CT_Ink"> <xsd:sequence/> <xsd:attribute name="i" type="xsd:string"/> <xsd:attribute name="annotation" type="s:ST_TrueFalse"/> <xsd:attribute name="contentType" type="ST_ContentType" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_SignatureLine"> <xsd:attributeGroup ref="v:AG_Ext"/> <xsd:attribute name="issignatureline" type="s:ST_TrueFalse"/> <xsd:attribute name="id" type="s:ST_Guid"/> <xsd:attribute name="provid" type="s:ST_Guid"/> <xsd:attribute name="signinginstructionsset" type="s:ST_TrueFalse"/> <xsd:attribute name="allowcomments" type="s:ST_TrueFalse"/> <xsd:attribute name="showsigndate" type="s:ST_TrueFalse"/> <xsd:attribute name="suggestedsigner" type="xsd:string" form="qualified"/> <xsd:attribute name="suggestedsigner2" type="xsd:string" form="qualified"/> <xsd:attribute name="suggestedsigneremail" type="xsd:string" form="qualified"/> <xsd:attribute name="signinginstructions" type="xsd:string"/> <xsd:attribute name="addlxml" type="xsd:string"/> <xsd:attribute name="sigprovurl" type="xsd:string"/> </xsd:complexType> <xsd:complexType name="CT_ShapeLayout"> <xsd:all> <xsd:element name="idmap" type="CT_IdMap" minOccurs="0"/> <xsd:element name="regrouptable" type="CT_RegroupTable" minOccurs="0"/> <xsd:element name="rules" type="CT_Rules" minOccurs="0"/> </xsd:all> <xsd:attributeGroup ref="v:AG_Ext"/> </xsd:complexType> <xsd:complexType name="CT_IdMap"> <xsd:attributeGroup ref="v:AG_Ext"/> <xsd:attribute name="data" type="xsd:string" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_RegroupTable"> <xsd:sequence> <xsd:element name="entry" type="CT_Entry" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attributeGroup ref="v:AG_Ext"/> </xsd:complexType> <xsd:complexType name="CT_Entry"> <xsd:attribute name="new" type="xsd:int" use="optional"/> <xsd:attribute name="old" type="xsd:int" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_Rules"> <xsd:sequence> <xsd:element name="r" type="CT_R" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attributeGroup ref="v:AG_Ext"/> </xsd:complexType> <xsd:complexType name="CT_R"> <xsd:sequence> <xsd:element name="proxy" type="CT_Proxy" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="id" type="xsd:string" use="required"/> <xsd:attribute name="type" type="ST_RType" use="optional"/> <xsd:attribute name="how" type="ST_How" use="optional"/> <xsd:attribute name="idref" type="xsd:string" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_Proxy"> <xsd:attribute name="start" type="s:ST_TrueFalseBlank" use="optional" default="false"/> <xsd:attribute name="end" type="s:ST_TrueFalseBlank" use="optional" default="false"/> <xsd:attribute name="idref" type="xsd:string" use="optional"/> <xsd:attribute name="connectloc" type="xsd:int" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_Diagram"> <xsd:sequence> <xsd:element name="relationtable" type="CT_RelationTable" minOccurs="0"/> </xsd:sequence> <xsd:attributeGroup ref="v:AG_Ext"/> <xsd:attribute name="dgmstyle" type="xsd:integer" use="optional"/> <xsd:attribute name="autoformat" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="reverse" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="autolayout" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="dgmscalex" type="xsd:integer" use="optional"/> <xsd:attribute name="dgmscaley" type="xsd:integer" use="optional"/> <xsd:attribute name="dgmfontsize" type="xsd:integer" use="optional"/> <xsd:attribute name="constrainbounds" type="xsd:string" use="optional"/> <xsd:attribute name="dgmbasetextscale" type="xsd:integer" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_EquationXml"> <xsd:sequence> <xsd:any namespace="##any"/> </xsd:sequence> <xsd:attribute name="contentType" type="ST_AlternateMathContentType" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_AlternateMathContentType"> <xsd:restriction base="xsd:string"/> </xsd:simpleType> <xsd:complexType name="CT_RelationTable"> <xsd:sequence> <xsd:element name="rel" type="CT_Relation" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attributeGroup ref="v:AG_Ext"/> </xsd:complexType> <xsd:complexType name="CT_Relation"> <xsd:attributeGroup ref="v:AG_Ext"/> <xsd:attribute name="idsrc" type="xsd:string" use="optional"/> <xsd:attribute name="iddest" type="xsd:string" use="optional"/> <xsd:attribute name="idcntr" type="xsd:string" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_ColorMru"> <xsd:attributeGroup ref="v:AG_Ext"/> <xsd:attribute name="colors" type="xsd:string"/> </xsd:complexType> <xsd:complexType name="CT_ColorMenu"> <xsd:attributeGroup ref="v:AG_Ext"/> <xsd:attribute name="strokecolor" type="s:ST_ColorType"/> <xsd:attribute name="fillcolor" type="s:ST_ColorType"/> <xsd:attribute name="shadowcolor" type="s:ST_ColorType"/> <xsd:attribute name="extrusioncolor" type="s:ST_ColorType"/> </xsd:complexType> <xsd:element name="skew" type="CT_Skew"/> <xsd:element name="extrusion" type="CT_Extrusion"/> <xsd:element name="callout" type="CT_Callout"/> <xsd:element name="lock" type="CT_Lock"/> <xsd:element name="OLEObject" type="CT_OLEObject"/> <xsd:element name="complex" type="CT_Complex"/> <xsd:element name="left" type="CT_StrokeChild"/> <xsd:element name="top" type="CT_StrokeChild"/> <xsd:element name="right" type="CT_StrokeChild"/> <xsd:element name="bottom" type="CT_StrokeChild"/> <xsd:element name="column" type="CT_StrokeChild"/> <xsd:element name="clippath" type="CT_ClipPath"/> <xsd:element name="fill" type="CT_Fill"/> <xsd:complexType name="CT_Skew"> <xsd:attributeGroup ref="v:AG_Ext"/> <xsd:attribute name="id" type="xsd:string" use="optional"/> <xsd:attribute name="on" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="offset" type="xsd:string" use="optional"/> <xsd:attribute name="origin" type="xsd:string" use="optional"/> <xsd:attribute name="matrix" type="xsd:string" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_Extrusion"> <xsd:attributeGroup ref="v:AG_Ext"/> <xsd:attribute name="on" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="type" type="ST_ExtrusionType" default="parallel" use="optional"/> <xsd:attribute name="render" type="ST_ExtrusionRender" default="solid" use="optional"/> <xsd:attribute name="viewpointorigin" type="xsd:string" use="optional"/> <xsd:attribute name="viewpoint" type="xsd:string" use="optional"/> <xsd:attribute name="plane" type="ST_ExtrusionPlane" default="XY" use="optional"/> <xsd:attribute name="skewangle" type="xsd:float" use="optional"/> <xsd:attribute name="skewamt" type="xsd:string" use="optional"/> <xsd:attribute name="foredepth" type="xsd:string" use="optional"/> <xsd:attribute name="backdepth" type="xsd:string" use="optional"/> <xsd:attribute name="orientation" type="xsd:string" use="optional"/> <xsd:attribute name="orientationangle" type="xsd:float" use="optional"/> <xsd:attribute name="lockrotationcenter" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="autorotationcenter" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="rotationcenter" type="xsd:string" use="optional"/> <xsd:attribute name="rotationangle" type="xsd:string" use="optional"/> <xsd:attribute name="colormode" type="ST_ColorMode" use="optional"/> <xsd:attribute name="color" type="s:ST_ColorType" use="optional"/> <xsd:attribute name="shininess" type="xsd:float" use="optional"/> <xsd:attribute name="specularity" type="xsd:string" use="optional"/> <xsd:attribute name="diffusity" type="xsd:string" use="optional"/> <xsd:attribute name="metal" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="edge" type="xsd:string" use="optional"/> <xsd:attribute name="facet" type="xsd:string" use="optional"/> <xsd:attribute name="lightface" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="brightness" type="xsd:string" use="optional"/> <xsd:attribute name="lightposition" type="xsd:string" use="optional"/> <xsd:attribute name="lightlevel" type="xsd:string" use="optional"/> <xsd:attribute name="lightharsh" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="lightposition2" type="xsd:string" use="optional"/> <xsd:attribute name="lightlevel2" type="xsd:string" use="optional"/> <xsd:attribute name="lightharsh2" type="s:ST_TrueFalse" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_Callout"> <xsd:attributeGroup ref="v:AG_Ext"/> <xsd:attribute name="on" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="type" type="xsd:string" use="optional"/> <xsd:attribute name="gap" type="xsd:string" use="optional"/> <xsd:attribute name="angle" type="ST_Angle" use="optional"/> <xsd:attribute name="dropauto" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="drop" type="ST_CalloutDrop" use="optional"/> <xsd:attribute name="distance" type="xsd:string" use="optional"/> <xsd:attribute name="lengthspecified" type="s:ST_TrueFalse" default="f" use="optional"/> <xsd:attribute name="length" type="xsd:string" use="optional"/> <xsd:attribute name="accentbar" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="textborder" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="minusx" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="minusy" type="s:ST_TrueFalse" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_Lock"> <xsd:attributeGroup ref="v:AG_Ext"/> <xsd:attribute name="position" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="selection" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="grouping" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="ungrouping" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="rotation" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="cropping" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="verticies" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="adjusthandles" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="text" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="aspectratio" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="shapetype" type="s:ST_TrueFalse" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_OLEObject"> <xsd:sequence> <xsd:element name="LinkType" type="ST_OLELinkType" minOccurs="0"/> <xsd:element name="LockedField" type="s:ST_TrueFalseBlank" minOccurs="0"/> <xsd:element name="FieldCodes" type="xsd:string" minOccurs="0"/> </xsd:sequence> <xsd:attribute name="Type" type="ST_OLEType" use="optional"/> <xsd:attribute name="ProgID" type="xsd:string" use="optional"/> <xsd:attribute name="ShapeID" type="xsd:string" use="optional"/> <xsd:attribute name="DrawAspect" type="ST_OLEDrawAspect" use="optional"/> <xsd:attribute name="ObjectID" type="xsd:string" use="optional"/> <xsd:attribute ref="r:id" use="optional"/> <xsd:attribute name="UpdateMode" type="ST_OLEUpdateMode" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_Complex"> <xsd:attributeGroup ref="v:AG_Ext"/> </xsd:complexType> <xsd:complexType name="CT_StrokeChild"> <xsd:attributeGroup ref="v:AG_Ext"/> <xsd:attribute name="on" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="weight" type="xsd:string" use="optional"/> <xsd:attribute name="color" type="s:ST_ColorType" use="optional"/> <xsd:attribute name="color2" type="s:ST_ColorType" use="optional"/> <xsd:attribute name="opacity" type="xsd:string" use="optional"/> <xsd:attribute name="linestyle" type="v:ST_StrokeLineStyle" use="optional"/> <xsd:attribute name="miterlimit" type="xsd:decimal" use="optional"/> <xsd:attribute name="joinstyle" type="v:ST_StrokeJoinStyle" use="optional"/> <xsd:attribute name="endcap" type="v:ST_StrokeEndCap" use="optional"/> <xsd:attribute name="dashstyle" type="xsd:string" use="optional"/> <xsd:attribute name="insetpen" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="filltype" type="v:ST_FillType" use="optional"/> <xsd:attribute name="src" type="xsd:string" use="optional"/> <xsd:attribute name="imageaspect" type="v:ST_ImageAspect" use="optional"/> <xsd:attribute name="imagesize" type="xsd:string" use="optional"/> <xsd:attribute name="imagealignshape" type="s:ST_TrueFalse" use="optional"/> <xsd:attribute name="startarrow" type="v:ST_StrokeArrowType" use="optional"/> <xsd:attribute name="startarrowwidth" type="v:ST_StrokeArrowWidth" use="optional"/> <xsd:attribute name="startarrowlength" type="v:ST_StrokeArrowLength" use="optional"/> <xsd:attribute name="endarrow" type="v:ST_StrokeArrowType" use="optional"/> <xsd:attribute name="endarrowwidth" type="v:ST_StrokeArrowWidth" use="optional"/> <xsd:attribute name="endarrowlength" type="v:ST_StrokeArrowLength" use="optional"/> <xsd:attribute ref="href"/> <xsd:attribute ref="althref"/> <xsd:attribute ref="title"/> <xsd:attribute ref="forcedash"/> </xsd:complexType> <xsd:complexType name="CT_ClipPath"> <xsd:attribute name="v" type="xsd:string" use="required" form="qualified"/> </xsd:complexType> <xsd:complexType name="CT_Fill"> <xsd:attributeGroup ref="v:AG_Ext"/> <xsd:attribute name="type" type="ST_FillType"/> </xsd:complexType> <xsd:simpleType name="ST_RType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="arc"/> <xsd:enumeration value="callout"/> <xsd:enumeration value="connector"/> <xsd:enumeration value="align"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_How"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="top"/> <xsd:enumeration value="middle"/> <xsd:enumeration value="bottom"/> <xsd:enumeration value="left"/> <xsd:enumeration value="center"/> <xsd:enumeration value="right"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_BWMode"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="color"/> <xsd:enumeration value="auto"/> <xsd:enumeration value="grayScale"/> <xsd:enumeration value="lightGrayscale"/> <xsd:enumeration value="inverseGray"/> <xsd:enumeration value="grayOutline"/> <xsd:enumeration value="highContrast"/> <xsd:enumeration value="black"/> <xsd:enumeration value="white"/> <xsd:enumeration value="hide"/> <xsd:enumeration value="undrawn"/> <xsd:enumeration value="blackTextAndLines"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_ScreenSize"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="544,376"/> <xsd:enumeration value="640,480"/> <xsd:enumeration value="720,512"/> <xsd:enumeration value="800,600"/> <xsd:enumeration value="1024,768"/> <xsd:enumeration value="1152,862"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_InsetMode"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="auto"/> <xsd:enumeration value="custom"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_ColorMode"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="auto"/> <xsd:enumeration value="custom"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_ContentType"> <xsd:restriction base="xsd:string"/> </xsd:simpleType> <xsd:simpleType name="ST_DiagramLayout"> <xsd:restriction base="xsd:integer"> <xsd:enumeration value="0"/> <xsd:enumeration value="1"/> <xsd:enumeration value="2"/> <xsd:enumeration value="3"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_ExtrusionType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="perspective"/> <xsd:enumeration value="parallel"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_ExtrusionRender"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="solid"/> <xsd:enumeration value="wireFrame"/> <xsd:enumeration value="boundingCube"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_ExtrusionPlane"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="XY"/> <xsd:enumeration value="ZX"/> <xsd:enumeration value="YZ"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_Angle"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="any"/> <xsd:enumeration value="30"/> <xsd:enumeration value="45"/> <xsd:enumeration value="60"/> <xsd:enumeration value="90"/> <xsd:enumeration value="auto"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_CalloutDrop"> <xsd:restriction base="xsd:string"/> </xsd:simpleType> <xsd:simpleType name="ST_CalloutPlacement"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="top"/> <xsd:enumeration value="center"/> <xsd:enumeration value="bottom"/> <xsd:enumeration value="user"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_ConnectorType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="none"/> <xsd:enumeration value="straight"/> <xsd:enumeration value="elbow"/> <xsd:enumeration value="curved"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_HrAlign"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="left"/> <xsd:enumeration value="right"/> <xsd:enumeration value="center"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_ConnectType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="none"/> <xsd:enumeration value="rect"/> <xsd:enumeration value="segments"/> <xsd:enumeration value="custom"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_OLELinkType"> <xsd:restriction base="xsd:string"/> </xsd:simpleType> <xsd:simpleType name="ST_OLEType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="Embed"/> <xsd:enumeration value="Link"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_OLEDrawAspect"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="Content"/> <xsd:enumeration value="Icon"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_OLEUpdateMode"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="Always"/> <xsd:enumeration value="OnCall"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_FillType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="gradientCenter"/> <xsd:enumeration value="solid"/> <xsd:enumeration value="pattern"/> <xsd:enumeration value="tile"/> <xsd:enumeration value="frame"/> <xsd:enumeration value="gradientUnscaled"/> <xsd:enumeration value="gradientRadial"/> <xsd:enumeration value="gradient"/> <xsd:enumeration value="background"/> </xsd:restriction> </xsd:simpleType> </xsd:schema> ================================================ FILE: skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd ================================================ <?xml version="1.0" encoding="utf-8"?> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="urn:schemas-microsoft-com:office:powerpoint" targetNamespace="urn:schemas-microsoft-com:office:powerpoint" elementFormDefault="qualified" attributeFormDefault="unqualified"> <xsd:element name="iscomment" type="CT_Empty"/> <xsd:element name="textdata" type="CT_Rel"/> <xsd:complexType name="CT_Empty"/> <xsd:complexType name="CT_Rel"> <xsd:attribute name="id" type="xsd:string"/> </xsd:complexType> </xsd:schema> ================================================ FILE: skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd ================================================ <?xml version="1.0" encoding="utf-8"?> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="urn:schemas-microsoft-com:office:excel" xmlns:s="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes" targetNamespace="urn:schemas-microsoft-com:office:excel" elementFormDefault="qualified" attributeFormDefault="unqualified"> <xsd:import namespace="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes" schemaLocation="shared-commonSimpleTypes.xsd"/> <xsd:element name="ClientData" type="CT_ClientData"/> <xsd:complexType name="CT_ClientData"> <xsd:choice minOccurs="0" maxOccurs="unbounded"> <xsd:element name="MoveWithCells" type="s:ST_TrueFalseBlank"/> <xsd:element name="SizeWithCells" type="s:ST_TrueFalseBlank"/> <xsd:element name="Anchor" type="xsd:string"/> <xsd:element name="Locked" type="s:ST_TrueFalseBlank"/> <xsd:element name="DefaultSize" type="s:ST_TrueFalseBlank"/> <xsd:element name="PrintObject" type="s:ST_TrueFalseBlank"/> <xsd:element name="Disabled" type="s:ST_TrueFalseBlank"/> <xsd:element name="AutoFill" type="s:ST_TrueFalseBlank"/> <xsd:element name="AutoLine" type="s:ST_TrueFalseBlank"/> <xsd:element name="AutoPict" type="s:ST_TrueFalseBlank"/> <xsd:element name="FmlaMacro" type="xsd:string"/> <xsd:element name="TextHAlign" type="xsd:string"/> <xsd:element name="TextVAlign" type="xsd:string"/> <xsd:element name="LockText" type="s:ST_TrueFalseBlank"/> <xsd:element name="JustLastX" type="s:ST_TrueFalseBlank"/> <xsd:element name="SecretEdit" type="s:ST_TrueFalseBlank"/> <xsd:element name="Default" type="s:ST_TrueFalseBlank"/> <xsd:element name="Help" type="s:ST_TrueFalseBlank"/> <xsd:element name="Cancel" type="s:ST_TrueFalseBlank"/> <xsd:element name="Dismiss" type="s:ST_TrueFalseBlank"/> <xsd:element name="Accel" type="xsd:integer"/> <xsd:element name="Accel2" type="xsd:integer"/> <xsd:element name="Row" type="xsd:integer"/> <xsd:element name="Column" type="xsd:integer"/> <xsd:element name="Visible" type="s:ST_TrueFalseBlank"/> <xsd:element name="RowHidden" type="s:ST_TrueFalseBlank"/> <xsd:element name="ColHidden" type="s:ST_TrueFalseBlank"/> <xsd:element name="VTEdit" type="xsd:integer"/> <xsd:element name="MultiLine" type="s:ST_TrueFalseBlank"/> <xsd:element name="VScroll" type="s:ST_TrueFalseBlank"/> <xsd:element name="ValidIds" type="s:ST_TrueFalseBlank"/> <xsd:element name="FmlaRange" type="xsd:string"/> <xsd:element name="WidthMin" type="xsd:integer"/> <xsd:element name="Sel" type="xsd:integer"/> <xsd:element name="NoThreeD2" type="s:ST_TrueFalseBlank"/> <xsd:element name="SelType" type="xsd:string"/> <xsd:element name="MultiSel" type="xsd:string"/> <xsd:element name="LCT" type="xsd:string"/> <xsd:element name="ListItem" type="xsd:string"/> <xsd:element name="DropStyle" type="xsd:string"/> <xsd:element name="Colored" type="s:ST_TrueFalseBlank"/> <xsd:element name="DropLines" type="xsd:integer"/> <xsd:element name="Checked" type="xsd:integer"/> <xsd:element name="FmlaLink" type="xsd:string"/> <xsd:element name="FmlaPict" type="xsd:string"/> <xsd:element name="NoThreeD" type="s:ST_TrueFalseBlank"/> <xsd:element name="FirstButton" type="s:ST_TrueFalseBlank"/> <xsd:element name="FmlaGroup" type="xsd:string"/> <xsd:element name="Val" type="xsd:integer"/> <xsd:element name="Min" type="xsd:integer"/> <xsd:element name="Max" type="xsd:integer"/> <xsd:element name="Inc" type="xsd:integer"/> <xsd:element name="Page" type="xsd:integer"/> <xsd:element name="Horiz" type="s:ST_TrueFalseBlank"/> <xsd:element name="Dx" type="xsd:integer"/> <xsd:element name="MapOCX" type="s:ST_TrueFalseBlank"/> <xsd:element name="CF" type="ST_CF"/> <xsd:element name="Camera" type="s:ST_TrueFalseBlank"/> <xsd:element name="RecalcAlways" type="s:ST_TrueFalseBlank"/> <xsd:element name="AutoScale" type="s:ST_TrueFalseBlank"/> <xsd:element name="DDE" type="s:ST_TrueFalseBlank"/> <xsd:element name="UIObj" type="s:ST_TrueFalseBlank"/> <xsd:element name="ScriptText" type="xsd:string"/> <xsd:element name="ScriptExtended" type="xsd:string"/> <xsd:element name="ScriptLanguage" type="xsd:nonNegativeInteger"/> <xsd:element name="ScriptLocation" type="xsd:nonNegativeInteger"/> <xsd:element name="FmlaTxbx" type="xsd:string"/> </xsd:choice> <xsd:attribute name="ObjectType" type="ST_ObjectType" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_CF"> <xsd:restriction base="xsd:string"/> </xsd:simpleType> <xsd:simpleType name="ST_ObjectType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="Button"/> <xsd:enumeration value="Checkbox"/> <xsd:enumeration value="Dialog"/> <xsd:enumeration value="Drop"/> <xsd:enumeration value="Edit"/> <xsd:enumeration value="GBox"/> <xsd:enumeration value="Label"/> <xsd:enumeration value="LineA"/> <xsd:enumeration value="List"/> <xsd:enumeration value="Movie"/> <xsd:enumeration value="Note"/> <xsd:enumeration value="Pict"/> <xsd:enumeration value="Radio"/> <xsd:enumeration value="RectA"/> <xsd:enumeration value="Scroll"/> <xsd:enumeration value="Spin"/> <xsd:enumeration value="Shape"/> <xsd:enumeration value="Group"/> <xsd:enumeration value="Rect"/> </xsd:restriction> </xsd:simpleType> </xsd:schema> ================================================ FILE: skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd ================================================ <?xml version="1.0" encoding="utf-8"?> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="urn:schemas-microsoft-com:office:word" targetNamespace="urn:schemas-microsoft-com:office:word" elementFormDefault="qualified" attributeFormDefault="unqualified"> <xsd:element name="bordertop" type="CT_Border"/> <xsd:element name="borderleft" type="CT_Border"/> <xsd:element name="borderright" type="CT_Border"/> <xsd:element name="borderbottom" type="CT_Border"/> <xsd:complexType name="CT_Border"> <xsd:attribute name="type" type="ST_BorderType" use="optional"/> <xsd:attribute name="width" type="xsd:positiveInteger" use="optional"/> <xsd:attribute name="shadow" type="ST_BorderShadow" use="optional"/> </xsd:complexType> <xsd:element name="wrap" type="CT_Wrap"/> <xsd:complexType name="CT_Wrap"> <xsd:attribute name="type" type="ST_WrapType" use="optional"/> <xsd:attribute name="side" type="ST_WrapSide" use="optional"/> <xsd:attribute name="anchorx" type="ST_HorizontalAnchor" use="optional"/> <xsd:attribute name="anchory" type="ST_VerticalAnchor" use="optional"/> </xsd:complexType> <xsd:element name="anchorlock" type="CT_AnchorLock"/> <xsd:complexType name="CT_AnchorLock"/> <xsd:simpleType name="ST_BorderType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="none"/> <xsd:enumeration value="single"/> <xsd:enumeration value="thick"/> <xsd:enumeration value="double"/> <xsd:enumeration value="hairline"/> <xsd:enumeration value="dot"/> <xsd:enumeration value="dash"/> <xsd:enumeration value="dotDash"/> <xsd:enumeration value="dashDotDot"/> <xsd:enumeration value="triple"/> <xsd:enumeration value="thinThickSmall"/> <xsd:enumeration value="thickThinSmall"/> <xsd:enumeration value="thickBetweenThinSmall"/> <xsd:enumeration value="thinThick"/> <xsd:enumeration value="thickThin"/> <xsd:enumeration value="thickBetweenThin"/> <xsd:enumeration value="thinThickLarge"/> <xsd:enumeration value="thickThinLarge"/> <xsd:enumeration value="thickBetweenThinLarge"/> <xsd:enumeration value="wave"/> <xsd:enumeration value="doubleWave"/> <xsd:enumeration value="dashedSmall"/> <xsd:enumeration value="dashDotStroked"/> <xsd:enumeration value="threeDEmboss"/> <xsd:enumeration value="threeDEngrave"/> <xsd:enumeration value="HTMLOutset"/> <xsd:enumeration value="HTMLInset"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_BorderShadow"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="t"/> <xsd:enumeration value="true"/> <xsd:enumeration value="f"/> <xsd:enumeration value="false"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_WrapType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="topAndBottom"/> <xsd:enumeration value="square"/> <xsd:enumeration value="none"/> <xsd:enumeration value="tight"/> <xsd:enumeration value="through"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_WrapSide"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="both"/> <xsd:enumeration value="left"/> <xsd:enumeration value="right"/> <xsd:enumeration value="largest"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_HorizontalAnchor"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="margin"/> <xsd:enumeration value="page"/> <xsd:enumeration value="text"/> <xsd:enumeration value="char"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_VerticalAnchor"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="margin"/> <xsd:enumeration value="page"/> <xsd:enumeration value="text"/> <xsd:enumeration value="line"/> </xsd:restriction> </xsd:simpleType> </xsd:schema> ================================================ FILE: skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/wml.xsd ================================================ <?xml version="1.0" encoding="utf-8"?> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:sl="http://schemas.openxmlformats.org/schemaLibrary/2006/main" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:s="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" elementFormDefault="qualified" attributeFormDefault="qualified" blockDefault="#all" targetNamespace="http://schemas.openxmlformats.org/wordprocessingml/2006/main"> <xsd:import namespace="http://schemas.openxmlformats.org/markup-compatibility/2006" schemaLocation="../mce/mc.xsd"/> <xsd:import namespace="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" schemaLocation="dml-wordprocessingDrawing.xsd"/> <xsd:import namespace="http://schemas.openxmlformats.org/officeDocument/2006/math" schemaLocation="shared-math.xsd"/> <xsd:import namespace="http://schemas.openxmlformats.org/officeDocument/2006/relationships" schemaLocation="shared-relationshipReference.xsd"/> <xsd:import namespace="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes" schemaLocation="shared-commonSimpleTypes.xsd"/> <xsd:import namespace="http://schemas.openxmlformats.org/schemaLibrary/2006/main" schemaLocation="shared-customXmlSchemaProperties.xsd"/> <xsd:import namespace="http://www.w3.org/XML/1998/namespace"/> <xsd:complexType name="CT_Empty"/> <xsd:complexType name="CT_OnOff"> <xsd:attribute name="val" type="s:ST_OnOff"/> </xsd:complexType> <xsd:simpleType name="ST_LongHexNumber"> <xsd:restriction base="xsd:hexBinary"> <xsd:length value="4"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_LongHexNumber"> <xsd:attribute name="val" type="ST_LongHexNumber" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_ShortHexNumber"> <xsd:restriction base="xsd:hexBinary"> <xsd:length value="2"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_UcharHexNumber"> <xsd:restriction base="xsd:hexBinary"> <xsd:length value="1"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Charset"> <xsd:attribute name="val" type="ST_UcharHexNumber" use="optional"/> <xsd:attribute name="characterSet" type="s:ST_String" use="optional" default="ISO-8859-1"/> </xsd:complexType> <xsd:simpleType name="ST_DecimalNumberOrPercent"> <xsd:union memberTypes="ST_UnqualifiedPercentage s:ST_Percentage"/> </xsd:simpleType> <xsd:simpleType name="ST_UnqualifiedPercentage"> <xsd:restriction base="xsd:decimal"/> </xsd:simpleType> <xsd:simpleType name="ST_DecimalNumber"> <xsd:restriction base="xsd:integer"/> </xsd:simpleType> <xsd:complexType name="CT_DecimalNumber"> <xsd:attribute name="val" type="ST_DecimalNumber" use="required"/> </xsd:complexType> <xsd:complexType name="CT_UnsignedDecimalNumber"> <xsd:attribute name="val" type="s:ST_UnsignedDecimalNumber" use="required"/> </xsd:complexType> <xsd:complexType name="CT_DecimalNumberOrPrecent"> <xsd:attribute name="val" type="ST_DecimalNumberOrPercent" use="required"/> </xsd:complexType> <xsd:complexType name="CT_TwipsMeasure"> <xsd:attribute name="val" type="s:ST_TwipsMeasure" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_SignedTwipsMeasure"> <xsd:union memberTypes="xsd:integer s:ST_UniversalMeasure"/> </xsd:simpleType> <xsd:complexType name="CT_SignedTwipsMeasure"> <xsd:attribute name="val" type="ST_SignedTwipsMeasure" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_PixelsMeasure"> <xsd:restriction base="s:ST_UnsignedDecimalNumber"/> </xsd:simpleType> <xsd:complexType name="CT_PixelsMeasure"> <xsd:attribute name="val" type="ST_PixelsMeasure" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_HpsMeasure"> <xsd:union memberTypes="s:ST_UnsignedDecimalNumber s:ST_PositiveUniversalMeasure"/> </xsd:simpleType> <xsd:complexType name="CT_HpsMeasure"> <xsd:attribute name="val" type="ST_HpsMeasure" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_SignedHpsMeasure"> <xsd:union memberTypes="xsd:integer s:ST_UniversalMeasure"/> </xsd:simpleType> <xsd:complexType name="CT_SignedHpsMeasure"> <xsd:attribute name="val" type="ST_SignedHpsMeasure" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_DateTime"> <xsd:restriction base="xsd:dateTime"/> </xsd:simpleType> <xsd:simpleType name="ST_MacroName"> <xsd:restriction base="xsd:string"> <xsd:maxLength value="33"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_MacroName"> <xsd:attribute name="val" use="required" type="ST_MacroName"/> </xsd:complexType> <xsd:simpleType name="ST_EighthPointMeasure"> <xsd:restriction base="s:ST_UnsignedDecimalNumber"/> </xsd:simpleType> <xsd:simpleType name="ST_PointMeasure"> <xsd:restriction base="s:ST_UnsignedDecimalNumber"/> </xsd:simpleType> <xsd:complexType name="CT_String"> <xsd:attribute name="val" type="s:ST_String" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_TextScale"> <xsd:union memberTypes="ST_TextScalePercent ST_TextScaleDecimal"/> </xsd:simpleType> <xsd:simpleType name="ST_TextScalePercent"> <xsd:restriction base="xsd:string"> <xsd:pattern value="0*(600|([0-5]?[0-9]?[0-9]))%"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_TextScaleDecimal"> <xsd:restriction base="xsd:integer"> <xsd:minInclusive value="0"/> <xsd:maxInclusive value="600"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_TextScale"> <xsd:attribute name="val" type="ST_TextScale"/> </xsd:complexType> <xsd:simpleType name="ST_HighlightColor"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="black"/> <xsd:enumeration value="blue"/> <xsd:enumeration value="cyan"/> <xsd:enumeration value="green"/> <xsd:enumeration value="magenta"/> <xsd:enumeration value="red"/> <xsd:enumeration value="yellow"/> <xsd:enumeration value="white"/> <xsd:enumeration value="darkBlue"/> <xsd:enumeration value="darkCyan"/> <xsd:enumeration value="darkGreen"/> <xsd:enumeration value="darkMagenta"/> <xsd:enumeration value="darkRed"/> <xsd:enumeration value="darkYellow"/> <xsd:enumeration value="darkGray"/> <xsd:enumeration value="lightGray"/> <xsd:enumeration value="none"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Highlight"> <xsd:attribute name="val" type="ST_HighlightColor" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_HexColorAuto"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="auto"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_HexColor"> <xsd:union memberTypes="ST_HexColorAuto s:ST_HexColorRGB"/> </xsd:simpleType> <xsd:complexType name="CT_Color"> <xsd:attribute name="val" type="ST_HexColor" use="required"/> <xsd:attribute name="themeColor" type="ST_ThemeColor" use="optional"/> <xsd:attribute name="themeTint" type="ST_UcharHexNumber" use="optional"/> <xsd:attribute name="themeShade" type="ST_UcharHexNumber" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_Lang"> <xsd:attribute name="val" type="s:ST_Lang" use="required"/> </xsd:complexType> <xsd:complexType name="CT_Guid"> <xsd:attribute name="val" type="s:ST_Guid"/> </xsd:complexType> <xsd:simpleType name="ST_Underline"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="single"/> <xsd:enumeration value="words"/> <xsd:enumeration value="double"/> <xsd:enumeration value="thick"/> <xsd:enumeration value="dotted"/> <xsd:enumeration value="dottedHeavy"/> <xsd:enumeration value="dash"/> <xsd:enumeration value="dashedHeavy"/> <xsd:enumeration value="dashLong"/> <xsd:enumeration value="dashLongHeavy"/> <xsd:enumeration value="dotDash"/> <xsd:enumeration value="dashDotHeavy"/> <xsd:enumeration value="dotDotDash"/> <xsd:enumeration value="dashDotDotHeavy"/> <xsd:enumeration value="wave"/> <xsd:enumeration value="wavyHeavy"/> <xsd:enumeration value="wavyDouble"/> <xsd:enumeration value="none"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Underline"> <xsd:attribute name="val" type="ST_Underline" use="optional"/> <xsd:attribute name="color" type="ST_HexColor" use="optional" default="auto"/> <xsd:attribute name="themeColor" type="ST_ThemeColor" use="optional"/> <xsd:attribute name="themeTint" type="ST_UcharHexNumber" use="optional"/> <xsd:attribute name="themeShade" type="ST_UcharHexNumber" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_TextEffect"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="blinkBackground"/> <xsd:enumeration value="lights"/> <xsd:enumeration value="antsBlack"/> <xsd:enumeration value="antsRed"/> <xsd:enumeration value="shimmer"/> <xsd:enumeration value="sparkle"/> <xsd:enumeration value="none"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_TextEffect"> <xsd:attribute name="val" type="ST_TextEffect" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_Border"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="nil"/> <xsd:enumeration value="none"/> <xsd:enumeration value="single"/> <xsd:enumeration value="thick"/> <xsd:enumeration value="double"/> <xsd:enumeration value="dotted"/> <xsd:enumeration value="dashed"/> <xsd:enumeration value="dotDash"/> <xsd:enumeration value="dotDotDash"/> <xsd:enumeration value="triple"/> <xsd:enumeration value="thinThickSmallGap"/> <xsd:enumeration value="thickThinSmallGap"/> <xsd:enumeration value="thinThickThinSmallGap"/> <xsd:enumeration value="thinThickMediumGap"/> <xsd:enumeration value="thickThinMediumGap"/> <xsd:enumeration value="thinThickThinMediumGap"/> <xsd:enumeration value="thinThickLargeGap"/> <xsd:enumeration value="thickThinLargeGap"/> <xsd:enumeration value="thinThickThinLargeGap"/> <xsd:enumeration value="wave"/> <xsd:enumeration value="doubleWave"/> <xsd:enumeration value="dashSmallGap"/> <xsd:enumeration value="dashDotStroked"/> <xsd:enumeration value="threeDEmboss"/> <xsd:enumeration value="threeDEngrave"/> <xsd:enumeration value="outset"/> <xsd:enumeration value="inset"/> <xsd:enumeration value="apples"/> <xsd:enumeration value="archedScallops"/> <xsd:enumeration value="babyPacifier"/> <xsd:enumeration value="babyRattle"/> <xsd:enumeration value="balloons3Colors"/> <xsd:enumeration value="balloonsHotAir"/> <xsd:enumeration value="basicBlackDashes"/> <xsd:enumeration value="basicBlackDots"/> <xsd:enumeration value="basicBlackSquares"/> <xsd:enumeration value="basicThinLines"/> <xsd:enumeration value="basicWhiteDashes"/> <xsd:enumeration value="basicWhiteDots"/> <xsd:enumeration value="basicWhiteSquares"/> <xsd:enumeration value="basicWideInline"/> <xsd:enumeration value="basicWideMidline"/> <xsd:enumeration value="basicWideOutline"/> <xsd:enumeration value="bats"/> <xsd:enumeration value="birds"/> <xsd:enumeration value="birdsFlight"/> <xsd:enumeration value="cabins"/> <xsd:enumeration value="cakeSlice"/> <xsd:enumeration value="candyCorn"/> <xsd:enumeration value="celticKnotwork"/> <xsd:enumeration value="certificateBanner"/> <xsd:enumeration value="chainLink"/> <xsd:enumeration value="champagneBottle"/> <xsd:enumeration value="checkedBarBlack"/> <xsd:enumeration value="checkedBarColor"/> <xsd:enumeration value="checkered"/> <xsd:enumeration value="christmasTree"/> <xsd:enumeration value="circlesLines"/> <xsd:enumeration value="circlesRectangles"/> <xsd:enumeration value="classicalWave"/> <xsd:enumeration value="clocks"/> <xsd:enumeration value="compass"/> <xsd:enumeration value="confetti"/> <xsd:enumeration value="confettiGrays"/> <xsd:enumeration value="confettiOutline"/> <xsd:enumeration value="confettiStreamers"/> <xsd:enumeration value="confettiWhite"/> <xsd:enumeration value="cornerTriangles"/> <xsd:enumeration value="couponCutoutDashes"/> <xsd:enumeration value="couponCutoutDots"/> <xsd:enumeration value="crazyMaze"/> <xsd:enumeration value="creaturesButterfly"/> <xsd:enumeration value="creaturesFish"/> <xsd:enumeration value="creaturesInsects"/> <xsd:enumeration value="creaturesLadyBug"/> <xsd:enumeration value="crossStitch"/> <xsd:enumeration value="cup"/> <xsd:enumeration value="decoArch"/> <xsd:enumeration value="decoArchColor"/> <xsd:enumeration value="decoBlocks"/> <xsd:enumeration value="diamondsGray"/> <xsd:enumeration value="doubleD"/> <xsd:enumeration value="doubleDiamonds"/> <xsd:enumeration value="earth1"/> <xsd:enumeration value="earth2"/> <xsd:enumeration value="earth3"/> <xsd:enumeration value="eclipsingSquares1"/> <xsd:enumeration value="eclipsingSquares2"/> <xsd:enumeration value="eggsBlack"/> <xsd:enumeration value="fans"/> <xsd:enumeration value="film"/> <xsd:enumeration value="firecrackers"/> <xsd:enumeration value="flowersBlockPrint"/> <xsd:enumeration value="flowersDaisies"/> <xsd:enumeration value="flowersModern1"/> <xsd:enumeration value="flowersModern2"/> <xsd:enumeration value="flowersPansy"/> <xsd:enumeration value="flowersRedRose"/> <xsd:enumeration value="flowersRoses"/> <xsd:enumeration value="flowersTeacup"/> <xsd:enumeration value="flowersTiny"/> <xsd:enumeration value="gems"/> <xsd:enumeration value="gingerbreadMan"/> <xsd:enumeration value="gradient"/> <xsd:enumeration value="handmade1"/> <xsd:enumeration value="handmade2"/> <xsd:enumeration value="heartBalloon"/> <xsd:enumeration value="heartGray"/> <xsd:enumeration value="hearts"/> <xsd:enumeration value="heebieJeebies"/> <xsd:enumeration value="holly"/> <xsd:enumeration value="houseFunky"/> <xsd:enumeration value="hypnotic"/> <xsd:enumeration value="iceCreamCones"/> <xsd:enumeration value="lightBulb"/> <xsd:enumeration value="lightning1"/> <xsd:enumeration value="lightning2"/> <xsd:enumeration value="mapPins"/> <xsd:enumeration value="mapleLeaf"/> <xsd:enumeration value="mapleMuffins"/> <xsd:enumeration value="marquee"/> <xsd:enumeration value="marqueeToothed"/> <xsd:enumeration value="moons"/> <xsd:enumeration value="mosaic"/> <xsd:enumeration value="musicNotes"/> <xsd:enumeration value="northwest"/> <xsd:enumeration value="ovals"/> <xsd:enumeration value="packages"/> <xsd:enumeration value="palmsBlack"/> <xsd:enumeration value="palmsColor"/> <xsd:enumeration value="paperClips"/> <xsd:enumeration value="papyrus"/> <xsd:enumeration value="partyFavor"/> <xsd:enumeration value="partyGlass"/> <xsd:enumeration value="pencils"/> <xsd:enumeration value="people"/> <xsd:enumeration value="peopleWaving"/> <xsd:enumeration value="peopleHats"/> <xsd:enumeration value="poinsettias"/> <xsd:enumeration value="postageStamp"/> <xsd:enumeration value="pumpkin1"/> <xsd:enumeration value="pushPinNote2"/> <xsd:enumeration value="pushPinNote1"/> <xsd:enumeration value="pyramids"/> <xsd:enumeration value="pyramidsAbove"/> <xsd:enumeration value="quadrants"/> <xsd:enumeration value="rings"/> <xsd:enumeration value="safari"/> <xsd:enumeration value="sawtooth"/> <xsd:enumeration value="sawtoothGray"/> <xsd:enumeration value="scaredCat"/> <xsd:enumeration value="seattle"/> <xsd:enumeration value="shadowedSquares"/> <xsd:enumeration value="sharksTeeth"/> <xsd:enumeration value="shorebirdTracks"/> <xsd:enumeration value="skyrocket"/> <xsd:enumeration value="snowflakeFancy"/> <xsd:enumeration value="snowflakes"/> <xsd:enumeration value="sombrero"/> <xsd:enumeration value="southwest"/> <xsd:enumeration value="stars"/> <xsd:enumeration value="starsTop"/> <xsd:enumeration value="stars3d"/> <xsd:enumeration value="starsBlack"/> <xsd:enumeration value="starsShadowed"/> <xsd:enumeration value="sun"/> <xsd:enumeration value="swirligig"/> <xsd:enumeration value="tornPaper"/> <xsd:enumeration value="tornPaperBlack"/> <xsd:enumeration value="trees"/> <xsd:enumeration value="triangleParty"/> <xsd:enumeration value="triangles"/> <xsd:enumeration value="triangle1"/> <xsd:enumeration value="triangle2"/> <xsd:enumeration value="triangleCircle1"/> <xsd:enumeration value="triangleCircle2"/> <xsd:enumeration value="shapes1"/> <xsd:enumeration value="shapes2"/> <xsd:enumeration value="twistedLines1"/> <xsd:enumeration value="twistedLines2"/> <xsd:enumeration value="vine"/> <xsd:enumeration value="waveline"/> <xsd:enumeration value="weavingAngles"/> <xsd:enumeration value="weavingBraid"/> <xsd:enumeration value="weavingRibbon"/> <xsd:enumeration value="weavingStrips"/> <xsd:enumeration value="whiteFlowers"/> <xsd:enumeration value="woodwork"/> <xsd:enumeration value="xIllusions"/> <xsd:enumeration value="zanyTriangles"/> <xsd:enumeration value="zigZag"/> <xsd:enumeration value="zigZagStitch"/> <xsd:enumeration value="custom"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Border"> <xsd:attribute name="val" type="ST_Border" use="required"/> <xsd:attribute name="color" type="ST_HexColor" use="optional" default="auto"/> <xsd:attribute name="themeColor" type="ST_ThemeColor" use="optional"/> <xsd:attribute name="themeTint" type="ST_UcharHexNumber" use="optional"/> <xsd:attribute name="themeShade" type="ST_UcharHexNumber" use="optional"/> <xsd:attribute name="sz" type="ST_EighthPointMeasure" use="optional"/> <xsd:attribute name="space" type="ST_PointMeasure" use="optional" default="0"/> <xsd:attribute name="shadow" type="s:ST_OnOff" use="optional"/> <xsd:attribute name="frame" type="s:ST_OnOff" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_Shd"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="nil"/> <xsd:enumeration value="clear"/> <xsd:enumeration value="solid"/> <xsd:enumeration value="horzStripe"/> <xsd:enumeration value="vertStripe"/> <xsd:enumeration value="reverseDiagStripe"/> <xsd:enumeration value="diagStripe"/> <xsd:enumeration value="horzCross"/> <xsd:enumeration value="diagCross"/> <xsd:enumeration value="thinHorzStripe"/> <xsd:enumeration value="thinVertStripe"/> <xsd:enumeration value="thinReverseDiagStripe"/> <xsd:enumeration value="thinDiagStripe"/> <xsd:enumeration value="thinHorzCross"/> <xsd:enumeration value="thinDiagCross"/> <xsd:enumeration value="pct5"/> <xsd:enumeration value="pct10"/> <xsd:enumeration value="pct12"/> <xsd:enumeration value="pct15"/> <xsd:enumeration value="pct20"/> <xsd:enumeration value="pct25"/> <xsd:enumeration value="pct30"/> <xsd:enumeration value="pct35"/> <xsd:enumeration value="pct37"/> <xsd:enumeration value="pct40"/> <xsd:enumeration value="pct45"/> <xsd:enumeration value="pct50"/> <xsd:enumeration value="pct55"/> <xsd:enumeration value="pct60"/> <xsd:enumeration value="pct62"/> <xsd:enumeration value="pct65"/> <xsd:enumeration value="pct70"/> <xsd:enumeration value="pct75"/> <xsd:enumeration value="pct80"/> <xsd:enumeration value="pct85"/> <xsd:enumeration value="pct87"/> <xsd:enumeration value="pct90"/> <xsd:enumeration value="pct95"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Shd"> <xsd:attribute name="val" type="ST_Shd" use="required"/> <xsd:attribute name="color" type="ST_HexColor" use="optional"/> <xsd:attribute name="themeColor" type="ST_ThemeColor" use="optional"/> <xsd:attribute name="themeTint" type="ST_UcharHexNumber" use="optional"/> <xsd:attribute name="themeShade" type="ST_UcharHexNumber" use="optional"/> <xsd:attribute name="fill" type="ST_HexColor" use="optional"/> <xsd:attribute name="themeFill" type="ST_ThemeColor" use="optional"/> <xsd:attribute name="themeFillTint" type="ST_UcharHexNumber" use="optional"/> <xsd:attribute name="themeFillShade" type="ST_UcharHexNumber" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_VerticalAlignRun"> <xsd:attribute name="val" type="s:ST_VerticalAlignRun" use="required"/> </xsd:complexType> <xsd:complexType name="CT_FitText"> <xsd:attribute name="val" type="s:ST_TwipsMeasure" use="required"/> <xsd:attribute name="id" type="ST_DecimalNumber" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_Em"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="none"/> <xsd:enumeration value="dot"/> <xsd:enumeration value="comma"/> <xsd:enumeration value="circle"/> <xsd:enumeration value="underDot"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Em"> <xsd:attribute name="val" type="ST_Em" use="required"/> </xsd:complexType> <xsd:complexType name="CT_Language"> <xsd:attribute name="val" type="s:ST_Lang" use="optional"/> <xsd:attribute name="eastAsia" type="s:ST_Lang" use="optional"/> <xsd:attribute name="bidi" type="s:ST_Lang" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_CombineBrackets"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="none"/> <xsd:enumeration value="round"/> <xsd:enumeration value="square"/> <xsd:enumeration value="angle"/> <xsd:enumeration value="curly"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_EastAsianLayout"> <xsd:attribute name="id" type="ST_DecimalNumber" use="optional"/> <xsd:attribute name="combine" type="s:ST_OnOff" use="optional"/> <xsd:attribute name="combineBrackets" type="ST_CombineBrackets" use="optional"/> <xsd:attribute name="vert" type="s:ST_OnOff" use="optional"/> <xsd:attribute name="vertCompress" type="s:ST_OnOff" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_HeightRule"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="auto"/> <xsd:enumeration value="exact"/> <xsd:enumeration value="atLeast"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_Wrap"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="auto"/> <xsd:enumeration value="notBeside"/> <xsd:enumeration value="around"/> <xsd:enumeration value="tight"/> <xsd:enumeration value="through"/> <xsd:enumeration value="none"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_VAnchor"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="text"/> <xsd:enumeration value="margin"/> <xsd:enumeration value="page"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_HAnchor"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="text"/> <xsd:enumeration value="margin"/> <xsd:enumeration value="page"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_DropCap"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="none"/> <xsd:enumeration value="drop"/> <xsd:enumeration value="margin"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_FramePr"> <xsd:attribute name="dropCap" type="ST_DropCap" use="optional"/> <xsd:attribute name="lines" type="ST_DecimalNumber" use="optional"/> <xsd:attribute name="w" type="s:ST_TwipsMeasure" use="optional"/> <xsd:attribute name="h" type="s:ST_TwipsMeasure" use="optional"/> <xsd:attribute name="vSpace" type="s:ST_TwipsMeasure" use="optional"/> <xsd:attribute name="hSpace" type="s:ST_TwipsMeasure" use="optional"/> <xsd:attribute name="wrap" type="ST_Wrap" use="optional"/> <xsd:attribute name="hAnchor" type="ST_HAnchor" use="optional"/> <xsd:attribute name="vAnchor" type="ST_VAnchor" use="optional"/> <xsd:attribute name="x" type="ST_SignedTwipsMeasure" use="optional"/> <xsd:attribute name="xAlign" type="s:ST_XAlign" use="optional"/> <xsd:attribute name="y" type="ST_SignedTwipsMeasure" use="optional"/> <xsd:attribute name="yAlign" type="s:ST_YAlign" use="optional"/> <xsd:attribute name="hRule" type="ST_HeightRule" use="optional"/> <xsd:attribute name="anchorLock" type="s:ST_OnOff" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_TabJc"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="clear"/> <xsd:enumeration value="start"/> <xsd:enumeration value="center"/> <xsd:enumeration value="end"/> <xsd:enumeration value="decimal"/> <xsd:enumeration value="bar"/> <xsd:enumeration value="num"/> <xsd:enumeration value="left"/> <xsd:enumeration value="right"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_TabTlc"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="none"/> <xsd:enumeration value="dot"/> <xsd:enumeration value="hyphen"/> <xsd:enumeration value="underscore"/> <xsd:enumeration value="heavy"/> <xsd:enumeration value="middleDot"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_TabStop"> <xsd:attribute name="val" type="ST_TabJc" use="required"/> <xsd:attribute name="leader" type="ST_TabTlc" use="optional"/> <xsd:attribute name="pos" type="ST_SignedTwipsMeasure" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_LineSpacingRule"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="auto"/> <xsd:enumeration value="exact"/> <xsd:enumeration value="atLeast"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Spacing"> <xsd:attribute name="before" type="s:ST_TwipsMeasure" use="optional" default="0"/> <xsd:attribute name="beforeLines" type="ST_DecimalNumber" use="optional" default="0"/> <xsd:attribute name="beforeAutospacing" type="s:ST_OnOff" use="optional" default="off"/> <xsd:attribute name="after" type="s:ST_TwipsMeasure" use="optional" default="0"/> <xsd:attribute name="afterLines" type="ST_DecimalNumber" use="optional" default="0"/> <xsd:attribute name="afterAutospacing" type="s:ST_OnOff" use="optional" default="off"/> <xsd:attribute name="line" type="ST_SignedTwipsMeasure" use="optional" default="0"/> <xsd:attribute name="lineRule" type="ST_LineSpacingRule" use="optional" default="auto"/> </xsd:complexType> <xsd:complexType name="CT_Ind"> <xsd:attribute name="start" type="ST_SignedTwipsMeasure" use="optional"/> <xsd:attribute name="startChars" type="ST_DecimalNumber" use="optional"/> <xsd:attribute name="end" type="ST_SignedTwipsMeasure" use="optional"/> <xsd:attribute name="endChars" type="ST_DecimalNumber" use="optional"/> <xsd:attribute name="left" type="ST_SignedTwipsMeasure" use="optional"/> <xsd:attribute name="leftChars" type="ST_DecimalNumber" use="optional"/> <xsd:attribute name="right" type="ST_SignedTwipsMeasure" use="optional"/> <xsd:attribute name="rightChars" type="ST_DecimalNumber" use="optional"/> <xsd:attribute name="hanging" type="s:ST_TwipsMeasure" use="optional"/> <xsd:attribute name="hangingChars" type="ST_DecimalNumber" use="optional"/> <xsd:attribute name="firstLine" type="s:ST_TwipsMeasure" use="optional"/> <xsd:attribute name="firstLineChars" type="ST_DecimalNumber" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_Jc"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="start"/> <xsd:enumeration value="center"/> <xsd:enumeration value="end"/> <xsd:enumeration value="both"/> <xsd:enumeration value="mediumKashida"/> <xsd:enumeration value="distribute"/> <xsd:enumeration value="numTab"/> <xsd:enumeration value="highKashida"/> <xsd:enumeration value="lowKashida"/> <xsd:enumeration value="thaiDistribute"/> <xsd:enumeration value="left"/> <xsd:enumeration value="right"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_JcTable"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="center"/> <xsd:enumeration value="end"/> <xsd:enumeration value="left"/> <xsd:enumeration value="right"/> <xsd:enumeration value="start"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Jc"> <xsd:attribute name="val" type="ST_Jc" use="required"/> </xsd:complexType> <xsd:complexType name="CT_JcTable"> <xsd:attribute name="val" type="ST_JcTable" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_View"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="none"/> <xsd:enumeration value="print"/> <xsd:enumeration value="outline"/> <xsd:enumeration value="masterPages"/> <xsd:enumeration value="normal"/> <xsd:enumeration value="web"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_View"> <xsd:attribute name="val" type="ST_View" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_Zoom"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="none"/> <xsd:enumeration value="fullPage"/> <xsd:enumeration value="bestFit"/> <xsd:enumeration value="textFit"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Zoom"> <xsd:attribute name="val" type="ST_Zoom" use="optional"/> <xsd:attribute name="percent" type="ST_DecimalNumberOrPercent" use="required"/> </xsd:complexType> <xsd:complexType name="CT_WritingStyle"> <xsd:attribute name="lang" type="s:ST_Lang" use="required"/> <xsd:attribute name="vendorID" type="s:ST_String" use="required"/> <xsd:attribute name="dllVersion" type="s:ST_String" use="required"/> <xsd:attribute name="nlCheck" type="s:ST_OnOff" use="optional" default="off"/> <xsd:attribute name="checkStyle" type="s:ST_OnOff" use="required"/> <xsd:attribute name="appName" type="s:ST_String" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_Proof"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="clean"/> <xsd:enumeration value="dirty"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Proof"> <xsd:attribute name="spelling" type="ST_Proof" use="optional"/> <xsd:attribute name="grammar" type="ST_Proof" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_DocType"> <xsd:restriction base="xsd:string"/> </xsd:simpleType> <xsd:complexType name="CT_DocType"> <xsd:attribute name="val" type="ST_DocType" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_DocProtect"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="none"/> <xsd:enumeration value="readOnly"/> <xsd:enumeration value="comments"/> <xsd:enumeration value="trackedChanges"/> <xsd:enumeration value="forms"/> </xsd:restriction> </xsd:simpleType> <xsd:attributeGroup name="AG_Password"> <xsd:attribute name="algorithmName" type="s:ST_String" use="optional"/> <xsd:attribute name="hashValue" type="xsd:base64Binary" use="optional"/> <xsd:attribute name="saltValue" type="xsd:base64Binary" use="optional"/> <xsd:attribute name="spinCount" type="ST_DecimalNumber" use="optional"/> </xsd:attributeGroup> <xsd:attributeGroup name="AG_TransitionalPassword"> <xsd:attribute name="cryptProviderType" type="s:ST_CryptProv"/> <xsd:attribute name="cryptAlgorithmClass" type="s:ST_AlgClass"/> <xsd:attribute name="cryptAlgorithmType" type="s:ST_AlgType"/> <xsd:attribute name="cryptAlgorithmSid" type="ST_DecimalNumber"/> <xsd:attribute name="cryptSpinCount" type="ST_DecimalNumber"/> <xsd:attribute name="cryptProvider" type="s:ST_String"/> <xsd:attribute name="algIdExt" type="ST_LongHexNumber"/> <xsd:attribute name="algIdExtSource" type="s:ST_String"/> <xsd:attribute name="cryptProviderTypeExt" type="ST_LongHexNumber"/> <xsd:attribute name="cryptProviderTypeExtSource" type="s:ST_String"/> <xsd:attribute name="hash" type="xsd:base64Binary"/> <xsd:attribute name="salt" type="xsd:base64Binary"/> </xsd:attributeGroup> <xsd:complexType name="CT_DocProtect"> <xsd:attribute name="edit" type="ST_DocProtect" use="optional"/> <xsd:attribute name="formatting" type="s:ST_OnOff" use="optional"/> <xsd:attribute name="enforcement" type="s:ST_OnOff"/> <xsd:attributeGroup ref="AG_Password"/> <xsd:attributeGroup ref="AG_TransitionalPassword"/> </xsd:complexType> <xsd:simpleType name="ST_MailMergeDocType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="catalog"/> <xsd:enumeration value="envelopes"/> <xsd:enumeration value="mailingLabels"/> <xsd:enumeration value="formLetters"/> <xsd:enumeration value="email"/> <xsd:enumeration value="fax"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_MailMergeDocType"> <xsd:attribute name="val" type="ST_MailMergeDocType" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_MailMergeDataType"> <xsd:restriction base="xsd:string"/> </xsd:simpleType> <xsd:complexType name="CT_MailMergeDataType"> <xsd:attribute name="val" type="ST_MailMergeDataType" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_MailMergeDest"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="newDocument"/> <xsd:enumeration value="printer"/> <xsd:enumeration value="email"/> <xsd:enumeration value="fax"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_MailMergeDest"> <xsd:attribute name="val" type="ST_MailMergeDest" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_MailMergeOdsoFMDFieldType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="null"/> <xsd:enumeration value="dbColumn"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_MailMergeOdsoFMDFieldType"> <xsd:attribute name="val" type="ST_MailMergeOdsoFMDFieldType" use="required"/> </xsd:complexType> <xsd:complexType name="CT_TrackChangesView"> <xsd:attribute name="markup" type="s:ST_OnOff" use="optional"/> <xsd:attribute name="comments" type="s:ST_OnOff" use="optional"/> <xsd:attribute name="insDel" type="s:ST_OnOff" use="optional"/> <xsd:attribute name="formatting" type="s:ST_OnOff" use="optional"/> <xsd:attribute name="inkAnnotations" type="s:ST_OnOff" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_Kinsoku"> <xsd:attribute name="lang" type="s:ST_Lang" use="required"/> <xsd:attribute name="val" type="s:ST_String" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_TextDirection"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="tb"/> <xsd:enumeration value="rl"/> <xsd:enumeration value="lr"/> <xsd:enumeration value="tbV"/> <xsd:enumeration value="rlV"/> <xsd:enumeration value="lrV"/> <xsd:enumeration value="btLr"/> <xsd:enumeration value="lrTb"/> <xsd:enumeration value="lrTbV"/> <xsd:enumeration value="tbLrV"/> <xsd:enumeration value="tbRl"/> <xsd:enumeration value="tbRlV"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_TextDirection"> <xsd:attribute name="val" type="ST_TextDirection" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_TextAlignment"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="top"/> <xsd:enumeration value="center"/> <xsd:enumeration value="baseline"/> <xsd:enumeration value="bottom"/> <xsd:enumeration value="auto"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_TextAlignment"> <xsd:attribute name="val" type="ST_TextAlignment" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_DisplacedByCustomXml"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="next"/> <xsd:enumeration value="prev"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_AnnotationVMerge"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="cont"/> <xsd:enumeration value="rest"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Markup"> <xsd:attribute name="id" type="ST_DecimalNumber" use="required"/> </xsd:complexType> <xsd:complexType name="CT_TrackChange"> <xsd:complexContent> <xsd:extension base="CT_Markup"> <xsd:attribute name="author" type="s:ST_String" use="required"/> <xsd:attribute name="date" type="ST_DateTime" use="optional"/> </xsd:extension> </xsd:complexContent> </xsd:complexType> <xsd:complexType name="CT_CellMergeTrackChange"> <xsd:complexContent> <xsd:extension base="CT_TrackChange"> <xsd:attribute name="vMerge" type="ST_AnnotationVMerge" use="optional"/> <xsd:attribute name="vMergeOrig" type="ST_AnnotationVMerge" use="optional"/> </xsd:extension> </xsd:complexContent> </xsd:complexType> <xsd:complexType name="CT_TrackChangeRange"> <xsd:complexContent> <xsd:extension base="CT_TrackChange"> <xsd:attribute name="displacedByCustomXml" type="ST_DisplacedByCustomXml" use="optional"/> </xsd:extension> </xsd:complexContent> </xsd:complexType> <xsd:complexType name="CT_MarkupRange"> <xsd:complexContent> <xsd:extension base="CT_Markup"> <xsd:attribute name="displacedByCustomXml" type="ST_DisplacedByCustomXml" use="optional"/> </xsd:extension> </xsd:complexContent> </xsd:complexType> <xsd:complexType name="CT_BookmarkRange"> <xsd:complexContent> <xsd:extension base="CT_MarkupRange"> <xsd:attribute name="colFirst" type="ST_DecimalNumber" use="optional"/> <xsd:attribute name="colLast" type="ST_DecimalNumber" use="optional"/> </xsd:extension> </xsd:complexContent> </xsd:complexType> <xsd:complexType name="CT_Bookmark"> <xsd:complexContent> <xsd:extension base="CT_BookmarkRange"> <xsd:attribute name="name" type="s:ST_String" use="required"/> </xsd:extension> </xsd:complexContent> </xsd:complexType> <xsd:complexType name="CT_MoveBookmark"> <xsd:complexContent> <xsd:extension base="CT_Bookmark"> <xsd:attribute name="author" type="s:ST_String" use="required"/> <xsd:attribute name="date" type="ST_DateTime" use="required"/> </xsd:extension> </xsd:complexContent> </xsd:complexType> <xsd:complexType name="CT_Comment"> <xsd:complexContent> <xsd:extension base="CT_TrackChange"> <xsd:sequence> <xsd:group ref="EG_BlockLevelElts" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="initials" type="s:ST_String" use="optional"/> </xsd:extension> </xsd:complexContent> </xsd:complexType> <xsd:complexType name="CT_TrackChangeNumbering"> <xsd:complexContent> <xsd:extension base="CT_TrackChange"> <xsd:attribute name="original" type="s:ST_String" use="optional"/> </xsd:extension> </xsd:complexContent> </xsd:complexType> <xsd:complexType name="CT_TblPrExChange"> <xsd:complexContent> <xsd:extension base="CT_TrackChange"> <xsd:sequence> <xsd:element name="tblPrEx" type="CT_TblPrExBase" minOccurs="1"/> </xsd:sequence> </xsd:extension> </xsd:complexContent> </xsd:complexType> <xsd:complexType name="CT_TcPrChange"> <xsd:complexContent> <xsd:extension base="CT_TrackChange"> <xsd:sequence> <xsd:element name="tcPr" type="CT_TcPrInner" minOccurs="1"/> </xsd:sequence> </xsd:extension> </xsd:complexContent> </xsd:complexType> <xsd:complexType name="CT_TrPrChange"> <xsd:complexContent> <xsd:extension base="CT_TrackChange"> <xsd:sequence> <xsd:element name="trPr" type="CT_TrPrBase" minOccurs="1"/> </xsd:sequence> </xsd:extension> </xsd:complexContent> </xsd:complexType> <xsd:complexType name="CT_TblGridChange"> <xsd:complexContent> <xsd:extension base="CT_Markup"> <xsd:sequence> <xsd:element name="tblGrid" type="CT_TblGridBase"/> </xsd:sequence> </xsd:extension> </xsd:complexContent> </xsd:complexType> <xsd:complexType name="CT_TblPrChange"> <xsd:complexContent> <xsd:extension base="CT_TrackChange"> <xsd:sequence> <xsd:element name="tblPr" type="CT_TblPrBase"/> </xsd:sequence> </xsd:extension> </xsd:complexContent> </xsd:complexType> <xsd:complexType name="CT_SectPrChange"> <xsd:complexContent> <xsd:extension base="CT_TrackChange"> <xsd:sequence> <xsd:element name="sectPr" type="CT_SectPrBase" minOccurs="0"/> </xsd:sequence> </xsd:extension> </xsd:complexContent> </xsd:complexType> <xsd:complexType name="CT_PPrChange"> <xsd:complexContent> <xsd:extension base="CT_TrackChange"> <xsd:sequence> <xsd:element name="pPr" type="CT_PPrBase" minOccurs="1"/> </xsd:sequence> </xsd:extension> </xsd:complexContent> </xsd:complexType> <xsd:complexType name="CT_RPrChange"> <xsd:complexContent> <xsd:extension base="CT_TrackChange"> <xsd:sequence> <xsd:element name="rPr" type="CT_RPrOriginal" minOccurs="1"/> </xsd:sequence> </xsd:extension> </xsd:complexContent> </xsd:complexType> <xsd:complexType name="CT_ParaRPrChange"> <xsd:complexContent> <xsd:extension base="CT_TrackChange"> <xsd:sequence> <xsd:element name="rPr" type="CT_ParaRPrOriginal" minOccurs="1"/> </xsd:sequence> </xsd:extension> </xsd:complexContent> </xsd:complexType> <xsd:complexType name="CT_RunTrackChange"> <xsd:complexContent> <xsd:extension base="CT_TrackChange"> <xsd:choice minOccurs="0" maxOccurs="unbounded"> <xsd:group ref="EG_ContentRunContent"/> <xsd:group ref="m:EG_OMathMathElements"/> </xsd:choice> </xsd:extension> </xsd:complexContent> </xsd:complexType> <xsd:group name="EG_PContentMath"> <xsd:choice> <xsd:group ref="EG_PContentBase" minOccurs="0" maxOccurs="unbounded"/> <xsd:group ref="EG_ContentRunContentBase" minOccurs="0" maxOccurs="unbounded"/> </xsd:choice> </xsd:group> <xsd:group name="EG_PContentBase"> <xsd:choice> <xsd:element name="customXml" type="CT_CustomXmlRun"/> <xsd:element name="fldSimple" type="CT_SimpleField" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="hyperlink" type="CT_Hyperlink"/> </xsd:choice> </xsd:group> <xsd:group name="EG_ContentRunContentBase"> <xsd:choice> <xsd:element name="smartTag" type="CT_SmartTagRun"/> <xsd:element name="sdt" type="CT_SdtRun"/> <xsd:group ref="EG_RunLevelElts" minOccurs="0" maxOccurs="unbounded"/> </xsd:choice> </xsd:group> <xsd:group name="EG_CellMarkupElements"> <xsd:choice> <xsd:element name="cellIns" type="CT_TrackChange" minOccurs="0"/> <xsd:element name="cellDel" type="CT_TrackChange" minOccurs="0"/> <xsd:element name="cellMerge" type="CT_CellMergeTrackChange" minOccurs="0"/> </xsd:choice> </xsd:group> <xsd:group name="EG_RangeMarkupElements"> <xsd:choice> <xsd:element name="bookmarkStart" type="CT_Bookmark"/> <xsd:element name="bookmarkEnd" type="CT_MarkupRange"/> <xsd:element name="moveFromRangeStart" type="CT_MoveBookmark"/> <xsd:element name="moveFromRangeEnd" type="CT_MarkupRange"/> <xsd:element name="moveToRangeStart" type="CT_MoveBookmark"/> <xsd:element name="moveToRangeEnd" type="CT_MarkupRange"/> <xsd:element name="commentRangeStart" type="CT_MarkupRange"/> <xsd:element name="commentRangeEnd" type="CT_MarkupRange"/> <xsd:element name="customXmlInsRangeStart" type="CT_TrackChange"/> <xsd:element name="customXmlInsRangeEnd" type="CT_Markup"/> <xsd:element name="customXmlDelRangeStart" type="CT_TrackChange"/> <xsd:element name="customXmlDelRangeEnd" type="CT_Markup"/> <xsd:element name="customXmlMoveFromRangeStart" type="CT_TrackChange"/> <xsd:element name="customXmlMoveFromRangeEnd" type="CT_Markup"/> <xsd:element name="customXmlMoveToRangeStart" type="CT_TrackChange"/> <xsd:element name="customXmlMoveToRangeEnd" type="CT_Markup"/> </xsd:choice> </xsd:group> <xsd:complexType name="CT_NumPr"> <xsd:sequence> <xsd:element name="ilvl" type="CT_DecimalNumber" minOccurs="0"/> <xsd:element name="numId" type="CT_DecimalNumber" minOccurs="0"/> <xsd:element name="numberingChange" type="CT_TrackChangeNumbering" minOccurs="0"/> <xsd:element name="ins" type="CT_TrackChange" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_PBdr"> <xsd:sequence> <xsd:element name="top" type="CT_Border" minOccurs="0"/> <xsd:element name="left" type="CT_Border" minOccurs="0"/> <xsd:element name="bottom" type="CT_Border" minOccurs="0"/> <xsd:element name="right" type="CT_Border" minOccurs="0"/> <xsd:element name="between" type="CT_Border" minOccurs="0"/> <xsd:element name="bar" type="CT_Border" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Tabs"> <xsd:sequence> <xsd:element name="tab" type="CT_TabStop" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_TextboxTightWrap"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="none"/> <xsd:enumeration value="allLines"/> <xsd:enumeration value="firstAndLastLine"/> <xsd:enumeration value="firstLineOnly"/> <xsd:enumeration value="lastLineOnly"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_TextboxTightWrap"> <xsd:attribute name="val" type="ST_TextboxTightWrap" use="required"/> </xsd:complexType> <xsd:complexType name="CT_PPrBase"> <xsd:sequence> <xsd:element name="pStyle" type="CT_String" minOccurs="0"/> <xsd:element name="keepNext" type="CT_OnOff" minOccurs="0"/> <xsd:element name="keepLines" type="CT_OnOff" minOccurs="0"/> <xsd:element name="pageBreakBefore" type="CT_OnOff" minOccurs="0"/> <xsd:element name="framePr" type="CT_FramePr" minOccurs="0"/> <xsd:element name="widowControl" type="CT_OnOff" minOccurs="0"/> <xsd:element name="numPr" type="CT_NumPr" minOccurs="0"/> <xsd:element name="suppressLineNumbers" type="CT_OnOff" minOccurs="0"/> <xsd:element name="pBdr" type="CT_PBdr" minOccurs="0"/> <xsd:element name="shd" type="CT_Shd" minOccurs="0"/> <xsd:element name="tabs" type="CT_Tabs" minOccurs="0"/> <xsd:element name="suppressAutoHyphens" type="CT_OnOff" minOccurs="0"/> <xsd:element name="kinsoku" type="CT_OnOff" minOccurs="0"/> <xsd:element name="wordWrap" type="CT_OnOff" minOccurs="0"/> <xsd:element name="overflowPunct" type="CT_OnOff" minOccurs="0"/> <xsd:element name="topLinePunct" type="CT_OnOff" minOccurs="0"/> <xsd:element name="autoSpaceDE" type="CT_OnOff" minOccurs="0"/> <xsd:element name="autoSpaceDN" type="CT_OnOff" minOccurs="0"/> <xsd:element name="bidi" type="CT_OnOff" minOccurs="0"/> <xsd:element name="adjustRightInd" type="CT_OnOff" minOccurs="0"/> <xsd:element name="snapToGrid" type="CT_OnOff" minOccurs="0"/> <xsd:element name="spacing" type="CT_Spacing" minOccurs="0"/> <xsd:element name="ind" type="CT_Ind" minOccurs="0"/> <xsd:element name="contextualSpacing" type="CT_OnOff" minOccurs="0"/> <xsd:element name="mirrorIndents" type="CT_OnOff" minOccurs="0"/> <xsd:element name="suppressOverlap" type="CT_OnOff" minOccurs="0"/> <xsd:element name="jc" type="CT_Jc" minOccurs="0"/> <xsd:element name="textDirection" type="CT_TextDirection" minOccurs="0"/> <xsd:element name="textAlignment" type="CT_TextAlignment" minOccurs="0"/> <xsd:element name="textboxTightWrap" type="CT_TextboxTightWrap" minOccurs="0"/> <xsd:element name="outlineLvl" type="CT_DecimalNumber" minOccurs="0"/> <xsd:element name="divId" type="CT_DecimalNumber" minOccurs="0"/> <xsd:element name="cnfStyle" type="CT_Cnf" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_PPr"> <xsd:complexContent> <xsd:extension base="CT_PPrBase"> <xsd:sequence> <xsd:element name="rPr" type="CT_ParaRPr" minOccurs="0"/> <xsd:element name="sectPr" type="CT_SectPr" minOccurs="0"/> <xsd:element name="pPrChange" type="CT_PPrChange" minOccurs="0"/> </xsd:sequence> </xsd:extension> </xsd:complexContent> </xsd:complexType> <xsd:complexType name="CT_PPrGeneral"> <xsd:complexContent> <xsd:extension base="CT_PPrBase"> <xsd:sequence> <xsd:element name="pPrChange" type="CT_PPrChange" minOccurs="0"/> </xsd:sequence> </xsd:extension> </xsd:complexContent> </xsd:complexType> <xsd:complexType name="CT_Control"> <xsd:attribute name="name" type="s:ST_String" use="optional"/> <xsd:attribute name="shapeid" type="s:ST_String" use="optional"/> <xsd:attribute ref="r:id" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_Background"> <xsd:sequence> <xsd:sequence maxOccurs="unbounded"> <xsd:any processContents="lax" namespace="urn:schemas-microsoft-com:vml" minOccurs="0" maxOccurs="unbounded"/> <xsd:any processContents="lax" namespace="urn:schemas-microsoft-com:office:office" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:element name="drawing" type="CT_Drawing" minOccurs="0"/> </xsd:sequence> <xsd:attribute name="color" type="ST_HexColor" use="optional" default="auto"/> <xsd:attribute name="themeColor" type="ST_ThemeColor" use="optional"/> <xsd:attribute name="themeTint" type="ST_UcharHexNumber" use="optional"/> <xsd:attribute name="themeShade" type="ST_UcharHexNumber" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_Rel"> <xsd:attribute ref="r:id" use="required"/> </xsd:complexType> <xsd:complexType name="CT_Object"> <xsd:sequence> <xsd:sequence maxOccurs="unbounded"> <xsd:any processContents="lax" namespace="urn:schemas-microsoft-com:vml" minOccurs="0" maxOccurs="unbounded"/> <xsd:any processContents="lax" namespace="urn:schemas-microsoft-com:office:office" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:element name="drawing" type="CT_Drawing" minOccurs="0"/> <xsd:choice minOccurs="0"> <xsd:element name="control" type="CT_Control"/> <xsd:element name="objectLink" type="CT_ObjectLink"/> <xsd:element name="objectEmbed" type="CT_ObjectEmbed"/> <xsd:element name="movie" type="CT_Rel"/> </xsd:choice> </xsd:sequence> <xsd:attribute name="dxaOrig" type="s:ST_TwipsMeasure" use="optional"/> <xsd:attribute name="dyaOrig" type="s:ST_TwipsMeasure" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_Picture"> <xsd:sequence> <xsd:sequence maxOccurs="unbounded"> <xsd:any processContents="lax" namespace="urn:schemas-microsoft-com:vml" minOccurs="0" maxOccurs="unbounded"/> <xsd:any processContents="lax" namespace="urn:schemas-microsoft-com:office:office" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:element name="movie" type="CT_Rel" minOccurs="0"/> <xsd:element name="control" type="CT_Control" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_ObjectEmbed"> <xsd:attribute name="drawAspect" type="ST_ObjectDrawAspect" use="optional"/> <xsd:attribute ref="r:id" use="required"/> <xsd:attribute name="progId" type="s:ST_String" use="optional"/> <xsd:attribute name="shapeId" type="s:ST_String" use="optional"/> <xsd:attribute name="fieldCodes" type="s:ST_String" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_ObjectDrawAspect"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="content"/> <xsd:enumeration value="icon"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_ObjectLink"> <xsd:complexContent> <xsd:extension base="CT_ObjectEmbed"> <xsd:attribute name="updateMode" type="ST_ObjectUpdateMode" use="required"/> <xsd:attribute name="lockedField" type="s:ST_OnOff" use="optional"/> </xsd:extension> </xsd:complexContent> </xsd:complexType> <xsd:simpleType name="ST_ObjectUpdateMode"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="always"/> <xsd:enumeration value="onCall"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Drawing"> <xsd:choice minOccurs="1" maxOccurs="unbounded"> <xsd:element ref="wp:anchor" minOccurs="0"/> <xsd:element ref="wp:inline" minOccurs="0"/> </xsd:choice> </xsd:complexType> <xsd:complexType name="CT_SimpleField"> <xsd:sequence> <xsd:element name="fldData" type="CT_Text" minOccurs="0" maxOccurs="1"/> <xsd:group ref="EG_PContent" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="instr" type="s:ST_String" use="required"/> <xsd:attribute name="fldLock" type="s:ST_OnOff"/> <xsd:attribute name="dirty" type="s:ST_OnOff"/> </xsd:complexType> <xsd:simpleType name="ST_FldCharType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="begin"/> <xsd:enumeration value="separate"/> <xsd:enumeration value="end"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_InfoTextType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="text"/> <xsd:enumeration value="autoText"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_FFHelpTextVal"> <xsd:restriction base="xsd:string"> <xsd:maxLength value="256"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_FFStatusTextVal"> <xsd:restriction base="xsd:string"> <xsd:maxLength value="140"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_FFName"> <xsd:restriction base="xsd:string"> <xsd:maxLength value="65"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_FFTextType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="regular"/> <xsd:enumeration value="number"/> <xsd:enumeration value="date"/> <xsd:enumeration value="currentTime"/> <xsd:enumeration value="currentDate"/> <xsd:enumeration value="calculated"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_FFTextType"> <xsd:attribute name="val" type="ST_FFTextType" use="required"/> </xsd:complexType> <xsd:complexType name="CT_FFName"> <xsd:attribute name="val" type="ST_FFName"/> </xsd:complexType> <xsd:complexType name="CT_FldChar"> <xsd:choice> <xsd:element name="fldData" type="CT_Text" minOccurs="0" maxOccurs="1"/> <xsd:element name="ffData" type="CT_FFData" minOccurs="0" maxOccurs="1"/> <xsd:element name="numberingChange" type="CT_TrackChangeNumbering" minOccurs="0"/> </xsd:choice> <xsd:attribute name="fldCharType" type="ST_FldCharType" use="required"/> <xsd:attribute name="fldLock" type="s:ST_OnOff"/> <xsd:attribute name="dirty" type="s:ST_OnOff"/> </xsd:complexType> <xsd:complexType name="CT_Hyperlink"> <xsd:group ref="EG_PContent" minOccurs="0" maxOccurs="unbounded"/> <xsd:attribute name="tgtFrame" type="s:ST_String" use="optional"/> <xsd:attribute name="tooltip" type="s:ST_String" use="optional"/> <xsd:attribute name="docLocation" type="s:ST_String" use="optional"/> <xsd:attribute name="history" type="s:ST_OnOff" use="optional"/> <xsd:attribute name="anchor" type="s:ST_String" use="optional"/> <xsd:attribute ref="r:id"/> </xsd:complexType> <xsd:complexType name="CT_FFData"> <xsd:choice maxOccurs="unbounded"> <xsd:element name="name" type="CT_FFName"/> <xsd:element name="label" type="CT_DecimalNumber" minOccurs="0"/> <xsd:element name="tabIndex" type="CT_UnsignedDecimalNumber" minOccurs="0"/> <xsd:element name="enabled" type="CT_OnOff"/> <xsd:element name="calcOnExit" type="CT_OnOff"/> <xsd:element name="entryMacro" type="CT_MacroName" minOccurs="0" maxOccurs="1"/> <xsd:element name="exitMacro" type="CT_MacroName" minOccurs="0" maxOccurs="1"/> <xsd:element name="helpText" type="CT_FFHelpText" minOccurs="0" maxOccurs="1"/> <xsd:element name="statusText" type="CT_FFStatusText" minOccurs="0" maxOccurs="1"/> <xsd:choice> <xsd:element name="checkBox" type="CT_FFCheckBox"/> <xsd:element name="ddList" type="CT_FFDDList"/> <xsd:element name="textInput" type="CT_FFTextInput"/> </xsd:choice> </xsd:choice> </xsd:complexType> <xsd:complexType name="CT_FFHelpText"> <xsd:attribute name="type" type="ST_InfoTextType"/> <xsd:attribute name="val" type="ST_FFHelpTextVal"/> </xsd:complexType> <xsd:complexType name="CT_FFStatusText"> <xsd:attribute name="type" type="ST_InfoTextType"/> <xsd:attribute name="val" type="ST_FFStatusTextVal"/> </xsd:complexType> <xsd:complexType name="CT_FFCheckBox"> <xsd:sequence> <xsd:choice> <xsd:element name="size" type="CT_HpsMeasure"/> <xsd:element name="sizeAuto" type="CT_OnOff"/> </xsd:choice> <xsd:element name="default" type="CT_OnOff" minOccurs="0"/> <xsd:element name="checked" type="CT_OnOff" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_FFDDList"> <xsd:sequence> <xsd:element name="result" type="CT_DecimalNumber" minOccurs="0"/> <xsd:element name="default" type="CT_DecimalNumber" minOccurs="0"/> <xsd:element name="listEntry" type="CT_String" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_FFTextInput"> <xsd:sequence> <xsd:element name="type" type="CT_FFTextType" minOccurs="0"/> <xsd:element name="default" type="CT_String" minOccurs="0"/> <xsd:element name="maxLength" type="CT_DecimalNumber" minOccurs="0"/> <xsd:element name="format" type="CT_String" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_SectionMark"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="nextPage"/> <xsd:enumeration value="nextColumn"/> <xsd:enumeration value="continuous"/> <xsd:enumeration value="evenPage"/> <xsd:enumeration value="oddPage"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_SectType"> <xsd:attribute name="val" type="ST_SectionMark"/> </xsd:complexType> <xsd:complexType name="CT_PaperSource"> <xsd:attribute name="first" type="ST_DecimalNumber"/> <xsd:attribute name="other" type="ST_DecimalNumber"/> </xsd:complexType> <xsd:simpleType name="ST_NumberFormat"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="decimal"/> <xsd:enumeration value="upperRoman"/> <xsd:enumeration value="lowerRoman"/> <xsd:enumeration value="upperLetter"/> <xsd:enumeration value="lowerLetter"/> <xsd:enumeration value="ordinal"/> <xsd:enumeration value="cardinalText"/> <xsd:enumeration value="ordinalText"/> <xsd:enumeration value="hex"/> <xsd:enumeration value="chicago"/> <xsd:enumeration value="ideographDigital"/> <xsd:enumeration value="japaneseCounting"/> <xsd:enumeration value="aiueo"/> <xsd:enumeration value="iroha"/> <xsd:enumeration value="decimalFullWidth"/> <xsd:enumeration value="decimalHalfWidth"/> <xsd:enumeration value="japaneseLegal"/> <xsd:enumeration value="japaneseDigitalTenThousand"/> <xsd:enumeration value="decimalEnclosedCircle"/> <xsd:enumeration value="decimalFullWidth2"/> <xsd:enumeration value="aiueoFullWidth"/> <xsd:enumeration value="irohaFullWidth"/> <xsd:enumeration value="decimalZero"/> <xsd:enumeration value="bullet"/> <xsd:enumeration value="ganada"/> <xsd:enumeration value="chosung"/> <xsd:enumeration value="decimalEnclosedFullstop"/> <xsd:enumeration value="decimalEnclosedParen"/> <xsd:enumeration value="decimalEnclosedCircleChinese"/> <xsd:enumeration value="ideographEnclosedCircle"/> <xsd:enumeration value="ideographTraditional"/> <xsd:enumeration value="ideographZodiac"/> <xsd:enumeration value="ideographZodiacTraditional"/> <xsd:enumeration value="taiwaneseCounting"/> <xsd:enumeration value="ideographLegalTraditional"/> <xsd:enumeration value="taiwaneseCountingThousand"/> <xsd:enumeration value="taiwaneseDigital"/> <xsd:enumeration value="chineseCounting"/> <xsd:enumeration value="chineseLegalSimplified"/> <xsd:enumeration value="chineseCountingThousand"/> <xsd:enumeration value="koreanDigital"/> <xsd:enumeration value="koreanCounting"/> <xsd:enumeration value="koreanLegal"/> <xsd:enumeration value="koreanDigital2"/> <xsd:enumeration value="vietnameseCounting"/> <xsd:enumeration value="russianLower"/> <xsd:enumeration value="russianUpper"/> <xsd:enumeration value="none"/> <xsd:enumeration value="numberInDash"/> <xsd:enumeration value="hebrew1"/> <xsd:enumeration value="hebrew2"/> <xsd:enumeration value="arabicAlpha"/> <xsd:enumeration value="arabicAbjad"/> <xsd:enumeration value="hindiVowels"/> <xsd:enumeration value="hindiConsonants"/> <xsd:enumeration value="hindiNumbers"/> <xsd:enumeration value="hindiCounting"/> <xsd:enumeration value="thaiLetters"/> <xsd:enumeration value="thaiNumbers"/> <xsd:enumeration value="thaiCounting"/> <xsd:enumeration value="bahtText"/> <xsd:enumeration value="dollarText"/> <xsd:enumeration value="custom"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_PageOrientation"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="portrait"/> <xsd:enumeration value="landscape"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_PageSz"> <xsd:attribute name="w" type="s:ST_TwipsMeasure"/> <xsd:attribute name="h" type="s:ST_TwipsMeasure"/> <xsd:attribute name="orient" type="ST_PageOrientation" use="optional"/> <xsd:attribute name="code" type="ST_DecimalNumber" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_PageMar"> <xsd:attribute name="top" type="ST_SignedTwipsMeasure" use="required"/> <xsd:attribute name="right" type="s:ST_TwipsMeasure" use="required"/> <xsd:attribute name="bottom" type="ST_SignedTwipsMeasure" use="required"/> <xsd:attribute name="left" type="s:ST_TwipsMeasure" use="required"/> <xsd:attribute name="header" type="s:ST_TwipsMeasure" use="required"/> <xsd:attribute name="footer" type="s:ST_TwipsMeasure" use="required"/> <xsd:attribute name="gutter" type="s:ST_TwipsMeasure" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_PageBorderZOrder"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="front"/> <xsd:enumeration value="back"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_PageBorderDisplay"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="allPages"/> <xsd:enumeration value="firstPage"/> <xsd:enumeration value="notFirstPage"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_PageBorderOffset"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="page"/> <xsd:enumeration value="text"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_PageBorders"> <xsd:sequence> <xsd:element name="top" type="CT_TopPageBorder" minOccurs="0"/> <xsd:element name="left" type="CT_PageBorder" minOccurs="0"/> <xsd:element name="bottom" type="CT_BottomPageBorder" minOccurs="0"/> <xsd:element name="right" type="CT_PageBorder" minOccurs="0"/> </xsd:sequence> <xsd:attribute name="zOrder" type="ST_PageBorderZOrder" use="optional" default="front"/> <xsd:attribute name="display" type="ST_PageBorderDisplay" use="optional"/> <xsd:attribute name="offsetFrom" type="ST_PageBorderOffset" use="optional" default="text"/> </xsd:complexType> <xsd:complexType name="CT_PageBorder"> <xsd:complexContent> <xsd:extension base="CT_Border"> <xsd:attribute ref="r:id" use="optional"/> </xsd:extension> </xsd:complexContent> </xsd:complexType> <xsd:complexType name="CT_BottomPageBorder"> <xsd:complexContent> <xsd:extension base="CT_PageBorder"> <xsd:attribute ref="r:bottomLeft" use="optional"/> <xsd:attribute ref="r:bottomRight" use="optional"/> </xsd:extension> </xsd:complexContent> </xsd:complexType> <xsd:complexType name="CT_TopPageBorder"> <xsd:complexContent> <xsd:extension base="CT_PageBorder"> <xsd:attribute ref="r:topLeft" use="optional"/> <xsd:attribute ref="r:topRight" use="optional"/> </xsd:extension> </xsd:complexContent> </xsd:complexType> <xsd:simpleType name="ST_ChapterSep"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="hyphen"/> <xsd:enumeration value="period"/> <xsd:enumeration value="colon"/> <xsd:enumeration value="emDash"/> <xsd:enumeration value="enDash"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_LineNumberRestart"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="newPage"/> <xsd:enumeration value="newSection"/> <xsd:enumeration value="continuous"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_LineNumber"> <xsd:attribute name="countBy" type="ST_DecimalNumber" use="optional"/> <xsd:attribute name="start" type="ST_DecimalNumber" use="optional" default="1"/> <xsd:attribute name="distance" type="s:ST_TwipsMeasure" use="optional"/> <xsd:attribute name="restart" type="ST_LineNumberRestart" use="optional" default="newPage"/> </xsd:complexType> <xsd:complexType name="CT_PageNumber"> <xsd:attribute name="fmt" type="ST_NumberFormat" use="optional" default="decimal"/> <xsd:attribute name="start" type="ST_DecimalNumber" use="optional"/> <xsd:attribute name="chapStyle" type="ST_DecimalNumber" use="optional"/> <xsd:attribute name="chapSep" type="ST_ChapterSep" use="optional" default="hyphen"/> </xsd:complexType> <xsd:complexType name="CT_Column"> <xsd:attribute name="w" type="s:ST_TwipsMeasure" use="optional"/> <xsd:attribute name="space" type="s:ST_TwipsMeasure" use="optional" default="0"/> </xsd:complexType> <xsd:complexType name="CT_Columns"> <xsd:sequence minOccurs="0"> <xsd:element name="col" type="CT_Column" maxOccurs="45"/> </xsd:sequence> <xsd:attribute name="equalWidth" type="s:ST_OnOff" use="optional"/> <xsd:attribute name="space" type="s:ST_TwipsMeasure" use="optional" default="720"/> <xsd:attribute name="num" type="ST_DecimalNumber" use="optional" default="1"/> <xsd:attribute name="sep" type="s:ST_OnOff" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_VerticalJc"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="top"/> <xsd:enumeration value="center"/> <xsd:enumeration value="both"/> <xsd:enumeration value="bottom"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_VerticalJc"> <xsd:attribute name="val" type="ST_VerticalJc" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_DocGrid"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="default"/> <xsd:enumeration value="lines"/> <xsd:enumeration value="linesAndChars"/> <xsd:enumeration value="snapToChars"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_DocGrid"> <xsd:attribute name="type" type="ST_DocGrid"/> <xsd:attribute name="linePitch" type="ST_DecimalNumber"/> <xsd:attribute name="charSpace" type="ST_DecimalNumber"/> </xsd:complexType> <xsd:simpleType name="ST_HdrFtr"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="even"/> <xsd:enumeration value="default"/> <xsd:enumeration value="first"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_FtnEdn"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="normal"/> <xsd:enumeration value="separator"/> <xsd:enumeration value="continuationSeparator"/> <xsd:enumeration value="continuationNotice"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_HdrFtrRef"> <xsd:complexContent> <xsd:extension base="CT_Rel"> <xsd:attribute name="type" type="ST_HdrFtr" use="required"/> </xsd:extension> </xsd:complexContent> </xsd:complexType> <xsd:group name="EG_HdrFtrReferences"> <xsd:choice> <xsd:element name="headerReference" type="CT_HdrFtrRef" minOccurs="0"/> <xsd:element name="footerReference" type="CT_HdrFtrRef" minOccurs="0"/> </xsd:choice> </xsd:group> <xsd:complexType name="CT_HdrFtr"> <xsd:group ref="EG_BlockLevelElts" minOccurs="1" maxOccurs="unbounded"/> </xsd:complexType> <xsd:group name="EG_SectPrContents"> <xsd:sequence> <xsd:element name="footnotePr" type="CT_FtnProps" minOccurs="0"/> <xsd:element name="endnotePr" type="CT_EdnProps" minOccurs="0"/> <xsd:element name="type" type="CT_SectType" minOccurs="0"/> <xsd:element name="pgSz" type="CT_PageSz" minOccurs="0"/> <xsd:element name="pgMar" type="CT_PageMar" minOccurs="0"/> <xsd:element name="paperSrc" type="CT_PaperSource" minOccurs="0"/> <xsd:element name="pgBorders" type="CT_PageBorders" minOccurs="0"/> <xsd:element name="lnNumType" type="CT_LineNumber" minOccurs="0"/> <xsd:element name="pgNumType" type="CT_PageNumber" minOccurs="0"/> <xsd:element name="cols" type="CT_Columns" minOccurs="0"/> <xsd:element name="formProt" type="CT_OnOff" minOccurs="0"/> <xsd:element name="vAlign" type="CT_VerticalJc" minOccurs="0"/> <xsd:element name="noEndnote" type="CT_OnOff" minOccurs="0"/> <xsd:element name="titlePg" type="CT_OnOff" minOccurs="0"/> <xsd:element name="textDirection" type="CT_TextDirection" minOccurs="0"/> <xsd:element name="bidi" type="CT_OnOff" minOccurs="0"/> <xsd:element name="rtlGutter" type="CT_OnOff" minOccurs="0"/> <xsd:element name="docGrid" type="CT_DocGrid" minOccurs="0"/> <xsd:element name="printerSettings" type="CT_Rel" minOccurs="0"/> </xsd:sequence> </xsd:group> <xsd:attributeGroup name="AG_SectPrAttributes"> <xsd:attribute name="rsidRPr" type="ST_LongHexNumber"/> <xsd:attribute name="rsidDel" type="ST_LongHexNumber"/> <xsd:attribute name="rsidR" type="ST_LongHexNumber"/> <xsd:attribute name="rsidSect" type="ST_LongHexNumber"/> </xsd:attributeGroup> <xsd:complexType name="CT_SectPrBase"> <xsd:sequence> <xsd:group ref="EG_SectPrContents" minOccurs="0"/> </xsd:sequence> <xsd:attributeGroup ref="AG_SectPrAttributes"/> </xsd:complexType> <xsd:complexType name="CT_SectPr"> <xsd:sequence> <xsd:group ref="EG_HdrFtrReferences" minOccurs="0" maxOccurs="6"/> <xsd:group ref="EG_SectPrContents" minOccurs="0"/> <xsd:element name="sectPrChange" type="CT_SectPrChange" minOccurs="0"/> </xsd:sequence> <xsd:attributeGroup ref="AG_SectPrAttributes"/> </xsd:complexType> <xsd:simpleType name="ST_BrType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="page"/> <xsd:enumeration value="column"/> <xsd:enumeration value="textWrapping"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_BrClear"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="none"/> <xsd:enumeration value="left"/> <xsd:enumeration value="right"/> <xsd:enumeration value="all"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Br"> <xsd:attribute name="type" type="ST_BrType" use="optional"/> <xsd:attribute name="clear" type="ST_BrClear" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_PTabAlignment"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="left"/> <xsd:enumeration value="center"/> <xsd:enumeration value="right"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_PTabRelativeTo"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="margin"/> <xsd:enumeration value="indent"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_PTabLeader"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="none"/> <xsd:enumeration value="dot"/> <xsd:enumeration value="hyphen"/> <xsd:enumeration value="underscore"/> <xsd:enumeration value="middleDot"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_PTab"> <xsd:attribute name="alignment" type="ST_PTabAlignment" use="required"/> <xsd:attribute name="relativeTo" type="ST_PTabRelativeTo" use="required"/> <xsd:attribute name="leader" type="ST_PTabLeader" use="required"/> </xsd:complexType> <xsd:complexType name="CT_Sym"> <xsd:attribute name="font" type="s:ST_String"/> <xsd:attribute name="char" type="ST_ShortHexNumber"/> </xsd:complexType> <xsd:simpleType name="ST_ProofErr"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="spellStart"/> <xsd:enumeration value="spellEnd"/> <xsd:enumeration value="gramStart"/> <xsd:enumeration value="gramEnd"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_ProofErr"> <xsd:attribute name="type" type="ST_ProofErr" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_EdGrp"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="none"/> <xsd:enumeration value="everyone"/> <xsd:enumeration value="administrators"/> <xsd:enumeration value="contributors"/> <xsd:enumeration value="editors"/> <xsd:enumeration value="owners"/> <xsd:enumeration value="current"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Perm"> <xsd:attribute name="id" type="s:ST_String" use="required"/> <xsd:attribute name="displacedByCustomXml" type="ST_DisplacedByCustomXml" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_PermStart"> <xsd:complexContent> <xsd:extension base="CT_Perm"> <xsd:attribute name="edGrp" type="ST_EdGrp" use="optional"/> <xsd:attribute name="ed" type="s:ST_String" use="optional"/> <xsd:attribute name="colFirst" type="ST_DecimalNumber" use="optional"/> <xsd:attribute name="colLast" type="ST_DecimalNumber" use="optional"/> </xsd:extension> </xsd:complexContent> </xsd:complexType> <xsd:complexType name="CT_Text"> <xsd:simpleContent> <xsd:extension base="s:ST_String"> <xsd:attribute ref="xml:space" use="optional"/> </xsd:extension> </xsd:simpleContent> </xsd:complexType> <xsd:group name="EG_RunInnerContent"> <xsd:choice> <xsd:element name="br" type="CT_Br"/> <xsd:element name="t" type="CT_Text"/> <xsd:element name="contentPart" type="CT_Rel"/> <xsd:element name="delText" type="CT_Text"/> <xsd:element name="instrText" type="CT_Text"/> <xsd:element name="delInstrText" type="CT_Text"/> <xsd:element name="noBreakHyphen" type="CT_Empty"/> <xsd:element name="softHyphen" type="CT_Empty" minOccurs="0"/> <xsd:element name="dayShort" type="CT_Empty" minOccurs="0"/> <xsd:element name="monthShort" type="CT_Empty" minOccurs="0"/> <xsd:element name="yearShort" type="CT_Empty" minOccurs="0"/> <xsd:element name="dayLong" type="CT_Empty" minOccurs="0"/> <xsd:element name="monthLong" type="CT_Empty" minOccurs="0"/> <xsd:element name="yearLong" type="CT_Empty" minOccurs="0"/> <xsd:element name="annotationRef" type="CT_Empty" minOccurs="0"/> <xsd:element name="footnoteRef" type="CT_Empty" minOccurs="0"/> <xsd:element name="endnoteRef" type="CT_Empty" minOccurs="0"/> <xsd:element name="separator" type="CT_Empty" minOccurs="0"/> <xsd:element name="continuationSeparator" type="CT_Empty" minOccurs="0"/> <xsd:element name="sym" type="CT_Sym" minOccurs="0"/> <xsd:element name="pgNum" type="CT_Empty" minOccurs="0"/> <xsd:element name="cr" type="CT_Empty" minOccurs="0"/> <xsd:element name="tab" type="CT_Empty" minOccurs="0"/> <xsd:element name="object" type="CT_Object"/> <xsd:element name="pict" type="CT_Picture"/> <xsd:element name="fldChar" type="CT_FldChar"/> <xsd:element name="ruby" type="CT_Ruby"/> <xsd:element name="footnoteReference" type="CT_FtnEdnRef"/> <xsd:element name="endnoteReference" type="CT_FtnEdnRef"/> <xsd:element name="commentReference" type="CT_Markup"/> <xsd:element name="drawing" type="CT_Drawing"/> <xsd:element name="ptab" type="CT_PTab" minOccurs="0"/> <xsd:element name="lastRenderedPageBreak" type="CT_Empty" minOccurs="0" maxOccurs="1"/> </xsd:choice> </xsd:group> <xsd:complexType name="CT_R"> <xsd:sequence> <xsd:group ref="EG_RPr" minOccurs="0"/> <xsd:group ref="EG_RunInnerContent" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="rsidRPr" type="ST_LongHexNumber"/> <xsd:attribute name="rsidDel" type="ST_LongHexNumber"/> <xsd:attribute name="rsidR" type="ST_LongHexNumber"/> </xsd:complexType> <xsd:simpleType name="ST_Hint"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="default"/> <xsd:enumeration value="eastAsia"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_Theme"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="majorEastAsia"/> <xsd:enumeration value="majorBidi"/> <xsd:enumeration value="majorAscii"/> <xsd:enumeration value="majorHAnsi"/> <xsd:enumeration value="minorEastAsia"/> <xsd:enumeration value="minorBidi"/> <xsd:enumeration value="minorAscii"/> <xsd:enumeration value="minorHAnsi"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Fonts"> <xsd:attribute name="hint" type="ST_Hint"/> <xsd:attribute name="ascii" type="s:ST_String"/> <xsd:attribute name="hAnsi" type="s:ST_String"/> <xsd:attribute name="eastAsia" type="s:ST_String"/> <xsd:attribute name="cs" type="s:ST_String"/> <xsd:attribute name="asciiTheme" type="ST_Theme"/> <xsd:attribute name="hAnsiTheme" type="ST_Theme"/> <xsd:attribute name="eastAsiaTheme" type="ST_Theme"/> <xsd:attribute name="cstheme" type="ST_Theme"/> </xsd:complexType> <xsd:group name="EG_RPrBase"> <xsd:choice> <xsd:element name="rStyle" type="CT_String"/> <xsd:element name="rFonts" type="CT_Fonts"/> <xsd:element name="b" type="CT_OnOff"/> <xsd:element name="bCs" type="CT_OnOff"/> <xsd:element name="i" type="CT_OnOff"/> <xsd:element name="iCs" type="CT_OnOff"/> <xsd:element name="caps" type="CT_OnOff"/> <xsd:element name="smallCaps" type="CT_OnOff"/> <xsd:element name="strike" type="CT_OnOff"/> <xsd:element name="dstrike" type="CT_OnOff"/> <xsd:element name="outline" type="CT_OnOff"/> <xsd:element name="shadow" type="CT_OnOff"/> <xsd:element name="emboss" type="CT_OnOff"/> <xsd:element name="imprint" type="CT_OnOff"/> <xsd:element name="noProof" type="CT_OnOff"/> <xsd:element name="snapToGrid" type="CT_OnOff"/> <xsd:element name="vanish" type="CT_OnOff"/> <xsd:element name="webHidden" type="CT_OnOff"/> <xsd:element name="color" type="CT_Color"/> <xsd:element name="spacing" type="CT_SignedTwipsMeasure"/> <xsd:element name="w" type="CT_TextScale"/> <xsd:element name="kern" type="CT_HpsMeasure"/> <xsd:element name="position" type="CT_SignedHpsMeasure"/> <xsd:element name="sz" type="CT_HpsMeasure"/> <xsd:element name="szCs" type="CT_HpsMeasure"/> <xsd:element name="highlight" type="CT_Highlight"/> <xsd:element name="u" type="CT_Underline"/> <xsd:element name="effect" type="CT_TextEffect"/> <xsd:element name="bdr" type="CT_Border"/> <xsd:element name="shd" type="CT_Shd"/> <xsd:element name="fitText" type="CT_FitText"/> <xsd:element name="vertAlign" type="CT_VerticalAlignRun"/> <xsd:element name="rtl" type="CT_OnOff"/> <xsd:element name="cs" type="CT_OnOff"/> <xsd:element name="em" type="CT_Em"/> <xsd:element name="lang" type="CT_Language"/> <xsd:element name="eastAsianLayout" type="CT_EastAsianLayout"/> <xsd:element name="specVanish" type="CT_OnOff"/> <xsd:element name="oMath" type="CT_OnOff"/> </xsd:choice> </xsd:group> <xsd:group name="EG_RPrContent"> <xsd:sequence> <xsd:group ref="EG_RPrBase" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="rPrChange" type="CT_RPrChange" minOccurs="0"/> </xsd:sequence> </xsd:group> <xsd:complexType name="CT_RPr"> <xsd:sequence> <xsd:group ref="EG_RPrContent" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:group name="EG_RPr"> <xsd:sequence> <xsd:element name="rPr" type="CT_RPr" minOccurs="0"/> </xsd:sequence> </xsd:group> <xsd:group name="EG_RPrMath"> <xsd:choice> <xsd:group ref="EG_RPr"/> <xsd:element name="ins" type="CT_MathCtrlIns"/> <xsd:element name="del" type="CT_MathCtrlDel"/> </xsd:choice> </xsd:group> <xsd:complexType name="CT_MathCtrlIns"> <xsd:complexContent> <xsd:extension base="CT_TrackChange"> <xsd:choice minOccurs="0"> <xsd:element name="del" type="CT_RPrChange" minOccurs="1"/> <xsd:element name="rPr" type="CT_RPr" minOccurs="1"/> </xsd:choice> </xsd:extension> </xsd:complexContent> </xsd:complexType> <xsd:complexType name="CT_MathCtrlDel"> <xsd:complexContent> <xsd:extension base="CT_TrackChange"> <xsd:choice minOccurs="0"> <xsd:element name="rPr" type="CT_RPr" minOccurs="1"/> </xsd:choice> </xsd:extension> </xsd:complexContent> </xsd:complexType> <xsd:complexType name="CT_RPrOriginal"> <xsd:sequence> <xsd:group ref="EG_RPrBase" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_ParaRPrOriginal"> <xsd:sequence> <xsd:group ref="EG_ParaRPrTrackChanges" minOccurs="0"/> <xsd:group ref="EG_RPrBase" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_ParaRPr"> <xsd:sequence> <xsd:group ref="EG_ParaRPrTrackChanges" minOccurs="0"/> <xsd:group ref="EG_RPrBase" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="rPrChange" type="CT_ParaRPrChange" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:group name="EG_ParaRPrTrackChanges"> <xsd:sequence> <xsd:element name="ins" type="CT_TrackChange" minOccurs="0"/> <xsd:element name="del" type="CT_TrackChange" minOccurs="0"/> <xsd:element name="moveFrom" type="CT_TrackChange" minOccurs="0"/> <xsd:element name="moveTo" type="CT_TrackChange" minOccurs="0"/> </xsd:sequence> </xsd:group> <xsd:complexType name="CT_AltChunk"> <xsd:sequence> <xsd:element name="altChunkPr" type="CT_AltChunkPr" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute ref="r:id" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_AltChunkPr"> <xsd:sequence> <xsd:element name="matchSrc" type="CT_OnOff" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_RubyAlign"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="center"/> <xsd:enumeration value="distributeLetter"/> <xsd:enumeration value="distributeSpace"/> <xsd:enumeration value="left"/> <xsd:enumeration value="right"/> <xsd:enumeration value="rightVertical"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_RubyAlign"> <xsd:attribute name="val" type="ST_RubyAlign" use="required"/> </xsd:complexType> <xsd:complexType name="CT_RubyPr"> <xsd:sequence> <xsd:element name="rubyAlign" type="CT_RubyAlign"/> <xsd:element name="hps" type="CT_HpsMeasure"/> <xsd:element name="hpsRaise" type="CT_HpsMeasure"/> <xsd:element name="hpsBaseText" type="CT_HpsMeasure"/> <xsd:element name="lid" type="CT_Lang"/> <xsd:element name="dirty" type="CT_OnOff" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:group name="EG_RubyContent"> <xsd:choice> <xsd:element name="r" type="CT_R"/> <xsd:group ref="EG_RunLevelElts" minOccurs="0" maxOccurs="unbounded"/> </xsd:choice> </xsd:group> <xsd:complexType name="CT_RubyContent"> <xsd:group ref="EG_RubyContent" minOccurs="0" maxOccurs="unbounded"/> </xsd:complexType> <xsd:complexType name="CT_Ruby"> <xsd:sequence> <xsd:element name="rubyPr" type="CT_RubyPr"/> <xsd:element name="rt" type="CT_RubyContent"/> <xsd:element name="rubyBase" type="CT_RubyContent"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_Lock"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="sdtLocked"/> <xsd:enumeration value="contentLocked"/> <xsd:enumeration value="unlocked"/> <xsd:enumeration value="sdtContentLocked"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Lock"> <xsd:attribute name="val" type="ST_Lock"/> </xsd:complexType> <xsd:complexType name="CT_SdtListItem"> <xsd:attribute name="displayText" type="s:ST_String"/> <xsd:attribute name="value" type="s:ST_String"/> </xsd:complexType> <xsd:simpleType name="ST_SdtDateMappingType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="text"/> <xsd:enumeration value="date"/> <xsd:enumeration value="dateTime"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_SdtDateMappingType"> <xsd:attribute name="val" type="ST_SdtDateMappingType"/> </xsd:complexType> <xsd:complexType name="CT_CalendarType"> <xsd:attribute name="val" type="s:ST_CalendarType"/> </xsd:complexType> <xsd:complexType name="CT_SdtDate"> <xsd:sequence> <xsd:element name="dateFormat" type="CT_String" minOccurs="0"/> <xsd:element name="lid" type="CT_Lang" minOccurs="0"/> <xsd:element name="storeMappedDataAs" type="CT_SdtDateMappingType" minOccurs="0"/> <xsd:element name="calendar" type="CT_CalendarType" minOccurs="0"/> </xsd:sequence> <xsd:attribute name="fullDate" type="ST_DateTime" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_SdtComboBox"> <xsd:sequence> <xsd:element name="listItem" type="CT_SdtListItem" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="lastValue" type="s:ST_String" use="optional" default=""/> </xsd:complexType> <xsd:complexType name="CT_SdtDocPart"> <xsd:sequence> <xsd:element name="docPartGallery" type="CT_String" minOccurs="0"/> <xsd:element name="docPartCategory" type="CT_String" minOccurs="0"/> <xsd:element name="docPartUnique" type="CT_OnOff" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_SdtDropDownList"> <xsd:sequence> <xsd:element name="listItem" type="CT_SdtListItem" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="lastValue" type="s:ST_String" use="optional" default=""/> </xsd:complexType> <xsd:complexType name="CT_Placeholder"> <xsd:sequence> <xsd:element name="docPart" type="CT_String"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_SdtText"> <xsd:attribute name="multiLine" type="s:ST_OnOff"/> </xsd:complexType> <xsd:complexType name="CT_DataBinding"> <xsd:attribute name="prefixMappings" type="s:ST_String"/> <xsd:attribute name="xpath" type="s:ST_String" use="required"/> <xsd:attribute name="storeItemID" type="s:ST_String" use="required"/> </xsd:complexType> <xsd:complexType name="CT_SdtPr"> <xsd:sequence> <xsd:element name="rPr" type="CT_RPr" minOccurs="0"/> <xsd:element name="alias" type="CT_String" minOccurs="0"/> <xsd:element name="tag" type="CT_String" minOccurs="0"/> <xsd:element name="id" type="CT_DecimalNumber" minOccurs="0"/> <xsd:element name="lock" type="CT_Lock" minOccurs="0"/> <xsd:element name="placeholder" type="CT_Placeholder" minOccurs="0"/> <xsd:element name="temporary" type="CT_OnOff" minOccurs="0"/> <xsd:element name="showingPlcHdr" type="CT_OnOff" minOccurs="0"/> <xsd:element name="dataBinding" type="CT_DataBinding" minOccurs="0"/> <xsd:element name="label" type="CT_DecimalNumber" minOccurs="0"/> <xsd:element name="tabIndex" type="CT_UnsignedDecimalNumber" minOccurs="0"/> <xsd:choice minOccurs="0" maxOccurs="1"> <xsd:element name="equation" type="CT_Empty"/> <xsd:element name="comboBox" type="CT_SdtComboBox"/> <xsd:element name="date" type="CT_SdtDate"/> <xsd:element name="docPartObj" type="CT_SdtDocPart"/> <xsd:element name="docPartList" type="CT_SdtDocPart"/> <xsd:element name="dropDownList" type="CT_SdtDropDownList"/> <xsd:element name="picture" type="CT_Empty"/> <xsd:element name="richText" type="CT_Empty"/> <xsd:element name="text" type="CT_SdtText"/> <xsd:element name="citation" type="CT_Empty"/> <xsd:element name="group" type="CT_Empty"/> <xsd:element name="bibliography" type="CT_Empty"/> </xsd:choice> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_SdtEndPr"> <xsd:choice maxOccurs="unbounded"> <xsd:element name="rPr" type="CT_RPr" minOccurs="0"/> </xsd:choice> </xsd:complexType> <xsd:group name="EG_ContentRunContent"> <xsd:choice> <xsd:element name="customXml" type="CT_CustomXmlRun"/> <xsd:element name="smartTag" type="CT_SmartTagRun"/> <xsd:element name="sdt" type="CT_SdtRun"/> <xsd:element name="dir" type="CT_DirContentRun"/> <xsd:element name="bdo" type="CT_BdoContentRun"/> <xsd:element name="r" type="CT_R"/> <xsd:group ref="EG_RunLevelElts" minOccurs="0" maxOccurs="unbounded"/> </xsd:choice> </xsd:group> <xsd:complexType name="CT_DirContentRun"> <xsd:group ref="EG_PContent" minOccurs="0" maxOccurs="unbounded"/> <xsd:attribute name="val" type="ST_Direction" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_BdoContentRun"> <xsd:group ref="EG_PContent" minOccurs="0" maxOccurs="unbounded"/> <xsd:attribute name="val" type="ST_Direction" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_Direction"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="ltr"/> <xsd:enumeration value="rtl"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_SdtContentRun"> <xsd:group ref="EG_PContent" minOccurs="0" maxOccurs="unbounded"/> </xsd:complexType> <xsd:group name="EG_ContentBlockContent"> <xsd:choice> <xsd:element name="customXml" type="CT_CustomXmlBlock"/> <xsd:element name="sdt" type="CT_SdtBlock"/> <xsd:element name="p" type="CT_P" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="tbl" type="CT_Tbl" minOccurs="0" maxOccurs="unbounded"/> <xsd:group ref="EG_RunLevelElts" minOccurs="0" maxOccurs="unbounded"/> </xsd:choice> </xsd:group> <xsd:complexType name="CT_SdtContentBlock"> <xsd:group ref="EG_ContentBlockContent" minOccurs="0" maxOccurs="unbounded"/> </xsd:complexType> <xsd:group name="EG_ContentRowContent"> <xsd:choice> <xsd:element name="tr" type="CT_Row" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="customXml" type="CT_CustomXmlRow"/> <xsd:element name="sdt" type="CT_SdtRow"/> <xsd:group ref="EG_RunLevelElts" minOccurs="0" maxOccurs="unbounded"/> </xsd:choice> </xsd:group> <xsd:complexType name="CT_SdtContentRow"> <xsd:group ref="EG_ContentRowContent" minOccurs="0" maxOccurs="unbounded"/> </xsd:complexType> <xsd:group name="EG_ContentCellContent"> <xsd:choice> <xsd:element name="tc" type="CT_Tc" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="customXml" type="CT_CustomXmlCell"/> <xsd:element name="sdt" type="CT_SdtCell"/> <xsd:group ref="EG_RunLevelElts" minOccurs="0" maxOccurs="unbounded"/> </xsd:choice> </xsd:group> <xsd:complexType name="CT_SdtContentCell"> <xsd:group ref="EG_ContentCellContent" minOccurs="0" maxOccurs="unbounded"/> </xsd:complexType> <xsd:complexType name="CT_SdtBlock"> <xsd:sequence> <xsd:element name="sdtPr" type="CT_SdtPr" minOccurs="0" maxOccurs="1"/> <xsd:element name="sdtEndPr" type="CT_SdtEndPr" minOccurs="0" maxOccurs="1"/> <xsd:element name="sdtContent" type="CT_SdtContentBlock" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_SdtRun"> <xsd:sequence> <xsd:element name="sdtPr" type="CT_SdtPr" minOccurs="0" maxOccurs="1"/> <xsd:element name="sdtEndPr" type="CT_SdtEndPr" minOccurs="0" maxOccurs="1"/> <xsd:element name="sdtContent" type="CT_SdtContentRun" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_SdtCell"> <xsd:sequence> <xsd:element name="sdtPr" type="CT_SdtPr" minOccurs="0" maxOccurs="1"/> <xsd:element name="sdtEndPr" type="CT_SdtEndPr" minOccurs="0" maxOccurs="1"/> <xsd:element name="sdtContent" type="CT_SdtContentCell" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_SdtRow"> <xsd:sequence> <xsd:element name="sdtPr" type="CT_SdtPr" minOccurs="0" maxOccurs="1"/> <xsd:element name="sdtEndPr" type="CT_SdtEndPr" minOccurs="0" maxOccurs="1"/> <xsd:element name="sdtContent" type="CT_SdtContentRow" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Attr"> <xsd:attribute name="uri" type="s:ST_String"/> <xsd:attribute name="name" type="s:ST_String" use="required"/> <xsd:attribute name="val" type="s:ST_String" use="required"/> </xsd:complexType> <xsd:complexType name="CT_CustomXmlRun"> <xsd:sequence> <xsd:element name="customXmlPr" type="CT_CustomXmlPr" minOccurs="0" maxOccurs="1"/> <xsd:group ref="EG_PContent" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="uri" type="s:ST_String"/> <xsd:attribute name="element" type="s:ST_XmlName" use="required"/> </xsd:complexType> <xsd:complexType name="CT_SmartTagRun"> <xsd:sequence> <xsd:element name="smartTagPr" type="CT_SmartTagPr" minOccurs="0" maxOccurs="1"/> <xsd:group ref="EG_PContent" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="uri" type="s:ST_String"/> <xsd:attribute name="element" type="s:ST_XmlName" use="required"/> </xsd:complexType> <xsd:complexType name="CT_CustomXmlBlock"> <xsd:sequence> <xsd:element name="customXmlPr" type="CT_CustomXmlPr" minOccurs="0" maxOccurs="1"/> <xsd:group ref="EG_ContentBlockContent" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="uri" type="s:ST_String"/> <xsd:attribute name="element" type="s:ST_XmlName" use="required"/> </xsd:complexType> <xsd:complexType name="CT_CustomXmlPr"> <xsd:sequence> <xsd:element name="placeholder" type="CT_String" minOccurs="0"/> <xsd:element name="attr" type="CT_Attr" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_CustomXmlRow"> <xsd:sequence> <xsd:element name="customXmlPr" type="CT_CustomXmlPr" minOccurs="0" maxOccurs="1"/> <xsd:group ref="EG_ContentRowContent" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="uri" type="s:ST_String"/> <xsd:attribute name="element" type="s:ST_XmlName" use="required"/> </xsd:complexType> <xsd:complexType name="CT_CustomXmlCell"> <xsd:sequence> <xsd:element name="customXmlPr" type="CT_CustomXmlPr" minOccurs="0" maxOccurs="1"/> <xsd:group ref="EG_ContentCellContent" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="uri" type="s:ST_String"/> <xsd:attribute name="element" type="s:ST_XmlName" use="required"/> </xsd:complexType> <xsd:complexType name="CT_SmartTagPr"> <xsd:sequence> <xsd:element name="attr" type="CT_Attr" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:group name="EG_PContent"> <xsd:choice> <xsd:group ref="EG_ContentRunContent" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="fldSimple" type="CT_SimpleField" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="hyperlink" type="CT_Hyperlink"/> <xsd:element name="subDoc" type="CT_Rel"/> </xsd:choice> </xsd:group> <xsd:complexType name="CT_P"> <xsd:sequence> <xsd:element name="pPr" type="CT_PPr" minOccurs="0"/> <xsd:group ref="EG_PContent" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="rsidRPr" type="ST_LongHexNumber"/> <xsd:attribute name="rsidR" type="ST_LongHexNumber"/> <xsd:attribute name="rsidDel" type="ST_LongHexNumber"/> <xsd:attribute name="rsidP" type="ST_LongHexNumber"/> <xsd:attribute name="rsidRDefault" type="ST_LongHexNumber"/> </xsd:complexType> <xsd:simpleType name="ST_TblWidth"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="nil"/> <xsd:enumeration value="pct"/> <xsd:enumeration value="dxa"/> <xsd:enumeration value="auto"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Height"> <xsd:attribute name="val" type="s:ST_TwipsMeasure"/> <xsd:attribute name="hRule" type="ST_HeightRule"/> </xsd:complexType> <xsd:simpleType name="ST_MeasurementOrPercent"> <xsd:union memberTypes="ST_DecimalNumberOrPercent s:ST_UniversalMeasure"/> </xsd:simpleType> <xsd:complexType name="CT_TblWidth"> <xsd:attribute name="w" type="ST_MeasurementOrPercent"/> <xsd:attribute name="type" type="ST_TblWidth"/> </xsd:complexType> <xsd:complexType name="CT_TblGridCol"> <xsd:attribute name="w" type="s:ST_TwipsMeasure"/> </xsd:complexType> <xsd:complexType name="CT_TblGridBase"> <xsd:sequence> <xsd:element name="gridCol" type="CT_TblGridCol" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_TblGrid"> <xsd:complexContent> <xsd:extension base="CT_TblGridBase"> <xsd:sequence> <xsd:element name="tblGridChange" type="CT_TblGridChange" minOccurs="0"/> </xsd:sequence> </xsd:extension> </xsd:complexContent> </xsd:complexType> <xsd:complexType name="CT_TcBorders"> <xsd:sequence> <xsd:element name="top" type="CT_Border" minOccurs="0"/> <xsd:element name="start" type="CT_Border" minOccurs="0"/> <xsd:element name="left" type="CT_Border" minOccurs="0"/> <xsd:element name="bottom" type="CT_Border" minOccurs="0"/> <xsd:element name="end" type="CT_Border" minOccurs="0"/> <xsd:element name="right" type="CT_Border" minOccurs="0"/> <xsd:element name="insideH" type="CT_Border" minOccurs="0"/> <xsd:element name="insideV" type="CT_Border" minOccurs="0"/> <xsd:element name="tl2br" type="CT_Border" minOccurs="0"/> <xsd:element name="tr2bl" type="CT_Border" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_TcMar"> <xsd:sequence> <xsd:element name="top" type="CT_TblWidth" minOccurs="0" maxOccurs="1"/> <xsd:element name="start" type="CT_TblWidth" minOccurs="0" maxOccurs="1"/> <xsd:element name="left" type="CT_TblWidth" minOccurs="0"/> <xsd:element name="bottom" type="CT_TblWidth" minOccurs="0" maxOccurs="1"/> <xsd:element name="end" type="CT_TblWidth" minOccurs="0" maxOccurs="1"/> <xsd:element name="right" type="CT_TblWidth" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_Merge"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="continue"/> <xsd:enumeration value="restart"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_VMerge"> <xsd:attribute name="val" type="ST_Merge"/> </xsd:complexType> <xsd:complexType name="CT_HMerge"> <xsd:attribute name="val" type="ST_Merge"/> </xsd:complexType> <xsd:complexType name="CT_TcPrBase"> <xsd:sequence> <xsd:element name="cnfStyle" type="CT_Cnf" minOccurs="0" maxOccurs="1"/> <xsd:element name="tcW" type="CT_TblWidth" minOccurs="0" maxOccurs="1"/> <xsd:element name="gridSpan" type="CT_DecimalNumber" minOccurs="0"/> <xsd:element name="hMerge" type="CT_HMerge" minOccurs="0"/> <xsd:element name="vMerge" type="CT_VMerge" minOccurs="0"/> <xsd:element name="tcBorders" type="CT_TcBorders" minOccurs="0" maxOccurs="1"/> <xsd:element name="shd" type="CT_Shd" minOccurs="0"/> <xsd:element name="noWrap" type="CT_OnOff" minOccurs="0"/> <xsd:element name="tcMar" type="CT_TcMar" minOccurs="0" maxOccurs="1"/> <xsd:element name="textDirection" type="CT_TextDirection" minOccurs="0" maxOccurs="1"/> <xsd:element name="tcFitText" type="CT_OnOff" minOccurs="0" maxOccurs="1"/> <xsd:element name="vAlign" type="CT_VerticalJc" minOccurs="0"/> <xsd:element name="hideMark" type="CT_OnOff" minOccurs="0"/> <xsd:element name="headers" type="CT_Headers" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_TcPr"> <xsd:complexContent> <xsd:extension base="CT_TcPrInner"> <xsd:sequence> <xsd:element name="tcPrChange" type="CT_TcPrChange" minOccurs="0"/> </xsd:sequence> </xsd:extension> </xsd:complexContent> </xsd:complexType> <xsd:complexType name="CT_TcPrInner"> <xsd:complexContent> <xsd:extension base="CT_TcPrBase"> <xsd:sequence> <xsd:group ref="EG_CellMarkupElements" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:extension> </xsd:complexContent> </xsd:complexType> <xsd:complexType name="CT_Tc"> <xsd:sequence> <xsd:element name="tcPr" type="CT_TcPr" minOccurs="0" maxOccurs="1"/> <xsd:group ref="EG_BlockLevelElts" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="id" type="s:ST_String" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_Cnf"> <xsd:restriction base="xsd:string"> <xsd:length value="12"/> <xsd:pattern value="[01]*"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Cnf"> <xsd:attribute name="val" type="ST_Cnf"/> <xsd:attribute name="firstRow" type="s:ST_OnOff"/> <xsd:attribute name="lastRow" type="s:ST_OnOff"/> <xsd:attribute name="firstColumn" type="s:ST_OnOff"/> <xsd:attribute name="lastColumn" type="s:ST_OnOff"/> <xsd:attribute name="oddVBand" type="s:ST_OnOff"/> <xsd:attribute name="evenVBand" type="s:ST_OnOff"/> <xsd:attribute name="oddHBand" type="s:ST_OnOff"/> <xsd:attribute name="evenHBand" type="s:ST_OnOff"/> <xsd:attribute name="firstRowFirstColumn" type="s:ST_OnOff"/> <xsd:attribute name="firstRowLastColumn" type="s:ST_OnOff"/> <xsd:attribute name="lastRowFirstColumn" type="s:ST_OnOff"/> <xsd:attribute name="lastRowLastColumn" type="s:ST_OnOff"/> </xsd:complexType> <xsd:complexType name="CT_Headers"> <xsd:sequence minOccurs="0" maxOccurs="unbounded"> <xsd:element name="header" type="CT_String"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_TrPrBase"> <xsd:choice maxOccurs="unbounded"> <xsd:element name="cnfStyle" type="CT_Cnf" minOccurs="0" maxOccurs="1"/> <xsd:element name="divId" type="CT_DecimalNumber" minOccurs="0"/> <xsd:element name="gridBefore" type="CT_DecimalNumber" minOccurs="0"/> <xsd:element name="gridAfter" type="CT_DecimalNumber" minOccurs="0"/> <xsd:element name="wBefore" type="CT_TblWidth" minOccurs="0" maxOccurs="1"/> <xsd:element name="wAfter" type="CT_TblWidth" minOccurs="0" maxOccurs="1"/> <xsd:element name="cantSplit" type="CT_OnOff" minOccurs="0"/> <xsd:element name="trHeight" type="CT_Height" minOccurs="0"/> <xsd:element name="tblHeader" type="CT_OnOff" minOccurs="0"/> <xsd:element name="tblCellSpacing" type="CT_TblWidth" minOccurs="0" maxOccurs="1"/> <xsd:element name="jc" type="CT_JcTable" minOccurs="0" maxOccurs="1"/> <xsd:element name="hidden" type="CT_OnOff" minOccurs="0"/> </xsd:choice> </xsd:complexType> <xsd:complexType name="CT_TrPr"> <xsd:complexContent> <xsd:extension base="CT_TrPrBase"> <xsd:sequence> <xsd:element name="ins" type="CT_TrackChange" minOccurs="0"/> <xsd:element name="del" type="CT_TrackChange" minOccurs="0"/> <xsd:element name="trPrChange" type="CT_TrPrChange" minOccurs="0"/> </xsd:sequence> </xsd:extension> </xsd:complexContent> </xsd:complexType> <xsd:complexType name="CT_Row"> <xsd:sequence> <xsd:element name="tblPrEx" type="CT_TblPrEx" minOccurs="0" maxOccurs="1"/> <xsd:element name="trPr" type="CT_TrPr" minOccurs="0" maxOccurs="1"/> <xsd:group ref="EG_ContentCellContent" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="rsidRPr" type="ST_LongHexNumber"/> <xsd:attribute name="rsidR" type="ST_LongHexNumber"/> <xsd:attribute name="rsidDel" type="ST_LongHexNumber"/> <xsd:attribute name="rsidTr" type="ST_LongHexNumber"/> </xsd:complexType> <xsd:simpleType name="ST_TblLayoutType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="fixed"/> <xsd:enumeration value="autofit"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_TblLayoutType"> <xsd:attribute name="type" type="ST_TblLayoutType"/> </xsd:complexType> <xsd:simpleType name="ST_TblOverlap"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="never"/> <xsd:enumeration value="overlap"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_TblOverlap"> <xsd:attribute name="val" type="ST_TblOverlap" use="required"/> </xsd:complexType> <xsd:complexType name="CT_TblPPr"> <xsd:attribute name="leftFromText" type="s:ST_TwipsMeasure"/> <xsd:attribute name="rightFromText" type="s:ST_TwipsMeasure"/> <xsd:attribute name="topFromText" type="s:ST_TwipsMeasure"/> <xsd:attribute name="bottomFromText" type="s:ST_TwipsMeasure"/> <xsd:attribute name="vertAnchor" type="ST_VAnchor"/> <xsd:attribute name="horzAnchor" type="ST_HAnchor"/> <xsd:attribute name="tblpXSpec" type="s:ST_XAlign"/> <xsd:attribute name="tblpX" type="ST_SignedTwipsMeasure"/> <xsd:attribute name="tblpYSpec" type="s:ST_YAlign"/> <xsd:attribute name="tblpY" type="ST_SignedTwipsMeasure"/> </xsd:complexType> <xsd:complexType name="CT_TblCellMar"> <xsd:sequence> <xsd:element name="top" type="CT_TblWidth" minOccurs="0" maxOccurs="1"/> <xsd:element name="start" type="CT_TblWidth" minOccurs="0" maxOccurs="1"/> <xsd:element name="left" type="CT_TblWidth" minOccurs="0"/> <xsd:element name="bottom" type="CT_TblWidth" minOccurs="0" maxOccurs="1"/> <xsd:element name="end" type="CT_TblWidth" minOccurs="0" maxOccurs="1"/> <xsd:element name="right" type="CT_TblWidth" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_TblBorders"> <xsd:sequence> <xsd:element name="top" type="CT_Border" minOccurs="0"/> <xsd:element name="start" type="CT_Border" minOccurs="0"/> <xsd:element name="left" type="CT_Border" minOccurs="0"/> <xsd:element name="bottom" type="CT_Border" minOccurs="0"/> <xsd:element name="end" type="CT_Border" minOccurs="0"/> <xsd:element name="right" type="CT_Border" minOccurs="0"/> <xsd:element name="insideH" type="CT_Border" minOccurs="0"/> <xsd:element name="insideV" type="CT_Border" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_TblPrBase"> <xsd:sequence> <xsd:element name="tblStyle" type="CT_String" minOccurs="0"/> <xsd:element name="tblpPr" type="CT_TblPPr" minOccurs="0" maxOccurs="1"/> <xsd:element name="tblOverlap" type="CT_TblOverlap" minOccurs="0" maxOccurs="1"/> <xsd:element name="bidiVisual" type="CT_OnOff" minOccurs="0" maxOccurs="1"/> <xsd:element name="tblStyleRowBandSize" type="CT_DecimalNumber" minOccurs="0" maxOccurs="1"/> <xsd:element name="tblStyleColBandSize" type="CT_DecimalNumber" minOccurs="0" maxOccurs="1"/> <xsd:element name="tblW" type="CT_TblWidth" minOccurs="0" maxOccurs="1"/> <xsd:element name="jc" type="CT_JcTable" minOccurs="0" maxOccurs="1"/> <xsd:element name="tblCellSpacing" type="CT_TblWidth" minOccurs="0" maxOccurs="1"/> <xsd:element name="tblInd" type="CT_TblWidth" minOccurs="0" maxOccurs="1"/> <xsd:element name="tblBorders" type="CT_TblBorders" minOccurs="0" maxOccurs="1"/> <xsd:element name="shd" type="CT_Shd" minOccurs="0" maxOccurs="1"/> <xsd:element name="tblLayout" type="CT_TblLayoutType" minOccurs="0" maxOccurs="1"/> <xsd:element name="tblCellMar" type="CT_TblCellMar" minOccurs="0" maxOccurs="1"/> <xsd:element name="tblLook" type="CT_TblLook" minOccurs="0" maxOccurs="1"/> <xsd:element name="tblCaption" type="CT_String" minOccurs="0" maxOccurs="1"/> <xsd:element name="tblDescription" type="CT_String" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_TblPr"> <xsd:complexContent> <xsd:extension base="CT_TblPrBase"> <xsd:sequence> <xsd:element name="tblPrChange" type="CT_TblPrChange" minOccurs="0"/> </xsd:sequence> </xsd:extension> </xsd:complexContent> </xsd:complexType> <xsd:complexType name="CT_TblPrExBase"> <xsd:sequence> <xsd:element name="tblW" type="CT_TblWidth" minOccurs="0" maxOccurs="1"/> <xsd:element name="jc" type="CT_JcTable" minOccurs="0" maxOccurs="1"/> <xsd:element name="tblCellSpacing" type="CT_TblWidth" minOccurs="0" maxOccurs="1"/> <xsd:element name="tblInd" type="CT_TblWidth" minOccurs="0" maxOccurs="1"/> <xsd:element name="tblBorders" type="CT_TblBorders" minOccurs="0" maxOccurs="1"/> <xsd:element name="shd" type="CT_Shd" minOccurs="0" maxOccurs="1"/> <xsd:element name="tblLayout" type="CT_TblLayoutType" minOccurs="0" maxOccurs="1"/> <xsd:element name="tblCellMar" type="CT_TblCellMar" minOccurs="0" maxOccurs="1"/> <xsd:element name="tblLook" type="CT_TblLook" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_TblPrEx"> <xsd:complexContent> <xsd:extension base="CT_TblPrExBase"> <xsd:sequence> <xsd:element name="tblPrExChange" type="CT_TblPrExChange" minOccurs="0"/> </xsd:sequence> </xsd:extension> </xsd:complexContent> </xsd:complexType> <xsd:complexType name="CT_Tbl"> <xsd:sequence> <xsd:group ref="EG_RangeMarkupElements" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="tblPr" type="CT_TblPr"/> <xsd:element name="tblGrid" type="CT_TblGrid"/> <xsd:group ref="EG_ContentRowContent" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_TblLook"> <xsd:attribute name="firstRow" type="s:ST_OnOff"/> <xsd:attribute name="lastRow" type="s:ST_OnOff"/> <xsd:attribute name="firstColumn" type="s:ST_OnOff"/> <xsd:attribute name="lastColumn" type="s:ST_OnOff"/> <xsd:attribute name="noHBand" type="s:ST_OnOff"/> <xsd:attribute name="noVBand" type="s:ST_OnOff"/> <xsd:attribute name="val" type="ST_ShortHexNumber"/> </xsd:complexType> <xsd:simpleType name="ST_FtnPos"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="pageBottom"/> <xsd:enumeration value="beneathText"/> <xsd:enumeration value="sectEnd"/> <xsd:enumeration value="docEnd"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_FtnPos"> <xsd:attribute name="val" type="ST_FtnPos" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_EdnPos"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="sectEnd"/> <xsd:enumeration value="docEnd"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_EdnPos"> <xsd:attribute name="val" type="ST_EdnPos" use="required"/> </xsd:complexType> <xsd:complexType name="CT_NumFmt"> <xsd:attribute name="val" type="ST_NumberFormat" use="required"/> <xsd:attribute name="format" type="s:ST_String" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_RestartNumber"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="continuous"/> <xsd:enumeration value="eachSect"/> <xsd:enumeration value="eachPage"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_NumRestart"> <xsd:attribute name="val" type="ST_RestartNumber" use="required"/> </xsd:complexType> <xsd:complexType name="CT_FtnEdnRef"> <xsd:attribute name="customMarkFollows" type="s:ST_OnOff" use="optional"/> <xsd:attribute name="id" use="required" type="ST_DecimalNumber"/> </xsd:complexType> <xsd:complexType name="CT_FtnEdnSepRef"> <xsd:attribute name="id" type="ST_DecimalNumber" use="required"/> </xsd:complexType> <xsd:complexType name="CT_FtnEdn"> <xsd:sequence> <xsd:group ref="EG_BlockLevelElts" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="type" type="ST_FtnEdn" use="optional"/> <xsd:attribute name="id" type="ST_DecimalNumber" use="required"/> </xsd:complexType> <xsd:group name="EG_FtnEdnNumProps"> <xsd:sequence> <xsd:element name="numStart" type="CT_DecimalNumber" minOccurs="0"/> <xsd:element name="numRestart" type="CT_NumRestart" minOccurs="0"/> </xsd:sequence> </xsd:group> <xsd:complexType name="CT_FtnProps"> <xsd:sequence> <xsd:element name="pos" type="CT_FtnPos" minOccurs="0"/> <xsd:element name="numFmt" type="CT_NumFmt" minOccurs="0"/> <xsd:group ref="EG_FtnEdnNumProps" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_EdnProps"> <xsd:sequence> <xsd:element name="pos" type="CT_EdnPos" minOccurs="0"/> <xsd:element name="numFmt" type="CT_NumFmt" minOccurs="0"/> <xsd:group ref="EG_FtnEdnNumProps" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_FtnDocProps"> <xsd:complexContent> <xsd:extension base="CT_FtnProps"> <xsd:sequence> <xsd:element name="footnote" type="CT_FtnEdnSepRef" minOccurs="0" maxOccurs="3"/> </xsd:sequence> </xsd:extension> </xsd:complexContent> </xsd:complexType> <xsd:complexType name="CT_EdnDocProps"> <xsd:complexContent> <xsd:extension base="CT_EdnProps"> <xsd:sequence> <xsd:element name="endnote" type="CT_FtnEdnSepRef" minOccurs="0" maxOccurs="3"/> </xsd:sequence> </xsd:extension> </xsd:complexContent> </xsd:complexType> <xsd:complexType name="CT_RecipientData"> <xsd:sequence> <xsd:element name="active" type="CT_OnOff" minOccurs="0"/> <xsd:element name="column" type="CT_DecimalNumber" minOccurs="1"/> <xsd:element name="uniqueTag" type="CT_Base64Binary" minOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Base64Binary"> <xsd:attribute name="val" type="xsd:base64Binary" use="required"/> </xsd:complexType> <xsd:complexType name="CT_Recipients"> <xsd:sequence> <xsd:element name="recipientData" type="CT_RecipientData" minOccurs="1" maxOccurs="unbounded" /> </xsd:sequence> </xsd:complexType> <xsd:element name="recipients" type="CT_Recipients"/> <xsd:complexType name="CT_OdsoFieldMapData"> <xsd:sequence> <xsd:element name="type" type="CT_MailMergeOdsoFMDFieldType" minOccurs="0"/> <xsd:element name="name" type="CT_String" minOccurs="0"/> <xsd:element name="mappedName" type="CT_String" minOccurs="0"/> <xsd:element name="column" type="CT_DecimalNumber" minOccurs="0"/> <xsd:element name="lid" type="CT_Lang" minOccurs="0"/> <xsd:element name="dynamicAddress" type="CT_OnOff" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_MailMergeSourceType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="database"/> <xsd:enumeration value="addressBook"/> <xsd:enumeration value="document1"/> <xsd:enumeration value="document2"/> <xsd:enumeration value="text"/> <xsd:enumeration value="email"/> <xsd:enumeration value="native"/> <xsd:enumeration value="legacy"/> <xsd:enumeration value="master"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_MailMergeSourceType"> <xsd:attribute name="val" use="required" type="ST_MailMergeSourceType"/> </xsd:complexType> <xsd:complexType name="CT_Odso"> <xsd:sequence> <xsd:element name="udl" type="CT_String" minOccurs="0"/> <xsd:element name="table" type="CT_String" minOccurs="0"/> <xsd:element name="src" type="CT_Rel" minOccurs="0"/> <xsd:element name="colDelim" type="CT_DecimalNumber" minOccurs="0"/> <xsd:element name="type" type="CT_MailMergeSourceType" minOccurs="0"/> <xsd:element name="fHdr" type="CT_OnOff" minOccurs="0"/> <xsd:element name="fieldMapData" type="CT_OdsoFieldMapData" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="recipientData" type="CT_Rel" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_MailMerge"> <xsd:sequence> <xsd:element name="mainDocumentType" type="CT_MailMergeDocType" minOccurs="1"/> <xsd:element name="linkToQuery" type="CT_OnOff" minOccurs="0"/> <xsd:element name="dataType" type="CT_MailMergeDataType" minOccurs="1"/> <xsd:element name="connectString" type="CT_String" minOccurs="0"/> <xsd:element name="query" type="CT_String" minOccurs="0"/> <xsd:element name="dataSource" type="CT_Rel" minOccurs="0"/> <xsd:element name="headerSource" type="CT_Rel" minOccurs="0"/> <xsd:element name="doNotSuppressBlankLines" type="CT_OnOff" minOccurs="0"/> <xsd:element name="destination" type="CT_MailMergeDest" minOccurs="0"/> <xsd:element name="addressFieldName" type="CT_String" minOccurs="0"/> <xsd:element name="mailSubject" type="CT_String" minOccurs="0"/> <xsd:element name="mailAsAttachment" type="CT_OnOff" minOccurs="0"/> <xsd:element name="viewMergedData" type="CT_OnOff" minOccurs="0"/> <xsd:element name="activeRecord" type="CT_DecimalNumber" minOccurs="0"/> <xsd:element name="checkErrors" type="CT_DecimalNumber" minOccurs="0"/> <xsd:element name="odso" type="CT_Odso" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_TargetScreenSz"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="544x376"/> <xsd:enumeration value="640x480"/> <xsd:enumeration value="720x512"/> <xsd:enumeration value="800x600"/> <xsd:enumeration value="1024x768"/> <xsd:enumeration value="1152x882"/> <xsd:enumeration value="1152x900"/> <xsd:enumeration value="1280x1024"/> <xsd:enumeration value="1600x1200"/> <xsd:enumeration value="1800x1440"/> <xsd:enumeration value="1920x1200"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_TargetScreenSz"> <xsd:attribute name="val" type="ST_TargetScreenSz" use="required"/> </xsd:complexType> <xsd:complexType name="CT_Compat"> <xsd:sequence> <xsd:element name="useSingleBorderforContiguousCells" type="CT_OnOff" minOccurs="0"/> <xsd:element name="wpJustification" type="CT_OnOff" minOccurs="0"/> <xsd:element name="noTabHangInd" type="CT_OnOff" minOccurs="0"/> <xsd:element name="noLeading" type="CT_OnOff" minOccurs="0"/> <xsd:element name="spaceForUL" type="CT_OnOff" minOccurs="0"/> <xsd:element name="noColumnBalance" type="CT_OnOff" minOccurs="0"/> <xsd:element name="balanceSingleByteDoubleByteWidth" type="CT_OnOff" minOccurs="0"/> <xsd:element name="noExtraLineSpacing" type="CT_OnOff" minOccurs="0"/> <xsd:element name="doNotLeaveBackslashAlone" type="CT_OnOff" minOccurs="0"/> <xsd:element name="ulTrailSpace" type="CT_OnOff" minOccurs="0"/> <xsd:element name="doNotExpandShiftReturn" type="CT_OnOff" minOccurs="0"/> <xsd:element name="spacingInWholePoints" type="CT_OnOff" minOccurs="0"/> <xsd:element name="lineWrapLikeWord6" type="CT_OnOff" minOccurs="0"/> <xsd:element name="printBodyTextBeforeHeader" type="CT_OnOff" minOccurs="0"/> <xsd:element name="printColBlack" type="CT_OnOff" minOccurs="0"/> <xsd:element name="wpSpaceWidth" type="CT_OnOff" minOccurs="0"/> <xsd:element name="showBreaksInFrames" type="CT_OnOff" minOccurs="0"/> <xsd:element name="subFontBySize" type="CT_OnOff" minOccurs="0"/> <xsd:element name="suppressBottomSpacing" type="CT_OnOff" minOccurs="0"/> <xsd:element name="suppressTopSpacing" type="CT_OnOff" minOccurs="0"/> <xsd:element name="suppressSpacingAtTopOfPage" type="CT_OnOff" minOccurs="0"/> <xsd:element name="suppressTopSpacingWP" type="CT_OnOff" minOccurs="0"/> <xsd:element name="suppressSpBfAfterPgBrk" type="CT_OnOff" minOccurs="0"/> <xsd:element name="swapBordersFacingPages" type="CT_OnOff" minOccurs="0"/> <xsd:element name="convMailMergeEsc" type="CT_OnOff" minOccurs="0"/> <xsd:element name="truncateFontHeightsLikeWP6" type="CT_OnOff" minOccurs="0"/> <xsd:element name="mwSmallCaps" type="CT_OnOff" minOccurs="0"/> <xsd:element name="usePrinterMetrics" type="CT_OnOff" minOccurs="0"/> <xsd:element name="doNotSuppressParagraphBorders" type="CT_OnOff" minOccurs="0"/> <xsd:element name="wrapTrailSpaces" type="CT_OnOff" minOccurs="0"/> <xsd:element name="footnoteLayoutLikeWW8" type="CT_OnOff" minOccurs="0"/> <xsd:element name="shapeLayoutLikeWW8" type="CT_OnOff" minOccurs="0"/> <xsd:element name="alignTablesRowByRow" type="CT_OnOff" minOccurs="0"/> <xsd:element name="forgetLastTabAlignment" type="CT_OnOff" minOccurs="0"/> <xsd:element name="adjustLineHeightInTable" type="CT_OnOff" minOccurs="0"/> <xsd:element name="autoSpaceLikeWord95" type="CT_OnOff" minOccurs="0"/> <xsd:element name="noSpaceRaiseLower" type="CT_OnOff" minOccurs="0"/> <xsd:element name="doNotUseHTMLParagraphAutoSpacing" type="CT_OnOff" minOccurs="0"/> <xsd:element name="layoutRawTableWidth" type="CT_OnOff" minOccurs="0"/> <xsd:element name="layoutTableRowsApart" type="CT_OnOff" minOccurs="0"/> <xsd:element name="useWord97LineBreakRules" type="CT_OnOff" minOccurs="0"/> <xsd:element name="doNotBreakWrappedTables" type="CT_OnOff" minOccurs="0"/> <xsd:element name="doNotSnapToGridInCell" type="CT_OnOff" minOccurs="0"/> <xsd:element name="selectFldWithFirstOrLastChar" type="CT_OnOff" minOccurs="0"/> <xsd:element name="applyBreakingRules" type="CT_OnOff" minOccurs="0"/> <xsd:element name="doNotWrapTextWithPunct" type="CT_OnOff" minOccurs="0"/> <xsd:element name="doNotUseEastAsianBreakRules" type="CT_OnOff" minOccurs="0"/> <xsd:element name="useWord2002TableStyleRules" type="CT_OnOff" minOccurs="0"/> <xsd:element name="growAutofit" type="CT_OnOff" minOccurs="0"/> <xsd:element name="useFELayout" type="CT_OnOff" minOccurs="0"/> <xsd:element name="useNormalStyleForList" type="CT_OnOff" minOccurs="0"/> <xsd:element name="doNotUseIndentAsNumberingTabStop" type="CT_OnOff" minOccurs="0"/> <xsd:element name="useAltKinsokuLineBreakRules" type="CT_OnOff" minOccurs="0"/> <xsd:element name="allowSpaceOfSameStyleInTable" type="CT_OnOff" minOccurs="0"/> <xsd:element name="doNotSuppressIndentation" type="CT_OnOff" minOccurs="0"/> <xsd:element name="doNotAutofitConstrainedTables" type="CT_OnOff" minOccurs="0"/> <xsd:element name="autofitToFirstFixedWidthCell" type="CT_OnOff" minOccurs="0"/> <xsd:element name="underlineTabInNumList" type="CT_OnOff" minOccurs="0"/> <xsd:element name="displayHangulFixedWidth" type="CT_OnOff" minOccurs="0"/> <xsd:element name="splitPgBreakAndParaMark" type="CT_OnOff" minOccurs="0"/> <xsd:element name="doNotVertAlignCellWithSp" type="CT_OnOff" minOccurs="0"/> <xsd:element name="doNotBreakConstrainedForcedTable" type="CT_OnOff" minOccurs="0"/> <xsd:element name="doNotVertAlignInTxbx" type="CT_OnOff" minOccurs="0"/> <xsd:element name="useAnsiKerningPairs" type="CT_OnOff" minOccurs="0"/> <xsd:element name="cachedColBalance" type="CT_OnOff" minOccurs="0"/> <xsd:element name="compatSetting" type="CT_CompatSetting" minOccurs="0" maxOccurs="unbounded" /> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_CompatSetting"> <xsd:attribute name="name" type="s:ST_String"/> <xsd:attribute name="uri" type="s:ST_String"/> <xsd:attribute name="val" type="s:ST_String"/> </xsd:complexType> <xsd:complexType name="CT_DocVar"> <xsd:attribute name="name" type="s:ST_String" use="required"/> <xsd:attribute name="val" type="s:ST_String" use="required"/> </xsd:complexType> <xsd:complexType name="CT_DocVars"> <xsd:sequence> <xsd:element name="docVar" type="CT_DocVar" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_DocRsids"> <xsd:sequence> <xsd:element name="rsidRoot" type="CT_LongHexNumber" minOccurs="0" maxOccurs="1"/> <xsd:element name="rsid" type="CT_LongHexNumber" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_CharacterSpacing"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="doNotCompress"/> <xsd:enumeration value="compressPunctuation"/> <xsd:enumeration value="compressPunctuationAndJapaneseKana"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_CharacterSpacing"> <xsd:attribute name="val" type="ST_CharacterSpacing" use="required"/> </xsd:complexType> <xsd:complexType name="CT_SaveThroughXslt"> <xsd:attribute ref="r:id" use="optional"/> <xsd:attribute name="solutionID" type="s:ST_String" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_RPrDefault"> <xsd:sequence> <xsd:element name="rPr" type="CT_RPr" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_PPrDefault"> <xsd:sequence> <xsd:element name="pPr" type="CT_PPrGeneral" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_DocDefaults"> <xsd:sequence> <xsd:element name="rPrDefault" type="CT_RPrDefault" minOccurs="0"/> <xsd:element name="pPrDefault" type="CT_PPrDefault" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_WmlColorSchemeIndex"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="dark1"/> <xsd:enumeration value="light1"/> <xsd:enumeration value="dark2"/> <xsd:enumeration value="light2"/> <xsd:enumeration value="accent1"/> <xsd:enumeration value="accent2"/> <xsd:enumeration value="accent3"/> <xsd:enumeration value="accent4"/> <xsd:enumeration value="accent5"/> <xsd:enumeration value="accent6"/> <xsd:enumeration value="hyperlink"/> <xsd:enumeration value="followedHyperlink"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_ColorSchemeMapping"> <xsd:attribute name="bg1" type="ST_WmlColorSchemeIndex"/> <xsd:attribute name="t1" type="ST_WmlColorSchemeIndex"/> <xsd:attribute name="bg2" type="ST_WmlColorSchemeIndex"/> <xsd:attribute name="t2" type="ST_WmlColorSchemeIndex"/> <xsd:attribute name="accent1" type="ST_WmlColorSchemeIndex"/> <xsd:attribute name="accent2" type="ST_WmlColorSchemeIndex"/> <xsd:attribute name="accent3" type="ST_WmlColorSchemeIndex"/> <xsd:attribute name="accent4" type="ST_WmlColorSchemeIndex"/> <xsd:attribute name="accent5" type="ST_WmlColorSchemeIndex"/> <xsd:attribute name="accent6" type="ST_WmlColorSchemeIndex"/> <xsd:attribute name="hyperlink" type="ST_WmlColorSchemeIndex"/> <xsd:attribute name="followedHyperlink" type="ST_WmlColorSchemeIndex"/> </xsd:complexType> <xsd:complexType name="CT_ReadingModeInkLockDown"> <xsd:attribute name="actualPg" type="s:ST_OnOff" use="required"/> <xsd:attribute name="w" type="ST_PixelsMeasure" use="required"/> <xsd:attribute name="h" type="ST_PixelsMeasure" use="required"/> <xsd:attribute name="fontSz" type="ST_DecimalNumberOrPercent" use="required"/> </xsd:complexType> <xsd:complexType name="CT_WriteProtection"> <xsd:attribute name="recommended" type="s:ST_OnOff" use="optional"/> <xsd:attributeGroup ref="AG_Password"/> <xsd:attributeGroup ref="AG_TransitionalPassword"/> </xsd:complexType> <xsd:complexType name="CT_Settings"> <xsd:sequence> <xsd:element name="writeProtection" type="CT_WriteProtection" minOccurs="0"/> <xsd:element name="view" type="CT_View" minOccurs="0"/> <xsd:element name="zoom" type="CT_Zoom" minOccurs="0"/> <xsd:element name="removePersonalInformation" type="CT_OnOff" minOccurs="0"/> <xsd:element name="removeDateAndTime" type="CT_OnOff" minOccurs="0"/> <xsd:element name="doNotDisplayPageBoundaries" type="CT_OnOff" minOccurs="0"/> <xsd:element name="displayBackgroundShape" type="CT_OnOff" minOccurs="0"/> <xsd:element name="printPostScriptOverText" type="CT_OnOff" minOccurs="0"/> <xsd:element name="printFractionalCharacterWidth" type="CT_OnOff" minOccurs="0"/> <xsd:element name="printFormsData" type="CT_OnOff" minOccurs="0"/> <xsd:element name="embedTrueTypeFonts" type="CT_OnOff" minOccurs="0"/> <xsd:element name="embedSystemFonts" type="CT_OnOff" minOccurs="0"/> <xsd:element name="saveSubsetFonts" type="CT_OnOff" minOccurs="0"/> <xsd:element name="saveFormsData" type="CT_OnOff" minOccurs="0"/> <xsd:element name="mirrorMargins" type="CT_OnOff" minOccurs="0"/> <xsd:element name="alignBordersAndEdges" type="CT_OnOff" minOccurs="0"/> <xsd:element name="bordersDoNotSurroundHeader" type="CT_OnOff" minOccurs="0"/> <xsd:element name="bordersDoNotSurroundFooter" type="CT_OnOff" minOccurs="0"/> <xsd:element name="gutterAtTop" type="CT_OnOff" minOccurs="0"/> <xsd:element name="hideSpellingErrors" type="CT_OnOff" minOccurs="0"/> <xsd:element name="hideGrammaticalErrors" type="CT_OnOff" minOccurs="0"/> <xsd:element name="activeWritingStyle" type="CT_WritingStyle" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="proofState" type="CT_Proof" minOccurs="0"/> <xsd:element name="formsDesign" type="CT_OnOff" minOccurs="0"/> <xsd:element name="attachedTemplate" type="CT_Rel" minOccurs="0"/> <xsd:element name="linkStyles" type="CT_OnOff" minOccurs="0"/> <xsd:element name="stylePaneFormatFilter" type="CT_StylePaneFilter" minOccurs="0"/> <xsd:element name="stylePaneSortMethod" type="CT_StyleSort" minOccurs="0"/> <xsd:element name="documentType" type="CT_DocType" minOccurs="0"/> <xsd:element name="mailMerge" type="CT_MailMerge" minOccurs="0"/> <xsd:element name="revisionView" type="CT_TrackChangesView" minOccurs="0"/> <xsd:element name="trackRevisions" type="CT_OnOff" minOccurs="0"/> <xsd:element name="doNotTrackMoves" type="CT_OnOff" minOccurs="0"/> <xsd:element name="doNotTrackFormatting" type="CT_OnOff" minOccurs="0"/> <xsd:element name="documentProtection" type="CT_DocProtect" minOccurs="0"/> <xsd:element name="autoFormatOverride" type="CT_OnOff" minOccurs="0"/> <xsd:element name="styleLockTheme" type="CT_OnOff" minOccurs="0"/> <xsd:element name="styleLockQFSet" type="CT_OnOff" minOccurs="0"/> <xsd:element name="defaultTabStop" type="CT_TwipsMeasure" minOccurs="0"/> <xsd:element name="autoHyphenation" type="CT_OnOff" minOccurs="0"/> <xsd:element name="consecutiveHyphenLimit" type="CT_DecimalNumber" minOccurs="0"/> <xsd:element name="hyphenationZone" type="CT_TwipsMeasure" minOccurs="0"/> <xsd:element name="doNotHyphenateCaps" type="CT_OnOff" minOccurs="0"/> <xsd:element name="showEnvelope" type="CT_OnOff" minOccurs="0"/> <xsd:element name="summaryLength" type="CT_DecimalNumberOrPrecent" minOccurs="0"/> <xsd:element name="clickAndTypeStyle" type="CT_String" minOccurs="0"/> <xsd:element name="defaultTableStyle" type="CT_String" minOccurs="0"/> <xsd:element name="evenAndOddHeaders" type="CT_OnOff" minOccurs="0"/> <xsd:element name="bookFoldRevPrinting" type="CT_OnOff" minOccurs="0"/> <xsd:element name="bookFoldPrinting" type="CT_OnOff" minOccurs="0"/> <xsd:element name="bookFoldPrintingSheets" type="CT_DecimalNumber" minOccurs="0"/> <xsd:element name="drawingGridHorizontalSpacing" type="CT_TwipsMeasure" minOccurs="0"/> <xsd:element name="drawingGridVerticalSpacing" type="CT_TwipsMeasure" minOccurs="0"/> <xsd:element name="displayHorizontalDrawingGridEvery" type="CT_DecimalNumber" minOccurs="0"/> <xsd:element name="displayVerticalDrawingGridEvery" type="CT_DecimalNumber" minOccurs="0"/> <xsd:element name="doNotUseMarginsForDrawingGridOrigin" type="CT_OnOff" minOccurs="0"/> <xsd:element name="drawingGridHorizontalOrigin" type="CT_TwipsMeasure" minOccurs="0"/> <xsd:element name="drawingGridVerticalOrigin" type="CT_TwipsMeasure" minOccurs="0"/> <xsd:element name="doNotShadeFormData" type="CT_OnOff" minOccurs="0"/> <xsd:element name="noPunctuationKerning" type="CT_OnOff" minOccurs="0"/> <xsd:element name="characterSpacingControl" type="CT_CharacterSpacing" minOccurs="0"/> <xsd:element name="printTwoOnOne" type="CT_OnOff" minOccurs="0"/> <xsd:element name="strictFirstAndLastChars" type="CT_OnOff" minOccurs="0"/> <xsd:element name="noLineBreaksAfter" type="CT_Kinsoku" minOccurs="0"/> <xsd:element name="noLineBreaksBefore" type="CT_Kinsoku" minOccurs="0"/> <xsd:element name="savePreviewPicture" type="CT_OnOff" minOccurs="0"/> <xsd:element name="doNotValidateAgainstSchema" type="CT_OnOff" minOccurs="0"/> <xsd:element name="saveInvalidXml" type="CT_OnOff" minOccurs="0"/> <xsd:element name="ignoreMixedContent" type="CT_OnOff" minOccurs="0"/> <xsd:element name="alwaysShowPlaceholderText" type="CT_OnOff" minOccurs="0"/> <xsd:element name="doNotDemarcateInvalidXml" type="CT_OnOff" minOccurs="0"/> <xsd:element name="saveXmlDataOnly" type="CT_OnOff" minOccurs="0"/> <xsd:element name="useXSLTWhenSaving" type="CT_OnOff" minOccurs="0"/> <xsd:element name="saveThroughXslt" type="CT_SaveThroughXslt" minOccurs="0"/> <xsd:element name="showXMLTags" type="CT_OnOff" minOccurs="0"/> <xsd:element name="alwaysMergeEmptyNamespace" type="CT_OnOff" minOccurs="0"/> <xsd:element name="updateFields" type="CT_OnOff" minOccurs="0"/> <xsd:element name="hdrShapeDefaults" type="CT_ShapeDefaults" minOccurs="0"/> <xsd:element name="footnotePr" type="CT_FtnDocProps" minOccurs="0"/> <xsd:element name="endnotePr" type="CT_EdnDocProps" minOccurs="0"/> <xsd:element name="compat" type="CT_Compat" minOccurs="0"/> <xsd:element name="docVars" type="CT_DocVars" minOccurs="0"/> <xsd:element name="rsids" type="CT_DocRsids" minOccurs="0"/> <xsd:element ref="m:mathPr" minOccurs="0" maxOccurs="1"/> <xsd:element name="attachedSchema" type="CT_String" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="themeFontLang" type="CT_Language" minOccurs="0" maxOccurs="1"/> <xsd:element name="clrSchemeMapping" type="CT_ColorSchemeMapping" minOccurs="0"/> <xsd:element name="doNotIncludeSubdocsInStats" type="CT_OnOff" minOccurs="0"/> <xsd:element name="doNotAutoCompressPictures" type="CT_OnOff" minOccurs="0"/> <xsd:element name="forceUpgrade" type="CT_Empty" minOccurs="0" maxOccurs="1"/> <xsd:element name="captions" type="CT_Captions" minOccurs="0" maxOccurs="1"/> <xsd:element name="readModeInkLockDown" type="CT_ReadingModeInkLockDown" minOccurs="0"/> <xsd:element name="smartTagType" type="CT_SmartTagType" minOccurs="0" maxOccurs="unbounded"/> <xsd:element ref="sl:schemaLibrary" minOccurs="0" maxOccurs="1"/> <xsd:element name="shapeDefaults" type="CT_ShapeDefaults" minOccurs="0"/> <xsd:element name="doNotEmbedSmartTags" type="CT_OnOff" minOccurs="0"/> <xsd:element name="decimalSymbol" type="CT_String" minOccurs="0" maxOccurs="1"/> <xsd:element name="listSeparator" type="CT_String" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_StyleSort"> <xsd:attribute name="val" type="ST_StyleSort" use="required"/> </xsd:complexType> <xsd:complexType name="CT_StylePaneFilter"> <xsd:attribute name="allStyles" type="s:ST_OnOff"/> <xsd:attribute name="customStyles" type="s:ST_OnOff"/> <xsd:attribute name="latentStyles" type="s:ST_OnOff"/> <xsd:attribute name="stylesInUse" type="s:ST_OnOff"/> <xsd:attribute name="headingStyles" type="s:ST_OnOff"/> <xsd:attribute name="numberingStyles" type="s:ST_OnOff"/> <xsd:attribute name="tableStyles" type="s:ST_OnOff"/> <xsd:attribute name="directFormattingOnRuns" type="s:ST_OnOff"/> <xsd:attribute name="directFormattingOnParagraphs" type="s:ST_OnOff"/> <xsd:attribute name="directFormattingOnNumbering" type="s:ST_OnOff"/> <xsd:attribute name="directFormattingOnTables" type="s:ST_OnOff"/> <xsd:attribute name="clearFormatting" type="s:ST_OnOff"/> <xsd:attribute name="top3HeadingStyles" type="s:ST_OnOff"/> <xsd:attribute name="visibleStyles" type="s:ST_OnOff"/> <xsd:attribute name="alternateStyleNames" type="s:ST_OnOff"/> <xsd:attribute name="val" type="ST_ShortHexNumber"/> </xsd:complexType> <xsd:simpleType name="ST_StyleSort"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="name"/> <xsd:enumeration value="priority"/> <xsd:enumeration value="default"/> <xsd:enumeration value="font"/> <xsd:enumeration value="basedOn"/> <xsd:enumeration value="type"/> <xsd:enumeration value="0000"/> <xsd:enumeration value="0001"/> <xsd:enumeration value="0002"/> <xsd:enumeration value="0003"/> <xsd:enumeration value="0004"/> <xsd:enumeration value="0005"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_WebSettings"> <xsd:sequence> <xsd:element name="frameset" type="CT_Frameset" minOccurs="0"/> <xsd:element name="divs" type="CT_Divs" minOccurs="0"/> <xsd:element name="encoding" type="CT_String" minOccurs="0"/> <xsd:element name="optimizeForBrowser" type="CT_OptimizeForBrowser" minOccurs="0"/> <xsd:element name="relyOnVML" type="CT_OnOff" minOccurs="0"/> <xsd:element name="allowPNG" type="CT_OnOff" minOccurs="0"/> <xsd:element name="doNotRelyOnCSS" type="CT_OnOff" minOccurs="0"/> <xsd:element name="doNotSaveAsSingleFile" type="CT_OnOff" minOccurs="0"/> <xsd:element name="doNotOrganizeInFolder" type="CT_OnOff" minOccurs="0"/> <xsd:element name="doNotUseLongFileNames" type="CT_OnOff" minOccurs="0"/> <xsd:element name="pixelsPerInch" type="CT_DecimalNumber" minOccurs="0"/> <xsd:element name="targetScreenSz" type="CT_TargetScreenSz" minOccurs="0"/> <xsd:element name="saveSmartTagsAsXml" type="CT_OnOff" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_FrameScrollbar"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="on"/> <xsd:enumeration value="off"/> <xsd:enumeration value="auto"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_FrameScrollbar"> <xsd:attribute name="val" type="ST_FrameScrollbar" use="required"/> </xsd:complexType> <xsd:complexType name="CT_OptimizeForBrowser"> <xsd:complexContent> <xsd:extension base="CT_OnOff"> <xsd:attribute name="target" type="s:ST_String" use="optional"/> </xsd:extension> </xsd:complexContent> </xsd:complexType> <xsd:complexType name="CT_Frame"> <xsd:sequence> <xsd:element name="sz" type="CT_String" minOccurs="0"/> <xsd:element name="name" type="CT_String" minOccurs="0"/> <xsd:element name="title" type="CT_String" minOccurs="0"/> <xsd:element name="longDesc" type="CT_Rel" minOccurs="0"/> <xsd:element name="sourceFileName" type="CT_Rel" minOccurs="0"/> <xsd:element name="marW" type="CT_PixelsMeasure" minOccurs="0"/> <xsd:element name="marH" type="CT_PixelsMeasure" minOccurs="0"/> <xsd:element name="scrollbar" type="CT_FrameScrollbar" minOccurs="0"/> <xsd:element name="noResizeAllowed" type="CT_OnOff" minOccurs="0"/> <xsd:element name="linkedToFile" type="CT_OnOff" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_FrameLayout"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="rows"/> <xsd:enumeration value="cols"/> <xsd:enumeration value="none"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_FrameLayout"> <xsd:attribute name="val" type="ST_FrameLayout" use="required"/> </xsd:complexType> <xsd:complexType name="CT_FramesetSplitbar"> <xsd:sequence> <xsd:element name="w" type="CT_TwipsMeasure" minOccurs="0"/> <xsd:element name="color" type="CT_Color" minOccurs="0"/> <xsd:element name="noBorder" type="CT_OnOff" minOccurs="0"/> <xsd:element name="flatBorders" type="CT_OnOff" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Frameset"> <xsd:sequence> <xsd:element name="sz" type="CT_String" minOccurs="0"/> <xsd:element name="framesetSplitbar" type="CT_FramesetSplitbar" minOccurs="0"/> <xsd:element name="frameLayout" type="CT_FrameLayout" minOccurs="0"/> <xsd:element name="title" type="CT_String" minOccurs="0"/> <xsd:choice minOccurs="0" maxOccurs="unbounded"> <xsd:element name="frameset" type="CT_Frameset" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="frame" type="CT_Frame" minOccurs="0" maxOccurs="unbounded"/> </xsd:choice> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_NumPicBullet"> <xsd:choice> <xsd:element name="pict" type="CT_Picture"/> <xsd:element name="drawing" type="CT_Drawing"/> </xsd:choice> <xsd:attribute name="numPicBulletId" type="ST_DecimalNumber" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_LevelSuffix"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="tab"/> <xsd:enumeration value="space"/> <xsd:enumeration value="nothing"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_LevelSuffix"> <xsd:attribute name="val" type="ST_LevelSuffix" use="required"/> </xsd:complexType> <xsd:complexType name="CT_LevelText"> <xsd:attribute name="val" type="s:ST_String" use="optional"/> <xsd:attribute name="null" type="s:ST_OnOff" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_LvlLegacy"> <xsd:attribute name="legacy" type="s:ST_OnOff" use="optional"/> <xsd:attribute name="legacySpace" type="s:ST_TwipsMeasure" use="optional"/> <xsd:attribute name="legacyIndent" type="ST_SignedTwipsMeasure" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_Lvl"> <xsd:sequence> <xsd:element name="start" type="CT_DecimalNumber" minOccurs="0"/> <xsd:element name="numFmt" type="CT_NumFmt" minOccurs="0"/> <xsd:element name="lvlRestart" type="CT_DecimalNumber" minOccurs="0"/> <xsd:element name="pStyle" type="CT_String" minOccurs="0"/> <xsd:element name="isLgl" type="CT_OnOff" minOccurs="0"/> <xsd:element name="suff" type="CT_LevelSuffix" minOccurs="0"/> <xsd:element name="lvlText" type="CT_LevelText" minOccurs="0"/> <xsd:element name="lvlPicBulletId" type="CT_DecimalNumber" minOccurs="0"/> <xsd:element name="legacy" type="CT_LvlLegacy" minOccurs="0"/> <xsd:element name="lvlJc" type="CT_Jc" minOccurs="0"/> <xsd:element name="pPr" type="CT_PPrGeneral" minOccurs="0"/> <xsd:element name="rPr" type="CT_RPr" minOccurs="0"/> </xsd:sequence> <xsd:attribute name="ilvl" type="ST_DecimalNumber" use="required"/> <xsd:attribute name="tplc" type="ST_LongHexNumber" use="optional"/> <xsd:attribute name="tentative" type="s:ST_OnOff" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_MultiLevelType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="singleLevel"/> <xsd:enumeration value="multilevel"/> <xsd:enumeration value="hybridMultilevel"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_MultiLevelType"> <xsd:attribute name="val" type="ST_MultiLevelType" use="required"/> </xsd:complexType> <xsd:complexType name="CT_AbstractNum"> <xsd:sequence> <xsd:element name="nsid" type="CT_LongHexNumber" minOccurs="0"/> <xsd:element name="multiLevelType" type="CT_MultiLevelType" minOccurs="0"/> <xsd:element name="tmpl" type="CT_LongHexNumber" minOccurs="0"/> <xsd:element name="name" type="CT_String" minOccurs="0"/> <xsd:element name="styleLink" type="CT_String" minOccurs="0"/> <xsd:element name="numStyleLink" type="CT_String" minOccurs="0"/> <xsd:element name="lvl" type="CT_Lvl" minOccurs="0" maxOccurs="9"/> </xsd:sequence> <xsd:attribute name="abstractNumId" type="ST_DecimalNumber" use="required"/> </xsd:complexType> <xsd:complexType name="CT_NumLvl"> <xsd:sequence> <xsd:element name="startOverride" type="CT_DecimalNumber" minOccurs="0"/> <xsd:element name="lvl" type="CT_Lvl" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="ilvl" type="ST_DecimalNumber" use="required"/> </xsd:complexType> <xsd:complexType name="CT_Num"> <xsd:sequence> <xsd:element name="abstractNumId" type="CT_DecimalNumber" minOccurs="1"/> <xsd:element name="lvlOverride" type="CT_NumLvl" minOccurs="0" maxOccurs="9"/> </xsd:sequence> <xsd:attribute name="numId" type="ST_DecimalNumber" use="required"/> </xsd:complexType> <xsd:complexType name="CT_Numbering"> <xsd:sequence> <xsd:element name="numPicBullet" type="CT_NumPicBullet" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="abstractNum" type="CT_AbstractNum" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="num" type="CT_Num" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="numIdMacAtCleanup" type="CT_DecimalNumber" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_TblStyleOverrideType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="wholeTable"/> <xsd:enumeration value="firstRow"/> <xsd:enumeration value="lastRow"/> <xsd:enumeration value="firstCol"/> <xsd:enumeration value="lastCol"/> <xsd:enumeration value="band1Vert"/> <xsd:enumeration value="band2Vert"/> <xsd:enumeration value="band1Horz"/> <xsd:enumeration value="band2Horz"/> <xsd:enumeration value="neCell"/> <xsd:enumeration value="nwCell"/> <xsd:enumeration value="seCell"/> <xsd:enumeration value="swCell"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_TblStylePr"> <xsd:sequence> <xsd:element name="pPr" type="CT_PPrGeneral" minOccurs="0"/> <xsd:element name="rPr" type="CT_RPr" minOccurs="0"/> <xsd:element name="tblPr" type="CT_TblPrBase" minOccurs="0"/> <xsd:element name="trPr" type="CT_TrPr" minOccurs="0" maxOccurs="1"/> <xsd:element name="tcPr" type="CT_TcPr" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="type" type="ST_TblStyleOverrideType" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_StyleType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="paragraph"/> <xsd:enumeration value="character"/> <xsd:enumeration value="table"/> <xsd:enumeration value="numbering"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Style"> <xsd:sequence> <xsd:element name="name" type="CT_String" minOccurs="0" maxOccurs="1"/> <xsd:element name="aliases" type="CT_String" minOccurs="0"/> <xsd:element name="basedOn" type="CT_String" minOccurs="0"/> <xsd:element name="next" type="CT_String" minOccurs="0"/> <xsd:element name="link" type="CT_String" minOccurs="0"/> <xsd:element name="autoRedefine" type="CT_OnOff" minOccurs="0"/> <xsd:element name="hidden" type="CT_OnOff" minOccurs="0"/> <xsd:element name="uiPriority" type="CT_DecimalNumber" minOccurs="0"/> <xsd:element name="semiHidden" type="CT_OnOff" minOccurs="0"/> <xsd:element name="unhideWhenUsed" type="CT_OnOff" minOccurs="0"/> <xsd:element name="qFormat" type="CT_OnOff" minOccurs="0"/> <xsd:element name="locked" type="CT_OnOff" minOccurs="0"/> <xsd:element name="personal" type="CT_OnOff" minOccurs="0"/> <xsd:element name="personalCompose" type="CT_OnOff" minOccurs="0"/> <xsd:element name="personalReply" type="CT_OnOff" minOccurs="0"/> <xsd:element name="rsid" type="CT_LongHexNumber" minOccurs="0"/> <xsd:element name="pPr" type="CT_PPrGeneral" minOccurs="0" maxOccurs="1"/> <xsd:element name="rPr" type="CT_RPr" minOccurs="0" maxOccurs="1"/> <xsd:element name="tblPr" type="CT_TblPrBase" minOccurs="0" maxOccurs="1"/> <xsd:element name="trPr" type="CT_TrPr" minOccurs="0" maxOccurs="1"/> <xsd:element name="tcPr" type="CT_TcPr" minOccurs="0" maxOccurs="1"/> <xsd:element name="tblStylePr" type="CT_TblStylePr" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="type" type="ST_StyleType" use="optional"/> <xsd:attribute name="styleId" type="s:ST_String" use="optional"/> <xsd:attribute name="default" type="s:ST_OnOff" use="optional"/> <xsd:attribute name="customStyle" type="s:ST_OnOff" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_LsdException"> <xsd:attribute name="name" type="s:ST_String" use="required"/> <xsd:attribute name="locked" type="s:ST_OnOff"/> <xsd:attribute name="uiPriority" type="ST_DecimalNumber"/> <xsd:attribute name="semiHidden" type="s:ST_OnOff"/> <xsd:attribute name="unhideWhenUsed" type="s:ST_OnOff"/> <xsd:attribute name="qFormat" type="s:ST_OnOff"/> </xsd:complexType> <xsd:complexType name="CT_LatentStyles"> <xsd:sequence> <xsd:element name="lsdException" type="CT_LsdException" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="defLockedState" type="s:ST_OnOff"/> <xsd:attribute name="defUIPriority" type="ST_DecimalNumber"/> <xsd:attribute name="defSemiHidden" type="s:ST_OnOff"/> <xsd:attribute name="defUnhideWhenUsed" type="s:ST_OnOff"/> <xsd:attribute name="defQFormat" type="s:ST_OnOff"/> <xsd:attribute name="count" type="ST_DecimalNumber"/> </xsd:complexType> <xsd:complexType name="CT_Styles"> <xsd:sequence> <xsd:element name="docDefaults" type="CT_DocDefaults" minOccurs="0"/> <xsd:element name="latentStyles" type="CT_LatentStyles" minOccurs="0" maxOccurs="1"/> <xsd:element name="style" type="CT_Style" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Panose"> <xsd:attribute name="val" type="s:ST_Panose" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_FontFamily"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="decorative"/> <xsd:enumeration value="modern"/> <xsd:enumeration value="roman"/> <xsd:enumeration value="script"/> <xsd:enumeration value="swiss"/> <xsd:enumeration value="auto"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_FontFamily"> <xsd:attribute name="val" type="ST_FontFamily" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_Pitch"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="fixed"/> <xsd:enumeration value="variable"/> <xsd:enumeration value="default"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Pitch"> <xsd:attribute name="val" type="ST_Pitch" use="required"/> </xsd:complexType> <xsd:complexType name="CT_FontSig"> <xsd:attribute name="usb0" use="required" type="ST_LongHexNumber"/> <xsd:attribute name="usb1" use="required" type="ST_LongHexNumber"/> <xsd:attribute name="usb2" use="required" type="ST_LongHexNumber"/> <xsd:attribute name="usb3" use="required" type="ST_LongHexNumber"/> <xsd:attribute name="csb0" use="required" type="ST_LongHexNumber"/> <xsd:attribute name="csb1" use="required" type="ST_LongHexNumber"/> </xsd:complexType> <xsd:complexType name="CT_FontRel"> <xsd:complexContent> <xsd:extension base="CT_Rel"> <xsd:attribute name="fontKey" type="s:ST_Guid"/> <xsd:attribute name="subsetted" type="s:ST_OnOff"/> </xsd:extension> </xsd:complexContent> </xsd:complexType> <xsd:complexType name="CT_Font"> <xsd:sequence> <xsd:element name="altName" type="CT_String" minOccurs="0" maxOccurs="1"/> <xsd:element name="panose1" type="CT_Panose" minOccurs="0" maxOccurs="1"/> <xsd:element name="charset" type="CT_Charset" minOccurs="0" maxOccurs="1"/> <xsd:element name="family" type="CT_FontFamily" minOccurs="0" maxOccurs="1"/> <xsd:element name="notTrueType" type="CT_OnOff" minOccurs="0" maxOccurs="1"/> <xsd:element name="pitch" type="CT_Pitch" minOccurs="0" maxOccurs="1"/> <xsd:element name="sig" type="CT_FontSig" minOccurs="0" maxOccurs="1"/> <xsd:element name="embedRegular" type="CT_FontRel" minOccurs="0" maxOccurs="1"/> <xsd:element name="embedBold" type="CT_FontRel" minOccurs="0" maxOccurs="1"/> <xsd:element name="embedItalic" type="CT_FontRel" minOccurs="0" maxOccurs="1"/> <xsd:element name="embedBoldItalic" type="CT_FontRel" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="name" type="s:ST_String" use="required"/> </xsd:complexType> <xsd:complexType name="CT_FontsList"> <xsd:sequence> <xsd:element name="font" type="CT_Font" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_DivBdr"> <xsd:sequence> <xsd:element name="top" type="CT_Border" minOccurs="0"/> <xsd:element name="left" type="CT_Border" minOccurs="0"/> <xsd:element name="bottom" type="CT_Border" minOccurs="0"/> <xsd:element name="right" type="CT_Border" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Div"> <xsd:sequence> <xsd:element name="blockQuote" type="CT_OnOff" minOccurs="0"/> <xsd:element name="bodyDiv" type="CT_OnOff" minOccurs="0"/> <xsd:element name="marLeft" type="CT_SignedTwipsMeasure"/> <xsd:element name="marRight" type="CT_SignedTwipsMeasure"/> <xsd:element name="marTop" type="CT_SignedTwipsMeasure"/> <xsd:element name="marBottom" type="CT_SignedTwipsMeasure"/> <xsd:element name="divBdr" type="CT_DivBdr" minOccurs="0"/> <xsd:element name="divsChild" type="CT_Divs" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="id" type="ST_DecimalNumber" use="required"/> </xsd:complexType> <xsd:complexType name="CT_Divs"> <xsd:sequence minOccurs="1" maxOccurs="unbounded"> <xsd:element name="div" type="CT_Div"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_TxbxContent"> <xsd:group ref="EG_BlockLevelElts" minOccurs="1" maxOccurs="unbounded"/> </xsd:complexType> <xsd:element name="txbxContent" type="CT_TxbxContent"/> <xsd:group name="EG_MathContent"> <xsd:choice> <xsd:element ref="m:oMathPara"/> <xsd:element ref="m:oMath"/> </xsd:choice> </xsd:group> <xsd:group name="EG_BlockLevelChunkElts"> <xsd:choice> <xsd:group ref="EG_ContentBlockContent" minOccurs="0" maxOccurs="unbounded"/> </xsd:choice> </xsd:group> <xsd:group name="EG_BlockLevelElts"> <xsd:choice> <xsd:group ref="EG_BlockLevelChunkElts" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="altChunk" type="CT_AltChunk" minOccurs="0" maxOccurs="unbounded"/> </xsd:choice> </xsd:group> <xsd:group name="EG_RunLevelElts"> <xsd:choice> <xsd:element name="proofErr" minOccurs="0" type="CT_ProofErr"/> <xsd:element name="permStart" minOccurs="0" type="CT_PermStart"/> <xsd:element name="permEnd" minOccurs="0" type="CT_Perm"/> <xsd:group ref="EG_RangeMarkupElements" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="ins" type="CT_RunTrackChange" minOccurs="0"/> <xsd:element name="del" type="CT_RunTrackChange" minOccurs="0"/> <xsd:element name="moveFrom" type="CT_RunTrackChange"/> <xsd:element name="moveTo" type="CT_RunTrackChange"/> <xsd:group ref="EG_MathContent" minOccurs="0" maxOccurs="unbounded"/> </xsd:choice> </xsd:group> <xsd:complexType name="CT_Body"> <xsd:sequence> <xsd:group ref="EG_BlockLevelElts" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="sectPr" minOccurs="0" maxOccurs="1" type="CT_SectPr"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_ShapeDefaults"> <xsd:choice maxOccurs="unbounded"> <xsd:any processContents="lax" namespace="urn:schemas-microsoft-com:office:office" minOccurs="0" maxOccurs="unbounded"/> </xsd:choice> </xsd:complexType> <xsd:complexType name="CT_Comments"> <xsd:sequence> <xsd:element name="comment" type="CT_Comment" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:element name="comments" type="CT_Comments"/> <xsd:complexType name="CT_Footnotes"> <xsd:sequence maxOccurs="unbounded"> <xsd:element name="footnote" type="CT_FtnEdn" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:element name="footnotes" type="CT_Footnotes"/> <xsd:complexType name="CT_Endnotes"> <xsd:sequence maxOccurs="unbounded"> <xsd:element name="endnote" type="CT_FtnEdn" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:element name="endnotes" type="CT_Endnotes"/> <xsd:element name="hdr" type="CT_HdrFtr"/> <xsd:element name="ftr" type="CT_HdrFtr"/> <xsd:complexType name="CT_SmartTagType"> <xsd:attribute name="namespaceuri" type="s:ST_String"/> <xsd:attribute name="name" type="s:ST_String"/> <xsd:attribute name="url" type="s:ST_String"/> </xsd:complexType> <xsd:simpleType name="ST_ThemeColor"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="dark1"/> <xsd:enumeration value="light1"/> <xsd:enumeration value="dark2"/> <xsd:enumeration value="light2"/> <xsd:enumeration value="accent1"/> <xsd:enumeration value="accent2"/> <xsd:enumeration value="accent3"/> <xsd:enumeration value="accent4"/> <xsd:enumeration value="accent5"/> <xsd:enumeration value="accent6"/> <xsd:enumeration value="hyperlink"/> <xsd:enumeration value="followedHyperlink"/> <xsd:enumeration value="none"/> <xsd:enumeration value="background1"/> <xsd:enumeration value="text1"/> <xsd:enumeration value="background2"/> <xsd:enumeration value="text2"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_DocPartBehavior"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="content"/> <xsd:enumeration value="p"/> <xsd:enumeration value="pg"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_DocPartBehavior"> <xsd:attribute name="val" use="required" type="ST_DocPartBehavior"/> </xsd:complexType> <xsd:complexType name="CT_DocPartBehaviors"> <xsd:choice> <xsd:element name="behavior" type="CT_DocPartBehavior" maxOccurs="unbounded"/> </xsd:choice> </xsd:complexType> <xsd:simpleType name="ST_DocPartType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="none"/> <xsd:enumeration value="normal"/> <xsd:enumeration value="autoExp"/> <xsd:enumeration value="toolbar"/> <xsd:enumeration value="speller"/> <xsd:enumeration value="formFld"/> <xsd:enumeration value="bbPlcHdr"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_DocPartType"> <xsd:attribute name="val" use="required" type="ST_DocPartType"/> </xsd:complexType> <xsd:complexType name="CT_DocPartTypes"> <xsd:choice> <xsd:element name="type" type="CT_DocPartType" maxOccurs="unbounded"/> </xsd:choice> <xsd:attribute name="all" type="s:ST_OnOff" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_DocPartGallery"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="placeholder"/> <xsd:enumeration value="any"/> <xsd:enumeration value="default"/> <xsd:enumeration value="docParts"/> <xsd:enumeration value="coverPg"/> <xsd:enumeration value="eq"/> <xsd:enumeration value="ftrs"/> <xsd:enumeration value="hdrs"/> <xsd:enumeration value="pgNum"/> <xsd:enumeration value="tbls"/> <xsd:enumeration value="watermarks"/> <xsd:enumeration value="autoTxt"/> <xsd:enumeration value="txtBox"/> <xsd:enumeration value="pgNumT"/> <xsd:enumeration value="pgNumB"/> <xsd:enumeration value="pgNumMargins"/> <xsd:enumeration value="tblOfContents"/> <xsd:enumeration value="bib"/> <xsd:enumeration value="custQuickParts"/> <xsd:enumeration value="custCoverPg"/> <xsd:enumeration value="custEq"/> <xsd:enumeration value="custFtrs"/> <xsd:enumeration value="custHdrs"/> <xsd:enumeration value="custPgNum"/> <xsd:enumeration value="custTbls"/> <xsd:enumeration value="custWatermarks"/> <xsd:enumeration value="custAutoTxt"/> <xsd:enumeration value="custTxtBox"/> <xsd:enumeration value="custPgNumT"/> <xsd:enumeration value="custPgNumB"/> <xsd:enumeration value="custPgNumMargins"/> <xsd:enumeration value="custTblOfContents"/> <xsd:enumeration value="custBib"/> <xsd:enumeration value="custom1"/> <xsd:enumeration value="custom2"/> <xsd:enumeration value="custom3"/> <xsd:enumeration value="custom4"/> <xsd:enumeration value="custom5"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_DocPartGallery"> <xsd:attribute name="val" type="ST_DocPartGallery" use="required"/> </xsd:complexType> <xsd:complexType name="CT_DocPartCategory"> <xsd:sequence> <xsd:element name="name" type="CT_String" minOccurs="1" maxOccurs="1"/> <xsd:element name="gallery" type="CT_DocPartGallery" minOccurs="1" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_DocPartName"> <xsd:attribute name="val" type="s:ST_String" use="required"/> <xsd:attribute name="decorated" type="s:ST_OnOff" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_DocPartPr"> <xsd:all> <xsd:element name="name" type="CT_DocPartName" minOccurs="1"/> <xsd:element name="style" type="CT_String" minOccurs="0"/> <xsd:element name="category" type="CT_DocPartCategory" minOccurs="0"/> <xsd:element name="types" type="CT_DocPartTypes" minOccurs="0"/> <xsd:element name="behaviors" type="CT_DocPartBehaviors" minOccurs="0"/> <xsd:element name="description" type="CT_String" minOccurs="0"/> <xsd:element name="guid" type="CT_Guid" minOccurs="0"/> </xsd:all> </xsd:complexType> <xsd:complexType name="CT_DocPart"> <xsd:sequence> <xsd:element name="docPartPr" type="CT_DocPartPr" minOccurs="0"/> <xsd:element name="docPartBody" type="CT_Body" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_DocParts"> <xsd:choice> <xsd:element name="docPart" type="CT_DocPart" minOccurs="1" maxOccurs="unbounded"/> </xsd:choice> </xsd:complexType> <xsd:element name="settings" type="CT_Settings"/> <xsd:element name="webSettings" type="CT_WebSettings"/> <xsd:element name="fonts" type="CT_FontsList"/> <xsd:element name="numbering" type="CT_Numbering"/> <xsd:element name="styles" type="CT_Styles"/> <xsd:simpleType name="ST_CaptionPos"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="above"/> <xsd:enumeration value="below"/> <xsd:enumeration value="left"/> <xsd:enumeration value="right"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Caption"> <xsd:attribute name="name" type="s:ST_String" use="required"/> <xsd:attribute name="pos" type="ST_CaptionPos" use="optional"/> <xsd:attribute name="chapNum" type="s:ST_OnOff" use="optional"/> <xsd:attribute name="heading" type="ST_DecimalNumber" use="optional"/> <xsd:attribute name="noLabel" type="s:ST_OnOff" use="optional"/> <xsd:attribute name="numFmt" type="ST_NumberFormat" use="optional"/> <xsd:attribute name="sep" type="ST_ChapterSep" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_AutoCaption"> <xsd:attribute name="name" type="s:ST_String" use="required"/> <xsd:attribute name="caption" type="s:ST_String" use="required"/> </xsd:complexType> <xsd:complexType name="CT_AutoCaptions"> <xsd:sequence> <xsd:element name="autoCaption" type="CT_AutoCaption" minOccurs="1" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Captions"> <xsd:sequence> <xsd:element name="caption" type="CT_Caption" minOccurs="1" maxOccurs="unbounded"/> <xsd:element name="autoCaptions" type="CT_AutoCaptions" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_DocumentBase"> <xsd:sequence> <xsd:element name="background" type="CT_Background" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Document"> <xsd:complexContent> <xsd:extension base="CT_DocumentBase"> <xsd:sequence> <xsd:element name="body" type="CT_Body" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="conformance" type="s:ST_ConformanceClass"/> <xsd:attribute ref="mc:Ignorable" use="optional" /> </xsd:extension> </xsd:complexContent> </xsd:complexType> <xsd:complexType name="CT_GlossaryDocument"> <xsd:complexContent> <xsd:extension base="CT_DocumentBase"> <xsd:sequence> <xsd:element name="docParts" type="CT_DocParts" minOccurs="0"/> </xsd:sequence> </xsd:extension> </xsd:complexContent> </xsd:complexType> <xsd:element name="document" type="CT_Document"/> <xsd:element name="glossaryDocument" type="CT_GlossaryDocument"/> </xsd:schema> ================================================ FILE: skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/xml.xsd ================================================ <?xml version='1.0'?> <xs:schema targetNamespace="http://www.w3.org/XML/1998/namespace" xmlns:xs="http://www.w3.org/2001/XMLSchema" xml:lang="en"> <xs:annotation> <xs:documentation> See http://www.w3.org/XML/1998/namespace.html and http://www.w3.org/TR/REC-xml for information about this namespace. This schema document describes the XML namespace, in a form suitable for import by other schema documents. Note that local names in this namespace are intended to be defined only by the World Wide Web Consortium or its subgroups. The following names are currently defined in this namespace and should not be used with conflicting semantics by any Working Group, specification, or document instance: base (as an attribute name): denotes an attribute whose value provides a URI to be used as the base for interpreting any relative URIs in the scope of the element on which it appears; its value is inherited. This name is reserved by virtue of its definition in the XML Base specification. lang (as an attribute name): denotes an attribute whose value is a language code for the natural language of the content of any element; its value is inherited. This name is reserved by virtue of its definition in the XML specification. space (as an attribute name): denotes an attribute whose value is a keyword indicating what whitespace processing discipline is intended for the content of the element; its value is inherited. This name is reserved by virtue of its definition in the XML specification. Father (in any context at all): denotes Jon Bosak, the chair of the original XML Working Group. This name is reserved by the following decision of the W3C XML Plenary and XML Coordination groups: In appreciation for his vision, leadership and dedication the W3C XML Plenary on this 10th day of February, 2000 reserves for Jon Bosak in perpetuity the XML name xml:Father </xs:documentation> </xs:annotation> <xs:annotation> <xs:documentation>This schema defines attributes and an attribute group suitable for use by schemas wishing to allow xml:base, xml:lang or xml:space attributes on elements they define. To enable this, such a schema must import this schema for the XML namespace, e.g. as follows: <schema . . .> . . . <import namespace="http://www.w3.org/XML/1998/namespace" schemaLocation="http://www.w3.org/2001/03/xml.xsd"/> Subsequently, qualified reference to any of the attributes or the group defined below will have the desired effect, e.g. <type . . .> . . . <attributeGroup ref="xml:specialAttrs"/> will define a type which will schema-validate an instance element with any of those attributes</xs:documentation> </xs:annotation> <xs:annotation> <xs:documentation>In keeping with the XML Schema WG's standard versioning policy, this schema document will persist at http://www.w3.org/2001/03/xml.xsd. At the date of issue it can also be found at http://www.w3.org/2001/xml.xsd. The schema document at that URI may however change in the future, in order to remain compatible with the latest version of XML Schema itself. In other words, if the XML Schema namespace changes, the version of this document at http://www.w3.org/2001/xml.xsd will change accordingly; the version at http://www.w3.org/2001/03/xml.xsd will not change. </xs:documentation> </xs:annotation> <xs:attribute name="lang" type="xs:language"> <xs:annotation> <xs:documentation>In due course, we should install the relevant ISO 2- and 3-letter codes as the enumerated possible values . . .</xs:documentation> </xs:annotation> </xs:attribute> <xs:attribute name="space" default="preserve"> <xs:simpleType> <xs:restriction base="xs:NCName"> <xs:enumeration value="default"/> <xs:enumeration value="preserve"/> </xs:restriction> </xs:simpleType> </xs:attribute> <xs:attribute name="base" type="xs:anyURI"> <xs:annotation> <xs:documentation>See http://www.w3.org/TR/xmlbase/ for information about this attribute.</xs:documentation> </xs:annotation> </xs:attribute> <xs:attributeGroup name="specialAttrs"> <xs:attribute ref="xml:base"/> <xs:attribute ref="xml:lang"/> <xs:attribute ref="xml:space"/> </xs:attributeGroup> </xs:schema> ================================================ FILE: skills/xlsx/scripts/office/schemas/ecma/fouth-edition/opc-contentTypes.xsd ================================================ <?xml version="1.0" encoding="UTF-8" standalone="no"?> <xs:schema xmlns="http://schemas.openxmlformats.org/package/2006/content-types" xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://schemas.openxmlformats.org/package/2006/content-types" elementFormDefault="qualified" attributeFormDefault="unqualified" blockDefault="#all"> <xs:element name="Types" type="CT_Types"/> <xs:element name="Default" type="CT_Default"/> <xs:element name="Override" type="CT_Override"/> <xs:complexType name="CT_Types"> <xs:choice minOccurs="0" maxOccurs="unbounded"> <xs:element ref="Default"/> <xs:element ref="Override"/> </xs:choice> </xs:complexType> <xs:complexType name="CT_Default"> <xs:attribute name="Extension" type="ST_Extension" use="required"/> <xs:attribute name="ContentType" type="ST_ContentType" use="required"/> </xs:complexType> <xs:complexType name="CT_Override"> <xs:attribute name="ContentType" type="ST_ContentType" use="required"/> <xs:attribute name="PartName" type="xs:anyURI" use="required"/> </xs:complexType> <xs:simpleType name="ST_ContentType"> <xs:restriction base="xs:string"> <xs:pattern value="(((([\p{IsBasicLatin}-[\p{Cc}\(\)<>@,;:\\"/\[\]\?=\{\}\s\t]])+))/((([\p{IsBasicLatin}-[\p{Cc}\(\)<>@,;:\\"/\[\]\?=\{\}\s\t]])+))((\s+)*;(\s+)*(((([\p{IsBasicLatin}-[\p{Cc}\(\)<>@,;:\\"/\[\]\?=\{\}\s\t]])+))=((([\p{IsBasicLatin}-[\p{Cc}\(\)<>@,;:\\"/\[\]\?=\{\}\s\t]])+)|("(([\p{IsLatin-1Supplement}\p{IsBasicLatin}-[\p{Cc}"\n\r]]|(\s+))|(\\[\p{IsBasicLatin}]))*"))))*)" /> </xs:restriction> </xs:simpleType> <xs:simpleType name="ST_Extension"> <xs:restriction base="xs:string"> <xs:pattern value="([!$&'\(\)\*\+,:=]|(%[0-9a-fA-F][0-9a-fA-F])|[:@]|[a-zA-Z0-9\-_~])+"/> </xs:restriction> </xs:simpleType> </xs:schema> ================================================ FILE: skills/xlsx/scripts/office/schemas/ecma/fouth-edition/opc-coreProperties.xsd ================================================ <?xml version="1.0" encoding="UTF-8"?> <xs:schema targetNamespace="http://schemas.openxmlformats.org/package/2006/metadata/core-properties" xmlns="http://schemas.openxmlformats.org/package/2006/metadata/core-properties" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" elementFormDefault="qualified" blockDefault="#all"> <xs:import namespace="http://purl.org/dc/elements/1.1/" schemaLocation="http://dublincore.org/schemas/xmls/qdc/2003/04/02/dc.xsd"/> <xs:import namespace="http://purl.org/dc/terms/" schemaLocation="http://dublincore.org/schemas/xmls/qdc/2003/04/02/dcterms.xsd"/> <xs:import id="xml" namespace="http://www.w3.org/XML/1998/namespace"/> <xs:element name="coreProperties" type="CT_CoreProperties"/> <xs:complexType name="CT_CoreProperties"> <xs:all> <xs:element name="category" minOccurs="0" maxOccurs="1" type="xs:string"/> <xs:element name="contentStatus" minOccurs="0" maxOccurs="1" type="xs:string"/> <xs:element ref="dcterms:created" minOccurs="0" maxOccurs="1"/> <xs:element ref="dc:creator" minOccurs="0" maxOccurs="1"/> <xs:element ref="dc:description" minOccurs="0" maxOccurs="1"/> <xs:element ref="dc:identifier" minOccurs="0" maxOccurs="1"/> <xs:element name="keywords" minOccurs="0" maxOccurs="1" type="CT_Keywords"/> <xs:element ref="dc:language" minOccurs="0" maxOccurs="1"/> <xs:element name="lastModifiedBy" minOccurs="0" maxOccurs="1" type="xs:string"/> <xs:element name="lastPrinted" minOccurs="0" maxOccurs="1" type="xs:dateTime"/> <xs:element ref="dcterms:modified" minOccurs="0" maxOccurs="1"/> <xs:element name="revision" minOccurs="0" maxOccurs="1" type="xs:string"/> <xs:element ref="dc:subject" minOccurs="0" maxOccurs="1"/> <xs:element ref="dc:title" minOccurs="0" maxOccurs="1"/> <xs:element name="version" minOccurs="0" maxOccurs="1" type="xs:string"/> </xs:all> </xs:complexType> <xs:complexType name="CT_Keywords" mixed="true"> <xs:sequence> <xs:element name="value" minOccurs="0" maxOccurs="unbounded" type="CT_Keyword"/> </xs:sequence> <xs:attribute ref="xml:lang" use="optional"/> </xs:complexType> <xs:complexType name="CT_Keyword"> <xs:simpleContent> <xs:extension base="xs:string"> <xs:attribute ref="xml:lang" use="optional"/> </xs:extension> </xs:simpleContent> </xs:complexType> </xs:schema> ================================================ FILE: skills/xlsx/scripts/office/schemas/ecma/fouth-edition/opc-digSig.xsd ================================================ <?xml version="1.0" encoding="UTF-8"?> <xsd:schema xmlns="http://schemas.openxmlformats.org/package/2006/digital-signature" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="http://schemas.openxmlformats.org/package/2006/digital-signature" elementFormDefault="qualified" attributeFormDefault="unqualified" blockDefault="#all"> <xsd:element name="SignatureTime" type="CT_SignatureTime"/> <xsd:element name="RelationshipReference" type="CT_RelationshipReference"/> <xsd:element name="RelationshipsGroupReference" type="CT_RelationshipsGroupReference"/> <xsd:complexType name="CT_SignatureTime"> <xsd:sequence> <xsd:element name="Format" type="ST_Format"/> <xsd:element name="Value" type="ST_Value"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_RelationshipReference"> <xsd:simpleContent> <xsd:extension base="xsd:string"> <xsd:attribute name="SourceId" type="xsd:string" use="required"/> </xsd:extension> </xsd:simpleContent> </xsd:complexType> <xsd:complexType name="CT_RelationshipsGroupReference"> <xsd:simpleContent> <xsd:extension base="xsd:string"> <xsd:attribute name="SourceType" type="xsd:anyURI" use="required"/> </xsd:extension> </xsd:simpleContent> </xsd:complexType> <xsd:simpleType name="ST_Format"> <xsd:restriction base="xsd:string"> <xsd:pattern value="(YYYY)|(YYYY-MM)|(YYYY-MM-DD)|(YYYY-MM-DDThh:mmTZD)|(YYYY-MM-DDThh:mm:ssTZD)|(YYYY-MM-DDThh:mm:ss.sTZD)" /> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_Value"> <xsd:restriction base="xsd:string"> <xsd:pattern value="(([0-9][0-9][0-9][0-9]))|(([0-9][0-9][0-9][0-9])-((0[1-9])|(1(0|1|2))))|(([0-9][0-9][0-9][0-9])-((0[1-9])|(1(0|1|2)))-((0[1-9])|(1[0-9])|(2[0-9])|(3(0|1))))|(([0-9][0-9][0-9][0-9])-((0[1-9])|(1(0|1|2)))-((0[1-9])|(1[0-9])|(2[0-9])|(3(0|1)))T((0[0-9])|(1[0-9])|(2(0|1|2|3))):((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9]))(((\+|-)((0[0-9])|(1[0-9])|(2(0|1|2|3))):((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9])))|Z))|(([0-9][0-9][0-9][0-9])-((0[1-9])|(1(0|1|2)))-((0[1-9])|(1[0-9])|(2[0-9])|(3(0|1)))T((0[0-9])|(1[0-9])|(2(0|1|2|3))):((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9])):((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9]))(((\+|-)((0[0-9])|(1[0-9])|(2(0|1|2|3))):((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9])))|Z))|(([0-9][0-9][0-9][0-9])-((0[1-9])|(1(0|1|2)))-((0[1-9])|(1[0-9])|(2[0-9])|(3(0|1)))T((0[0-9])|(1[0-9])|(2(0|1|2|3))):((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9])):(((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9]))\.[0-9])(((\+|-)((0[0-9])|(1[0-9])|(2(0|1|2|3))):((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9])))|Z))" /> </xsd:restriction> </xsd:simpleType> </xsd:schema> ================================================ FILE: skills/xlsx/scripts/office/schemas/ecma/fouth-edition/opc-relationships.xsd ================================================ <?xml version="1.0" encoding="UTF-8" standalone="no"?> <xsd:schema xmlns="http://schemas.openxmlformats.org/package/2006/relationships" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="http://schemas.openxmlformats.org/package/2006/relationships" elementFormDefault="qualified" attributeFormDefault="unqualified" blockDefault="#all"> <xsd:element name="Relationships" type="CT_Relationships"/> <xsd:element name="Relationship" type="CT_Relationship"/> <xsd:complexType name="CT_Relationships"> <xsd:sequence> <xsd:element ref="Relationship" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Relationship"> <xsd:simpleContent> <xsd:extension base="xsd:string"> <xsd:attribute name="TargetMode" type="ST_TargetMode" use="optional"/> <xsd:attribute name="Target" type="xsd:anyURI" use="required"/> <xsd:attribute name="Type" type="xsd:anyURI" use="required"/> <xsd:attribute name="Id" type="xsd:ID" use="required"/> </xsd:extension> </xsd:simpleContent> </xsd:complexType> <xsd:simpleType name="ST_TargetMode"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="External"/> <xsd:enumeration value="Internal"/> </xsd:restriction> </xsd:simpleType> </xsd:schema> ================================================ FILE: skills/xlsx/scripts/office/schemas/mce/mc.xsd ================================================ <?xml version="1.0" encoding="utf-8"?> <xsd:schema xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <!-- This XSD is a modified version of the one found at: https://github.com/plutext/docx4j/blob/master/xsd/mce/markup-compatibility-2006-MINIMAL.xsd This XSD has 2 objectives: 1. round tripping @mc:Ignorable <w:document xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" mc:Ignorable="w14 w15 wp14"> 2. enabling AlternateContent to be manipulated in certain elements (in the unusual case where the content model is xsd:any, it doesn't have to be explicitly added) See further ECMA-376, 4th Edition, Office Open XML File Formats Part 3 : Markup Compatibility and Extensibility --> <!-- Objective 1 --> <xsd:attribute name="Ignorable" type="xsd:string" /> <!-- Objective 2 --> <xsd:attribute name="MustUnderstand" type="xsd:string" /> <xsd:attribute name="ProcessContent" type="xsd:string" /> <!-- An AlternateContent element shall contain one or more Choice child elements, optionally followed by a Fallback child element. If present, there shall be only one Fallback element, and it shall follow all Choice elements. --> <xsd:element name="AlternateContent"> <xsd:complexType> <xsd:sequence> <xsd:element name="Choice" minOccurs="0" maxOccurs="unbounded"> <xsd:complexType> <xsd:sequence> <xsd:any minOccurs="0" maxOccurs="unbounded" processContents="strict"> </xsd:any> </xsd:sequence> <xsd:attribute name="Requires" type="xsd:string" use="required" /> <xsd:attribute ref="mc:Ignorable" use="optional" /> <xsd:attribute ref="mc:MustUnderstand" use="optional" /> <xsd:attribute ref="mc:ProcessContent" use="optional" /> </xsd:complexType> </xsd:element> <xsd:element name="Fallback" minOccurs="0" maxOccurs="1"> <xsd:complexType> <xsd:sequence> <xsd:any minOccurs="0" maxOccurs="unbounded" processContents="strict"> </xsd:any> </xsd:sequence> <xsd:attribute ref="mc:Ignorable" use="optional" /> <xsd:attribute ref="mc:MustUnderstand" use="optional" /> <xsd:attribute ref="mc:ProcessContent" use="optional" /> </xsd:complexType> </xsd:element> </xsd:sequence> <!-- AlternateContent elements might include the attributes Ignorable, MustUnderstand and ProcessContent described in this Part of ECMA-376. These attributes’ qualified names shall be prefixed when associated with an AlternateContent element. --> <xsd:attribute ref="mc:Ignorable" use="optional" /> <xsd:attribute ref="mc:MustUnderstand" use="optional" /> <xsd:attribute ref="mc:ProcessContent" use="optional" /> </xsd:complexType> </xsd:element> </xsd:schema> ================================================ FILE: skills/xlsx/scripts/office/schemas/microsoft/wml-2010.xsd ================================================ <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:w12="http://schemas.openxmlformats.org/wordprocessingml/2006/main" elementFormDefault="qualified" attributeFormDefault="qualified" blockDefault="#all" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:s="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes" xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" xmlns="http://schemas.microsoft.com/office/word/2010/wordml" targetNamespace="http://schemas.microsoft.com/office/word/2010/wordml"> <!-- <xsd:import id="rel" namespace="http://schemas.openxmlformats.org/officeDocument/2006/relationships" schemaLocation="orel.xsd"/> --> <xsd:import id="w" namespace="http://schemas.openxmlformats.org/wordprocessingml/2006/main" schemaLocation="../ISO-IEC29500-4_2016/wml.xsd"/> <!-- <xsd:import namespace="http://schemas.openxmlformats.org/drawingml/2006/main" schemaLocation="oartbasetypes.xsd"/> <xsd:import namespace="http://schemas.openxmlformats.org/drawingml/2006/main" schemaLocation="oartsplineproperties.xsd"/> --> <xsd:complexType name="CT_LongHexNumber"> <xsd:attribute name="val" type="w:ST_LongHexNumber" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_OnOff"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="true"/> <xsd:enumeration value="false"/> <xsd:enumeration value="0"/> <xsd:enumeration value="1"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_OnOff"> <xsd:attribute name="val" type="ST_OnOff"/> </xsd:complexType> <xsd:element name="docId" type="CT_LongHexNumber"/> <xsd:element name="conflictMode" type="CT_OnOff"/> <xsd:attributeGroup name="AG_Parids"> <xsd:attribute name="paraId" type="w:ST_LongHexNumber"/> <xsd:attribute name="textId" type="w:ST_LongHexNumber"/> </xsd:attributeGroup> <xsd:attribute name="anchorId" type="w:ST_LongHexNumber"/> <xsd:attribute name="noSpellErr" type="ST_OnOff"/> <xsd:element name="customXmlConflictInsRangeStart" type="w:CT_TrackChange"/> <xsd:element name="customXmlConflictInsRangeEnd" type="w:CT_Markup"/> <xsd:element name="customXmlConflictDelRangeStart" type="w:CT_TrackChange"/> <xsd:element name="customXmlConflictDelRangeEnd" type="w:CT_Markup"/> <xsd:group name="EG_RunLevelConflicts"> <xsd:sequence> <xsd:element name="conflictIns" type="w:CT_RunTrackChange" minOccurs="0"/> <xsd:element name="conflictDel" type="w:CT_RunTrackChange" minOccurs="0"/> </xsd:sequence> </xsd:group> <xsd:group name="EG_Conflicts"> <xsd:choice> <xsd:element name="conflictIns" type="w:CT_TrackChange" minOccurs="0"/> <xsd:element name="conflictDel" type="w:CT_TrackChange" minOccurs="0"/> </xsd:choice> </xsd:group> <xsd:complexType name="CT_Percentage"> <xsd:attribute name="val" type="a:ST_Percentage" use="required"/> </xsd:complexType> <xsd:complexType name="CT_PositiveFixedPercentage"> <xsd:attribute name="val" type="a:ST_PositiveFixedPercentage" use="required"/> </xsd:complexType> <xsd:complexType name="CT_PositivePercentage"> <xsd:attribute name="val" type="a:ST_PositivePercentage" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_SchemeColorVal"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="bg1"/> <xsd:enumeration value="tx1"/> <xsd:enumeration value="bg2"/> <xsd:enumeration value="tx2"/> <xsd:enumeration value="accent1"/> <xsd:enumeration value="accent2"/> <xsd:enumeration value="accent3"/> <xsd:enumeration value="accent4"/> <xsd:enumeration value="accent5"/> <xsd:enumeration value="accent6"/> <xsd:enumeration value="hlink"/> <xsd:enumeration value="folHlink"/> <xsd:enumeration value="dk1"/> <xsd:enumeration value="lt1"/> <xsd:enumeration value="dk2"/> <xsd:enumeration value="lt2"/> <xsd:enumeration value="phClr"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_RectAlignment"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="none"/> <xsd:enumeration value="tl"/> <xsd:enumeration value="t"/> <xsd:enumeration value="tr"/> <xsd:enumeration value="l"/> <xsd:enumeration value="ctr"/> <xsd:enumeration value="r"/> <xsd:enumeration value="bl"/> <xsd:enumeration value="b"/> <xsd:enumeration value="br"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_PathShadeType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="shape"/> <xsd:enumeration value="circle"/> <xsd:enumeration value="rect"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_LineCap"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="rnd"/> <xsd:enumeration value="sq"/> <xsd:enumeration value="flat"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_PresetLineDashVal"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="solid"/> <xsd:enumeration value="dot"/> <xsd:enumeration value="sysDot"/> <xsd:enumeration value="dash"/> <xsd:enumeration value="sysDash"/> <xsd:enumeration value="lgDash"/> <xsd:enumeration value="dashDot"/> <xsd:enumeration value="sysDashDot"/> <xsd:enumeration value="lgDashDot"/> <xsd:enumeration value="lgDashDotDot"/> <xsd:enumeration value="sysDashDotDot"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_PenAlignment"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="ctr"/> <xsd:enumeration value="in"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_CompoundLine"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="sng"/> <xsd:enumeration value="dbl"/> <xsd:enumeration value="thickThin"/> <xsd:enumeration value="thinThick"/> <xsd:enumeration value="tri"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_RelativeRect"> <xsd:attribute name="l" use="optional" type="a:ST_Percentage"/> <xsd:attribute name="t" use="optional" type="a:ST_Percentage"/> <xsd:attribute name="r" use="optional" type="a:ST_Percentage"/> <xsd:attribute name="b" use="optional" type="a:ST_Percentage"/> </xsd:complexType> <xsd:group name="EG_ColorTransform"> <xsd:choice> <xsd:element name="tint" type="CT_PositiveFixedPercentage"/> <xsd:element name="shade" type="CT_PositiveFixedPercentage"/> <xsd:element name="alpha" type="CT_PositiveFixedPercentage"/> <xsd:element name="hueMod" type="CT_PositivePercentage"/> <xsd:element name="sat" type="CT_Percentage"/> <xsd:element name="satOff" type="CT_Percentage"/> <xsd:element name="satMod" type="CT_Percentage"/> <xsd:element name="lum" type="CT_Percentage"/> <xsd:element name="lumOff" type="CT_Percentage"/> <xsd:element name="lumMod" type="CT_Percentage"/> </xsd:choice> </xsd:group> <xsd:complexType name="CT_SRgbColor"> <xsd:sequence> <xsd:group ref="EG_ColorTransform" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="val" type="s:ST_HexColorRGB" use="required"/> </xsd:complexType> <xsd:complexType name="CT_SchemeColor"> <xsd:sequence> <xsd:group ref="EG_ColorTransform" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="val" type="ST_SchemeColorVal" use="required"/> </xsd:complexType> <xsd:group name="EG_ColorChoice"> <xsd:choice> <xsd:element name="srgbClr" type="CT_SRgbColor"/> <xsd:element name="schemeClr" type="CT_SchemeColor"/> </xsd:choice> </xsd:group> <xsd:complexType name="CT_Color"> <xsd:sequence> <xsd:group ref="EG_ColorChoice"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_GradientStop"> <xsd:sequence> <xsd:group ref="EG_ColorChoice"/> </xsd:sequence> <xsd:attribute name="pos" type="a:ST_PositiveFixedPercentage" use="required"/> </xsd:complexType> <xsd:complexType name="CT_GradientStopList"> <xsd:sequence> <xsd:element name="gs" type="CT_GradientStop" minOccurs="2" maxOccurs="10"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_LinearShadeProperties"> <xsd:attribute name="ang" type="a:ST_PositiveFixedAngle" use="optional"/> <xsd:attribute name="scaled" type="ST_OnOff" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_PathShadeProperties"> <xsd:sequence> <xsd:element name="fillToRect" type="CT_RelativeRect" minOccurs="0"/> </xsd:sequence> <xsd:attribute name="path" type="ST_PathShadeType" use="optional"/> </xsd:complexType> <xsd:group name="EG_ShadeProperties"> <xsd:choice> <xsd:element name="lin" type="CT_LinearShadeProperties"/> <xsd:element name="path" type="CT_PathShadeProperties"/> </xsd:choice> </xsd:group> <xsd:complexType name="CT_SolidColorFillProperties"> <xsd:sequence> <xsd:group ref="EG_ColorChoice" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_GradientFillProperties"> <xsd:sequence> <xsd:element name="gsLst" type="CT_GradientStopList" minOccurs="0"/> <xsd:group ref="EG_ShadeProperties" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:group name="EG_FillProperties"> <xsd:choice> <xsd:element name="noFill" type="w:CT_Empty"/> <xsd:element name="solidFill" type="CT_SolidColorFillProperties"/> <xsd:element name="gradFill" type="CT_GradientFillProperties"/> </xsd:choice> </xsd:group> <xsd:complexType name="CT_PresetLineDashProperties"> <xsd:attribute name="val" type="ST_PresetLineDashVal" use="optional"/> </xsd:complexType> <xsd:group name="EG_LineDashProperties"> <xsd:choice> <xsd:element name="prstDash" type="CT_PresetLineDashProperties"/> </xsd:choice> </xsd:group> <xsd:complexType name="CT_LineJoinMiterProperties"> <xsd:attribute name="lim" type="a:ST_PositivePercentage" use="optional"/> </xsd:complexType> <xsd:group name="EG_LineJoinProperties"> <xsd:choice> <xsd:element name="round" type="w:CT_Empty"/> <xsd:element name="bevel" type="w:CT_Empty"/> <xsd:element name="miter" type="CT_LineJoinMiterProperties"/> </xsd:choice> </xsd:group> <xsd:simpleType name="ST_PresetCameraType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="legacyObliqueTopLeft"/> <xsd:enumeration value="legacyObliqueTop"/> <xsd:enumeration value="legacyObliqueTopRight"/> <xsd:enumeration value="legacyObliqueLeft"/> <xsd:enumeration value="legacyObliqueFront"/> <xsd:enumeration value="legacyObliqueRight"/> <xsd:enumeration value="legacyObliqueBottomLeft"/> <xsd:enumeration value="legacyObliqueBottom"/> <xsd:enumeration value="legacyObliqueBottomRight"/> <xsd:enumeration value="legacyPerspectiveTopLeft"/> <xsd:enumeration value="legacyPerspectiveTop"/> <xsd:enumeration value="legacyPerspectiveTopRight"/> <xsd:enumeration value="legacyPerspectiveLeft"/> <xsd:enumeration value="legacyPerspectiveFront"/> <xsd:enumeration value="legacyPerspectiveRight"/> <xsd:enumeration value="legacyPerspectiveBottomLeft"/> <xsd:enumeration value="legacyPerspectiveBottom"/> <xsd:enumeration value="legacyPerspectiveBottomRight"/> <xsd:enumeration value="orthographicFront"/> <xsd:enumeration value="isometricTopUp"/> <xsd:enumeration value="isometricTopDown"/> <xsd:enumeration value="isometricBottomUp"/> <xsd:enumeration value="isometricBottomDown"/> <xsd:enumeration value="isometricLeftUp"/> <xsd:enumeration value="isometricLeftDown"/> <xsd:enumeration value="isometricRightUp"/> <xsd:enumeration value="isometricRightDown"/> <xsd:enumeration value="isometricOffAxis1Left"/> <xsd:enumeration value="isometricOffAxis1Right"/> <xsd:enumeration value="isometricOffAxis1Top"/> <xsd:enumeration value="isometricOffAxis2Left"/> <xsd:enumeration value="isometricOffAxis2Right"/> <xsd:enumeration value="isometricOffAxis2Top"/> <xsd:enumeration value="isometricOffAxis3Left"/> <xsd:enumeration value="isometricOffAxis3Right"/> <xsd:enumeration value="isometricOffAxis3Bottom"/> <xsd:enumeration value="isometricOffAxis4Left"/> <xsd:enumeration value="isometricOffAxis4Right"/> <xsd:enumeration value="isometricOffAxis4Bottom"/> <xsd:enumeration value="obliqueTopLeft"/> <xsd:enumeration value="obliqueTop"/> <xsd:enumeration value="obliqueTopRight"/> <xsd:enumeration value="obliqueLeft"/> <xsd:enumeration value="obliqueRight"/> <xsd:enumeration value="obliqueBottomLeft"/> <xsd:enumeration value="obliqueBottom"/> <xsd:enumeration value="obliqueBottomRight"/> <xsd:enumeration value="perspectiveFront"/> <xsd:enumeration value="perspectiveLeft"/> <xsd:enumeration value="perspectiveRight"/> <xsd:enumeration value="perspectiveAbove"/> <xsd:enumeration value="perspectiveBelow"/> <xsd:enumeration value="perspectiveAboveLeftFacing"/> <xsd:enumeration value="perspectiveAboveRightFacing"/> <xsd:enumeration value="perspectiveContrastingLeftFacing"/> <xsd:enumeration value="perspectiveContrastingRightFacing"/> <xsd:enumeration value="perspectiveHeroicLeftFacing"/> <xsd:enumeration value="perspectiveHeroicRightFacing"/> <xsd:enumeration value="perspectiveHeroicExtremeLeftFacing"/> <xsd:enumeration value="perspectiveHeroicExtremeRightFacing"/> <xsd:enumeration value="perspectiveRelaxed"/> <xsd:enumeration value="perspectiveRelaxedModerately"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Camera"> <xsd:attribute name="prst" use="required" type="ST_PresetCameraType"/> </xsd:complexType> <xsd:complexType name="CT_SphereCoords"> <xsd:attribute name="lat" type="a:ST_PositiveFixedAngle" use="required"/> <xsd:attribute name="lon" type="a:ST_PositiveFixedAngle" use="required"/> <xsd:attribute name="rev" type="a:ST_PositiveFixedAngle" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_LightRigType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="legacyFlat1"/> <xsd:enumeration value="legacyFlat2"/> <xsd:enumeration value="legacyFlat3"/> <xsd:enumeration value="legacyFlat4"/> <xsd:enumeration value="legacyNormal1"/> <xsd:enumeration value="legacyNormal2"/> <xsd:enumeration value="legacyNormal3"/> <xsd:enumeration value="legacyNormal4"/> <xsd:enumeration value="legacyHarsh1"/> <xsd:enumeration value="legacyHarsh2"/> <xsd:enumeration value="legacyHarsh3"/> <xsd:enumeration value="legacyHarsh4"/> <xsd:enumeration value="threePt"/> <xsd:enumeration value="balanced"/> <xsd:enumeration value="soft"/> <xsd:enumeration value="harsh"/> <xsd:enumeration value="flood"/> <xsd:enumeration value="contrasting"/> <xsd:enumeration value="morning"/> <xsd:enumeration value="sunrise"/> <xsd:enumeration value="sunset"/> <xsd:enumeration value="chilly"/> <xsd:enumeration value="freezing"/> <xsd:enumeration value="flat"/> <xsd:enumeration value="twoPt"/> <xsd:enumeration value="glow"/> <xsd:enumeration value="brightRoom"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_LightRigDirection"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="tl"/> <xsd:enumeration value="t"/> <xsd:enumeration value="tr"/> <xsd:enumeration value="l"/> <xsd:enumeration value="r"/> <xsd:enumeration value="bl"/> <xsd:enumeration value="b"/> <xsd:enumeration value="br"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_LightRig"> <xsd:sequence> <xsd:element name="rot" type="CT_SphereCoords" minOccurs="0"/> </xsd:sequence> <xsd:attribute name="rig" type="ST_LightRigType" use="required"/> <xsd:attribute name="dir" type="ST_LightRigDirection" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_BevelPresetType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="relaxedInset"/> <xsd:enumeration value="circle"/> <xsd:enumeration value="slope"/> <xsd:enumeration value="cross"/> <xsd:enumeration value="angle"/> <xsd:enumeration value="softRound"/> <xsd:enumeration value="convex"/> <xsd:enumeration value="coolSlant"/> <xsd:enumeration value="divot"/> <xsd:enumeration value="riblet"/> <xsd:enumeration value="hardEdge"/> <xsd:enumeration value="artDeco"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Bevel"> <xsd:attribute name="w" type="a:ST_PositiveCoordinate" use="optional"/> <xsd:attribute name="h" type="a:ST_PositiveCoordinate" use="optional"/> <xsd:attribute name="prst" type="ST_BevelPresetType" use="optional"/> </xsd:complexType> <xsd:simpleType name="ST_PresetMaterialType"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="legacyMatte"/> <xsd:enumeration value="legacyPlastic"/> <xsd:enumeration value="legacyMetal"/> <xsd:enumeration value="legacyWireframe"/> <xsd:enumeration value="matte"/> <xsd:enumeration value="plastic"/> <xsd:enumeration value="metal"/> <xsd:enumeration value="warmMatte"/> <xsd:enumeration value="translucentPowder"/> <xsd:enumeration value="powder"/> <xsd:enumeration value="dkEdge"/> <xsd:enumeration value="softEdge"/> <xsd:enumeration value="clear"/> <xsd:enumeration value="flat"/> <xsd:enumeration value="softmetal"/> <xsd:enumeration value="none"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Glow"> <xsd:sequence> <xsd:group ref="EG_ColorChoice"/> </xsd:sequence> <xsd:attribute name="rad" use="optional" type="a:ST_PositiveCoordinate"/> </xsd:complexType> <xsd:complexType name="CT_Shadow"> <xsd:sequence> <xsd:group ref="EG_ColorChoice"/> </xsd:sequence> <xsd:attribute name="blurRad" use="optional" type="a:ST_PositiveCoordinate"/> <xsd:attribute name="dist" use="optional" type="a:ST_PositiveCoordinate"/> <xsd:attribute name="dir" use="optional" type="a:ST_PositiveFixedAngle"/> <xsd:attribute name="sx" use="optional" type="a:ST_Percentage"/> <xsd:attribute name="sy" use="optional" type="a:ST_Percentage"/> <xsd:attribute name="kx" use="optional" type="a:ST_FixedAngle"/> <xsd:attribute name="ky" use="optional" type="a:ST_FixedAngle"/> <xsd:attribute name="algn" use="optional" type="ST_RectAlignment"/> </xsd:complexType> <xsd:complexType name="CT_Reflection"> <xsd:attribute name="blurRad" use="optional" type="a:ST_PositiveCoordinate"/> <xsd:attribute name="stA" use="optional" type="a:ST_PositiveFixedPercentage"/> <xsd:attribute name="stPos" use="optional" type="a:ST_PositiveFixedPercentage"/> <xsd:attribute name="endA" use="optional" type="a:ST_PositiveFixedPercentage"/> <xsd:attribute name="endPos" use="optional" type="a:ST_PositiveFixedPercentage"/> <xsd:attribute name="dist" use="optional" type="a:ST_PositiveCoordinate"/> <xsd:attribute name="dir" use="optional" type="a:ST_PositiveFixedAngle"/> <xsd:attribute name="fadeDir" use="optional" type="a:ST_PositiveFixedAngle"/> <xsd:attribute name="sx" use="optional" type="a:ST_Percentage"/> <xsd:attribute name="sy" use="optional" type="a:ST_Percentage"/> <xsd:attribute name="kx" use="optional" type="a:ST_FixedAngle"/> <xsd:attribute name="ky" use="optional" type="a:ST_FixedAngle"/> <xsd:attribute name="algn" use="optional" type="ST_RectAlignment"/> </xsd:complexType> <xsd:complexType name="CT_FillTextEffect"> <xsd:sequence> <xsd:group ref="EG_FillProperties" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_TextOutlineEffect"> <xsd:sequence> <xsd:group ref="EG_FillProperties" minOccurs="0"/> <xsd:group ref="EG_LineDashProperties" minOccurs="0"/> <xsd:group ref="EG_LineJoinProperties" minOccurs="0"/> </xsd:sequence> <xsd:attribute name="w" use="optional" type="a:ST_LineWidth"/> <xsd:attribute name="cap" use="optional" type="ST_LineCap"/> <xsd:attribute name="cmpd" use="optional" type="ST_CompoundLine"/> <xsd:attribute name="algn" use="optional" type="ST_PenAlignment"/> </xsd:complexType> <xsd:complexType name="CT_Scene3D"> <xsd:sequence> <xsd:element name="camera" type="CT_Camera"/> <xsd:element name="lightRig" type="CT_LightRig"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Props3D"> <xsd:sequence> <xsd:element name="bevelT" type="CT_Bevel" minOccurs="0"/> <xsd:element name="bevelB" type="CT_Bevel" minOccurs="0"/> <xsd:element name="extrusionClr" type="CT_Color" minOccurs="0"/> <xsd:element name="contourClr" type="CT_Color" minOccurs="0"/> </xsd:sequence> <xsd:attribute name="extrusionH" type="a:ST_PositiveCoordinate" use="optional"/> <xsd:attribute name="contourW" type="a:ST_PositiveCoordinate" use="optional"/> <xsd:attribute name="prstMaterial" type="ST_PresetMaterialType" use="optional"/> </xsd:complexType> <xsd:group name="EG_RPrTextEffects"> <xsd:sequence> <xsd:element name="glow" minOccurs="0" type="CT_Glow"/> <xsd:element name="shadow" minOccurs="0" type="CT_Shadow"/> <xsd:element name="reflection" minOccurs="0" type="CT_Reflection"/> <xsd:element name="textOutline" minOccurs="0" type="CT_TextOutlineEffect"/> <xsd:element name="textFill" minOccurs="0" type="CT_FillTextEffect"/> <xsd:element name="scene3d" minOccurs="0" type="CT_Scene3D"/> <xsd:element name="props3d" minOccurs="0" type="CT_Props3D"/> </xsd:sequence> </xsd:group> <xsd:simpleType name="ST_Ligatures"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="none"/> <xsd:enumeration value="standard"/> <xsd:enumeration value="contextual"/> <xsd:enumeration value="historical"/> <xsd:enumeration value="discretional"/> <xsd:enumeration value="standardContextual"/> <xsd:enumeration value="standardHistorical"/> <xsd:enumeration value="contextualHistorical"/> <xsd:enumeration value="standardDiscretional"/> <xsd:enumeration value="contextualDiscretional"/> <xsd:enumeration value="historicalDiscretional"/> <xsd:enumeration value="standardContextualHistorical"/> <xsd:enumeration value="standardContextualDiscretional"/> <xsd:enumeration value="standardHistoricalDiscretional"/> <xsd:enumeration value="contextualHistoricalDiscretional"/> <xsd:enumeration value="all"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Ligatures"> <xsd:attribute name="val" type="ST_Ligatures" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_NumForm"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="default"/> <xsd:enumeration value="lining"/> <xsd:enumeration value="oldStyle"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_NumForm"> <xsd:attribute name="val" type="ST_NumForm" use="required"/> </xsd:complexType> <xsd:simpleType name="ST_NumSpacing"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="default"/> <xsd:enumeration value="proportional"/> <xsd:enumeration value="tabular"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_NumSpacing"> <xsd:attribute name="val" type="ST_NumSpacing" use="required"/> </xsd:complexType> <xsd:complexType name="CT_StyleSet"> <xsd:attribute name="id" type="s:ST_UnsignedDecimalNumber" use="required"/> <xsd:attribute name="val" type="ST_OnOff" use="optional"/> </xsd:complexType> <xsd:complexType name="CT_StylisticSets"> <xsd:sequence minOccurs="0"> <xsd:element name="styleSet" minOccurs="0" maxOccurs="unbounded" type="CT_StyleSet"/> </xsd:sequence> </xsd:complexType> <xsd:group name="EG_RPrOpenType"> <xsd:sequence> <xsd:element name="ligatures" minOccurs="0" type="CT_Ligatures"/> <xsd:element name="numForm" minOccurs="0" type="CT_NumForm"/> <xsd:element name="numSpacing" minOccurs="0" type="CT_NumSpacing"/> <xsd:element name="stylisticSets" minOccurs="0" type="CT_StylisticSets"/> <xsd:element name="cntxtAlts" minOccurs="0" type="CT_OnOff"/> </xsd:sequence> </xsd:group> <xsd:element name="discardImageEditingData" type="CT_OnOff"/> <xsd:element name="defaultImageDpi" type="CT_DefaultImageDpi"/> <xsd:complexType name="CT_DefaultImageDpi"> <xsd:attribute name="val" type="w:ST_DecimalNumber" use="required"/> </xsd:complexType> <xsd:element name="entityPicker" type="w:CT_Empty"/> <xsd:complexType name="CT_SdtCheckboxSymbol"> <xsd:attribute name="font" type="s:ST_String"/> <xsd:attribute name="val" type="w:ST_ShortHexNumber"/> </xsd:complexType> <xsd:complexType name="CT_SdtCheckbox"> <xsd:sequence> <xsd:element name="checked" type="CT_OnOff" minOccurs="0"/> <xsd:element name="checkedState" type="CT_SdtCheckboxSymbol" minOccurs="0"/> <xsd:element name="uncheckedState" type="CT_SdtCheckboxSymbol" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:element name="checkbox" type="CT_SdtCheckbox"/> </xsd:schema> ================================================ FILE: skills/xlsx/scripts/office/schemas/microsoft/wml-2012.xsd ================================================ <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:w12="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:s="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes" elementFormDefault="qualified" attributeFormDefault="qualified" blockDefault="#all" xmlns="http://schemas.microsoft.com/office/word/2012/wordml" targetNamespace="http://schemas.microsoft.com/office/word/2012/wordml"> <xsd:import id="w12" namespace="http://schemas.openxmlformats.org/wordprocessingml/2006/main" schemaLocation="../ISO-IEC29500-4_2016/wml.xsd"/> <xsd:import namespace="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes" schemaLocation="../ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd"/> <xsd:element name="color" type="w12:CT_Color"/> <xsd:simpleType name="ST_SdtAppearance"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="boundingBox"/> <xsd:enumeration value="tags"/> <xsd:enumeration value="hidden"/> </xsd:restriction> </xsd:simpleType> <xsd:element name="dataBinding" type="w12:CT_DataBinding"/> <xsd:complexType name="CT_SdtAppearance"> <xsd:attribute name="val" type="ST_SdtAppearance"/> </xsd:complexType> <xsd:element name="appearance" type="CT_SdtAppearance"/> <xsd:complexType name="CT_CommentsEx"> <xsd:sequence> <xsd:element name="commentEx" type="CT_CommentEx" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_CommentEx"> <xsd:attribute name="paraId" type="w12:ST_LongHexNumber" use="required"/> <xsd:attribute name="paraIdParent" type="w12:ST_LongHexNumber" use="optional"/> <xsd:attribute name="done" type="s:ST_OnOff" use="optional"/> </xsd:complexType> <xsd:element name="commentsEx" type="CT_CommentsEx"/> <xsd:complexType name="CT_People"> <xsd:sequence> <xsd:element name="person" type="CT_Person" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_PresenceInfo"> <xsd:attribute name="providerId" type="xsd:string" use="required"/> <xsd:attribute name="userId" type="xsd:string" use="required"/> </xsd:complexType> <xsd:complexType name="CT_Person"> <xsd:sequence> <xsd:element name="presenceInfo" type="CT_PresenceInfo" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="author" type="s:ST_String" use="required"/> </xsd:complexType> <xsd:element name="people" type="CT_People"/> <xsd:complexType name="CT_SdtRepeatedSection"> <xsd:sequence> <xsd:element name="sectionTitle" type="w12:CT_String" minOccurs="0"/> <xsd:element name="doNotAllowInsertDeleteSection" type="w12:CT_OnOff" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_Guid"> <xsd:restriction base="xsd:token"> <xsd:pattern value="\{[0-9A-F]{8}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{12}\}"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Guid"> <xsd:attribute name="val" type="ST_Guid"/> </xsd:complexType> <xsd:element name="repeatingSection" type="CT_SdtRepeatedSection"/> <xsd:element name="repeatingSectionItem" type="w12:CT_Empty"/> <xsd:element name="chartTrackingRefBased" type="w12:CT_OnOff"/> <xsd:element name="collapsed" type="w12:CT_OnOff"/> <xsd:element name="docId" type="CT_Guid"/> <xsd:element name="footnoteColumns" type="w12:CT_DecimalNumber"/> <xsd:element name="webExtensionLinked" type="w12:CT_OnOff"/> <xsd:element name="webExtensionCreated" type="w12:CT_OnOff"/> <xsd:attribute name="restartNumberingAfterBreak" type="s:ST_OnOff"/> </xsd:schema> ================================================ FILE: skills/xlsx/scripts/office/schemas/microsoft/wml-2018.xsd ================================================ <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:w12="http://schemas.openxmlformats.org/wordprocessingml/2006/main" elementFormDefault="qualified" attributeFormDefault="qualified" blockDefault="#all" xmlns="http://schemas.microsoft.com/office/word/2018/wordml" targetNamespace="http://schemas.microsoft.com/office/word/2018/wordml"> <xsd:import id="w12" namespace="http://schemas.openxmlformats.org/wordprocessingml/2006/main" schemaLocation="../ISO-IEC29500-4_2016/wml.xsd"/> <xsd:complexType name="CT_Extension"> <xsd:sequence> <xsd:any processContents="lax"/> </xsd:sequence> <xsd:attribute name="uri" type="xsd:token"/> </xsd:complexType> <xsd:complexType name="CT_ExtensionList"> <xsd:sequence> <xsd:element name="ext" type="CT_Extension" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> </xsd:schema> ================================================ FILE: skills/xlsx/scripts/office/schemas/microsoft/wml-cex-2018.xsd ================================================ <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:s="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes" xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml" elementFormDefault="qualified" attributeFormDefault="qualified" blockDefault="#all" xmlns="http://schemas.microsoft.com/office/word/2018/wordml/cex" targetNamespace="http://schemas.microsoft.com/office/word/2018/wordml/cex"> <xsd:import id="w16" namespace="http://schemas.microsoft.com/office/word/2018/wordml" schemaLocation="wml-2018.xsd"/> <xsd:import id="w" namespace="http://schemas.openxmlformats.org/wordprocessingml/2006/main" schemaLocation="../ISO-IEC29500-4_2016/wml.xsd"/> <xsd:import id="s" namespace="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes" schemaLocation="../ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd"/> <xsd:complexType name="CT_CommentsExtensible"> <xsd:sequence> <xsd:element name="commentExtensible" type="CT_CommentExtensible" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="extLst" type="w16:CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_CommentExtensible"> <xsd:sequence> <xsd:element name="extLst" type="w16:CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="durableId" type="w:ST_LongHexNumber" use="required"/> <xsd:attribute name="dateUtc" type="w:ST_DateTime" use="optional"/> <xsd:attribute name="intelligentPlaceholder" type="s:ST_OnOff" use="optional"/> </xsd:complexType> <xsd:element name="commentsExtensible" type="CT_CommentsExtensible"/> </xsd:schema> ================================================ FILE: skills/xlsx/scripts/office/schemas/microsoft/wml-cid-2016.xsd ================================================ <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:w12="http://schemas.openxmlformats.org/wordprocessingml/2006/main" elementFormDefault="qualified" attributeFormDefault="qualified" blockDefault="#all" xmlns="http://schemas.microsoft.com/office/word/2016/wordml/cid" targetNamespace="http://schemas.microsoft.com/office/word/2016/wordml/cid"> <xsd:import id="w12" namespace="http://schemas.openxmlformats.org/wordprocessingml/2006/main" schemaLocation="../ISO-IEC29500-4_2016/wml.xsd"/> <xsd:complexType name="CT_CommentsIds"> <xsd:sequence> <xsd:element name="commentId" type="CT_CommentId" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_CommentId"> <xsd:attribute name="paraId" type="w12:ST_LongHexNumber" use="required"/> <xsd:attribute name="durableId" type="w12:ST_LongHexNumber" use="required"/> </xsd:complexType> <xsd:element name="commentsIds" type="CT_CommentsIds"/> </xsd:schema> ================================================ FILE: skills/xlsx/scripts/office/schemas/microsoft/wml-sdtdatahash-2020.xsd ================================================ <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:w12="http://schemas.openxmlformats.org/wordprocessingml/2006/main" elementFormDefault="qualified" attributeFormDefault="qualified" blockDefault="#all" xmlns="http://schemas.microsoft.com/office/word/2020/wordml/sdtdatahash" targetNamespace="http://schemas.microsoft.com/office/word/2020/wordml/sdtdatahash"> <xsd:import id="w12" namespace="http://schemas.openxmlformats.org/wordprocessingml/2006/main" schemaLocation="../ISO-IEC29500-4_2016/wml.xsd"/> <xsd:attribute name="storeItemChecksum" type="w12:ST_String"/> </xsd:schema> ================================================ FILE: skills/xlsx/scripts/office/schemas/microsoft/wml-symex-2015.xsd ================================================ <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:w12="http://schemas.openxmlformats.org/wordprocessingml/2006/main" elementFormDefault="qualified" attributeFormDefault="qualified" blockDefault="#all" xmlns="http://schemas.microsoft.com/office/word/2015/wordml/symex" targetNamespace="http://schemas.microsoft.com/office/word/2015/wordml/symex"> <xsd:import id="w12" namespace="http://schemas.openxmlformats.org/wordprocessingml/2006/main" schemaLocation="../ISO-IEC29500-4_2016/wml.xsd"/> <xsd:complexType name="CT_SymEx"> <xsd:attribute name="font" type="w12:ST_String"/> <xsd:attribute name="char" type="w12:ST_LongHexNumber"/> </xsd:complexType> <xsd:element name="symEx" type="CT_SymEx"/> </xsd:schema> ================================================ FILE: skills/xlsx/scripts/office/soffice.py ================================================ """ Helper for running LibreOffice (soffice) in environments where AF_UNIX sockets may be blocked (e.g., sandboxed VMs). Detects the restriction at runtime and applies an LD_PRELOAD shim if needed. Usage: from office.soffice import run_soffice, get_soffice_env # Option 1 – run soffice directly result = run_soffice(["--headless", "--convert-to", "pdf", "input.docx"]) # Option 2 – get env dict for your own subprocess calls env = get_soffice_env() subprocess.run(["soffice", ...], env=env) """ import os import socket import subprocess import tempfile from pathlib import Path def get_soffice_env() -> dict: env = os.environ.copy() env["SAL_USE_VCLPLUGIN"] = "svp" if _needs_shim(): shim = _ensure_shim() env["LD_PRELOAD"] = str(shim) return env def run_soffice(args: list[str], **kwargs) -> subprocess.CompletedProcess: env = get_soffice_env() return subprocess.run(["soffice"] + args, env=env, **kwargs) _SHIM_SO = Path(tempfile.gettempdir()) / "lo_socket_shim.so" def _needs_shim() -> bool: try: s = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM) s.close() return False except OSError: return True def _ensure_shim() -> Path: if _SHIM_SO.exists(): return _SHIM_SO src = Path(tempfile.gettempdir()) / "lo_socket_shim.c" src.write_text(_SHIM_SOURCE) subprocess.run( ["gcc", "-shared", "-fPIC", "-o", str(_SHIM_SO), str(src), "-ldl"], check=True, capture_output=True, ) src.unlink() return _SHIM_SO _SHIM_SOURCE = r""" #define _GNU_SOURCE #include <dlfcn.h> #include <errno.h> #include <signal.h> #include <stdio.h> #include <stdlib.h> #include <sys/socket.h> #include <unistd.h> static int (*real_socket)(int, int, int); static int (*real_socketpair)(int, int, int, int[2]); static int (*real_listen)(int, int); static int (*real_accept)(int, struct sockaddr *, socklen_t *); static int (*real_close)(int); static int (*real_read)(int, void *, size_t); /* Per-FD bookkeeping (FDs >= 1024 are passed through unshimmed). */ static int is_shimmed[1024]; static int peer_of[1024]; static int wake_r[1024]; /* accept() blocks reading this */ static int wake_w[1024]; /* close() writes to this */ static int listener_fd = -1; /* FD that received listen() */ __attribute__((constructor)) static void init(void) { real_socket = dlsym(RTLD_NEXT, "socket"); real_socketpair = dlsym(RTLD_NEXT, "socketpair"); real_listen = dlsym(RTLD_NEXT, "listen"); real_accept = dlsym(RTLD_NEXT, "accept"); real_close = dlsym(RTLD_NEXT, "close"); real_read = dlsym(RTLD_NEXT, "read"); for (int i = 0; i < 1024; i++) { peer_of[i] = -1; wake_r[i] = -1; wake_w[i] = -1; } } /* ---- socket ---------------------------------------------------------- */ int socket(int domain, int type, int protocol) { if (domain == AF_UNIX) { int fd = real_socket(domain, type, protocol); if (fd >= 0) return fd; /* socket(AF_UNIX) blocked – fall back to socketpair(). */ int sv[2]; if (real_socketpair(domain, type, protocol, sv) == 0) { if (sv[0] >= 0 && sv[0] < 1024) { is_shimmed[sv[0]] = 1; peer_of[sv[0]] = sv[1]; int wp[2]; if (pipe(wp) == 0) { wake_r[sv[0]] = wp[0]; wake_w[sv[0]] = wp[1]; } } return sv[0]; } errno = EPERM; return -1; } return real_socket(domain, type, protocol); } /* ---- listen ---------------------------------------------------------- */ int listen(int sockfd, int backlog) { if (sockfd >= 0 && sockfd < 1024 && is_shimmed[sockfd]) { listener_fd = sockfd; return 0; } return real_listen(sockfd, backlog); } /* ---- accept ---------------------------------------------------------- */ int accept(int sockfd, struct sockaddr *addr, socklen_t *addrlen) { if (sockfd >= 0 && sockfd < 1024 && is_shimmed[sockfd]) { /* Block until close() writes to the wake pipe. */ if (wake_r[sockfd] >= 0) { char buf; real_read(wake_r[sockfd], &buf, 1); } errno = ECONNABORTED; return -1; } return real_accept(sockfd, addr, addrlen); } /* ---- close ----------------------------------------------------------- */ int close(int fd) { if (fd >= 0 && fd < 1024 && is_shimmed[fd]) { int was_listener = (fd == listener_fd); is_shimmed[fd] = 0; if (wake_w[fd] >= 0) { /* unblock accept() */ char c = 0; write(wake_w[fd], &c, 1); real_close(wake_w[fd]); wake_w[fd] = -1; } if (wake_r[fd] >= 0) { real_close(wake_r[fd]); wake_r[fd] = -1; } if (peer_of[fd] >= 0) { real_close(peer_of[fd]); peer_of[fd] = -1; } if (was_listener) _exit(0); /* conversion done – exit */ } return real_close(fd); } """ if __name__ == "__main__": import sys result = run_soffice(sys.argv[1:]) sys.exit(result.returncode) ================================================ FILE: skills/xlsx/scripts/office/unpack.py ================================================ """Unpack Office files (DOCX, PPTX, XLSX) for editing. Extracts the ZIP archive, pretty-prints XML files, and optionally: - Merges adjacent runs with identical formatting (DOCX only) - Simplifies adjacent tracked changes from same author (DOCX only) Usage: python unpack.py <office_file> <output_dir> [options] Examples: python unpack.py document.docx unpacked/ python unpack.py presentation.pptx unpacked/ python unpack.py document.docx unpacked/ --merge-runs false """ import argparse import sys import zipfile from pathlib import Path import defusedxml.minidom from helpers.merge_runs import merge_runs as do_merge_runs from helpers.simplify_redlines import simplify_redlines as do_simplify_redlines SMART_QUOTE_REPLACEMENTS = { "\u201c": "“", "\u201d": "”", "\u2018": "‘", "\u2019": "’", } def unpack( input_file: str, output_directory: str, merge_runs: bool = True, simplify_redlines: bool = True, ) -> tuple[None, str]: input_path = Path(input_file) output_path = Path(output_directory) suffix = input_path.suffix.lower() if not input_path.exists(): return None, f"Error: {input_file} does not exist" if suffix not in {".docx", ".pptx", ".xlsx"}: return None, f"Error: {input_file} must be a .docx, .pptx, or .xlsx file" try: output_path.mkdir(parents=True, exist_ok=True) with zipfile.ZipFile(input_path, "r") as zf: zf.extractall(output_path) xml_files = list(output_path.rglob("*.xml")) + list(output_path.rglob("*.rels")) for xml_file in xml_files: _pretty_print_xml(xml_file) message = f"Unpacked {input_file} ({len(xml_files)} XML files)" if suffix == ".docx": if simplify_redlines: simplify_count, _ = do_simplify_redlines(str(output_path)) message += f", simplified {simplify_count} tracked changes" if merge_runs: merge_count, _ = do_merge_runs(str(output_path)) message += f", merged {merge_count} runs" for xml_file in xml_files: _escape_smart_quotes(xml_file) return None, message except zipfile.BadZipFile: return None, f"Error: {input_file} is not a valid Office file" except Exception as e: return None, f"Error unpacking: {e}" def _pretty_print_xml(xml_file: Path) -> None: try: content = xml_file.read_text(encoding="utf-8") dom = defusedxml.minidom.parseString(content) xml_file.write_bytes(dom.toprettyxml(indent=" ", encoding="utf-8")) except Exception: pass def _escape_smart_quotes(xml_file: Path) -> None: try: content = xml_file.read_text(encoding="utf-8") for char, entity in SMART_QUOTE_REPLACEMENTS.items(): content = content.replace(char, entity) xml_file.write_text(content, encoding="utf-8") except Exception: pass if __name__ == "__main__": parser = argparse.ArgumentParser( description="Unpack an Office file (DOCX, PPTX, XLSX) for editing" ) parser.add_argument("input_file", help="Office file to unpack") parser.add_argument("output_directory", help="Output directory") parser.add_argument( "--merge-runs", type=lambda x: x.lower() == "true", default=True, metavar="true|false", help="Merge adjacent runs with identical formatting (DOCX only, default: true)", ) parser.add_argument( "--simplify-redlines", type=lambda x: x.lower() == "true", default=True, metavar="true|false", help="Merge adjacent tracked changes from same author (DOCX only, default: true)", ) args = parser.parse_args() _, message = unpack( args.input_file, args.output_directory, merge_runs=args.merge_runs, simplify_redlines=args.simplify_redlines, ) print(message) if "Error" in message: sys.exit(1) ================================================ FILE: skills/xlsx/scripts/office/validate.py ================================================ """ Command line tool to validate Office document XML files against XSD schemas and tracked changes. Usage: python validate.py <path> [--original <original_file>] [--auto-repair] [--author NAME] The first argument can be either: - An unpacked directory containing the Office document XML files - A packed Office file (.docx/.pptx/.xlsx) which will be unpacked to a temp directory Auto-repair fixes: - paraId/durableId values that exceed OOXML limits - Missing xml:space="preserve" on w:t elements with whitespace """ import argparse import sys import tempfile import zipfile from pathlib import Path from validators import DOCXSchemaValidator, PPTXSchemaValidator, RedliningValidator def main(): parser = argparse.ArgumentParser(description="Validate Office document XML files") parser.add_argument( "path", help="Path to unpacked directory or packed Office file (.docx/.pptx/.xlsx)", ) parser.add_argument( "--original", required=False, default=None, help="Path to original file (.docx/.pptx/.xlsx). If omitted, all XSD errors are reported and redlining validation is skipped.", ) parser.add_argument( "-v", "--verbose", action="store_true", help="Enable verbose output", ) parser.add_argument( "--auto-repair", action="store_true", help="Automatically repair common issues (hex IDs, whitespace preservation)", ) parser.add_argument( "--author", default="Claude", help="Author name for redlining validation (default: Claude)", ) args = parser.parse_args() path = Path(args.path) assert path.exists(), f"Error: {path} does not exist" original_file = None if args.original: original_file = Path(args.original) assert original_file.is_file(), f"Error: {original_file} is not a file" assert original_file.suffix.lower() in [".docx", ".pptx", ".xlsx"], ( f"Error: {original_file} must be a .docx, .pptx, or .xlsx file" ) file_extension = (original_file or path).suffix.lower() assert file_extension in [".docx", ".pptx", ".xlsx"], ( f"Error: Cannot determine file type from {path}. Use --original or provide a .docx/.pptx/.xlsx file." ) if path.is_file() and path.suffix.lower() in [".docx", ".pptx", ".xlsx"]: temp_dir = tempfile.mkdtemp() with zipfile.ZipFile(path, "r") as zf: zf.extractall(temp_dir) unpacked_dir = Path(temp_dir) else: assert path.is_dir(), f"Error: {path} is not a directory or Office file" unpacked_dir = path match file_extension: case ".docx": validators = [ DOCXSchemaValidator(unpacked_dir, original_file, verbose=args.verbose), ] if original_file: validators.append( RedliningValidator(unpacked_dir, original_file, verbose=args.verbose, author=args.author) ) case ".pptx": validators = [ PPTXSchemaValidator(unpacked_dir, original_file, verbose=args.verbose), ] case _: print(f"Error: Validation not supported for file type {file_extension}") sys.exit(1) if args.auto_repair: total_repairs = sum(v.repair() for v in validators) if total_repairs: print(f"Auto-repaired {total_repairs} issue(s)") success = all(v.validate() for v in validators) if success: print("All validations PASSED!") sys.exit(0 if success else 1) if __name__ == "__main__": main() ================================================ FILE: skills/xlsx/scripts/office/validators/__init__.py ================================================ """ Validation modules for Word document processing. """ from .base import BaseSchemaValidator from .docx import DOCXSchemaValidator from .pptx import PPTXSchemaValidator from .redlining import RedliningValidator __all__ = [ "BaseSchemaValidator", "DOCXSchemaValidator", "PPTXSchemaValidator", "RedliningValidator", ] ================================================ FILE: skills/xlsx/scripts/office/validators/base.py ================================================ """ Base validator with common validation logic for document files. """ import re from pathlib import Path import defusedxml.minidom import lxml.etree class BaseSchemaValidator: IGNORED_VALIDATION_ERRORS = [ "hyphenationZone", "purl.org/dc/terms", ] UNIQUE_ID_REQUIREMENTS = { "comment": ("id", "file"), "commentrangestart": ("id", "file"), "commentrangeend": ("id", "file"), "bookmarkstart": ("id", "file"), "bookmarkend": ("id", "file"), "sldid": ("id", "file"), "sldmasterid": ("id", "global"), "sldlayoutid": ("id", "global"), "cm": ("authorid", "file"), "sheet": ("sheetid", "file"), "definedname": ("id", "file"), "cxnsp": ("id", "file"), "sp": ("id", "file"), "pic": ("id", "file"), "grpsp": ("id", "file"), } EXCLUDED_ID_CONTAINERS = { "sectionlst", } ELEMENT_RELATIONSHIP_TYPES = {} SCHEMA_MAPPINGS = { "word": "ISO-IEC29500-4_2016/wml.xsd", "ppt": "ISO-IEC29500-4_2016/pml.xsd", "xl": "ISO-IEC29500-4_2016/sml.xsd", "[Content_Types].xml": "ecma/fouth-edition/opc-contentTypes.xsd", "app.xml": "ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd", "core.xml": "ecma/fouth-edition/opc-coreProperties.xsd", "custom.xml": "ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd", ".rels": "ecma/fouth-edition/opc-relationships.xsd", "people.xml": "microsoft/wml-2012.xsd", "commentsIds.xml": "microsoft/wml-cid-2016.xsd", "commentsExtensible.xml": "microsoft/wml-cex-2018.xsd", "commentsExtended.xml": "microsoft/wml-2012.xsd", "chart": "ISO-IEC29500-4_2016/dml-chart.xsd", "theme": "ISO-IEC29500-4_2016/dml-main.xsd", "drawing": "ISO-IEC29500-4_2016/dml-main.xsd", } MC_NAMESPACE = "http://schemas.openxmlformats.org/markup-compatibility/2006" XML_NAMESPACE = "http://www.w3.org/XML/1998/namespace" PACKAGE_RELATIONSHIPS_NAMESPACE = ( "http://schemas.openxmlformats.org/package/2006/relationships" ) OFFICE_RELATIONSHIPS_NAMESPACE = ( "http://schemas.openxmlformats.org/officeDocument/2006/relationships" ) CONTENT_TYPES_NAMESPACE = ( "http://schemas.openxmlformats.org/package/2006/content-types" ) MAIN_CONTENT_FOLDERS = {"word", "ppt", "xl"} OOXML_NAMESPACES = { "http://schemas.openxmlformats.org/officeDocument/2006/math", "http://schemas.openxmlformats.org/officeDocument/2006/relationships", "http://schemas.openxmlformats.org/schemaLibrary/2006/main", "http://schemas.openxmlformats.org/drawingml/2006/main", "http://schemas.openxmlformats.org/drawingml/2006/chart", "http://schemas.openxmlformats.org/drawingml/2006/chartDrawing", "http://schemas.openxmlformats.org/drawingml/2006/diagram", "http://schemas.openxmlformats.org/drawingml/2006/picture", "http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing", "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing", "http://schemas.openxmlformats.org/wordprocessingml/2006/main", "http://schemas.openxmlformats.org/presentationml/2006/main", "http://schemas.openxmlformats.org/spreadsheetml/2006/main", "http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes", "http://www.w3.org/XML/1998/namespace", } def __init__(self, unpacked_dir, original_file=None, verbose=False): self.unpacked_dir = Path(unpacked_dir).resolve() self.original_file = Path(original_file) if original_file else None self.verbose = verbose self.schemas_dir = Path(__file__).parent.parent / "schemas" patterns = ["*.xml", "*.rels"] self.xml_files = [ f for pattern in patterns for f in self.unpacked_dir.rglob(pattern) ] if not self.xml_files: print(f"Warning: No XML files found in {self.unpacked_dir}") def validate(self): raise NotImplementedError("Subclasses must implement the validate method") def repair(self) -> int: return self.repair_whitespace_preservation() def repair_whitespace_preservation(self) -> int: repairs = 0 for xml_file in self.xml_files: try: content = xml_file.read_text(encoding="utf-8") dom = defusedxml.minidom.parseString(content) modified = False for elem in dom.getElementsByTagName("*"): if elem.tagName.endswith(":t") and elem.firstChild: text = elem.firstChild.nodeValue if text and (text.startswith((' ', '\t')) or text.endswith((' ', '\t'))): if elem.getAttribute("xml:space") != "preserve": elem.setAttribute("xml:space", "preserve") text_preview = repr(text[:30]) + "..." if len(text) > 30 else repr(text) print(f" Repaired: {xml_file.name}: Added xml:space='preserve' to {elem.tagName}: {text_preview}") repairs += 1 modified = True if modified: xml_file.write_bytes(dom.toxml(encoding="UTF-8")) except Exception: pass return repairs def validate_xml(self): errors = [] for xml_file in self.xml_files: try: lxml.etree.parse(str(xml_file)) except lxml.etree.XMLSyntaxError as e: errors.append( f" {xml_file.relative_to(self.unpacked_dir)}: " f"Line {e.lineno}: {e.msg}" ) except Exception as e: errors.append( f" {xml_file.relative_to(self.unpacked_dir)}: " f"Unexpected error: {str(e)}" ) if errors: print(f"FAILED - Found {len(errors)} XML violations:") for error in errors: print(error) return False else: if self.verbose: print("PASSED - All XML files are well-formed") return True def validate_namespaces(self): errors = [] for xml_file in self.xml_files: try: root = lxml.etree.parse(str(xml_file)).getroot() declared = set(root.nsmap.keys()) - {None} for attr_val in [ v for k, v in root.attrib.items() if k.endswith("Ignorable") ]: undeclared = set(attr_val.split()) - declared errors.extend( f" {xml_file.relative_to(self.unpacked_dir)}: " f"Namespace '{ns}' in Ignorable but not declared" for ns in undeclared ) except lxml.etree.XMLSyntaxError: continue if errors: print(f"FAILED - {len(errors)} namespace issues:") for error in errors: print(error) return False if self.verbose: print("PASSED - All namespace prefixes properly declared") return True def validate_unique_ids(self): errors = [] global_ids = {} for xml_file in self.xml_files: try: root = lxml.etree.parse(str(xml_file)).getroot() file_ids = {} mc_elements = root.xpath( ".//mc:AlternateContent", namespaces={"mc": self.MC_NAMESPACE} ) for elem in mc_elements: elem.getparent().remove(elem) for elem in root.iter(): tag = ( elem.tag.split("}")[-1].lower() if "}" in elem.tag else elem.tag.lower() ) if tag in self.UNIQUE_ID_REQUIREMENTS: in_excluded_container = any( ancestor.tag.split("}")[-1].lower() in self.EXCLUDED_ID_CONTAINERS for ancestor in elem.iterancestors() ) if in_excluded_container: continue attr_name, scope = self.UNIQUE_ID_REQUIREMENTS[tag] id_value = None for attr, value in elem.attrib.items(): attr_local = ( attr.split("}")[-1].lower() if "}" in attr else attr.lower() ) if attr_local == attr_name: id_value = value break if id_value is not None: if scope == "global": if id_value in global_ids: prev_file, prev_line, prev_tag = global_ids[ id_value ] errors.append( f" {xml_file.relative_to(self.unpacked_dir)}: " f"Line {elem.sourceline}: Global ID '{id_value}' in <{tag}> " f"already used in {prev_file} at line {prev_line} in <{prev_tag}>" ) else: global_ids[id_value] = ( xml_file.relative_to(self.unpacked_dir), elem.sourceline, tag, ) elif scope == "file": key = (tag, attr_name) if key not in file_ids: file_ids[key] = {} if id_value in file_ids[key]: prev_line = file_ids[key][id_value] errors.append( f" {xml_file.relative_to(self.unpacked_dir)}: " f"Line {elem.sourceline}: Duplicate {attr_name}='{id_value}' in <{tag}> " f"(first occurrence at line {prev_line})" ) else: file_ids[key][id_value] = elem.sourceline except (lxml.etree.XMLSyntaxError, Exception) as e: errors.append( f" {xml_file.relative_to(self.unpacked_dir)}: Error: {e}" ) if errors: print(f"FAILED - Found {len(errors)} ID uniqueness violations:") for error in errors: print(error) return False else: if self.verbose: print("PASSED - All required IDs are unique") return True def validate_file_references(self): errors = [] rels_files = list(self.unpacked_dir.rglob("*.rels")) if not rels_files: if self.verbose: print("PASSED - No .rels files found") return True all_files = [] for file_path in self.unpacked_dir.rglob("*"): if ( file_path.is_file() and file_path.name != "[Content_Types].xml" and not file_path.name.endswith(".rels") ): all_files.append(file_path.resolve()) all_referenced_files = set() if self.verbose: print( f"Found {len(rels_files)} .rels files and {len(all_files)} target files" ) for rels_file in rels_files: try: rels_root = lxml.etree.parse(str(rels_file)).getroot() rels_dir = rels_file.parent referenced_files = set() broken_refs = [] for rel in rels_root.findall( ".//ns:Relationship", namespaces={"ns": self.PACKAGE_RELATIONSHIPS_NAMESPACE}, ): target = rel.get("Target") if target and not target.startswith( ("http", "mailto:") ): if target.startswith("/"): target_path = self.unpacked_dir / target.lstrip("/") elif rels_file.name == ".rels": target_path = self.unpacked_dir / target else: base_dir = rels_dir.parent target_path = base_dir / target try: target_path = target_path.resolve() if target_path.exists() and target_path.is_file(): referenced_files.add(target_path) all_referenced_files.add(target_path) else: broken_refs.append((target, rel.sourceline)) except (OSError, ValueError): broken_refs.append((target, rel.sourceline)) if broken_refs: rel_path = rels_file.relative_to(self.unpacked_dir) for broken_ref, line_num in broken_refs: errors.append( f" {rel_path}: Line {line_num}: Broken reference to {broken_ref}" ) except Exception as e: rel_path = rels_file.relative_to(self.unpacked_dir) errors.append(f" Error parsing {rel_path}: {e}") unreferenced_files = set(all_files) - all_referenced_files if unreferenced_files: for unref_file in sorted(unreferenced_files): unref_rel_path = unref_file.relative_to(self.unpacked_dir) errors.append(f" Unreferenced file: {unref_rel_path}") if errors: print(f"FAILED - Found {len(errors)} relationship validation errors:") for error in errors: print(error) print( "CRITICAL: These errors will cause the document to appear corrupt. " + "Broken references MUST be fixed, " + "and unreferenced files MUST be referenced or removed." ) return False else: if self.verbose: print( "PASSED - All references are valid and all files are properly referenced" ) return True def validate_all_relationship_ids(self): import lxml.etree errors = [] for xml_file in self.xml_files: if xml_file.suffix == ".rels": continue rels_dir = xml_file.parent / "_rels" rels_file = rels_dir / f"{xml_file.name}.rels" if not rels_file.exists(): continue try: rels_root = lxml.etree.parse(str(rels_file)).getroot() rid_to_type = {} for rel in rels_root.findall( f".//{{{self.PACKAGE_RELATIONSHIPS_NAMESPACE}}}Relationship" ): rid = rel.get("Id") rel_type = rel.get("Type", "") if rid: if rid in rid_to_type: rels_rel_path = rels_file.relative_to(self.unpacked_dir) errors.append( f" {rels_rel_path}: Line {rel.sourceline}: " f"Duplicate relationship ID '{rid}' (IDs must be unique)" ) type_name = ( rel_type.split("/")[-1] if "/" in rel_type else rel_type ) rid_to_type[rid] = type_name xml_root = lxml.etree.parse(str(xml_file)).getroot() r_ns = self.OFFICE_RELATIONSHIPS_NAMESPACE rid_attrs_to_check = ["id", "embed", "link"] for elem in xml_root.iter(): for attr_name in rid_attrs_to_check: rid_attr = elem.get(f"{{{r_ns}}}{attr_name}") if not rid_attr: continue xml_rel_path = xml_file.relative_to(self.unpacked_dir) elem_name = ( elem.tag.split("}")[-1] if "}" in elem.tag else elem.tag ) if rid_attr not in rid_to_type: errors.append( f" {xml_rel_path}: Line {elem.sourceline}: " f"<{elem_name}> r:{attr_name} references non-existent relationship '{rid_attr}' " f"(valid IDs: {', '.join(sorted(rid_to_type.keys())[:5])}{'...' if len(rid_to_type) > 5 else ''})" ) elif attr_name == "id" and self.ELEMENT_RELATIONSHIP_TYPES: expected_type = self._get_expected_relationship_type( elem_name ) if expected_type: actual_type = rid_to_type[rid_attr] if expected_type not in actual_type.lower(): errors.append( f" {xml_rel_path}: Line {elem.sourceline}: " f"<{elem_name}> references '{rid_attr}' which points to '{actual_type}' " f"but should point to a '{expected_type}' relationship" ) except Exception as e: xml_rel_path = xml_file.relative_to(self.unpacked_dir) errors.append(f" Error processing {xml_rel_path}: {e}") if errors: print(f"FAILED - Found {len(errors)} relationship ID reference errors:") for error in errors: print(error) print("\nThese ID mismatches will cause the document to appear corrupt!") return False else: if self.verbose: print("PASSED - All relationship ID references are valid") return True def _get_expected_relationship_type(self, element_name): elem_lower = element_name.lower() if elem_lower in self.ELEMENT_RELATIONSHIP_TYPES: return self.ELEMENT_RELATIONSHIP_TYPES[elem_lower] if elem_lower.endswith("id") and len(elem_lower) > 2: prefix = elem_lower[:-2] if prefix.endswith("master"): return prefix.lower() elif prefix.endswith("layout"): return prefix.lower() else: if prefix == "sld": return "slide" return prefix.lower() if elem_lower.endswith("reference") and len(elem_lower) > 9: prefix = elem_lower[:-9] return prefix.lower() return None def validate_content_types(self): errors = [] content_types_file = self.unpacked_dir / "[Content_Types].xml" if not content_types_file.exists(): print("FAILED - [Content_Types].xml file not found") return False try: root = lxml.etree.parse(str(content_types_file)).getroot() declared_parts = set() declared_extensions = set() for override in root.findall( f".//{{{self.CONTENT_TYPES_NAMESPACE}}}Override" ): part_name = override.get("PartName") if part_name is not None: declared_parts.add(part_name.lstrip("/")) for default in root.findall( f".//{{{self.CONTENT_TYPES_NAMESPACE}}}Default" ): extension = default.get("Extension") if extension is not None: declared_extensions.add(extension.lower()) declarable_roots = { "sld", "sldLayout", "sldMaster", "presentation", "document", "workbook", "worksheet", "theme", } media_extensions = { "png": "image/png", "jpg": "image/jpeg", "jpeg": "image/jpeg", "gif": "image/gif", "bmp": "image/bmp", "tiff": "image/tiff", "wmf": "image/x-wmf", "emf": "image/x-emf", } all_files = list(self.unpacked_dir.rglob("*")) all_files = [f for f in all_files if f.is_file()] for xml_file in self.xml_files: path_str = str(xml_file.relative_to(self.unpacked_dir)).replace( "\\", "/" ) if any( skip in path_str for skip in [".rels", "[Content_Types]", "docProps/", "_rels/"] ): continue try: root_tag = lxml.etree.parse(str(xml_file)).getroot().tag root_name = root_tag.split("}")[-1] if "}" in root_tag else root_tag if root_name in declarable_roots and path_str not in declared_parts: errors.append( f" {path_str}: File with <{root_name}> root not declared in [Content_Types].xml" ) except Exception: continue for file_path in all_files: if file_path.suffix.lower() in {".xml", ".rels"}: continue if file_path.name == "[Content_Types].xml": continue if "_rels" in file_path.parts or "docProps" in file_path.parts: continue extension = file_path.suffix.lstrip(".").lower() if extension and extension not in declared_extensions: if extension in media_extensions: relative_path = file_path.relative_to(self.unpacked_dir) errors.append( f' {relative_path}: File with extension \'{extension}\' not declared in [Content_Types].xml - should add: <Default Extension="{extension}" ContentType="{media_extensions[extension]}"/>' ) except Exception as e: errors.append(f" Error parsing [Content_Types].xml: {e}") if errors: print(f"FAILED - Found {len(errors)} content type declaration errors:") for error in errors: print(error) return False else: if self.verbose: print( "PASSED - All content files are properly declared in [Content_Types].xml" ) return True def validate_file_against_xsd(self, xml_file, verbose=False): xml_file = Path(xml_file).resolve() unpacked_dir = self.unpacked_dir.resolve() is_valid, current_errors = self._validate_single_file_xsd( xml_file, unpacked_dir ) if is_valid is None: return None, set() elif is_valid: return True, set() original_errors = self._get_original_file_errors(xml_file) assert current_errors is not None new_errors = current_errors - original_errors new_errors = { e for e in new_errors if not any(pattern in e for pattern in self.IGNORED_VALIDATION_ERRORS) } if new_errors: if verbose: relative_path = xml_file.relative_to(unpacked_dir) print(f"FAILED - {relative_path}: {len(new_errors)} new error(s)") for error in list(new_errors)[:3]: truncated = error[:250] + "..." if len(error) > 250 else error print(f" - {truncated}") return False, new_errors else: if verbose: print( f"PASSED - No new errors (original had {len(current_errors)} errors)" ) return True, set() def validate_against_xsd(self): new_errors = [] original_error_count = 0 valid_count = 0 skipped_count = 0 for xml_file in self.xml_files: relative_path = str(xml_file.relative_to(self.unpacked_dir)) is_valid, new_file_errors = self.validate_file_against_xsd( xml_file, verbose=False ) if is_valid is None: skipped_count += 1 continue elif is_valid and not new_file_errors: valid_count += 1 continue elif is_valid: original_error_count += 1 valid_count += 1 continue new_errors.append(f" {relative_path}: {len(new_file_errors)} new error(s)") for error in list(new_file_errors)[:3]: new_errors.append( f" - {error[:250]}..." if len(error) > 250 else f" - {error}" ) if self.verbose: print(f"Validated {len(self.xml_files)} files:") print(f" - Valid: {valid_count}") print(f" - Skipped (no schema): {skipped_count}") if original_error_count: print(f" - With original errors (ignored): {original_error_count}") print( f" - With NEW errors: {len(new_errors) > 0 and len([e for e in new_errors if not e.startswith(' ')]) or 0}" ) if new_errors: print("\nFAILED - Found NEW validation errors:") for error in new_errors: print(error) return False else: if self.verbose: print("\nPASSED - No new XSD validation errors introduced") return True def _get_schema_path(self, xml_file): if xml_file.name in self.SCHEMA_MAPPINGS: return self.schemas_dir / self.SCHEMA_MAPPINGS[xml_file.name] if xml_file.suffix == ".rels": return self.schemas_dir / self.SCHEMA_MAPPINGS[".rels"] if "charts/" in str(xml_file) and xml_file.name.startswith("chart"): return self.schemas_dir / self.SCHEMA_MAPPINGS["chart"] if "theme/" in str(xml_file) and xml_file.name.startswith("theme"): return self.schemas_dir / self.SCHEMA_MAPPINGS["theme"] if xml_file.parent.name in self.MAIN_CONTENT_FOLDERS: return self.schemas_dir / self.SCHEMA_MAPPINGS[xml_file.parent.name] return None def _clean_ignorable_namespaces(self, xml_doc): xml_string = lxml.etree.tostring(xml_doc, encoding="unicode") xml_copy = lxml.etree.fromstring(xml_string) for elem in xml_copy.iter(): attrs_to_remove = [] for attr in elem.attrib: if "{" in attr: ns = attr.split("}")[0][1:] if ns not in self.OOXML_NAMESPACES: attrs_to_remove.append(attr) for attr in attrs_to_remove: del elem.attrib[attr] self._remove_ignorable_elements(xml_copy) return lxml.etree.ElementTree(xml_copy) def _remove_ignorable_elements(self, root): elements_to_remove = [] for elem in list(root): if not hasattr(elem, "tag") or callable(elem.tag): continue tag_str = str(elem.tag) if tag_str.startswith("{"): ns = tag_str.split("}")[0][1:] if ns not in self.OOXML_NAMESPACES: elements_to_remove.append(elem) continue self._remove_ignorable_elements(elem) for elem in elements_to_remove: root.remove(elem) def _preprocess_for_mc_ignorable(self, xml_doc): root = xml_doc.getroot() if f"{{{self.MC_NAMESPACE}}}Ignorable" in root.attrib: del root.attrib[f"{{{self.MC_NAMESPACE}}}Ignorable"] return xml_doc def _validate_single_file_xsd(self, xml_file, base_path): schema_path = self._get_schema_path(xml_file) if not schema_path: return None, None try: with open(schema_path, "rb") as xsd_file: parser = lxml.etree.XMLParser() xsd_doc = lxml.etree.parse( xsd_file, parser=parser, base_url=str(schema_path) ) schema = lxml.etree.XMLSchema(xsd_doc) with open(xml_file, "r") as f: xml_doc = lxml.etree.parse(f) xml_doc, _ = self._remove_template_tags_from_text_nodes(xml_doc) xml_doc = self._preprocess_for_mc_ignorable(xml_doc) relative_path = xml_file.relative_to(base_path) if ( relative_path.parts and relative_path.parts[0] in self.MAIN_CONTENT_FOLDERS ): xml_doc = self._clean_ignorable_namespaces(xml_doc) if schema.validate(xml_doc): return True, set() else: errors = set() for error in schema.error_log: errors.add(error.message) return False, errors except Exception as e: return False, {str(e)} def _get_original_file_errors(self, xml_file): if self.original_file is None: return set() import tempfile import zipfile xml_file = Path(xml_file).resolve() unpacked_dir = self.unpacked_dir.resolve() relative_path = xml_file.relative_to(unpacked_dir) with tempfile.TemporaryDirectory() as temp_dir: temp_path = Path(temp_dir) with zipfile.ZipFile(self.original_file, "r") as zip_ref: zip_ref.extractall(temp_path) original_xml_file = temp_path / relative_path if not original_xml_file.exists(): return set() is_valid, errors = self._validate_single_file_xsd( original_xml_file, temp_path ) return errors if errors else set() def _remove_template_tags_from_text_nodes(self, xml_doc): warnings = [] template_pattern = re.compile(r"\{\{[^}]*\}\}") xml_string = lxml.etree.tostring(xml_doc, encoding="unicode") xml_copy = lxml.etree.fromstring(xml_string) def process_text_content(text, content_type): if not text: return text matches = list(template_pattern.finditer(text)) if matches: for match in matches: warnings.append( f"Found template tag in {content_type}: {match.group()}" ) return template_pattern.sub("", text) return text for elem in xml_copy.iter(): if not hasattr(elem, "tag") or callable(elem.tag): continue tag_str = str(elem.tag) if tag_str.endswith("}t") or tag_str == "t": continue elem.text = process_text_content(elem.text, "text content") elem.tail = process_text_content(elem.tail, "tail content") return lxml.etree.ElementTree(xml_copy), warnings if __name__ == "__main__": raise RuntimeError("This module should not be run directly.") ================================================ FILE: skills/xlsx/scripts/office/validators/docx.py ================================================ """ Validator for Word document XML files against XSD schemas. """ import random import re import tempfile import zipfile import defusedxml.minidom import lxml.etree from .base import BaseSchemaValidator class DOCXSchemaValidator(BaseSchemaValidator): WORD_2006_NAMESPACE = "http://schemas.openxmlformats.org/wordprocessingml/2006/main" W14_NAMESPACE = "http://schemas.microsoft.com/office/word/2010/wordml" W16CID_NAMESPACE = "http://schemas.microsoft.com/office/word/2016/wordml/cid" ELEMENT_RELATIONSHIP_TYPES = {} def validate(self): if not self.validate_xml(): return False all_valid = True if not self.validate_namespaces(): all_valid = False if not self.validate_unique_ids(): all_valid = False if not self.validate_file_references(): all_valid = False if not self.validate_content_types(): all_valid = False if not self.validate_against_xsd(): all_valid = False if not self.validate_whitespace_preservation(): all_valid = False if not self.validate_deletions(): all_valid = False if not self.validate_insertions(): all_valid = False if not self.validate_all_relationship_ids(): all_valid = False if not self.validate_id_constraints(): all_valid = False if not self.validate_comment_markers(): all_valid = False self.compare_paragraph_counts() return all_valid def validate_whitespace_preservation(self): errors = [] for xml_file in self.xml_files: if xml_file.name != "document.xml": continue try: root = lxml.etree.parse(str(xml_file)).getroot() for elem in root.iter(f"{{{self.WORD_2006_NAMESPACE}}}t"): if elem.text: text = elem.text if re.search(r"^[ \t\n\r]", text) or re.search( r"[ \t\n\r]$", text ): xml_space_attr = f"{{{self.XML_NAMESPACE}}}space" if ( xml_space_attr not in elem.attrib or elem.attrib[xml_space_attr] != "preserve" ): text_preview = ( repr(text)[:50] + "..." if len(repr(text)) > 50 else repr(text) ) errors.append( f" {xml_file.relative_to(self.unpacked_dir)}: " f"Line {elem.sourceline}: w:t element with whitespace missing xml:space='preserve': {text_preview}" ) except (lxml.etree.XMLSyntaxError, Exception) as e: errors.append( f" {xml_file.relative_to(self.unpacked_dir)}: Error: {e}" ) if errors: print(f"FAILED - Found {len(errors)} whitespace preservation violations:") for error in errors: print(error) return False else: if self.verbose: print("PASSED - All whitespace is properly preserved") return True def validate_deletions(self): errors = [] for xml_file in self.xml_files: if xml_file.name != "document.xml": continue try: root = lxml.etree.parse(str(xml_file)).getroot() namespaces = {"w": self.WORD_2006_NAMESPACE} for t_elem in root.xpath(".//w:del//w:t", namespaces=namespaces): if t_elem.text: text_preview = ( repr(t_elem.text)[:50] + "..." if len(repr(t_elem.text)) > 50 else repr(t_elem.text) ) errors.append( f" {xml_file.relative_to(self.unpacked_dir)}: " f"Line {t_elem.sourceline}: <w:t> found within <w:del>: {text_preview}" ) for instr_elem in root.xpath( ".//w:del//w:instrText", namespaces=namespaces ): text_preview = ( repr(instr_elem.text or "")[:50] + "..." if len(repr(instr_elem.text or "")) > 50 else repr(instr_elem.text or "") ) errors.append( f" {xml_file.relative_to(self.unpacked_dir)}: " f"Line {instr_elem.sourceline}: <w:instrText> found within <w:del> (use <w:delInstrText>): {text_preview}" ) except (lxml.etree.XMLSyntaxError, Exception) as e: errors.append( f" {xml_file.relative_to(self.unpacked_dir)}: Error: {e}" ) if errors: print(f"FAILED - Found {len(errors)} deletion validation violations:") for error in errors: print(error) return False else: if self.verbose: print("PASSED - No w:t elements found within w:del elements") return True def count_paragraphs_in_unpacked(self): count = 0 for xml_file in self.xml_files: if xml_file.name != "document.xml": continue try: root = lxml.etree.parse(str(xml_file)).getroot() paragraphs = root.findall(f".//{{{self.WORD_2006_NAMESPACE}}}p") count = len(paragraphs) except Exception as e: print(f"Error counting paragraphs in unpacked document: {e}") return count def count_paragraphs_in_original(self): original = self.original_file if original is None: return 0 count = 0 try: with tempfile.TemporaryDirectory() as temp_dir: with zipfile.ZipFile(original, "r") as zip_ref: zip_ref.extractall(temp_dir) doc_xml_path = temp_dir + "/word/document.xml" root = lxml.etree.parse(doc_xml_path).getroot() paragraphs = root.findall(f".//{{{self.WORD_2006_NAMESPACE}}}p") count = len(paragraphs) except Exception as e: print(f"Error counting paragraphs in original document: {e}") return count def validate_insertions(self): errors = [] for xml_file in self.xml_files: if xml_file.name != "document.xml": continue try: root = lxml.etree.parse(str(xml_file)).getroot() namespaces = {"w": self.WORD_2006_NAMESPACE} invalid_elements = root.xpath( ".//w:ins//w:delText[not(ancestor::w:del)]", namespaces=namespaces ) for elem in invalid_elements: text_preview = ( repr(elem.text or "")[:50] + "..." if len(repr(elem.text or "")) > 50 else repr(elem.text or "") ) errors.append( f" {xml_file.relative_to(self.unpacked_dir)}: " f"Line {elem.sourceline}: <w:delText> within <w:ins>: {text_preview}" ) except (lxml.etree.XMLSyntaxError, Exception) as e: errors.append( f" {xml_file.relative_to(self.unpacked_dir)}: Error: {e}" ) if errors: print(f"FAILED - Found {len(errors)} insertion validation violations:") for error in errors: print(error) return False else: if self.verbose: print("PASSED - No w:delText elements within w:ins elements") return True def compare_paragraph_counts(self): original_count = self.count_paragraphs_in_original() new_count = self.count_paragraphs_in_unpacked() diff = new_count - original_count diff_str = f"+{diff}" if diff > 0 else str(diff) print(f"\nParagraphs: {original_count} → {new_count} ({diff_str})") def _parse_id_value(self, val: str, base: int = 16) -> int: return int(val, base) def validate_id_constraints(self): errors = [] para_id_attr = f"{{{self.W14_NAMESPACE}}}paraId" durable_id_attr = f"{{{self.W16CID_NAMESPACE}}}durableId" for xml_file in self.xml_files: try: for elem in lxml.etree.parse(str(xml_file)).iter(): if val := elem.get(para_id_attr): if self._parse_id_value(val, base=16) >= 0x80000000: errors.append( f" {xml_file.name}:{elem.sourceline}: paraId={val} >= 0x80000000" ) if val := elem.get(durable_id_attr): if xml_file.name == "numbering.xml": try: if self._parse_id_value(val, base=10) >= 0x7FFFFFFF: errors.append( f" {xml_file.name}:{elem.sourceline}: " f"durableId={val} >= 0x7FFFFFFF" ) except ValueError: errors.append( f" {xml_file.name}:{elem.sourceline}: " f"durableId={val} must be decimal in numbering.xml" ) else: if self._parse_id_value(val, base=16) >= 0x7FFFFFFF: errors.append( f" {xml_file.name}:{elem.sourceline}: " f"durableId={val} >= 0x7FFFFFFF" ) except Exception: pass if errors: print(f"FAILED - {len(errors)} ID constraint violations:") for e in errors: print(e) elif self.verbose: print("PASSED - All paraId/durableId values within constraints") return not errors def validate_comment_markers(self): errors = [] document_xml = None comments_xml = None for xml_file in self.xml_files: if xml_file.name == "document.xml" and "word" in str(xml_file): document_xml = xml_file elif xml_file.name == "comments.xml": comments_xml = xml_file if not document_xml: if self.verbose: print("PASSED - No document.xml found (skipping comment validation)") return True try: doc_root = lxml.etree.parse(str(document_xml)).getroot() namespaces = {"w": self.WORD_2006_NAMESPACE} range_starts = { elem.get(f"{{{self.WORD_2006_NAMESPACE}}}id") for elem in doc_root.xpath( ".//w:commentRangeStart", namespaces=namespaces ) } range_ends = { elem.get(f"{{{self.WORD_2006_NAMESPACE}}}id") for elem in doc_root.xpath( ".//w:commentRangeEnd", namespaces=namespaces ) } references = { elem.get(f"{{{self.WORD_2006_NAMESPACE}}}id") for elem in doc_root.xpath( ".//w:commentReference", namespaces=namespaces ) } orphaned_ends = range_ends - range_starts for comment_id in sorted( orphaned_ends, key=lambda x: int(x) if x and x.isdigit() else 0 ): errors.append( f' document.xml: commentRangeEnd id="{comment_id}" has no matching commentRangeStart' ) orphaned_starts = range_starts - range_ends for comment_id in sorted( orphaned_starts, key=lambda x: int(x) if x and x.isdigit() else 0 ): errors.append( f' document.xml: commentRangeStart id="{comment_id}" has no matching commentRangeEnd' ) comment_ids = set() if comments_xml and comments_xml.exists(): comments_root = lxml.etree.parse(str(comments_xml)).getroot() comment_ids = { elem.get(f"{{{self.WORD_2006_NAMESPACE}}}id") for elem in comments_root.xpath( ".//w:comment", namespaces=namespaces ) } marker_ids = range_starts | range_ends | references invalid_refs = marker_ids - comment_ids for comment_id in sorted( invalid_refs, key=lambda x: int(x) if x and x.isdigit() else 0 ): if comment_id: errors.append( f' document.xml: marker id="{comment_id}" references non-existent comment' ) except (lxml.etree.XMLSyntaxError, Exception) as e: errors.append(f" Error parsing XML: {e}") if errors: print(f"FAILED - {len(errors)} comment marker violations:") for error in errors: print(error) return False else: if self.verbose: print("PASSED - All comment markers properly paired") return True def repair(self) -> int: repairs = super().repair() repairs += self.repair_durableId() return repairs def repair_durableId(self) -> int: repairs = 0 for xml_file in self.xml_files: try: content = xml_file.read_text(encoding="utf-8") dom = defusedxml.minidom.parseString(content) modified = False for elem in dom.getElementsByTagName("*"): if not elem.hasAttribute("w16cid:durableId"): continue durable_id = elem.getAttribute("w16cid:durableId") needs_repair = False if xml_file.name == "numbering.xml": try: needs_repair = ( self._parse_id_value(durable_id, base=10) >= 0x7FFFFFFF ) except ValueError: needs_repair = True else: try: needs_repair = ( self._parse_id_value(durable_id, base=16) >= 0x7FFFFFFF ) except ValueError: needs_repair = True if needs_repair: value = random.randint(1, 0x7FFFFFFE) if xml_file.name == "numbering.xml": new_id = str(value) else: new_id = f"{value:08X}" elem.setAttribute("w16cid:durableId", new_id) print( f" Repaired: {xml_file.name}: durableId {durable_id} → {new_id}" ) repairs += 1 modified = True if modified: xml_file.write_bytes(dom.toxml(encoding="UTF-8")) except Exception: pass return repairs if __name__ == "__main__": raise RuntimeError("This module should not be run directly.") ================================================ FILE: skills/xlsx/scripts/office/validators/pptx.py ================================================ """ Validator for PowerPoint presentation XML files against XSD schemas. """ import re from .base import BaseSchemaValidator class PPTXSchemaValidator(BaseSchemaValidator): PRESENTATIONML_NAMESPACE = ( "http://schemas.openxmlformats.org/presentationml/2006/main" ) ELEMENT_RELATIONSHIP_TYPES = { "sldid": "slide", "sldmasterid": "slidemaster", "notesmasterid": "notesmaster", "sldlayoutid": "slidelayout", "themeid": "theme", "tablestyleid": "tablestyles", } def validate(self): if not self.validate_xml(): return False all_valid = True if not self.validate_namespaces(): all_valid = False if not self.validate_unique_ids(): all_valid = False if not self.validate_uuid_ids(): all_valid = False if not self.validate_file_references(): all_valid = False if not self.validate_slide_layout_ids(): all_valid = False if not self.validate_content_types(): all_valid = False if not self.validate_against_xsd(): all_valid = False if not self.validate_notes_slide_references(): all_valid = False if not self.validate_all_relationship_ids(): all_valid = False if not self.validate_no_duplicate_slide_layouts(): all_valid = False return all_valid def validate_uuid_ids(self): import lxml.etree errors = [] uuid_pattern = re.compile( r"^[\{\(]?[0-9A-Fa-f]{8}-?[0-9A-Fa-f]{4}-?[0-9A-Fa-f]{4}-?[0-9A-Fa-f]{4}-?[0-9A-Fa-f]{12}[\}\)]?$" ) for xml_file in self.xml_files: try: root = lxml.etree.parse(str(xml_file)).getroot() for elem in root.iter(): for attr, value in elem.attrib.items(): attr_name = attr.split("}")[-1].lower() if attr_name == "id" or attr_name.endswith("id"): if self._looks_like_uuid(value): if not uuid_pattern.match(value): errors.append( f" {xml_file.relative_to(self.unpacked_dir)}: " f"Line {elem.sourceline}: ID '{value}' appears to be a UUID but contains invalid hex characters" ) except (lxml.etree.XMLSyntaxError, Exception) as e: errors.append( f" {xml_file.relative_to(self.unpacked_dir)}: Error: {e}" ) if errors: print(f"FAILED - Found {len(errors)} UUID ID validation errors:") for error in errors: print(error) return False else: if self.verbose: print("PASSED - All UUID-like IDs contain valid hex values") return True def _looks_like_uuid(self, value): clean_value = value.strip("{}()").replace("-", "") return len(clean_value) == 32 and all(c.isalnum() for c in clean_value) def validate_slide_layout_ids(self): import lxml.etree errors = [] slide_masters = list(self.unpacked_dir.glob("ppt/slideMasters/*.xml")) if not slide_masters: if self.verbose: print("PASSED - No slide masters found") return True for slide_master in slide_masters: try: root = lxml.etree.parse(str(slide_master)).getroot() rels_file = slide_master.parent / "_rels" / f"{slide_master.name}.rels" if not rels_file.exists(): errors.append( f" {slide_master.relative_to(self.unpacked_dir)}: " f"Missing relationships file: {rels_file.relative_to(self.unpacked_dir)}" ) continue rels_root = lxml.etree.parse(str(rels_file)).getroot() valid_layout_rids = set() for rel in rels_root.findall( f".//{{{self.PACKAGE_RELATIONSHIPS_NAMESPACE}}}Relationship" ): rel_type = rel.get("Type", "") if "slideLayout" in rel_type: valid_layout_rids.add(rel.get("Id")) for sld_layout_id in root.findall( f".//{{{self.PRESENTATIONML_NAMESPACE}}}sldLayoutId" ): r_id = sld_layout_id.get( f"{{{self.OFFICE_RELATIONSHIPS_NAMESPACE}}}id" ) layout_id = sld_layout_id.get("id") if r_id and r_id not in valid_layout_rids: errors.append( f" {slide_master.relative_to(self.unpacked_dir)}: " f"Line {sld_layout_id.sourceline}: sldLayoutId with id='{layout_id}' " f"references r:id='{r_id}' which is not found in slide layout relationships" ) except (lxml.etree.XMLSyntaxError, Exception) as e: errors.append( f" {slide_master.relative_to(self.unpacked_dir)}: Error: {e}" ) if errors: print(f"FAILED - Found {len(errors)} slide layout ID validation errors:") for error in errors: print(error) print( "Remove invalid references or add missing slide layouts to the relationships file." ) return False else: if self.verbose: print("PASSED - All slide layout IDs reference valid slide layouts") return True def validate_no_duplicate_slide_layouts(self): import lxml.etree errors = [] slide_rels_files = list(self.unpacked_dir.glob("ppt/slides/_rels/*.xml.rels")) for rels_file in slide_rels_files: try: root = lxml.etree.parse(str(rels_file)).getroot() layout_rels = [ rel for rel in root.findall( f".//{{{self.PACKAGE_RELATIONSHIPS_NAMESPACE}}}Relationship" ) if "slideLayout" in rel.get("Type", "") ] if len(layout_rels) > 1: errors.append( f" {rels_file.relative_to(self.unpacked_dir)}: has {len(layout_rels)} slideLayout references" ) except Exception as e: errors.append( f" {rels_file.relative_to(self.unpacked_dir)}: Error: {e}" ) if errors: print("FAILED - Found slides with duplicate slideLayout references:") for error in errors: print(error) return False else: if self.verbose: print("PASSED - All slides have exactly one slideLayout reference") return True def validate_notes_slide_references(self): import lxml.etree errors = [] notes_slide_references = {} slide_rels_files = list(self.unpacked_dir.glob("ppt/slides/_rels/*.xml.rels")) if not slide_rels_files: if self.verbose: print("PASSED - No slide relationship files found") return True for rels_file in slide_rels_files: try: root = lxml.etree.parse(str(rels_file)).getroot() for rel in root.findall( f".//{{{self.PACKAGE_RELATIONSHIPS_NAMESPACE}}}Relationship" ): rel_type = rel.get("Type", "") if "notesSlide" in rel_type: target = rel.get("Target", "") if target: normalized_target = target.replace("../", "") slide_name = rels_file.stem.replace( ".xml", "" ) if normalized_target not in notes_slide_references: notes_slide_references[normalized_target] = [] notes_slide_references[normalized_target].append( (slide_name, rels_file) ) except (lxml.etree.XMLSyntaxError, Exception) as e: errors.append( f" {rels_file.relative_to(self.unpacked_dir)}: Error: {e}" ) for target, references in notes_slide_references.items(): if len(references) > 1: slide_names = [ref[0] for ref in references] errors.append( f" Notes slide '{target}' is referenced by multiple slides: {', '.join(slide_names)}" ) for slide_name, rels_file in references: errors.append(f" - {rels_file.relative_to(self.unpacked_dir)}") if errors: print( f"FAILED - Found {len([e for e in errors if not e.startswith(' ')])} notes slide reference validation errors:" ) for error in errors: print(error) print("Each slide may optionally have its own slide file.") return False else: if self.verbose: print("PASSED - All notes slide references are unique") return True if __name__ == "__main__": raise RuntimeError("This module should not be run directly.") ================================================ FILE: skills/xlsx/scripts/office/validators/redlining.py ================================================ """ Validator for tracked changes in Word documents. """ import subprocess import tempfile import zipfile from pathlib import Path class RedliningValidator: def __init__(self, unpacked_dir, original_docx, verbose=False, author="Claude"): self.unpacked_dir = Path(unpacked_dir) self.original_docx = Path(original_docx) self.verbose = verbose self.author = author self.namespaces = { "w": "http://schemas.openxmlformats.org/wordprocessingml/2006/main" } def repair(self) -> int: return 0 def validate(self): modified_file = self.unpacked_dir / "word" / "document.xml" if not modified_file.exists(): print(f"FAILED - Modified document.xml not found at {modified_file}") return False try: import xml.etree.ElementTree as ET tree = ET.parse(modified_file) root = tree.getroot() del_elements = root.findall(".//w:del", self.namespaces) ins_elements = root.findall(".//w:ins", self.namespaces) author_del_elements = [ elem for elem in del_elements if elem.get(f"{{{self.namespaces['w']}}}author") == self.author ] author_ins_elements = [ elem for elem in ins_elements if elem.get(f"{{{self.namespaces['w']}}}author") == self.author ] if not author_del_elements and not author_ins_elements: if self.verbose: print(f"PASSED - No tracked changes by {self.author} found.") return True except Exception: pass with tempfile.TemporaryDirectory() as temp_dir: temp_path = Path(temp_dir) try: with zipfile.ZipFile(self.original_docx, "r") as zip_ref: zip_ref.extractall(temp_path) except Exception as e: print(f"FAILED - Error unpacking original docx: {e}") return False original_file = temp_path / "word" / "document.xml" if not original_file.exists(): print( f"FAILED - Original document.xml not found in {self.original_docx}" ) return False try: import xml.etree.ElementTree as ET modified_tree = ET.parse(modified_file) modified_root = modified_tree.getroot() original_tree = ET.parse(original_file) original_root = original_tree.getroot() except ET.ParseError as e: print(f"FAILED - Error parsing XML files: {e}") return False self._remove_author_tracked_changes(original_root) self._remove_author_tracked_changes(modified_root) modified_text = self._extract_text_content(modified_root) original_text = self._extract_text_content(original_root) if modified_text != original_text: error_message = self._generate_detailed_diff( original_text, modified_text ) print(error_message) return False if self.verbose: print(f"PASSED - All changes by {self.author} are properly tracked") return True def _generate_detailed_diff(self, original_text, modified_text): error_parts = [ f"FAILED - Document text doesn't match after removing {self.author}'s tracked changes", "", "Likely causes:", " 1. Modified text inside another author's <w:ins> or <w:del> tags", " 2. Made edits without proper tracked changes", " 3. Didn't nest <w:del> inside <w:ins> when deleting another's insertion", "", "For pre-redlined documents, use correct patterns:", " - To reject another's INSERTION: Nest <w:del> inside their <w:ins>", " - To restore another's DELETION: Add new <w:ins> AFTER their <w:del>", "", ] git_diff = self._get_git_word_diff(original_text, modified_text) if git_diff: error_parts.extend(["Differences:", "============", git_diff]) else: error_parts.append("Unable to generate word diff (git not available)") return "\n".join(error_parts) def _get_git_word_diff(self, original_text, modified_text): try: with tempfile.TemporaryDirectory() as temp_dir: temp_path = Path(temp_dir) original_file = temp_path / "original.txt" modified_file = temp_path / "modified.txt" original_file.write_text(original_text, encoding="utf-8") modified_file.write_text(modified_text, encoding="utf-8") result = subprocess.run( [ "git", "diff", "--word-diff=plain", "--word-diff-regex=.", "-U0", "--no-index", str(original_file), str(modified_file), ], capture_output=True, text=True, ) if result.stdout.strip(): lines = result.stdout.split("\n") content_lines = [] in_content = False for line in lines: if line.startswith("@@"): in_content = True continue if in_content and line.strip(): content_lines.append(line) if content_lines: return "\n".join(content_lines) result = subprocess.run( [ "git", "diff", "--word-diff=plain", "-U0", "--no-index", str(original_file), str(modified_file), ], capture_output=True, text=True, ) if result.stdout.strip(): lines = result.stdout.split("\n") content_lines = [] in_content = False for line in lines: if line.startswith("@@"): in_content = True continue if in_content and line.strip(): content_lines.append(line) return "\n".join(content_lines) except (subprocess.CalledProcessError, FileNotFoundError, Exception): pass return None def _remove_author_tracked_changes(self, root): ins_tag = f"{{{self.namespaces['w']}}}ins" del_tag = f"{{{self.namespaces['w']}}}del" author_attr = f"{{{self.namespaces['w']}}}author" for parent in root.iter(): to_remove = [] for child in parent: if child.tag == ins_tag and child.get(author_attr) == self.author: to_remove.append(child) for elem in to_remove: parent.remove(elem) deltext_tag = f"{{{self.namespaces['w']}}}delText" t_tag = f"{{{self.namespaces['w']}}}t" for parent in root.iter(): to_process = [] for child in parent: if child.tag == del_tag and child.get(author_attr) == self.author: to_process.append((child, list(parent).index(child))) for del_elem, del_index in reversed(to_process): for elem in del_elem.iter(): if elem.tag == deltext_tag: elem.tag = t_tag for child in reversed(list(del_elem)): parent.insert(del_index, child) parent.remove(del_elem) def _extract_text_content(self, root): p_tag = f"{{{self.namespaces['w']}}}p" t_tag = f"{{{self.namespaces['w']}}}t" paragraphs = [] for p_elem in root.findall(f".//{p_tag}"): text_parts = [] for t_elem in p_elem.findall(f".//{t_tag}"): if t_elem.text: text_parts.append(t_elem.text) paragraph_text = "".join(text_parts) if paragraph_text: paragraphs.append(paragraph_text) return "\n".join(paragraphs) if __name__ == "__main__": raise RuntimeError("This module should not be run directly.") ================================================ FILE: skills/xlsx/scripts/recalc.py ================================================ """ Excel Formula Recalculation Script Recalculates all formulas in an Excel file using LibreOffice """ import json import os import platform import subprocess import sys from pathlib import Path from office.soffice import get_soffice_env from openpyxl import load_workbook MACRO_DIR_MACOS = "~/Library/Application Support/LibreOffice/4/user/basic/Standard" MACRO_DIR_LINUX = "~/.config/libreoffice/4/user/basic/Standard" MACRO_FILENAME = "Module1.xba" RECALCULATE_MACRO = """<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd"> <script:module xmlns:script="http://openoffice.org/2000/script" script:name="Module1" script:language="StarBasic"> Sub RecalculateAndSave() ThisComponent.calculateAll() ThisComponent.store() ThisComponent.close(True) End Sub </script:module>""" def has_gtimeout(): try: subprocess.run( ["gtimeout", "--version"], capture_output=True, timeout=1, check=False ) return True except (FileNotFoundError, subprocess.TimeoutExpired): return False def setup_libreoffice_macro(): macro_dir = os.path.expanduser( MACRO_DIR_MACOS if platform.system() == "Darwin" else MACRO_DIR_LINUX ) macro_file = os.path.join(macro_dir, MACRO_FILENAME) if ( os.path.exists(macro_file) and "RecalculateAndSave" in Path(macro_file).read_text() ): return True if not os.path.exists(macro_dir): subprocess.run( ["soffice", "--headless", "--terminate_after_init"], capture_output=True, timeout=10, env=get_soffice_env(), ) os.makedirs(macro_dir, exist_ok=True) try: Path(macro_file).write_text(RECALCULATE_MACRO) return True except Exception: return False def recalc(filename, timeout=30): if not Path(filename).exists(): return {"error": f"File {filename} does not exist"} abs_path = str(Path(filename).absolute()) if not setup_libreoffice_macro(): return {"error": "Failed to setup LibreOffice macro"} cmd = [ "soffice", "--headless", "--norestore", "vnd.sun.star.script:Standard.Module1.RecalculateAndSave?language=Basic&location=application", abs_path, ] if platform.system() == "Linux": cmd = ["timeout", str(timeout)] + cmd elif platform.system() == "Darwin" and has_gtimeout(): cmd = ["gtimeout", str(timeout)] + cmd result = subprocess.run(cmd, capture_output=True, text=True, env=get_soffice_env()) if result.returncode != 0 and result.returncode != 124: error_msg = result.stderr or "Unknown error during recalculation" if "Module1" in error_msg or "RecalculateAndSave" not in error_msg: return {"error": "LibreOffice macro not configured properly"} return {"error": error_msg} try: wb = load_workbook(filename, data_only=True) excel_errors = [ "#VALUE!", "#DIV/0!", "#REF!", "#NAME?", "#NULL!", "#NUM!", "#N/A", ] error_details = {err: [] for err in excel_errors} total_errors = 0 for sheet_name in wb.sheetnames: ws = wb[sheet_name] for row in ws.iter_rows(): for cell in row: if cell.value is not None and isinstance(cell.value, str): for err in excel_errors: if err in cell.value: location = f"{sheet_name}!{cell.coordinate}" error_details[err].append(location) total_errors += 1 break wb.close() result = { "status": "success" if total_errors == 0 else "errors_found", "total_errors": total_errors, "error_summary": {}, } for err_type, locations in error_details.items(): if locations: result["error_summary"][err_type] = { "count": len(locations), "locations": locations[:20], } wb_formulas = load_workbook(filename, data_only=False) formula_count = 0 for sheet_name in wb_formulas.sheetnames: ws = wb_formulas[sheet_name] for row in ws.iter_rows(): for cell in row: if ( cell.value and isinstance(cell.value, str) and cell.value.startswith("=") ): formula_count += 1 wb_formulas.close() result["total_formulas"] = formula_count return result except Exception as e: return {"error": str(e)} def main(): if len(sys.argv) < 2: print("Usage: python recalc.py <excel_file> [timeout_seconds]") print("\nRecalculates all formulas in an Excel file using LibreOffice") print("\nReturns JSON with error details:") print(" - status: 'success' or 'errors_found'") print(" - total_errors: Total number of Excel errors found") print(" - total_formulas: Number of formulas in the file") print(" - error_summary: Breakdown by error type with locations") print(" - #VALUE!, #DIV/0!, #REF!, #NAME?, #NULL!, #NUM!, #N/A") sys.exit(1) filename = sys.argv[1] timeout = int(sys.argv[2]) if len(sys.argv) > 2 else 30 result = recalc(filename, timeout) print(json.dumps(result, indent=2)) if __name__ == "__main__": main() ================================================ FILE: spec/agent-skills-spec.md ================================================ # Agent Skills Spec The spec is now located at <https://agentskills.io/specification> ================================================ FILE: template/SKILL.md ================================================ --- name: template-skill description: Replace with description of the skill and when Claude should use it. --- # Insert instructions below